commit 71b3c6f703c1f24c31b97204b34f52eafbdc2b5a Author: Miguel I. Date: Tue Sep 2 18:12:30 2025 +0200 First commit diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..cd9356f --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,15 @@ +{ + // Use IntelliSense to learn about possible attributes. + // Hover to view descriptions of existing attributes. + // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + { + "type": "nrf-connect", + "request": "launch", + "name": "Launch PHF000-Firmware", + "config": "${workspaceFolder}/build_4/PHF000-Firmware", + "runToEntryPoint": "main" + } + ] +} \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..968ec96 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,8 @@ +{ + "nrf-connect.debugging.bindings": { + "${workspaceFolder}/build_4/PHF000-Firmware": "Launch PHF000-Firmware" + }, + "files.associations": { + "nrfx_temp.h": "c" + } +} \ No newline at end of file diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..9026c3b --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,27 @@ +# SPDX-License-Identifier: Apache-2.0 + +cmake_minimum_required(VERSION 3.20.0) +set(BOARD_ROOT ${CMAKE_CURRENT_SOURCE_DIR}) +find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) +project(PHF000-Firmware) + +# Application sources +target_sources(app PRIVATE + src/main.c + drivers/led/led.c + drivers/button/button.c + drivers/actuator/actuator.c + drivers/battery_adc/battery_adc.c + drivers/temperature/temperature.c + drivers/timer_count/timer_count.c +) + +# Add include directories so headers can be found +target_include_directories(app PRIVATE + drivers/led + drivers/button + drivers/actuator + drivers/battery_adc + drivers/temperature + drivers/timer_count +) \ No newline at end of file diff --git a/boards/Mi_labs/phf000_board/Kconfig.phf000_board b/boards/Mi_labs/phf000_board/Kconfig.phf000_board new file mode 100644 index 0000000..36f36cd --- /dev/null +++ b/boards/Mi_labs/phf000_board/Kconfig.phf000_board @@ -0,0 +1,2 @@ +config BOARD_PHF000_BOARD + select SOC_NRF52833_QDAA \ No newline at end of file diff --git a/boards/Mi_labs/phf000_board/board.cmake b/boards/Mi_labs/phf000_board/board.cmake new file mode 100644 index 0000000..7da4287 --- /dev/null +++ b/boards/Mi_labs/phf000_board/board.cmake @@ -0,0 +1,10 @@ +board_runner_args(jlink "--device=nRF52833_xxAA" "--speed=4000") + +set(OPENOCD_NRF5_SUBFAMILY "nrf52") +board_runner_args(pyocd "--target=nrf52833" "--frequency=4000000") + +include(${ZEPHYR_BASE}/boards/common/nrfjprog.board.cmake) +include(${ZEPHYR_BASE}/boards/common/nrfutil.board.cmake) +include(${ZEPHYR_BASE}/boards/common/jlink.board.cmake) +include(${ZEPHYR_BASE}/boards/common/pyocd.board.cmake) +include(${ZEPHYR_BASE}/boards/common/openocd-nrf5.board.cmake) \ No newline at end of file diff --git a/boards/Mi_labs/phf000_board/board.yml b/boards/Mi_labs/phf000_board/board.yml new file mode 100644 index 0000000..6b24952 --- /dev/null +++ b/boards/Mi_labs/phf000_board/board.yml @@ -0,0 +1,5 @@ +board: + name: phf000_board + vendor: Mi_labs + socs: + - name: nrf52833 \ No newline at end of file diff --git a/boards/Mi_labs/phf000_board/phf000_board-pinctrl.dtsi b/boards/Mi_labs/phf000_board/phf000_board-pinctrl.dtsi new file mode 100644 index 0000000..eb124f5 --- /dev/null +++ b/boards/Mi_labs/phf000_board/phf000_board-pinctrl.dtsi @@ -0,0 +1,2 @@ +&pinctrl { +}; diff --git a/boards/Mi_labs/phf000_board/phf000_board.dts b/boards/Mi_labs/phf000_board/phf000_board.dts new file mode 100644 index 0000000..40b2f06 --- /dev/null +++ b/boards/Mi_labs/phf000_board/phf000_board.dts @@ -0,0 +1,161 @@ +/* + * Copyright (c) 2019 Nordic Semiconductor ASA + * + * SPDX-License-Identifier: Apache-2.0 + */ + +/dts-v1/; +#include +#include "phf000_board-pinctrl.dtsi" +#include + +/ { + model = "PHF000 RA Board"; + compatible = "arm,phf000_board"; + + chosen { + zephyr,console = &cdc_acm_uart0; + zephyr,udc = &usbd; + 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; + zephyr,ieee802154 = &ieee802154; + }; + + leds { + compatible = "gpio-leds"; + led0: led_0 { + gpios = <&gpio0 5 GPIO_ACTIVE_LOW>; + label = "Red LED 0"; + }; + led1: led_1 { + gpios = <&gpio1 9 GPIO_ACTIVE_LOW>; + label = "Green LED 1"; + }; + }; + + buttons { + compatible = "gpio-keys"; + button0: button_0 { + gpios = <&gpio0 28 (GPIO_ACTIVE_LOW | GPIO_PULL_UP)>; + label = "Push button switch 0"; + zephyr,code = ; + }; + }; + + + /* These aliases are provided for compatibility with samples */ + aliases { + led0 = &led0; + led1 = &led1; + sw0 = &button0; + bootloader-led0 = &led0; + mcuboot-button0 = &button0; + mcuboot-led0 = &led0; + watchdog0 = &wdt0; + }; + + zephyr,user { + hum_en-gpios = <&gpio0 2 0>; + do2-gpios = <&gpio0 3 (1 << 9)>; + do_en-gpios = <&gpio0 9 0>; + do1-gpios = <&gpio0 10 0>; + btt_meas_en-gpios = <&gpio0 29 0>; + io-channels = <&adc 6>; + }; + + reserved-memory { + #address-cells = <1>; + #size-cells = <1>; + ranges; + }; +}; + +®1 { + regulator-initial-mode = ; + status = "okay"; + compatible = "nordic,nrf5x-regulator"; +}; + +&adc { + status = "okay"; + #address-cells = <1>; + #size-cells = <0>; + channel@6 { + reg = <6>; + zephyr,gain = "ADC_GAIN_1_6"; + zephyr,reference = "ADC_REF_INTERNAL"; + //zephyr,vref-mv = <750>; + zephyr,acquisition-time = ; + zephyr,input-positive = ; + //zephyr,acquisition-time = ; + zephyr,resolution = <12>; + }; +}; + +&uicr { + gpio-as-nreset; + nfct-pins-as-gpios; +}; + +&gpiote { + status = "okay"; +}; + +&gpio0 { + status = "okay"; +}; + +&gpio1 { + status = "okay"; +}; + +&flash0 { + + partitions { + compatible = "fixed-partitions"; + #address-cells = <1>; + #size-cells = <1>; + + boot_partition: partition@0 { + label = "mcuboot"; + reg = <0x00000000 0xC000>; + }; + slot0_partition: partition@c000 { + label = "image-0"; + reg = <0x0000C000 0x37000>; + }; + slot1_partition: partition@43000 { + label = "image-1"; + reg = <0x00043000 0x37000>; + }; + storage_partition: partition@7a000 { + label = "storage"; + reg = <0x0007A000 0x00006000>; + }; + }; +}; + +zephyr_udc0: &usbd { + compatible = "nordic,nrf-usbd"; + status = "okay"; + cdc_acm_uart0: cdc_acm_uart0 { + compatible = "zephyr,cdc-acm-uart"; + }; +}; + +®0 { + status = "okay"; +}; + +&power { + status = "okay"; +}; +&temp { + compatible = "nordic,nrf-temp"; + status = "okay"; +}; \ No newline at end of file diff --git a/boards/Mi_labs/phf000_board/phf000_board.yml b/boards/Mi_labs/phf000_board/phf000_board.yml new file mode 100644 index 0000000..c91e433 --- /dev/null +++ b/boards/Mi_labs/phf000_board/phf000_board.yml @@ -0,0 +1,10 @@ +identifier: phf000_board/nrf52833 +name: Board for PHF, Rev A +vendor: Mi_labs +type: mcu +arch: arm +ram: 128 +flash: 512 +toolchain: + - zephyr +supported: [] \ No newline at end of file diff --git a/boards/Mi_labs/phf000_board/phf000_board_defconfig b/boards/Mi_labs/phf000_board/phf000_board_defconfig new file mode 100644 index 0000000..257eda8 --- /dev/null +++ b/boards/Mi_labs/phf000_board/phf000_board_defconfig @@ -0,0 +1,38 @@ +# SPDX-License-Identifier: Apache-2.0 + +CONFIG_PINCTRL=y + + +# Enable MPU +CONFIG_ARM_MPU=y + +# Enable hardware stack protection +CONFIG_HW_STACK_PROTECTION=y + +# Enable RTT +CONFIG_USE_SEGGER_RTT=y + +# enable GPIO +CONFIG_GPIO=y + +# enable uart driver +CONFIG_SERIAL=y + +# enable console +CONFIG_CONSOLE=y +CONFIG_UART_CONSOLE=y +CONFIG_USB_DEVICE_STACK=y +CONFIG_USB_CDC_ACM=y +CONFIG_USB_DEVICE_PRODUCT="Zephyr USB console sample" +CONFIG_USB_DEVICE_VID=0x2FE3 +CONFIG_USB_DEVICE_PID=0x0004 +CONFIG_USB_DEVICE_INITIALIZE_AT_BOOT=n + +CONFIG_ADC=y + +CONFIG_CLOCK_CONTROL_NRF_K32SRC_RC=n +CONFIG_CLOCK_CONTROL_NRF_K32SRC_XTAL=y + +CONFIG_SENSOR=y +CONFIG_MULTITHREADING=y +CONFIG_NRFX_TEMP=y \ No newline at end of file diff --git a/boards/Mi_labs/phf000_board/pre_dt_board.cmake b/boards/Mi_labs/phf000_board/pre_dt_board.cmake new file mode 100644 index 0000000..519d784 --- /dev/null +++ b/boards/Mi_labs/phf000_board/pre_dt_board.cmake @@ -0,0 +1,2 @@ +# Suppress "unique_unit_address_if_enabled" to handle some overlaps +list(APPEND EXTRA_DTC_FLAGS "-Wno-unique_unit_address_if_enabled") diff --git a/boards/arm/phf000_board/phf000_board_nrf52833.dts b/boards/arm/phf000_board/phf000_board_nrf52833.dts new file mode 100644 index 0000000..e69de29 diff --git a/build/.ninja_deps b/build/.ninja_deps new file mode 100644 index 0000000..e5675ec Binary files /dev/null and b/build/.ninja_deps differ diff --git a/build/.ninja_log b/build/.ninja_log new file mode 100644 index 0000000..3bbd1c1 --- /dev/null +++ b/build/.ninja_log @@ -0,0 +1,48 @@ +# ninja log v5 +1708 1714 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/zephyr.elf 7217ddc3bcbef71e +1708 1714 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild/CMakeFiles/PHF000-Firmware_extra_byproducts 7217ddc3bcbef71e +1708 1714 0 PHF000-Firmware/zephyr/zephyr.hex 7217ddc3bcbef71e +1714 1806 1756586664414346123 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/merged.hex 23ba9b6437128e80 +1708 1714 0 PHF000-Firmware/zephyr/zephyr.bin 7217ddc3bcbef71e +62 73 1756583126562206258 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild/sysbuild/images/PHF000-Firmware-prefix/src/PHF000-Firmware-stamp/PHF000-Firmware-configure 8666c6f0c6f7997f +1689 1696 1756586664309349495 _sysbuild/sysbuild/images/PHF000-Firmware-prefix/src/PHF000-Firmware-stamp/PHF000-Firmware-install 2f0ed05496dca297 +1696 1708 1756586664320349142 _sysbuild/sysbuild/images/CMakeFiles/PHF000-Firmware-complete 584b0d6e8a2502ad +44 53 1756583126543206521 _sysbuild/sysbuild/images/PHF000-Firmware-prefix/src/PHF000-Firmware-stamp/PHF000-Firmware-update 28bd6378378efba +33 44 1756583126533206659 _sysbuild/sysbuild/images/PHF000-Firmware-prefix/src/PHF000-Firmware-stamp/PHF000-Firmware-download a86d3082600d4632 +1714 1806 1756586664414346123 merged.hex 23ba9b6437128e80 +3 10796 1756584074985954493 build.ninja 687d90aa88545d17 +33 44 1756583126533206659 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild/sysbuild/images/PHF000-Firmware-prefix/src/PHF000-Firmware-stamp/PHF000-Firmware-download a86d3082600d4632 +1708 1714 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/zephyr.hex 7217ddc3bcbef71e +44 53 1756583126543206521 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild/sysbuild/images/PHF000-Firmware-prefix/src/PHF000-Firmware-stamp/PHF000-Firmware-update 28bd6378378efba +1708 1714 0 _sysbuild/CMakeFiles/PHF000-Firmware_extra_byproducts 7217ddc3bcbef71e +62 73 1756583126562206258 _sysbuild/sysbuild/images/PHF000-Firmware-prefix/src/PHF000-Firmware-stamp/PHF000-Firmware-configure 8666c6f0c6f7997f +53 62 1756583126551206410 _sysbuild/sysbuild/images/PHF000-Firmware-prefix/src/PHF000-Firmware-stamp/PHF000-Firmware-patch 1f65e81b8b82f5e7 +1696 1708 1756586664320349142 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild/sysbuild/images/CMakeFiles/PHF000-Firmware-complete 584b0d6e8a2502ad +1708 1714 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/zephyr.bin 7217ddc3bcbef71e +1708 1714 0 PHF000-Firmware/zephyr/zephyr.elf 7217ddc3bcbef71e +53 62 1756583126551206410 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild/sysbuild/images/PHF000-Firmware-prefix/src/PHF000-Firmware-stamp/PHF000-Firmware-patch 1f65e81b8b82f5e7 +0 1689 0 _sysbuild/sysbuild/images/PHF000-Firmware-prefix/src/PHF000-Firmware-stamp/PHF000-Firmware-build 57bd1e9c1dd89829 +1696 1708 1756586664320349142 _sysbuild/sysbuild/images/PHF000-Firmware-prefix/src/PHF000-Firmware-stamp/PHF000-Firmware-done 584b0d6e8a2502ad +0 1689 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild/sysbuild/images/PHF000-Firmware-prefix/src/PHF000-Firmware-stamp/PHF000-Firmware-build 57bd1e9c1dd89829 +1696 1708 1756586664320349142 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild/sysbuild/images/PHF000-Firmware-prefix/src/PHF000-Firmware-stamp/PHF000-Firmware-done 584b0d6e8a2502ad +1689 1696 1756586664309349495 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild/sysbuild/images/PHF000-Firmware-prefix/src/PHF000-Firmware-stamp/PHF000-Firmware-install 2f0ed05496dca297 +1 33 1756583126522206812 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild/sysbuild/images/PHF000-Firmware-prefix/src/PHF000-Firmware-stamp/PHF000-Firmware-mkdir c666895444081c61 +1 33 1756583126522206812 _sysbuild/sysbuild/images/PHF000-Firmware-prefix/src/PHF000-Firmware-stamp/PHF000-Firmware-mkdir c666895444081c61 +0 1653 0 _sysbuild/sysbuild/images/PHF000-Firmware-prefix/src/PHF000-Firmware-stamp/PHF000-Firmware-build 57bd1e9c1dd89829 +0 1653 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild/sysbuild/images/PHF000-Firmware-prefix/src/PHF000-Firmware-stamp/PHF000-Firmware-build 57bd1e9c1dd89829 +1653 1661 1756586830493963325 _sysbuild/sysbuild/images/PHF000-Firmware-prefix/src/PHF000-Firmware-stamp/PHF000-Firmware-install 2f0ed05496dca297 +1653 1661 1756586830493963325 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild/sysbuild/images/PHF000-Firmware-prefix/src/PHF000-Firmware-stamp/PHF000-Firmware-install 2f0ed05496dca297 +1661 1672 1756586830504963295 _sysbuild/sysbuild/images/CMakeFiles/PHF000-Firmware-complete 584b0d6e8a2502ad +1661 1672 1756586830504963295 _sysbuild/sysbuild/images/PHF000-Firmware-prefix/src/PHF000-Firmware-stamp/PHF000-Firmware-done 584b0d6e8a2502ad +1661 1672 1756586830504963295 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild/sysbuild/images/CMakeFiles/PHF000-Firmware-complete 584b0d6e8a2502ad +1661 1672 1756586830504963295 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild/sysbuild/images/PHF000-Firmware-prefix/src/PHF000-Firmware-stamp/PHF000-Firmware-done 584b0d6e8a2502ad +1672 1678 0 _sysbuild/CMakeFiles/PHF000-Firmware_extra_byproducts 7217ddc3bcbef71e +1672 1678 0 PHF000-Firmware/zephyr/zephyr.bin 7217ddc3bcbef71e +1672 1678 0 PHF000-Firmware/zephyr/zephyr.elf 7217ddc3bcbef71e +1672 1678 0 PHF000-Firmware/zephyr/zephyr.hex 7217ddc3bcbef71e +1672 1678 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild/CMakeFiles/PHF000-Firmware_extra_byproducts 7217ddc3bcbef71e +1672 1678 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/zephyr.bin 7217ddc3bcbef71e +1672 1678 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/zephyr.elf 7217ddc3bcbef71e +1672 1678 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/zephyr.hex 7217ddc3bcbef71e +1678 1781 1756586830609963005 merged.hex 23ba9b6437128e80 +1678 1781 1756586830609963005 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/merged.hex 23ba9b6437128e80 diff --git a/build/.vscode-nrf-connect.json b/build/.vscode-nrf-connect.json new file mode 100644 index 0000000..e9eb991 --- /dev/null +++ b/build/.vscode-nrf-connect.json @@ -0,0 +1,22 @@ +{ + "toolchainPath": "/home/miguel/ncs/toolchains/7cbc0036f4", + "sdkPath": "/home/miguel/ncs/v3.0.2", + "board": "phf000_board/nrf52833", + "boardDir": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/boards/Mi_labs/phf000_board", + "boardDirs": [ + "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/boards/Mi_labs/phf000_board" + ], + "optimizations": "speed", + "cmakeArgs": [ + "-DBOARD_ROOT=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware" + ], + "confFiles": [ + "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/prj.conf" + ], + "buildDirectory": "build", + "kconfigFragments": [], + "snippets": [], + "dtcOverlays": [], + "extraDtcOverlays": [], + "boardRoot": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware" +} \ No newline at end of file diff --git a/build/CMakeCache.txt b/build/CMakeCache.txt new file mode 100644 index 0000000..6e2b708 --- /dev/null +++ b/build/CMakeCache.txt @@ -0,0 +1,182 @@ +# This is the CMakeCache file. +# For build in directory: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build +# It was generated by CMake: /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake +# You can edit this file to change values found and used by cmake. +# If you do not want to change any of the values, simply exit the editor. +# If you do want to change a value, simply edit, save, and exit the editor. +# The syntax for the file is as follows: +# KEY:TYPE=VALUE +# KEY is the name of a variable in the cache. +# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!. +# VALUE is the current value for the KEY. + +######################## +# EXTERNAL cache entries +######################## + +//Application Binary Directory +APPLICATION_BINARY_DIR:PATH=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build + +//Application Source Directory +APPLICATION_SOURCE_DIR:PATH=/home/miguel/ncs/v3.0.2/zephyr/share/sysbuild/template + +//No help, variable specified on the command line. +APP_DIR:PATH=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware + +//Selected board +BOARD:STRING=phf000_board/nrf52833 + +//Main board directory for board (phf000_board) +BOARD_DIR:PATH=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/boards/Mi_labs/phf000_board + +//Support board extensions +BOARD_EXTENSIONS:BOOL=ON + +//Sysbuild adjusted BOARD_ROOT +BOARD_ROOT:PATH=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware + +//Selected board +CACHED_BOARD:STRING=phf000_board/nrf52833 + +//Selected shield +CACHED_SHIELD:STRING= + +//Selected snippet +CACHED_SNIPPET:STRING= + +//Enable/Disable output of compile commands during generation. +CMAKE_EXPORT_COMPILE_COMMANDS:BOOL=ON + +//Install path prefix, prepended onto install directories. +CMAKE_INSTALL_PREFIX:PATH=/usr/local + +//Program used to build from build.ninja files. +CMAKE_MAKE_PROGRAM:FILEPATH=/home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/ninja + +//Value Computed by CMake +CMAKE_PROJECT_DESCRIPTION:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_HOMEPAGE_URL:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_NAME:STATIC=sysbuild_toplevel + +//If set, runtime paths are not added when installing shared libraries, +// but are added when building. +CMAKE_SKIP_INSTALL_RPATH:BOOL=NO + +//If set, runtime paths are not added when using shared libraries. +CMAKE_SKIP_RPATH:BOOL=NO + +//If this value is on, makefiles will be generated without the +// .SILENT directive, and all commands will be echoed to the console +// during the make. This is useful for debugging only. With Visual +// Studio IDE projects all commands are done without /nologo. +CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE + +//No help, variable specified on the command line. +CONFIG_SPEED_OPTIMIZATIONS:UNINITIALIZED=y + +//No help, variable specified on the command line. +CONF_FILE:UNINITIALIZED=prj.conf + +//No help, variable specified on the command line. +WEST_PYTHON:UNINITIALIZED=/home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/python3.12 + +//Zephyr base +ZEPHYR_BASE:PATH=/home/miguel/ncs/v3.0.2/zephyr + +//Path to merged image in Intel Hex format +ZEPHYR_RUNNER_CONFIG_KERNEL_HEX:STRING= + +//The directory containing a CMake configuration file for Zephyr. +Zephyr_DIR:PATH=/home/miguel/ncs/v3.0.2/zephyr/share/zephyr-package/cmake + +//Value Computed by CMake +sysbuild_BINARY_DIR:STATIC=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild + +//Value Computed by CMake +sysbuild_IS_TOP_LEVEL:STATIC=OFF + +//Value Computed by CMake +sysbuild_SOURCE_DIR:STATIC=/home/miguel/ncs/v3.0.2/zephyr/share/sysbuild/template + +//Value Computed by CMake +sysbuild_toplevel_BINARY_DIR:STATIC=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build + +//Value Computed by CMake +sysbuild_toplevel_IS_TOP_LEVEL:STATIC=ON + +//Value Computed by CMake +sysbuild_toplevel_SOURCE_DIR:STATIC=/home/miguel/ncs/v3.0.2/zephyr/share/sysbuild + + +######################## +# INTERNAL cache entries +######################## + +//List of board directories for board (phf000_board) +BOARD_DIRECTORIES:INTERNAL=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/boards/Mi_labs/phf000_board +//This is the directory where this CMakeCache.txt was created +CMAKE_CACHEFILE_DIR:INTERNAL=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build +//Major version of cmake used to create the current loaded cache +CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3 +//Minor version of cmake used to create the current loaded cache +CMAKE_CACHE_MINOR_VERSION:INTERNAL=21 +//Patch version of cmake used to create the current loaded cache +CMAKE_CACHE_PATCH_VERSION:INTERNAL=0 +//Path to CMake executable. +CMAKE_COMMAND:INTERNAL=/home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake +//Path to cpack program executable. +CMAKE_CPACK_COMMAND:INTERNAL=/home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cpack +//Path to ctest program executable. +CMAKE_CTEST_COMMAND:INTERNAL=/home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/ctest +//ADVANCED property for variable: CMAKE_EXPORT_COMPILE_COMMANDS +CMAKE_EXPORT_COMPILE_COMMANDS-ADVANCED:INTERNAL=1 +//Name of external makefile project generator. +CMAKE_EXTRA_GENERATOR:INTERNAL= +//Name of generator. +CMAKE_GENERATOR:INTERNAL=Ninja +//Generator instance identifier. +CMAKE_GENERATOR_INSTANCE:INTERNAL= +//Name of generator platform. +CMAKE_GENERATOR_PLATFORM:INTERNAL= +//Name of generator toolset. +CMAKE_GENERATOR_TOOLSET:INTERNAL= +//Source directory with the top level CMakeLists.txt file for this +// project +CMAKE_HOME_DIRECTORY:INTERNAL=/home/miguel/ncs/v3.0.2/zephyr/share/sysbuild +//Install .so files without execute permission. +CMAKE_INSTALL_SO_NO_EXE:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MAKE_PROGRAM +CMAKE_MAKE_PROGRAM-ADVANCED:INTERNAL=1 +//number of local generators +CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=8 +//Platform information initialized +CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1 +//Path to CMake installation. +CMAKE_ROOT:INTERNAL=/home/miguel/ncs/toolchains/7cbc0036f4/usr/local/share/cmake-3.21 +//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH +CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_RPATH +CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1 +//uname command +CMAKE_UNAME:INTERNAL=/usr/bin/uname +//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE +CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 +//Details about finding Python3 +FIND_PACKAGE_MESSAGE_DETAILS_Python3:INTERNAL=[/home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/python3.12][cfound components: Interpreter ][v3.12.4(3.10)] +//Zephyr hardware model version +HWM:INTERNAL=v2 +//Zephyr hardware model +HWMv2:INTERNAL=True +//nRF Connect SDK partition managere controlled hex file +PHF000-Firmware_NCS_RUNNER_HEX:INTERNAL=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/merged.hex +//West +WEST:INTERNAL=/home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/python3.12;-m;west +_Python3_EXECUTABLE:INTERNAL=/home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/python3.12 +//Python3 Properties +_Python3_INTERPRETER_PROPERTIES:INTERNAL=Python;3;12;4;64;;cpython-312-x86_64-linux-gnu;/home/miguel/ncs/toolchains/7cbc0036f4/usr/local/lib/python3.12;/home/miguel/ncs/toolchains/7cbc0036f4/usr/local/lib/python3.12;/home/miguel/ncs/toolchains/7cbc0036f4/usr/local/lib/python3.12/site-packages;/home/miguel/ncs/toolchains/7cbc0036f4/usr/local/lib/python3.12/site-packages +_Python3_INTERPRETER_SIGNATURE:INTERNAL=f1fe4e1b796bf757de4220aae6969482 + diff --git a/build/CMakeFiles/3.21.0/CMakeSystem.cmake b/build/CMakeFiles/3.21.0/CMakeSystem.cmake new file mode 100644 index 0000000..58c805e --- /dev/null +++ b/build/CMakeFiles/3.21.0/CMakeSystem.cmake @@ -0,0 +1,15 @@ +set(CMAKE_HOST_SYSTEM "Linux-6.8.0-64-generic") +set(CMAKE_HOST_SYSTEM_NAME "Linux") +set(CMAKE_HOST_SYSTEM_VERSION "6.8.0-64-generic") +set(CMAKE_HOST_SYSTEM_PROCESSOR "x86_64") + + + +set(CMAKE_SYSTEM "Linux-6.8.0-64-generic") +set(CMAKE_SYSTEM_NAME "Linux") +set(CMAKE_SYSTEM_VERSION "6.8.0-64-generic") +set(CMAKE_SYSTEM_PROCESSOR "x86_64") + +set(CMAKE_CROSSCOMPILING "FALSE") + +set(CMAKE_SYSTEM_LOADED 1) diff --git a/build/CMakeFiles/CMakeOutput.log b/build/CMakeFiles/CMakeOutput.log new file mode 100644 index 0000000..6724098 --- /dev/null +++ b/build/CMakeFiles/CMakeOutput.log @@ -0,0 +1 @@ +The system is: Linux - 6.8.0-64-generic - x86_64 diff --git a/build/CMakeFiles/TargetDirectories.txt b/build/CMakeFiles/TargetDirectories.txt new file mode 100644 index 0000000..953c088 --- /dev/null +++ b/build/CMakeFiles/TargetDirectories.txt @@ -0,0 +1,33 @@ +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild/CMakeFiles/partition_manager_report.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild/CMakeFiles/merged_hex.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild/CMakeFiles/partition_manager.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild/CMakeFiles/sysbuild_menuconfig.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild/CMakeFiles/shields.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild/CMakeFiles/build_info_yaml_saved.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild/CMakeFiles/PHF000-Firmware_devicetree_target.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild/CMakeFiles/config-twister.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild/CMakeFiles/sysbuild_guiconfig.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild/CMakeFiles/PHF000-Firmware_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild/CMakeFiles/snippets.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild/CMakeFiles/boards.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild/CMakeFiles/PHF000-Firmware_extra_byproducts.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild/sysbuild/images/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild/sysbuild/images/CMakeFiles/menuconfig.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild/sysbuild/images/CMakeFiles/guiconfig.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild/sysbuild/images/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild/sysbuild/images/CMakeFiles/hardenconfig.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild/sysbuild/images/CMakeFiles/PHF000-Firmware.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild/sysbuild/images/bootloader/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild/sysbuild/images/bootloader/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/modules/nrf/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/modules/nrf/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/modules/mcuboot/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/modules/mcuboot/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild/sysbuild/images/boards/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild/sysbuild/images/boards/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild/sysbuild/images/soc/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild/sysbuild/images/soc/CMakeFiles/edit_cache.dir diff --git a/build/CMakeFiles/cmake.check_cache b/build/CMakeFiles/cmake.check_cache new file mode 100644 index 0000000..3dccd73 --- /dev/null +++ b/build/CMakeFiles/cmake.check_cache @@ -0,0 +1 @@ +# This file is generated by cmake for dependency checking of the CMakeCache.txt file diff --git a/build/CMakeFiles/rules.ninja b/build/CMakeFiles/rules.ninja new file mode 100644 index 0000000..41a4be5 --- /dev/null +++ b/build/CMakeFiles/rules.ninja @@ -0,0 +1,45 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Ninja" Generator, CMake Version 3.21 + +# This file contains all the rules used to get the outputs files +# built from the input files. +# It is included in the main 'build.ninja'. + +# ============================================================================= +# Project: sysbuild_toplevel +# Configurations: +# ============================================================================= +# ============================================================================= + +############################################# +# Rule for running custom commands. + +rule CUSTOM_COMMAND + command = $COMMAND + description = $DESC + + +############################################# +# Rule for re-running cmake. + +rule RERUN_CMAKE + command = /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/ncs/v3.0.2/zephyr/share/sysbuild -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build + description = Re-running CMake... + generator = 1 + + +############################################# +# Rule for cleaning all built files. + +rule CLEAN + command = /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/ninja $FILE_ARG -t clean $TARGETS + description = Cleaning all built files... + + +############################################# +# Rule for printing all primary targets available. + +rule HELP + command = /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/ninja -t targets + description = All primary targets available: + diff --git a/build/Kconfig/Kconfig.modules b/build/Kconfig/Kconfig.modules new file mode 100644 index 0000000..9898052 --- /dev/null +++ b/build/Kconfig/Kconfig.modules @@ -0,0 +1,258 @@ +menu "nrf (/home/miguel/ncs/v3.0.2/nrf)" +osource "/home/miguel/ncs/v3.0.2/nrf/Kconfig.nrf" +config ZEPHYR_NRF_MODULE + bool + default y +endmenu +menu "hostap (/home/miguel/ncs/v3.0.2/modules/lib/hostap)" +osource "$(ZEPHYR_HOSTAP_KCONFIG)" +config ZEPHYR_HOSTAP_MODULE + bool + default y +endmenu +menu "mcuboot (/home/miguel/ncs/v3.0.2/bootloader/mcuboot)" +osource "$(ZEPHYR_MCUBOOT_KCONFIG)" +config ZEPHYR_MCUBOOT_MODULE + bool + default y +endmenu +menu "mbedtls (/home/miguel/ncs/v3.0.2/modules/crypto/mbedtls)" +osource "$(ZEPHYR_MBEDTLS_KCONFIG)" +config ZEPHYR_MBEDTLS_MODULE + bool + default y +endmenu +menu "oberon-psa-crypto (/home/miguel/ncs/v3.0.2/modules/crypto/oberon-psa-crypto)" +osource "/home/miguel/ncs/v3.0.2/modules/crypto/oberon-psa-crypto/Kconfig.oberon_psa_crypto" +config ZEPHYR_OBERON_PSA_CRYPTO_MODULE + bool + default y +endmenu +menu "trusted-firmware-m (/home/miguel/ncs/v3.0.2/modules/tee/tf-m/trusted-firmware-m)" +osource "$(ZEPHYR_TRUSTED_FIRMWARE_M_KCONFIG)" +config ZEPHYR_TRUSTED_FIRMWARE_M_MODULE + bool + default y +endmenu +config ZEPHYR_PSA_ARCH_TESTS_MODULE + bool + default y +menu "cjson (/home/miguel/ncs/v3.0.2/modules/lib/cjson)" +osource "$(ZEPHYR_CJSON_KCONFIG)" +config ZEPHYR_CJSON_MODULE + bool + default y +endmenu +menu "azure-sdk-for-c (/home/miguel/ncs/v3.0.2/modules/lib/azure-sdk-for-c)" +osource "$(ZEPHYR_AZURE_SDK_FOR_C_KCONFIG)" +config ZEPHYR_AZURE_SDK_FOR_C_MODULE + bool + default y +endmenu +menu "cirrus-logic (/home/miguel/ncs/v3.0.2/modules/hal/cirrus-logic)" +osource "/home/miguel/ncs/v3.0.2/modules/hal/cirrus-logic/Kconfig" +config ZEPHYR_CIRRUS_LOGIC_MODULE + bool + default y +endmenu +menu "openthread (/home/miguel/ncs/v3.0.2/modules/lib/openthread)" +osource "$(ZEPHYR_OPENTHREAD_KCONFIG)" +config ZEPHYR_OPENTHREAD_MODULE + bool + default y +endmenu +menu "suit-generator (/home/miguel/ncs/v3.0.2/modules/lib/suit-generator)" +osource "/home/miguel/ncs/v3.0.2/modules/lib/suit-generator/ncs/Kconfig" +config ZEPHYR_SUIT_GENERATOR_MODULE + bool + default y +endmenu +menu "suit-processor (/home/miguel/ncs/v3.0.2/modules/lib/suit-processor)" +osource "/home/miguel/ncs/v3.0.2/modules/lib/suit-processor/Kconfig" +config ZEPHYR_SUIT_PROCESSOR_MODULE + bool + default y +endmenu +menu "memfault-firmware-sdk (/home/miguel/ncs/v3.0.2/modules/lib/memfault-firmware-sdk)" +osource "/home/miguel/ncs/v3.0.2/modules/lib/memfault-firmware-sdk/ports/zephyr/Kconfig" +config ZEPHYR_MEMFAULT_FIRMWARE_SDK_MODULE + bool + default y +endmenu +menu "coremark (/home/miguel/ncs/v3.0.2/modules/benchmark/coremark)" +osource "$(ZEPHYR_COREMARK_KCONFIG)" +config ZEPHYR_COREMARK_MODULE + bool + default y +endmenu +menu "canopennode (/home/miguel/ncs/v3.0.2/modules/lib/canopennode)" +osource "$(ZEPHYR_CANOPENNODE_KCONFIG)" +config ZEPHYR_CANOPENNODE_MODULE + bool + default y +endmenu +menu "chre (/home/miguel/ncs/v3.0.2/modules/lib/chre)" +osource "/home/miguel/ncs/v3.0.2/modules/lib/chre/platform/zephyr/Kconfig" +config ZEPHYR_CHRE_MODULE + bool + default y +endmenu +menu "lz4 (/home/miguel/ncs/v3.0.2/modules/lib/lz4)" +osource "$(ZEPHYR_LZ4_KCONFIG)" +config ZEPHYR_LZ4_MODULE + bool + default y +endmenu +menu "nanopb (/home/miguel/ncs/v3.0.2/modules/lib/nanopb)" +osource "$(ZEPHYR_NANOPB_KCONFIG)" +config ZEPHYR_NANOPB_MODULE + bool + default y +endmenu +config ZEPHYR_TF_M_TESTS_MODULE + bool + default y +menu "zscilib (/home/miguel/ncs/v3.0.2/modules/lib/zscilib)" +osource "/home/miguel/ncs/v3.0.2/modules/lib/zscilib/Kconfig.zscilib" +config ZEPHYR_ZSCILIB_MODULE + bool + default y +endmenu +menu "cmsis (/home/miguel/ncs/v3.0.2/modules/hal/cmsis)" +osource "$(ZEPHYR_CMSIS_KCONFIG)" +config ZEPHYR_CMSIS_MODULE + bool + default y +endmenu +menu "cmsis-dsp (/home/miguel/ncs/v3.0.2/modules/lib/cmsis-dsp)" +osource "$(ZEPHYR_CMSIS_DSP_KCONFIG)" +config ZEPHYR_CMSIS_DSP_MODULE + bool + default y +endmenu +menu "cmsis-nn (/home/miguel/ncs/v3.0.2/modules/lib/cmsis-nn)" +osource "$(ZEPHYR_CMSIS_NN_KCONFIG)" +config ZEPHYR_CMSIS_NN_MODULE + bool + default y +endmenu +menu "fatfs (/home/miguel/ncs/v3.0.2/modules/fs/fatfs)" +osource "$(ZEPHYR_FATFS_KCONFIG)" +config ZEPHYR_FATFS_MODULE + bool + default y +endmenu +menu "hal_nordic (/home/miguel/ncs/v3.0.2/modules/hal/nordic)" +osource "$(ZEPHYR_HAL_NORDIC_KCONFIG)" +config ZEPHYR_HAL_NORDIC_MODULE + bool + default y + +config ZEPHYR_HAL_NORDIC_MODULE_BLOBS + bool +endmenu +menu "hal_st (/home/miguel/ncs/v3.0.2/modules/hal/st)" +osource "$(ZEPHYR_HAL_ST_KCONFIG)" +config ZEPHYR_HAL_ST_MODULE + bool + default y +endmenu +menu "hal_tdk (/home/miguel/ncs/v3.0.2/modules/hal/tdk)" +osource "$(ZEPHYR_HAL_TDK_KCONFIG)" +config ZEPHYR_HAL_TDK_MODULE + bool + default y +endmenu +config ZEPHYR_HAL_WURTHELEKTRONIK_MODULE + bool + default y +menu "liblc3 (/home/miguel/ncs/v3.0.2/modules/lib/liblc3)" +osource "$(ZEPHYR_LIBLC3_KCONFIG)" +config ZEPHYR_LIBLC3_MODULE + bool + default y +endmenu +config ZEPHYR_LIBMETAL_MODULE + bool + default y +menu "littlefs (/home/miguel/ncs/v3.0.2/modules/fs/littlefs)" +osource "$(ZEPHYR_LITTLEFS_KCONFIG)" +config ZEPHYR_LITTLEFS_MODULE + bool + default y +endmenu +menu "loramac-node (/home/miguel/ncs/v3.0.2/modules/lib/loramac-node)" +osource "$(ZEPHYR_LORAMAC_NODE_KCONFIG)" +config ZEPHYR_LORAMAC_NODE_MODULE + bool + default y +endmenu +menu "lvgl (/home/miguel/ncs/v3.0.2/modules/lib/gui/lvgl)" +osource "/home/miguel/ncs/v3.0.2/modules/lib/gui/lvgl/zephyr/Kconfig" +config ZEPHYR_LVGL_MODULE + bool + default y +endmenu +config ZEPHYR_MIPI_SYS_T_MODULE + bool + default y +menu "nrf_wifi (/home/miguel/ncs/v3.0.2/modules/lib/nrf_wifi)" +osource "$(ZEPHYR_NRF_WIFI_KCONFIG)" +config ZEPHYR_NRF_WIFI_MODULE + bool + default y + +config ZEPHYR_NRF_WIFI_MODULE_BLOBS + bool +endmenu +config ZEPHYR_OPEN_AMP_MODULE + bool + default y +menu "percepio (/home/miguel/ncs/v3.0.2/modules/debug/percepio)" +osource "/home/miguel/ncs/v3.0.2/modules/debug/percepio/zephyr/Kconfig" +config ZEPHYR_PERCEPIO_MODULE + bool + default y +endmenu +menu "picolibc (/home/miguel/ncs/v3.0.2/modules/lib/picolibc)" +osource "/home/miguel/ncs/v3.0.2/modules/lib/picolibc/zephyr/Kconfig" +config ZEPHYR_PICOLIBC_MODULE + bool + default y +endmenu +menu "segger (/home/miguel/ncs/v3.0.2/modules/debug/segger)" +osource "$(ZEPHYR_SEGGER_KCONFIG)" +config ZEPHYR_SEGGER_MODULE + bool + default y +endmenu +config ZEPHYR_TINYCRYPT_MODULE + bool + default y +menu "uoscore-uedhoc (/home/miguel/ncs/v3.0.2/modules/lib/uoscore-uedhoc)" +osource "$(ZEPHYR_UOSCORE_UEDHOC_KCONFIG)" +config ZEPHYR_UOSCORE_UEDHOC_MODULE + bool + default y +endmenu +menu "zcbor (/home/miguel/ncs/v3.0.2/modules/lib/zcbor)" +osource "$(ZEPHYR_ZCBOR_KCONFIG)" +config ZEPHYR_ZCBOR_MODULE + bool + default y +endmenu +menu "nrfxlib (/home/miguel/ncs/v3.0.2/nrfxlib)" +osource "/home/miguel/ncs/v3.0.2/nrfxlib/Kconfig.nrfxlib" +config ZEPHYR_NRFXLIB_MODULE + bool + default y +endmenu +config ZEPHYR_NRF_HW_MODELS_MODULE + bool + default y +menu "connectedhomeip (/home/miguel/ncs/v3.0.2/modules/lib/matter)" +osource "/home/miguel/ncs/v3.0.2/modules/lib/matter/config/nrfconnect/chip-module/Kconfig" +config ZEPHYR_CONNECTEDHOMEIP_MODULE + bool + default y +endmenu diff --git a/build/Kconfig/Kconfig.shield b/build/Kconfig/Kconfig.shield new file mode 100644 index 0000000..a12591f --- /dev/null +++ b/build/Kconfig/Kconfig.shield @@ -0,0 +1,2 @@ +osource "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/boards/shields/*/Kconfig.shield" +osource "/home/miguel/ncs/v3.0.2/nrf/boards/shields/*/Kconfig.shield" diff --git a/build/Kconfig/Kconfig.shield.defconfig b/build/Kconfig/Kconfig.shield.defconfig new file mode 100644 index 0000000..69f06ca --- /dev/null +++ b/build/Kconfig/Kconfig.shield.defconfig @@ -0,0 +1,2 @@ +osource "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/boards/shields/*/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/nrf/boards/shields/*/Kconfig.defconfig" diff --git a/build/Kconfig/Kconfig.sysbuild.modules b/build/Kconfig/Kconfig.sysbuild.modules new file mode 100644 index 0000000..6bd5c8e --- /dev/null +++ b/build/Kconfig/Kconfig.sysbuild.modules @@ -0,0 +1,141 @@ +menu "nrf (/home/miguel/ncs/v3.0.2/nrf)" +osource "/home/miguel/ncs/v3.0.2/nrf/sysbuild/Kconfig.sysbuild" +config ZEPHYR_NRF_MODULE + bool + default y +endmenu +config ZEPHYR_HOSTAP_MODULE + bool + default y +config ZEPHYR_MCUBOOT_MODULE + bool + default y +config ZEPHYR_MBEDTLS_MODULE + bool + default y +config ZEPHYR_OBERON_PSA_CRYPTO_MODULE + bool + default y +config ZEPHYR_TRUSTED_FIRMWARE_M_MODULE + bool + default y +config ZEPHYR_PSA_ARCH_TESTS_MODULE + bool + default y +config ZEPHYR_CJSON_MODULE + bool + default y +config ZEPHYR_AZURE_SDK_FOR_C_MODULE + bool + default y +config ZEPHYR_CIRRUS_LOGIC_MODULE + bool + default y +config ZEPHYR_OPENTHREAD_MODULE + bool + default y +config ZEPHYR_SUIT_GENERATOR_MODULE + bool + default y +config ZEPHYR_SUIT_PROCESSOR_MODULE + bool + default y +config ZEPHYR_MEMFAULT_FIRMWARE_SDK_MODULE + bool + default y +config ZEPHYR_COREMARK_MODULE + bool + default y +config ZEPHYR_CANOPENNODE_MODULE + bool + default y +config ZEPHYR_CHRE_MODULE + bool + default y +config ZEPHYR_LZ4_MODULE + bool + default y +config ZEPHYR_NANOPB_MODULE + bool + default y +config ZEPHYR_TF_M_TESTS_MODULE + bool + default y +config ZEPHYR_ZSCILIB_MODULE + bool + default y +config ZEPHYR_CMSIS_MODULE + bool + default y +config ZEPHYR_CMSIS_DSP_MODULE + bool + default y +config ZEPHYR_CMSIS_NN_MODULE + bool + default y +config ZEPHYR_FATFS_MODULE + bool + default y +config ZEPHYR_HAL_NORDIC_MODULE + bool + default y +config ZEPHYR_HAL_ST_MODULE + bool + default y +config ZEPHYR_HAL_TDK_MODULE + bool + default y +config ZEPHYR_HAL_WURTHELEKTRONIK_MODULE + bool + default y +config ZEPHYR_LIBLC3_MODULE + bool + default y +config ZEPHYR_LIBMETAL_MODULE + bool + default y +config ZEPHYR_LITTLEFS_MODULE + bool + default y +config ZEPHYR_LORAMAC_NODE_MODULE + bool + default y +config ZEPHYR_LVGL_MODULE + bool + default y +config ZEPHYR_MIPI_SYS_T_MODULE + bool + default y +config ZEPHYR_NRF_WIFI_MODULE + bool + default y +config ZEPHYR_OPEN_AMP_MODULE + bool + default y +config ZEPHYR_PERCEPIO_MODULE + bool + default y +config ZEPHYR_PICOLIBC_MODULE + bool + default y +config ZEPHYR_SEGGER_MODULE + bool + default y +config ZEPHYR_TINYCRYPT_MODULE + bool + default y +config ZEPHYR_UOSCORE_UEDHOC_MODULE + bool + default y +config ZEPHYR_ZCBOR_MODULE + bool + default y +config ZEPHYR_NRFXLIB_MODULE + bool + default y +config ZEPHYR_NRF_HW_MODELS_MODULE + bool + default y +config ZEPHYR_CONNECTEDHOMEIP_MODULE + bool + default y diff --git a/build/Kconfig/arch/Kconfig b/build/Kconfig/arch/Kconfig new file mode 100644 index 0000000..b8b0839 --- /dev/null +++ b/build/Kconfig/arch/Kconfig @@ -0,0 +1,11 @@ +# Load Zephyr Arch Kconfig descriptions. +osource "/home/miguel/ncs/v3.0.2/zephyr/arch/x86/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/arch/xtensa/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/arch/sparc/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/arch/riscv/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/arch/posix/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/arch/nios2/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/arch/mips/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/arch/arm64/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/arch/arm/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/arch/arc/Kconfig" diff --git a/build/Kconfig/boards/Kconfig b/build/Kconfig/boards/Kconfig new file mode 100644 index 0000000..6593afd --- /dev/null +++ b/build/Kconfig/boards/Kconfig @@ -0,0 +1,2 @@ +# Load Zephyr board Kconfig descriptions. +osource "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/boards/Mi_labs/phf000_board/Kconfig" diff --git a/build/Kconfig/boards/Kconfig.defconfig b/build/Kconfig/boards/Kconfig.defconfig new file mode 100644 index 0000000..c9cf06d --- /dev/null +++ b/build/Kconfig/boards/Kconfig.defconfig @@ -0,0 +1,2 @@ +# Load Zephyr board defconfig descriptions. +osource "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/boards/Mi_labs/phf000_board/Kconfig.defconfig" diff --git a/build/Kconfig/boards/Kconfig.phf000_board b/build/Kconfig/boards/Kconfig.phf000_board new file mode 100644 index 0000000..1c1f7d9 --- /dev/null +++ b/build/Kconfig/boards/Kconfig.phf000_board @@ -0,0 +1,2 @@ +# Load board Kconfig descriptions. +osource "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/boards/Mi_labs/phf000_board/Kconfig.phf000_board" diff --git a/build/Kconfig/boards/Kconfig.sysbuild b/build/Kconfig/boards/Kconfig.sysbuild new file mode 100644 index 0000000..d24c3a1 --- /dev/null +++ b/build/Kconfig/boards/Kconfig.sysbuild @@ -0,0 +1,2 @@ +# Load Sysbuild board Kconfig descriptions. +osource "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/boards/Mi_labs/phf000_board/Kconfig.sysbuild" diff --git a/build/Kconfig/soc/Kconfig b/build/Kconfig/soc/Kconfig new file mode 100644 index 0000000..6934bd0 --- /dev/null +++ b/build/Kconfig/soc/Kconfig @@ -0,0 +1,95 @@ +# Load Zephyr SoC Kconfig descriptions. +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/xlnx/zynqmp/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/xlnx/zynq7000/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/xen/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/wch/ch32v00x/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/ti/simplelink/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/ti/lm3s6965/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/ti/k3/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/telink/tlsr/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/starfive/jh71xx/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/snps/qemu_arc/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_v/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_classic/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/snps/hsdk4xd/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/snps/hsdk/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/snps/emsk/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/snps/emsdp/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/snps/arc_iot/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/silabs/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/sifive/sifive_freedom/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/sensry/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/rockchip/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/renode/riscv_virtual/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/renode/cortex_r8_virtual/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/smartbond/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/rzt2m/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/rz/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/rcar/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/realtek/ec/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/raspberrypi/rpi_pico/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/quicklogic/eos_s3/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/qemu/virt_riscv/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/qemu/malta/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/openisa/rv32m1/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/s32/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/rw/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/mcx/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/lpc/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/layerscape/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imxrt/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/numicro/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/numaker/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/npcx/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/npcm/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/neorv32/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/native/inf_clock/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/microchip/miv/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/microchip/mec/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/mediatek/mt8xxx/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/lowrisc/opentitan/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/litex/litex_vexriscv/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/ite/ec/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/intel/raptor_lake/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/intel/lakemont/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_socfpga_std/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_socfpga/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_niosv/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_ish/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_adsp/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/intel/elkhart_lake/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/intel/atom/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/intel/apollo_lake/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/intel/alder_lake/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat3/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat1b/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat1a/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/gaisler/leon3/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/gaisler/gr716a/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/espressif/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/ene/kb1200/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/efinix/sapphire/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/cdns/xtensa_sample_controller/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/cdns/sample_controller32/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/cdns/dc233c/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/brcm/bcmvk/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/brcm/bcm2712/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/brcm/bcm2711/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/aspeed/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/arm/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/arm/beetle/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/andestech/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/amd/acp_6_0/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/ambiq/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/altr/zephyr_nios2f/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/altr/qemu_nios2/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/adi/max32/Kconfig" +osource "/home/miguel/ncs/v3.0.2/nrf/soc/nordic/Kconfig" diff --git a/build/Kconfig/soc/Kconfig.defconfig b/build/Kconfig/soc/Kconfig.defconfig new file mode 100644 index 0000000..9789fcb --- /dev/null +++ b/build/Kconfig/soc/Kconfig.defconfig @@ -0,0 +1,95 @@ +# Load Zephyr SoC defconfig descriptions. +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/xlnx/zynqmp/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/xlnx/zynq7000/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/xen/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/wch/ch32v00x/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/ti/simplelink/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/ti/lm3s6965/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/ti/k3/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/telink/tlsr/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/starfive/jh71xx/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/snps/qemu_arc/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_v/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_classic/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/snps/hsdk4xd/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/snps/hsdk/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/snps/emsk/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/snps/emsdp/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/snps/arc_iot/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/silabs/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/sifive/sifive_freedom/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/sensry/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/rockchip/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/renode/riscv_virtual/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/renode/cortex_r8_virtual/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/smartbond/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/rzt2m/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/rz/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/rcar/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/realtek/ec/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/raspberrypi/rpi_pico/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/quicklogic/eos_s3/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/qemu/virt_riscv/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/qemu/malta/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/openisa/rv32m1/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/s32/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/rw/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/mcx/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/lpc/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/layerscape/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imxrt/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/numicro/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/numaker/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/npcx/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/npcm/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/neorv32/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/native/inf_clock/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/microchip/miv/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/microchip/mec/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/mediatek/mt8xxx/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/lowrisc/opentitan/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/litex/litex_vexriscv/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/ite/ec/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/intel/raptor_lake/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/intel/lakemont/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_socfpga_std/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_socfpga/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_niosv/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_ish/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_adsp/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/intel/elkhart_lake/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/intel/atom/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/intel/apollo_lake/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/intel/alder_lake/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat3/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat1b/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat1a/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/gaisler/leon3/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/gaisler/gr716a/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/espressif/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/ene/kb1200/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/efinix/sapphire/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/cdns/xtensa_sample_controller/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/cdns/sample_controller32/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/cdns/dc233c/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/brcm/bcmvk/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/brcm/bcm2712/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/brcm/bcm2711/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/aspeed/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/arm/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/arm/beetle/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/andestech/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/amd/acp_6_0/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/ambiq/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/altr/zephyr_nios2f/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/altr/qemu_nios2/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/adi/max32/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/nrf/soc/nordic/Kconfig.defconfig" diff --git a/build/Kconfig/soc/Kconfig.soc b/build/Kconfig/soc/Kconfig.soc new file mode 100644 index 0000000..440c567 --- /dev/null +++ b/build/Kconfig/soc/Kconfig.soc @@ -0,0 +1,95 @@ +# Load SoC Kconfig descriptions. +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/xlnx/zynqmp/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/xlnx/zynq7000/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/xen/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/wch/ch32v00x/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/ti/simplelink/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/ti/lm3s6965/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/ti/k3/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/telink/tlsr/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/starfive/jh71xx/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/snps/qemu_arc/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_v/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_classic/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/snps/hsdk4xd/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/snps/hsdk/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/snps/emsk/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/snps/emsdp/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/snps/arc_iot/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/silabs/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/sifive/sifive_freedom/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/sensry/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/rockchip/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/renode/riscv_virtual/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/renode/cortex_r8_virtual/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/smartbond/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/rzt2m/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/rz/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/rcar/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/realtek/ec/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/raspberrypi/rpi_pico/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/quicklogic/eos_s3/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/qemu/virt_riscv/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/qemu/malta/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/openisa/rv32m1/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/s32/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/rw/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/mcx/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/lpc/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/layerscape/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imxrt/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/numicro/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/numaker/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/npcx/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/npcm/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/neorv32/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/native/inf_clock/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/microchip/miv/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/microchip/mec/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/mediatek/mt8xxx/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/lowrisc/opentitan/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/litex/litex_vexriscv/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/ite/ec/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/intel/raptor_lake/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/intel/lakemont/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_socfpga_std/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_socfpga/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_niosv/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_ish/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_adsp/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/intel/elkhart_lake/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/intel/atom/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/intel/apollo_lake/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/intel/alder_lake/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat3/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat1b/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat1a/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/gaisler/leon3/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/gaisler/gr716a/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/espressif/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/ene/kb1200/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/efinix/sapphire/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/cdns/xtensa_sample_controller/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/cdns/sample_controller32/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/cdns/dc233c/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/brcm/bcmvk/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/brcm/bcm2712/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/brcm/bcm2711/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/aspeed/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/arm/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/arm/beetle/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/andestech/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/amd/acp_6_0/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/ambiq/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/altr/zephyr_nios2f/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/altr/qemu_nios2/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/adi/max32/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/nrf/soc/nordic/Kconfig.soc" diff --git a/build/Kconfig/soc/Kconfig.sysbuild b/build/Kconfig/soc/Kconfig.sysbuild new file mode 100644 index 0000000..2c37192 --- /dev/null +++ b/build/Kconfig/soc/Kconfig.sysbuild @@ -0,0 +1,95 @@ +# Load Sysbuild SoC Kconfig descriptions. +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/xlnx/zynqmp/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/xlnx/zynq7000/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/xen/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/wch/ch32v00x/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/ti/simplelink/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/ti/lm3s6965/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/ti/k3/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/telink/tlsr/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/starfive/jh71xx/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/snps/qemu_arc/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_v/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_classic/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/snps/hsdk4xd/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/snps/hsdk/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/snps/emsk/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/snps/emsdp/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/snps/arc_iot/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/silabs/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/sifive/sifive_freedom/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/sensry/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/rockchip/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/renode/riscv_virtual/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/renode/cortex_r8_virtual/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/smartbond/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/rzt2m/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/rz/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/rcar/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/realtek/ec/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/raspberrypi/rpi_pico/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/quicklogic/eos_s3/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/qemu/virt_riscv/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/qemu/malta/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/openisa/rv32m1/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/s32/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/rw/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/mcx/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/lpc/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/layerscape/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imxrt/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/numicro/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/numaker/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/npcx/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/npcm/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/neorv32/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/native/inf_clock/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/microchip/miv/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/microchip/mec/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/mediatek/mt8xxx/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/lowrisc/opentitan/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/litex/litex_vexriscv/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/ite/ec/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/intel/raptor_lake/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/intel/lakemont/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_socfpga_std/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_socfpga/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_niosv/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_ish/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_adsp/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/intel/elkhart_lake/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/intel/atom/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/intel/apollo_lake/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/intel/alder_lake/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat3/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat1b/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat1a/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/gaisler/leon3/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/gaisler/gr716a/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/espressif/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/ene/kb1200/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/efinix/sapphire/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/cdns/xtensa_sample_controller/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/cdns/sample_controller32/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/cdns/dc233c/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/brcm/bcmvk/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/brcm/bcm2712/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/brcm/bcm2711/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/aspeed/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/arm/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/arm/beetle/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/andestech/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/amd/acp_6_0/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/ambiq/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/altr/zephyr_nios2f/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/altr/qemu_nios2/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/adi/max32/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/nrf/soc/nordic/Kconfig.sysbuild" diff --git a/build/PHF000-Firmware/.ninja_deps b/build/PHF000-Firmware/.ninja_deps new file mode 100644 index 0000000..b37dbc8 Binary files /dev/null and b/build/PHF000-Firmware/.ninja_deps differ diff --git a/build/PHF000-Firmware/.ninja_log b/build/PHF000-Firmware/.ninja_log new file mode 100644 index 0000000..41c1e6d --- /dev/null +++ b/build/PHF000-Firmware/.ninja_log @@ -0,0 +1,975 @@ +# ninja log v5 +2883 2971 1756584056317216643 zephyr/zephyr_pre0.elf 5ec7ee3b699364cb +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_xen_public_hvm 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_misc 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_mem_mgmt 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_memory-controller 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_stat_mgmt 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_shell 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_net_http 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_psa 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2_dsp 4cb753ae0bf3706f +810 1157 1756584054498242184 zephyr/CMakeFiles/zephyr.dir/subsys/usb/device/usb_descriptor.c.obj 5962eb2edf413c91 +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_can 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_llext 4cb753ae0bf3706f +1883 1913 1756584055263231442 zephyr/drivers/hwinfo/libdrivers__hwinfo.a e7495c07cc0bd4e2 +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_ipc 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_kernel_internal 4cb753ae0bf3706f +468 568 1756584053911250426 zephyr/include/generated/zephyr/offsets.h c87054a040f45391 +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_arch_riscv_common 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mipi_dsi 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_posix_net 4cb753ae0bf3706f +1233 1309 1756584054654239993 zephyr/libzephyr.a 5ac682e95dda159c +570 1176 1756584054515241945 CMakeFiles/app.dir/drivers/timer_count/timer_count.c.obj 8c15c67fe3442314 +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_drivers 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_posix 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_gpio 4cb753ae0bf3706f +781 795 1756583127428194269 zephyr/drivers/serial/CMakeFiles/drivers__serial.dir/home/miguel/ncs/v3.0.2/zephyr/misc/empty_file.c.obj a25f63766721f83c +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_power 4cb753ae0bf3706f +577 870 1756584054216246143 zephyr/CMakeFiles/zephyr.dir/lib/utils/bitarray.c.obj e636773d3c483703 +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_timer 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_xen_public 4cb753ae0bf3706f +13 55 1756583126694204431 zephyr/misc/generated/syscalls_subdirs.trigger eb350fcdc084e4ee +13 55 1756583126694204431 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_subdirs.trigger eb350fcdc084e4ee +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_sensing 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_regulator 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_dfu 4cb753ae0bf3706f +400 540 1756583127168197869 zephyr/include/generated/zephyr/kobj-types-enum.h 312a6e176aae290 +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_flash 4cb753ae0bf3706f +1148 1384 1756584054723239025 zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/thread.c.obj b26f4490e70c3689 +2167 2462 1756584055809223776 zephyr/kernel/CMakeFiles/kernel.dir/stack.c.obj 40c391921946c49f +2210 2450 1756584055798223930 zephyr/kernel/CMakeFiles/kernel.dir/priority_queues.c.obj 501f6f96d1d08b0 +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pcie 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_inputmux 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_arch_x86 4cb753ae0bf3706f +1912 2209 1756584055552227384 zephyr/kernel/CMakeFiles/kernel.dir/errno.c.obj ad9e7e2b80789ee0 +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_sys 4cb753ae0bf3706f +1953 1994 1756584055340230361 zephyr/drivers/timer/libdrivers__timer.a dc2d2b321d602009 +865 1147 1756584054493242254 zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/fault.c.obj 37c7cc8abafa7715 +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_multi_heap 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_modem 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_usb 4cb753ae0bf3706f +20 30 1756583126673204721 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/version.h a55507b677bfda75 +2319 2522 1756584055871222905 zephyr/kernel/CMakeFiles/kernel.dir/xip.c.obj d162a02e571ba89b +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_comparator 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_dma 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_modbus 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_posix_netinet 4cb753ae0bf3706f +400 449 1756583127086199004 zephyr/include/generated/device-api-sections.ld 34092dfd606e9f69 +706 722 1756583127354195294 zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/vector_table.S.obj 2e9a003b05866ed3 +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_a_r 4cb753ae0bf3706f +1033 1304 1756584054639240204 zephyr/arch/arch/arm/core/CMakeFiles/arch__arm__core.dir/tls.c.obj 8a0c20a59d3782ba +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_firmware_scmi 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_mips 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_usb_c 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_lora 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_led_strip 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_regulator 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mspi 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_wifi_nrf_wifi 4cb753ae0bf3706f +400 540 1756583127168197869 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/kobj-types-enum.h 312a6e176aae290 +6 16 1756583126659204915 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr_commit.h 93d67d74c70daac0 +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_settings_mgmt 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_zvfs 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_display 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_usb_c 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_gnss 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_audio 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pcie 4cb753ae0bf3706f +1074 1222 1756584054566241229 zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/reset.S.obj bd18492166d76be0 +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_dma 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_sys_internal 4cb753ae0bf3706f +787 801 1756583127436194159 modules/hal_nordic/modules/hal_nordic/nrfx/CMakeFiles/modules__hal_nordic__nrfx.dir/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk/system_nrf52833.c.obj 716fd043e45dc98f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_asm-compat 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_logging 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pcie 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mspi 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_lora 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_x86_ia32_scripts 4cb753ae0bf3706f +3355 3877 1756584056832209412 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/zephyr.map f79258f82ff1d2fd +2971 3027 1756584056373215857 zephyr/linker.cmd c9debca5cf68bbd8 +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_can 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_rdc 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_usb-c 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_ethernet 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_ipc 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_mgmt 4cb753ae0bf3706f +1563 1807 1756584055149233043 zephyr/drivers/hwinfo/CMakeFiles/drivers__hwinfo.dir/hwinfo_weak_impl.c.obj a06e1a16f71e980a +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_net_prometheus 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pinctrl 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_bluetooth 4cb753ae0bf3706f +1784 1828 1756584055178232636 zephyr/drivers/console/libdrivers__console.a b0defd29db24b3ce +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_ethernet 4cb753ae0bf3706f +1874 2108 1756584055449228831 zephyr/kernel/CMakeFiles/kernel.dir/main_weak.c.obj 683e350eacf58b73 +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_storage 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_devicetree 4cb753ae0bf3706f +2159 2405 1756584055744224688 zephyr/kernel/CMakeFiles/kernel.dir/sem.c.obj ed1bb09d32c7e3d3 +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_portability 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pwm 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_nxp_flexio 4cb753ae0bf3706f +570 1141 1756584054474242521 CMakeFiles/app.dir/drivers/battery_adc/battery_adc.c.obj 4fa8620e63d14729 +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_fs 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_usb 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_debug 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2_mpu 4cb753ae0bf3706f +1764 2034 1756584055373229898 modules/hal_nordic/modules/hal_nordic/nrfx/CMakeFiles/modules__hal_nordic__nrfx.dir/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/helpers/nrfx_flag32_allocator.c.obj 7eebd5be73ccf0a7 +1665 1898 1756584055239231779 zephyr/drivers/timer/CMakeFiles/drivers__timer.dir/sys_clock_init.c.obj b17e10a474c40bc2 +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_mipi_dsi 4cb753ae0bf3706f +3027 3248 1756584056583212908 zephyr/isr_tables.c beb1a4c6615b155f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_stats 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_console 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_clock 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_clock_control 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_input 4cb753ae0bf3706f +400 486 1756583127116198589 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/syscall_weakdefs_llext.c 710f754413c55896 +846 1162 1756584054504242100 zephyr/CMakeFiles/zephyr.dir/home/miguel/ncs/v3.0.2/nrf/lib/boot_banner/banner.c.obj c77d39d6b40116f2 +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_mfd 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_serial 4cb753ae0bf3706f +1316 1621 1756584054960235697 zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/exit.c.obj 76e0a575aa5175e3 +569 791 1756584054133247309 zephyr/CMakeFiles/zephyr.dir/lib/heap/heap.c.obj 98562c0dfc02e926 +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_gpio 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_xen_dom0 4cb753ae0bf3706f +2178 2485 1756584055832223453 zephyr/kernel/CMakeFiles/kernel.dir/system_work_q.c.obj b296a76b8687ae1c +783 1073 1756584054416243335 zephyr/CMakeFiles/zephyr.dir/subsys/mem_mgmt/mem_attr.c.obj 280bbd687a01c5c2 +1229 1513 1756584054852237213 zephyr/arch/arch/arm/core/mpu/CMakeFiles/arch__arm__core__mpu.dir/arm_mpu_regions.c.obj 4455f92da9acc850 +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_eeprom 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include 4cb753ae0bf3706f +2109 2386 1756584055728224913 zephyr/kernel/CMakeFiles/kernel.dir/mutex.c.obj dc225b29220e9b1a +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_settings 4cb753ae0bf3706f +400 486 1756583127116198589 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscall_list.h 710f754413c55896 +1893 2159 1756584055496228171 zephyr/kernel/CMakeFiles/kernel.dir/banner.c.obj c1363f4bff36b947 +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_timeaware_gpio 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_a_r 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_posix_arpa 4cb753ae0bf3706f +1826 2845 1756584056189218440 modules/hal_nordic/modules/hal_nordic/nrfx/CMakeFiles/modules__hal_nordic__nrfx.dir/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/src/nrfx_gpiote.c.obj d313107485e073e9 +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_os_mgmt 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_usb 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_mfd 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_net 4cb753ae0bf3706f +1870 1911 1756584055262231456 zephyr/drivers/usb/device/libdrivers__usb__device.a b6320ef3c7b4a4d8 +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_usb 4cb753ae0bf3706f +1226 1510 1756584054853237199 zephyr/arch/arch/arm/core/mpu/CMakeFiles/arch__arm__core__mpu.dir/arm_core_mpu.c.obj 572e1d82b8a1433 +5 20 1756583126662204874 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/ncs_version.h 68c220a7f49ce7f +569 1153 1756584054494242240 CMakeFiles/app.dir/src/main.c.obj b4a1a8e3eeacdfca +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_reset 4cb753ae0bf3706f +797 1031 1756584054374243925 zephyr/CMakeFiles/zephyr.dir/subsys/usb/device/usb_transfer.c.obj 2cd8c2b23d1f48f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_xen_public 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_gpio 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_gnss 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_timer 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_i2c_target 4cb753ae0bf3706f +1513 1548 1756584054899236553 zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a dfc891408297a630 +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_enum_mgmt 4cb753ae0bf3706f +1914 2235 1756584055571227118 zephyr/kernel/CMakeFiles/kernel.dir/fatal.c.obj fc82428e0fbd3fd4 +1071 1315 1756584054659239923 zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/fpu.c.obj b750ad75b520375f +1864 2150 1756584055497228157 modules/segger/CMakeFiles/modules__segger.dir/SEGGER_RTT_zephyr.c.obj ce7fc9785348f330 +6 343 1756584053000263217 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls.json 779e0b713def8d9b +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_memory-attr 4cb753ae0bf3706f +5 20 1756583126662204874 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/ncs_commit.h c888c379ee0a5172 +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_sd 4cb753ae0bf3706f +2235 2476 1756584055823223579 zephyr/kernel/CMakeFiles/kernel.dir/thread.c.obj 43edd80a43464d1b +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_kernel 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_led 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_sys 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_transport 4cb753ae0bf3706f +698 713 1756583127346195405 zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/fault_s.S.obj d677d2d8e6c923ca +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm64_scripts 4cb753ae0bf3706f +575 846 1756584054175246719 zephyr/CMakeFiles/zephyr.dir/lib/os/assert.c.obj e66ae48e01e43e2d +1548 1882 1756584055226231962 zephyr/drivers/hwinfo/CMakeFiles/drivers__hwinfo.dir/hwinfo_nrf.c.obj 4b64ada71cf1790a +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pwm 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_arch_xtensa 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_m 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pinctrl 4cb753ae0bf3706f +1676 1681 1756583128323181879 zephyr/CMakeFiles/zephyr_final.dir/misc/empty_file.c.obj 5022841878562bce +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_reserved-memory 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pcie_endpoint 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_linker 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_virtualization 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_zvfs 4cb753ae0bf3706f +3355 3877 1756584056832209412 zephyr/zephyr.map f79258f82ff1d2fd +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_net_http 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_kernel_internal 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_arch_x86_ia32 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_zephyr 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_reset 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_modem_backend 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_inputmux 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_stats 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_ethernet 4cb753ae0bf3706f +1595 1864 1756584055210232186 zephyr/kernel/CMakeFiles/kernel.dir/timeout.c.obj added2db6de42174 +400 449 1756583127086199004 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/device-api-sections.cmake 34092dfd606e9f69 +1336 1594 1756584054939235992 zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/stdio.c.obj 52c70223a7db1c5e +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_arch_mips 4cb753ae0bf3706f +672 682 1756583127319195778 zephyr/CMakeFiles/zephyr.dir/lib/utils/hex.c.obj c781cb0918cd4e42 +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_zephyr 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_grove_lcd 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_modem 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_battery 4cb753ae0bf3706f +673 686 1756583127321195751 zephyr/CMakeFiles/zephyr.dir/lib/utils/timeutil.c.obj c73dfe252d47fa38 +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_adc 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_devmux 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mfd 4cb753ae0bf3706f +572 904 1756584054249245680 zephyr/CMakeFiles/zephyr.dir/lib/os/thread_entry.c.obj 9a0fef94371f4be5 +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pinctrl_silabs 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_arch_riscv_riscv-privileged 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_timer 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mm 4cb753ae0bf3706f +1823 1874 1756584055224231990 zephyr/drivers/adc/libdrivers__adc.a 379eac2923cad993 +1385 1635 1756584054973235514 zephyr/soc/soc/nrf52833/CMakeFiles/soc__nordic.dir/validate_enabled_instances.c.obj 4fef4b5ab14a4023 +400 486 1756583127116198589 zephyr/syscall_weakdefs_llext.c 710f754413c55896 +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_serial 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_debug 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_net_prometheus 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_posix_sys 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_reserved-memory 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_mipi_dbi 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_dai 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_pio_rpi_pico 4cb753ae0bf3706f +1851 2055 1756584055399229533 modules/hal_nordic/modules/hal_nordic/nrfx/CMakeFiles/modules__hal_nordic__nrfx.dir/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/src/nrfx_temp.c.obj dc53664171cd3899 +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_memory-attr 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_i2c 4cb753ae0bf3706f +1441 1493 1756584054844237326 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a 5938d560943cb123 +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_rtio 4cb753ae0bf3706f +3027 3248 1756584056583212908 zephyr/isr_tables_swi.ld beb1a4c6615b155f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_r 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_net_hdlc_rcp_if 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2_secureshield 4cb753ae0bf3706f +1157 1390 1756584054695239418 zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/irq_init.c.obj 83af734b61d4a5b9 +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pwm 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_arch_sparc 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_wifi 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_regulator 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_interrupt_controller 4cb753ae0bf3706f +1293 1599 1756584054943235935 zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/chk_fail.c.obj f9f70f47ef0cd661 +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_eeprom 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_adc 4cb753ae0bf3706f +576 809 1756584054153247028 zephyr/CMakeFiles/zephyr.dir/lib/utils/rb.c.obj c92be2c12676c32 +3355 3877 1756584056832209412 zephyr/zephyr.elf f79258f82ff1d2fd +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_xen_public_hvm 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_memory-controller 4cb753ae0bf3706f +1636 1893 1756584055237231807 zephyr/kernel/CMakeFiles/kernel.dir/mempool.c.obj bbe10785ac12e3b7 +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_posix_netinet 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_sys_internal 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_spi 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_data 4cb753ae0bf3706f +1581 2153 1756584055495228185 zephyr/drivers/pinctrl/CMakeFiles/drivers__pinctrl.dir/pinctrl_nrf.c.obj a0b0ad0362d09573 +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_sip_svc 4cb753ae0bf3706f +569 797 1756584054140247211 CMakeFiles/app.dir/drivers/actuator/actuator.c.obj 435ea04d1eaac98a +1243 1524 1756584054870236961 zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/assert.c.obj 1ed3befea4168206 +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_gnss 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_rtc 4cb753ae0bf3706f +3355 3877 1756584056832209412 zephyr/zephyr.stat f79258f82ff1d2fd +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_os_mgmt 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_app_memory 4cb753ae0bf3706f +2291 2504 1756584055852223172 zephyr/kernel/CMakeFiles/kernel.dir/timeslicing.c.obj c01c0c89673080f0 +1351 1611 1756584054957235739 zephyr/lib/libc/common/CMakeFiles/lib__libc__common.dir/source/stdlib/malloc.c.obj 5ab2b425d899bb64 +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_services_nus 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_modbus 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pcie_endpoint 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_haptics 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_toolchain 4cb753ae0bf3706f +1153 1433 1756584054773238322 zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/cpu_idle.c.obj f3cb8238048f557e +1347 1581 1756584054925236188 zephyr/lib/libc/common/CMakeFiles/lib__libc__common.dir/source/stdlib/abort.c.obj f107ac69bb091767 +2037 2290 1756584055630226289 zephyr/kernel/CMakeFiles/kernel.dir/mem_slab.c.obj 7a7d52d9b658148b +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_acpi 4cb753ae0bf3706f +1682 1953 1756584055292231035 zephyr/drivers/timer/CMakeFiles/drivers__timer.dir/nrf_rtc_timer.c.obj 977728cf15364e06 +3027 3248 1756584056583212908 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/isr_tables.c beb1a4c6615b155f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_haptics 4cb753ae0bf3706f +3355 3877 1756584056832209412 zephyr/zephyr.hex f79258f82ff1d2fd +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_math 4cb753ae0bf3706f +3355 3877 1756584056832209412 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/zephyr.stat f79258f82ff1d2fd +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_x86_ia32 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_dsp 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_arch_riscv 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_renesas_ra_external_interrupt 4cb753ae0bf3706f +6 343 1756584053000263217 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/struct_tags.json 779e0b713def8d9b +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_classic 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_console 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_uart 4cb753ae0bf3706f +6 16 1756583126659204915 zephyr/include/generated/zephyr_commit.h 93d67d74c70daac0 +400 540 1756583127168197869 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/otype-to-size.h 312a6e176aae290 +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_input 4cb753ae0bf3706f +696 709 1756583127343195446 zephyr/arch/arch/arm/core/CMakeFiles/arch__arm__core.dir/nmi_on_reset.S.obj 3ccba9df82ab5627 +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mfd 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_task_wdt 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_enum_mgmt 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_tracing 4cb753ae0bf3706f +1162 1440 1756584054782238196 zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/isr_wrapper.c.obj e72d2e125228a0a1 +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_misc 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_mgmt 4cb753ae0bf3706f +1761 1825 1756584055170232748 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a ae79a5ca9b7ee2d4 +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pm_cpu_ops 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pwm 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_riscv 4cb753ae0bf3706f +1899 2070 1756584055413229336 zephyr/kernel/CMakeFiles/kernel.dir/device.c.obj 2f5792a3e0612f36 +401 529 1756583127157198021 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/driver-validation.h e9d7748583a60711 +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_posix 4cb753ae0bf3706f +680 693 1756583127327195668 zephyr/CMakeFiles/zephyr.dir/misc/generated/configs.c.obj 3f5f8ae678db3462 +2070 2340 1756584055679225601 zephyr/kernel/CMakeFiles/kernel.dir/msg_q.c.obj 8af83b1cde0d375c +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_llext 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_tracing 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_zbus 4cb753ae0bf3706f +739 753 1756583127387194837 zephyr/soc/soc/nrf52833/CMakeFiles/soc__nordic.dir/validate_binding_headers.c.obj d00c1587f8d73ca5 +679 692 1756583127326195681 zephyr/CMakeFiles/zephyr.dir/lib/utils/last_section_id.c.obj 858d2ce9fc32c219 +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_i2c 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm64_cortex_r 4cb753ae0bf3706f +400 449 1756583127086199004 zephyr/include/generated/device-api-sections.cmake 34092dfd606e9f69 +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_flash_controller 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_misc 4cb753ae0bf3706f +997 1243 1756584054585240962 zephyr/arch/arch/arm/core/CMakeFiles/arch__arm__core.dir/nmi.c.obj 19033a8214e52bc9 +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_i3c 4cb753ae0bf3706f +568 706 1756584054041248601 zephyr/CMakeFiles/zephyr.dir/home/miguel/ncs/v3.0.2/nrf/subsys/partition_manager/flash_map_partition_manager.c.obj 13bdef60b18b3226 +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_display 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_sip_svc 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_img_mgmt 4cb753ae0bf3706f +904 1070 1756584054404243504 zephyr/linker_zephyr_pre0.cmd 90ba9daa729b5408 +468 568 1756584053911250426 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/offsets.h c87054a040f45391 +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_wifi_nrf_wifi_bus 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_rtio 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mm 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_task_wdt 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2_mpu 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_toolchain 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_gnss 4cb753ae0bf3706f +20 30 1756583126673204721 zephyr/include/generated/zephyr/version.h a55507b677bfda75 +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_nios2 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_dac 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_asm-compat 4cb753ae0bf3706f +1214 1257 1756584054607240653 zephyr/arch/common/libisr_tables.a 270eedc489a370f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_ec_host_cmd 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_arch_x86_intel64 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_i2c 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_ipc_service 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_settings 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_mmu 4cb753ae0bf3706f +400 486 1756583127116198589 zephyr/include/generated/zephyr/syscall_exports_llext.c 710f754413c55896 +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_common 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_acpi 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_stat_mgmt 4cb753ae0bf3706f +400 486 1756583127116198589 zephyr/include/generated/zephyr/syscall_dispatch.c 710f754413c55896 +3027 3248 1756584056583212908 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/isr_tables_swi.ld beb1a4c6615b155f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_i2c_target 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_lorawan 4cb753ae0bf3706f +6 343 1756584053000263217 zephyr/misc/generated/syscalls.json 779e0b713def8d9b +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_debug_coresight 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2_vpx 4cb753ae0bf3706f +792 1196 1756584054491242282 zephyr/CMakeFiles/zephyr.dir/subsys/usb/device/usb_device.c.obj e2ccb0cd9ed53391 +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_i3c 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_smp 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_net_conn_mgr 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_interrupt_controller 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_interrupt-controller 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_data 4cb753ae0bf3706f +1310 1571 1756584054917236301 zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/errno_wrap.c.obj 19b2a01274a73eb7 +571 779 1756584054123247449 CMakeFiles/app.dir/drivers/temperature/temperature.c.obj d2d5f92d1abbb13a +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_coresight 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_sensor 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_sensor 4cb753ae0bf3706f +3248 3355 1756584056701211251 zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj 124fbf3550f9d2a7 +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_fs_mgmt 4cb753ae0bf3706f +716 732 1756583127363195169 zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/__aeabi_read_tp.S.obj 87b30556852040b5 +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_retained_mem 4cb753ae0bf3706f +2048 2319 1756584055661225854 zephyr/kernel/CMakeFiles/kernel.dir/float.c.obj 49547c6f210e6f4d +572 844 1756584054183246607 zephyr/CMakeFiles/zephyr.dir/lib/os/sem.c.obj 730571fb5319d57a +2135 2424 1756584055767224366 zephyr/kernel/CMakeFiles/kernel.dir/queue.c.obj 9faef727f8f3e5f8 +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_sip_svc 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_stm32_wkup_pins 4cb753ae0bf3706f +832 1116 1756584054460242717 zephyr/CMakeFiles/zephyr.dir/subsys/usb/device/usb_work_q.c.obj be6b69ca850c1bd5 +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_mgmt 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pinctrl_renesas 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_linker 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_net_hdlc_rcp_if 4cb753ae0bf3706f +2151 2198 1756584055549227427 modules/segger/libmodules__segger.a c6ffa2958cf23a56 +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_espi 4cb753ae0bf3706f +401 529 1756583127157198021 zephyr/include/generated/zephyr/driver-validation.h e9d7748583a60711 +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_pio_rpi_pico 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_wifi_nrf_wifi_off_raw_tx 4cb753ae0bf3706f +817 830 1756583127464193771 zephyr/kernel/CMakeFiles/kernel.dir/version.c.obj 9d218c04d1fe931a +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_usb-c 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_linker_common-rom 4cb753ae0bf3706f +343 468 1756584053813251802 zephyr/CMakeFiles/offsets.dir/arch/arm/core/offsets/offsets.c.obj 459ce48fed195897 +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2_secureshield 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_internal 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_kernel_mm 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_audio 4cb753ae0bf3706f +2391 2427 1756584055773224281 zephyr/drivers/gpio/libdrivers__gpio.a 3ff0a3b2848f8464 +400 486 1756583127116198589 zephyr/include/generated/zephyr/syscall_list.h 710f754413c55896 +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_retention 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_acpi 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_crypto 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_display 4cb753ae0bf3706f +913 1214 1756584054561241299 zephyr/arch/common/CMakeFiles/isr_tables.dir/isr_tables.c.obj 83328ea1d37c8da1 +1196 1503 1756584054846237297 zephyr/arch/arch/arm/core/mpu/CMakeFiles/arch__arm__core__mpu.dir/arm_mpu.c.obj 30e1f4d778947cbb +1994 2240 1756584055582226963 zephyr/kernel/CMakeFiles/kernel.dir/kheap.c.obj 2f08bbab4220d1ca +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_a_r_scripts 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_flash 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_m 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_stepper 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_video 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_spi 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_xtensa 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_fs 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_portability 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_virtualization 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_services 4cb753ae0bf3706f +671 682 1756583127318195792 zephyr/CMakeFiles/zephyr.dir/lib/utils/dec.c.obj c6e2b6ae454472c4 +571 865 1756584054209246242 zephyr/CMakeFiles/zephyr.dir/lib/os/printk.c.obj 6c4bfe05728e3a0f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_posix_net 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_classic 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_ieee802154 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pinctrl 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_random 4cb753ae0bf3706f +1654 1998 1756584055327230544 zephyr/drivers/sensor/nordic/temp/CMakeFiles/drivers__sensor__nordic__temp.dir/temp_nrf5.c.obj e0febc055d9d354f +789 802 1756583127436194159 zephyr/CMakeFiles/zephyr_pre0.dir/misc/empty_file.c.obj 134d31ff47747db5 +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_fs_mgmt 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_lvgl 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_mipi_dsi 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_console 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_lvgl 4cb753ae0bf3706f +2883 2971 1756584056317216643 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/zephyr_pre0.map 5ec7ee3b699364cb +813 827 1756583127460193826 zephyr/kernel/CMakeFiles/kernel.dir/init_static.c.obj 225f718ed690056f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mipi_dsi 4cb753ae0bf3706f +1611 1650 1756584055000235135 zephyr/lib/libc/common/liblib__libc__common.a 4636f48364637f1f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_riscv_riscv-privileged 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_logging 4cb753ae0bf3706f +1117 1357 1756584054698239376 zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/thread_abort.c.obj 20ceb096c1c1fc01 +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_r 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_ec_host_cmd 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_devicetree 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_shell 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_arch_nios2 4cb753ae0bf3706f +573 875 1756584054214246172 zephyr/CMakeFiles/zephyr.dir/lib/os/cbprintf_complete.c.obj a3af73eeb09955c7 +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_storage 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_clock_silabs 4cb753ae0bf3706f +1421 1869 1756584055213232144 zephyr/drivers/usb/device/CMakeFiles/drivers__usb__device.dir/usb_dc_nrfx.c.obj f2a352d310821ae6 +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_retained_mem 4cb753ae0bf3706f +2199 2446 1756584055794223986 zephyr/kernel/CMakeFiles/kernel.dir/condvar.c.obj 6fc16fb0466a85bd +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_kernel 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_mesh 4cb753ae0bf3706f +1304 1351 1756584054698239376 zephyr/arch/arch/arm/core/libarch__arm__core.a aebd5910aa2d1577 +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_settings_mgmt 4cb753ae0bf3706f +3355 3877 1756584056832209412 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/zephyr.hex f79258f82ff1d2fd +1437 1760 1756584055103233689 zephyr/drivers/usb/common/nrf_usbd_common/CMakeFiles/drivers__usb__common__nrf_usbd_common.dir/nrf_usbd_common.c.obj 2acc7cbbfe33ac69 +1811 2178 1756584055517227876 modules/hal_nordic/modules/hal_nordic/nrfx/CMakeFiles/modules__hal_nordic__nrfx.dir/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/src/nrfx_clock.c.obj 5167ef2bd9ee9d2e +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_ieee802154 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_power 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_comparator 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_wifi_nrf_wifi_off_raw_tx 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pcie 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_usb 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_arch 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_mipi_dbi 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_multi_heap 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_misc 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_mpu 4cb753ae0bf3706f +5 20 1756583126662204874 zephyr/include/generated/ncs_commit.h c888c379ee0a5172 +1141 1321 1756584054667239811 zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/swap_helper.S.obj f56b948299ab354c +3027 3248 1756584056583212908 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/isr_tables_vt.ld beb1a4c6615b155f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_audio 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_retention 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_pm 4cb753ae0bf3706f +1621 1665 1756584055016234910 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a 4dfbb40836062040 +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_platform 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_services_nus 4cb753ae0bf3706f +1147 1421 1756584054766238421 zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/irq_manage.c.obj 31c1fbc4bab1d31b +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_dma 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_stepper 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_net 4cb753ae0bf3706f +1571 1721 1756584055065234222 zephyr/drivers/pinctrl/CMakeFiles/drivers__pinctrl.dir/common.c.obj e77fa251032df982 +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_usb_class 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_sip_svc 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_power 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_led 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_a_r_scripts 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_led 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_ethernet 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_xen_public_io 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_pm 4cb753ae0bf3706f +569 858 1756584054197246410 CMakeFiles/app.dir/drivers/led/led.c.obj b69bdf6d309e37a4 +5 20 1756583126662204874 zephyr/include/generated/ncs_version.h 68c220a7f49ce7f +1176 1228 1756584054573241131 app/libapp.a 2fc2ee03d83e5ced +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_posix_sys 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_battery 4cb753ae0bf3706f +6 343 1756584053000263217 zephyr/misc/generated/struct_tags.json 779e0b713def8d9b +1107 1335 1756584054680239628 zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/prep_c.c.obj b332853c3d84fb46 +876 1148 1756584054492242268 zephyr/soc/soc/nrf52833/CMakeFiles/soc__nordic.dir/validate_base_addresses.c.obj 3bafc325609e382f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_canbus 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_smp 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_firmware 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_wifi_nrf_wifi_bus 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_xen_public_io 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm64 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_audio 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_ft8xx 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_timing 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_shell_mgmt 4cb753ae0bf3706f +2056 2324 1756584055668225756 zephyr/kernel/CMakeFiles/kernel.dir/idle.c.obj e572df8f84849db9 +1998 2048 1756584055391229645 zephyr/drivers/sensor/nordic/temp/libdrivers__sensor__nordic__temp.a aa654589a3f72c1a +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_mmu 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_hawkbit 4cb753ae0bf3706f +3355 3877 1756584056832209412 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/zephyr.bin f79258f82ff1d2fd +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_hawkbit 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_posix 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_img_mgmt 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dsp 4cb753ae0bf3706f +1321 1560 1756584054906236455 zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/locks.c.obj 9ef405d5d663af10 +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_net_conn_mgr 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_led 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_led_strip 4cb753ae0bf3706f +1510 1814 1756584055154232973 zephyr/drivers/clock_control/CMakeFiles/drivers__clock_control.dir/clock_control_nrf.c.obj 733349b97a2558a5 +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_dac 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_debug_coresight 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_i2c 4cb753ae0bf3706f +1722 1978 1756584055321230628 modules/hal_nordic/modules/hal_nordic/nrfx/CMakeFiles/modules__hal_nordic__nrfx.dir/nrfx_glue.c.obj 91a9d5b43cb662b5 +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_crypto 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_internal 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_bluetooth 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_x86 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_math 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pinctrl_renesas 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_devmux 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_clock_silabs 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_clock_control 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_adc 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_xen_dom0 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_timer 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_psa 4cb753ae0bf3706f +400 540 1756583127168197869 zephyr/include/generated/zephyr/otype-to-str.h 312a6e176aae290 +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_ft8xx 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pinctrl 4cb753ae0bf3706f +1506 1822 1756584055166232804 zephyr/drivers/adc/CMakeFiles/drivers__adc.dir/adc_nrfx_saadc.c.obj e79f0f5fc57663d0 +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pm_cpu_ops 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_xen 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_arch_common 4cb753ae0bf3706f +681 693 1756583127329195640 zephyr/CMakeFiles/zephyr.dir/subsys/tracing/tracing_none.c.obj b5e858f9bf8e8d80 +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_espi 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_modem 4cb753ae0bf3706f +858 1090 1756584054433243096 zephyr/arch/common/CMakeFiles/arch__common.dir/sw_isr_common.c.obj c8cb5da1ef3bef6a +1257 1293 1756584054642240162 zephyr/arch/common/libarch__common.a 83674e3103cdc892 +400 486 1756583127116198589 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscall_exports_llext.c 710f754413c55896 +1770 2064 1756584055407229420 modules/hal_nordic/modules/hal_nordic/nrfx/CMakeFiles/modules__hal_nordic__nrfx.dir/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/helpers/nrfx_ram_ctrl.c.obj 7a2a4ee4f63a723f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_interrupt-controller 4cb753ae0bf3706f +1494 1764 1756584055101233717 zephyr/drivers/adc/CMakeFiles/drivers__adc.dir/adc_common.c.obj b2447c305058f317 +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_usb 4cb753ae0bf3706f +2244 2512 1756584055861223046 zephyr/kernel/CMakeFiles/kernel.dir/sched.c.obj 8b9cbf484d727ec9 +1358 1681 1756584055027234756 zephyr/soc/soc/nrf52833/CMakeFiles/soc__nordic.dir/nrf52/soc.c.obj 1c3906dcfcff96ef +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_rtc 4cb753ae0bf3706f +570 912 1756584054257245568 CMakeFiles/app.dir/drivers/button/button.c.obj 44a1e7f754e3ee3e +2883 2971 1756584056317216643 zephyr/zephyr_pre0.map 5ec7ee3b699364cb +400 486 1756583127116198589 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscall_dispatch.c 710f754413c55896 +1978 2301 1756584055641226135 zephyr/kernel/CMakeFiles/kernel.dir/init.c.obj a5d72f733628046d +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_sparc 4cb753ae0bf3706f +2155 2193 1756584055544227497 zephyr/drivers/pinctrl/libdrivers__pinctrl.a 987861621ee68eac +1895 2167 1756584055513227932 zephyr/kernel/CMakeFiles/kernel.dir/busy_wait.c.obj a7510e25774988d5 +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_sensing 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_dma 4cb753ae0bf3706f +578 832 1756584054174246733 zephyr/CMakeFiles/zephyr.dir/lib/utils/onoff.c.obj b5ef3087b5c7bdb7 +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pinctrl_silabs 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_sensor 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_posix_arpa 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_ipc_service 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_spi 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_usb_c 4cb753ae0bf3706f +1713 1770 1756584055111233577 zephyr/soc/soc/nrf52833/libsoc__nordic.a e1ccc50092359358 +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_dai 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_canbus 4cb753ae0bf3706f +796 817 1756583127457193868 zephyr/drivers/serial/libdrivers__serial.a 91b96492f71878dc +844 1232 1756584054574241117 zephyr/CMakeFiles/zephyr.dir/subsys/usb/device/class/cdc_acm.c.obj 86ab6e07391dd1af +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm 4cb753ae0bf3706f +2845 2883 1756584056233217822 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a a2bb4738ede97baa +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_linker_common-rom 4cb753ae0bf3706f +400 540 1756583127168197869 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/otype-to-str.h 312a6e176aae290 +1815 1850 1756584055200232327 zephyr/drivers/clock_control/libdrivers__clock_control.a 9abf1f23c008e4bc +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_usb_class 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_kernel_mm 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_mpu 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_grove_lcd 4cb753ae0bf3706f +568 782 1756584054122247463 zephyr/CMakeFiles/zephyr.dir/lib/os/cbprintf_packaged.c.obj 4f23ca1f53c75189 +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_console 4cb753ae0bf3706f +2971 3027 1756584056373215857 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/linker.cmd c9debca5cf68bbd8 +2305 2506 1756584055853223158 zephyr/kernel/CMakeFiles/kernel.dir/spinlock_validate.c.obj 5ea4444231e754b5 +2324 2519 1756584055865222989 zephyr/kernel/CMakeFiles/kernel.dir/dynamic_disabled.c.obj 7be0cbfc44b7e070 +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_renesas_ra_external_interrupt 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_input 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_usb_c 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_firmware 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_nxp_flexio 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_xen 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_x86_intel64 4cb753ae0bf3706f +870 1107 1756584054449242872 zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/exc_exit.c.obj a319a8413f43fba7 +400 449 1756583127086199004 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/device-api-sections.ld 34092dfd606e9f69 +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_arch_x86_ia32_scripts 4cb753ae0bf3706f +3027 3248 1756584056583212908 zephyr/isr_tables_vt.ld beb1a4c6615b155f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_random 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_spi 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_timing 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_firmware_scmi 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_m_scripts 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_coresight 4cb753ae0bf3706f +1091 1346 1756584054690239488 zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/scb.c.obj fc6e636e39452bb0 +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_modem_backend 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_shell_mgmt 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_flash_controller 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_uart 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_gpio 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_display 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_rdc 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_sd 4cb753ae0bf3706f +14 8859 1756584074381962975 build.ninja f6f3c644fc8782dc +1524 1784 1756584055125233380 zephyr/drivers/console/CMakeFiles/drivers__console.dir/uart_console.c.obj 31705ac0b23922dd +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_input 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2_vpx 4cb753ae0bf3706f +1601 1895 1756584055233231864 zephyr/kernel/CMakeFiles/kernel.dir/timer.c.obj aef85e780df1a8c8 +1391 1712 1756584055049234447 zephyr/soc/soc/nrf52833/CMakeFiles/soc__nordic.dir/common/reboot.c.obj 7bf8638a3aa921ea +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_zbus 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_stm32_wkup_pins 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_wifi_nrf_wifi 4cb753ae0bf3706f +1829 2135 1756584055482228367 modules/hal_nordic/modules/hal_nordic/nrfx/CMakeFiles/modules__hal_nordic__nrfx.dir/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/src/nrfx_power.c.obj 825104eeacd78b59 +780 995 1756584054341244388 zephyr/CMakeFiles/zephyr.dir/lib/utils/ring_buffer.c.obj 9ae401d9279631af +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_acpi 4cb753ae0bf3706f +400 540 1756583127168197869 zephyr/include/generated/zephyr/otype-to-size.h 312a6e176aae290 +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_transport 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dfu 4cb753ae0bf3706f +2064 2375 1756584055718225054 zephyr/kernel/CMakeFiles/kernel.dir/mailbox.c.obj e7e77f2c085d687 +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_regulator 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_app_memory 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_video 4cb753ae0bf3706f +3355 3877 1756584056832209412 zephyr/zephyr.bin f79258f82ff1d2fd +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_modem 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_riscv_common 4cb753ae0bf3706f +904 1070 1756584054404243504 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/linker_zephyr_pre0.cmd 90ba9daa729b5408 +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_sensor 4cb753ae0bf3706f +1252 1532 1756584054873236918 zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/cbprintf.c.obj 591e1af2d08ff1c5 +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_adc 4cb753ae0bf3706f +801 816 1756583127449193979 modules/segger/CMakeFiles/modules__segger.dir/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER/SEGGER_RTT.c.obj 6f56f8ad2459e279 +1533 2391 1756584055737224787 zephyr/drivers/gpio/CMakeFiles/drivers__gpio.dir/gpio_nrfx.c.obj 47e9d570c35edec2 +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_r_scripts 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_power 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_mesh 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_timeaware_gpio 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm64_cortex_r 4cb753ae0bf3706f +2194 2470 1756584055817223663 zephyr/kernel/CMakeFiles/kernel.dir/work.c.obj 32d8987ebc88b496 +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2_dsp 4cb753ae0bf3706f +989 1251 1756584054596240808 zephyr/arch/arch/arm/core/CMakeFiles/arch__arm__core.dir/fatal.c.obj d609ca44383d60cf +706 987 1756584054326244599 zephyr/CMakeFiles/zephyr.dir/lib/utils/notify.c.obj 1d1528da05ef904b +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_services 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm64_scripts 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_lorawan 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_wifi 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_mem_mgmt 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_clock 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_platform 4cb753ae0bf3706f +2523 2555 1756584055905222428 zephyr/kernel/libkernel.a dfd3ef9540f73f7 +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_m_scripts 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm64 4cb753ae0bf3706f +4 9 0 zephyr/misc/generated/syscalls_links/include_zephyr_arch_posix 4cb753ae0bf3706f +4 9 0 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_r_scripts 4cb753ae0bf3706f +6 352 1756584074189965671 zephyr/misc/generated/syscalls.json 779e0b713def8d9b +6 352 1756584074189965671 zephyr/misc/generated/struct_tags.json 779e0b713def8d9b +6 352 1756584074189965671 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls.json 779e0b713def8d9b +6 352 1756584074189965671 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/struct_tags.json 779e0b713def8d9b +353 359 1756584075479947556 zephyr/arch/arch/arm/core/mpu/CMakeFiles/arch__arm__core__mpu.dir/arm_mpu_regions.c.obj 4455f92da9acc850 +353 359 1756584075479947556 zephyr/CMakeFiles/zephyr.dir/home/miguel/ncs/v3.0.2/nrf/subsys/partition_manager/flash_map_partition_manager.c.obj 13bdef60b18b3226 +354 363 1756584075482947514 zephyr/lib/libc/common/CMakeFiles/lib__libc__common.dir/source/stdlib/malloc.c.obj 5ab2b425d899bb64 +359 371 1756584075492947373 zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a dfc891408297a630 +363 380 1756584075501947247 zephyr/lib/libc/common/liblib__libc__common.a 4636f48364637f1f +360 409 1756584075530946840 zephyr/libzephyr.a 5ac682e95dda159c +353 422 1756584075537946741 zephyr/linker_zephyr_pre0.cmd 90ba9daa729b5408 +353 422 1756584075537946741 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/linker_zephyr_pre0.cmd 90ba9daa729b5408 +422 502 1756584075619945590 zephyr/zephyr_pre0.elf 5ec7ee3b699364cb +422 502 1756584075619945590 zephyr/zephyr_pre0.map 5ec7ee3b699364cb +422 502 1756584075619945590 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/zephyr_pre0.map 5ec7ee3b699364cb +503 553 1756584075669944888 zephyr/linker.cmd c9debca5cf68bbd8 +503 553 1756584075669944888 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/linker.cmd c9debca5cf68bbd8 +553 761 1756584075868942093 zephyr/isr_tables.c beb1a4c6615b155f +553 761 1756584075868942093 zephyr/isr_tables_vt.ld beb1a4c6615b155f +553 761 1756584075868942093 zephyr/isr_tables_swi.ld beb1a4c6615b155f +553 761 1756584075868942093 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/isr_tables.c beb1a4c6615b155f +553 761 1756584075868942093 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/isr_tables_vt.ld beb1a4c6615b155f +553 761 1756584075868942093 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/isr_tables_swi.ld beb1a4c6615b155f +761 771 1756584075890941784 zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj 124fbf3550f9d2a7 +771 1287 1756584076015940029 zephyr/zephyr.elf f79258f82ff1d2fd +771 1287 1756584076015940029 zephyr/zephyr.map f79258f82ff1d2fd +771 1287 1756584076015940029 zephyr/zephyr.hex f79258f82ff1d2fd +771 1287 1756584076015940029 zephyr/zephyr.bin f79258f82ff1d2fd +771 1287 1756584076015940029 zephyr/zephyr.stat f79258f82ff1d2fd +771 1287 1756584076015940029 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/zephyr.map f79258f82ff1d2fd +771 1287 1756584076015940029 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/zephyr.hex f79258f82ff1d2fd +771 1287 1756584076015940029 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/zephyr.bin f79258f82ff1d2fd +771 1287 1756584076015940029 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/zephyr.stat f79258f82ff1d2fd +9 397 1756584343621179876 CMakeFiles/app.dir/drivers/battery_adc/battery_adc.c.obj 4fa8620e63d14729 +397 430 1756584343662179300 app/libapp.a 2fc2ee03d83e5ced +430 543 1756584343770177782 zephyr/zephyr_pre0.elf 5ec7ee3b699364cb +430 543 1756584343770177782 zephyr/zephyr_pre0.map 5ec7ee3b699364cb +430 543 1756584343770177782 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/zephyr_pre0.map 5ec7ee3b699364cb +543 630 1756584343854176601 zephyr/linker.cmd c9debca5cf68bbd8 +543 630 1756584343854176601 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/linker.cmd c9debca5cf68bbd8 +631 996 1756584344208171624 zephyr/isr_tables.c beb1a4c6615b155f +631 996 1756584344208171624 zephyr/isr_tables_vt.ld beb1a4c6615b155f +631 996 1756584344208171624 zephyr/isr_tables_swi.ld beb1a4c6615b155f +631 996 1756584344208171624 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/isr_tables.c beb1a4c6615b155f +631 996 1756584344208171624 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/isr_tables_vt.ld beb1a4c6615b155f +631 996 1756584344208171624 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/isr_tables_swi.ld beb1a4c6615b155f +996 1292 1756584344516167295 zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj 124fbf3550f9d2a7 +1292 2017 1756584344678165017 zephyr/zephyr.elf f79258f82ff1d2fd +1292 2017 1756584344678165017 zephyr/zephyr.map f79258f82ff1d2fd +1292 2017 1756584344678165017 zephyr/zephyr.hex f79258f82ff1d2fd +1292 2017 1756584344678165017 zephyr/zephyr.bin f79258f82ff1d2fd +1292 2017 1756584344678165017 zephyr/zephyr.stat f79258f82ff1d2fd +1292 2017 1756584344678165017 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/zephyr.map f79258f82ff1d2fd +1292 2017 1756584344678165017 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/zephyr.hex f79258f82ff1d2fd +1292 2017 1756584344678165017 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/zephyr.bin f79258f82ff1d2fd +1292 2017 1756584344678165017 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/zephyr.stat f79258f82ff1d2fd +8 410 1756584553656664773 CMakeFiles/app.dir/drivers/battery_adc/battery_adc.c.obj 4fa8620e63d14729 +411 446 1756584553700664271 app/libapp.a 2fc2ee03d83e5ced +446 575 1756584553824662856 zephyr/zephyr_pre0.elf 5ec7ee3b699364cb +446 575 1756584553824662856 zephyr/zephyr_pre0.map 5ec7ee3b699364cb +446 575 1756584553824662856 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/zephyr_pre0.map 5ec7ee3b699364cb +575 659 1756584553903661954 zephyr/linker.cmd c9debca5cf68bbd8 +575 659 1756584553903661954 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/linker.cmd c9debca5cf68bbd8 +659 984 1756584554220658335 zephyr/isr_tables.c beb1a4c6615b155f +659 984 1756584554220658335 zephyr/isr_tables_vt.ld beb1a4c6615b155f +659 984 1756584554220658335 zephyr/isr_tables_swi.ld beb1a4c6615b155f +659 984 1756584554220658335 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/isr_tables.c beb1a4c6615b155f +659 984 1756584554220658335 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/isr_tables_vt.ld beb1a4c6615b155f +659 984 1756584554220658335 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/isr_tables_swi.ld beb1a4c6615b155f +984 993 1756584554246658038 zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj 124fbf3550f9d2a7 +993 1741 1756584554415656108 zephyr/zephyr.elf f79258f82ff1d2fd +993 1741 1756584554415656108 zephyr/zephyr.map f79258f82ff1d2fd +993 1741 1756584554415656108 zephyr/zephyr.hex f79258f82ff1d2fd +993 1741 1756584554415656108 zephyr/zephyr.bin f79258f82ff1d2fd +993 1741 1756584554415656108 zephyr/zephyr.stat f79258f82ff1d2fd +993 1741 1756584554415656108 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/zephyr.map f79258f82ff1d2fd +993 1741 1756584554415656108 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/zephyr.hex f79258f82ff1d2fd +993 1741 1756584554415656108 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/zephyr.bin f79258f82ff1d2fd +993 1741 1756584554415656108 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/zephyr.stat f79258f82ff1d2fd +8 398 1756584712695801748 CMakeFiles/app.dir/drivers/battery_adc/battery_adc.c.obj 4fa8620e63d14729 +398 433 1756584712739801220 app/libapp.a 2fc2ee03d83e5ced +433 556 1756584712855799830 zephyr/zephyr_pre0.elf 5ec7ee3b699364cb +433 556 1756584712855799830 zephyr/zephyr_pre0.map 5ec7ee3b699364cb +433 556 1756584712855799830 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/zephyr_pre0.map 5ec7ee3b699364cb +556 639 1756584712935798872 zephyr/linker.cmd c9debca5cf68bbd8 +556 639 1756584712935798872 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/linker.cmd c9debca5cf68bbd8 +639 983 1756584713269794868 zephyr/isr_tables.c beb1a4c6615b155f +639 983 1756584713269794868 zephyr/isr_tables_vt.ld beb1a4c6615b155f +639 983 1756584713269794868 zephyr/isr_tables_swi.ld beb1a4c6615b155f +639 983 1756584713269794868 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/isr_tables.c beb1a4c6615b155f +639 983 1756584713269794868 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/isr_tables_vt.ld beb1a4c6615b155f +639 983 1756584713269794868 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/isr_tables_swi.ld beb1a4c6615b155f +983 1273 1756584713572791236 zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj 124fbf3550f9d2a7 +1273 1969 1756584713717789498 zephyr/zephyr.elf f79258f82ff1d2fd +1273 1969 1756584713717789498 zephyr/zephyr.map f79258f82ff1d2fd +1273 1969 1756584713717789498 zephyr/zephyr.hex f79258f82ff1d2fd +1273 1969 1756584713717789498 zephyr/zephyr.bin f79258f82ff1d2fd +1273 1969 1756584713717789498 zephyr/zephyr.stat f79258f82ff1d2fd +1273 1969 1756584713717789498 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/zephyr.map f79258f82ff1d2fd +1273 1969 1756584713717789498 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/zephyr.hex f79258f82ff1d2fd +1273 1969 1756584713717789498 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/zephyr.bin f79258f82ff1d2fd +1273 1969 1756584713717789498 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/zephyr.stat f79258f82ff1d2fd +9 419 1756585031031859480 CMakeFiles/app.dir/drivers/battery_adc/battery_adc.c.obj 4fa8620e63d14729 +419 453 1756585031075858921 app/libapp.a 2fc2ee03d83e5ced +453 581 1756585031198857358 zephyr/zephyr_pre0.elf 5ec7ee3b699364cb +453 581 1756585031198857358 zephyr/zephyr_pre0.map 5ec7ee3b699364cb +453 581 1756585031198857358 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/zephyr_pre0.map 5ec7ee3b699364cb +581 662 1756585031278856341 zephyr/linker.cmd c9debca5cf68bbd8 +581 662 1756585031278856341 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/linker.cmd c9debca5cf68bbd8 +662 1002 1756585031602852223 zephyr/isr_tables.c beb1a4c6615b155f +662 1002 1756585031602852223 zephyr/isr_tables_vt.ld beb1a4c6615b155f +662 1002 1756585031602852223 zephyr/isr_tables_swi.ld beb1a4c6615b155f +662 1002 1756585031602852223 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/isr_tables.c beb1a4c6615b155f +662 1002 1756585031602852223 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/isr_tables_vt.ld beb1a4c6615b155f +662 1002 1756585031602852223 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/isr_tables_swi.ld beb1a4c6615b155f +1002 1288 1756585031902848410 zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj 124fbf3550f9d2a7 +1288 2038 1756585032087846059 zephyr/zephyr.elf f79258f82ff1d2fd +1288 2038 1756585032087846059 zephyr/zephyr.map f79258f82ff1d2fd +1288 2038 1756585032087846059 zephyr/zephyr.hex f79258f82ff1d2fd +1288 2038 1756585032087846059 zephyr/zephyr.bin f79258f82ff1d2fd +1288 2038 1756585032087846059 zephyr/zephyr.stat f79258f82ff1d2fd +1288 2038 1756585032087846059 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/zephyr.map f79258f82ff1d2fd +1288 2038 1756585032087846059 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/zephyr.hex f79258f82ff1d2fd +1288 2038 1756585032087846059 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/zephyr.bin f79258f82ff1d2fd +1288 2038 1756585032087846059 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/zephyr.stat f79258f82ff1d2fd +9 391 1756585089213117394 CMakeFiles/app.dir/drivers/battery_adc/battery_adc.c.obj 4fa8620e63d14729 +392 421 1756585089252116895 app/libapp.a 2fc2ee03d83e5ced +421 534 1756585089359115525 zephyr/zephyr_pre0.elf 5ec7ee3b699364cb +421 534 1756585089359115525 zephyr/zephyr_pre0.map 5ec7ee3b699364cb +421 534 1756585089359115525 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/zephyr_pre0.map 5ec7ee3b699364cb +534 611 1756585089432114591 zephyr/linker.cmd c9debca5cf68bbd8 +534 611 1756585089432114591 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/linker.cmd c9debca5cf68bbd8 +611 946 1756585089759110405 zephyr/isr_tables.c beb1a4c6615b155f +611 946 1756585089759110405 zephyr/isr_tables_vt.ld beb1a4c6615b155f +611 946 1756585089759110405 zephyr/isr_tables_swi.ld beb1a4c6615b155f +611 946 1756585089759110405 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/isr_tables.c beb1a4c6615b155f +611 946 1756585089759110405 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/isr_tables_vt.ld beb1a4c6615b155f +611 946 1756585089759110405 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/isr_tables_swi.ld beb1a4c6615b155f +947 959 1756585089787110047 zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj 124fbf3550f9d2a7 +959 1691 1756585089945108025 zephyr/zephyr.elf f79258f82ff1d2fd +959 1691 1756585089945108025 zephyr/zephyr.map f79258f82ff1d2fd +959 1691 1756585089945108025 zephyr/zephyr.hex f79258f82ff1d2fd +959 1691 1756585089945108025 zephyr/zephyr.bin f79258f82ff1d2fd +959 1691 1756585089945108025 zephyr/zephyr.stat f79258f82ff1d2fd +959 1691 1756585089945108025 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/zephyr.map f79258f82ff1d2fd +959 1691 1756585089945108025 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/zephyr.hex f79258f82ff1d2fd +959 1691 1756585089945108025 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/zephyr.bin f79258f82ff1d2fd +959 1691 1756585089945108025 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/zephyr.stat f79258f82ff1d2fd +6 273 1756585144182411709 CMakeFiles/app.dir/drivers/battery_adc/battery_adc.c.obj 4fa8620e63d14729 +273 302 1756585144218411245 app/libapp.a 2fc2ee03d83e5ced +302 389 1756585144301410177 zephyr/zephyr_pre0.elf 5ec7ee3b699364cb +302 389 1756585144301410177 zephyr/zephyr_pre0.map 5ec7ee3b699364cb +302 389 1756585144301410177 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/zephyr_pre0.map 5ec7ee3b699364cb +390 447 1756585144360409417 zephyr/linker.cmd c9debca5cf68bbd8 +390 447 1756585144360409417 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/linker.cmd c9debca5cf68bbd8 +448 652 1756585144556406894 zephyr/isr_tables.c beb1a4c6615b155f +448 652 1756585144556406894 zephyr/isr_tables_vt.ld beb1a4c6615b155f +448 652 1756585144556406894 zephyr/isr_tables_swi.ld beb1a4c6615b155f +448 652 1756585144556406894 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/isr_tables.c beb1a4c6615b155f +448 652 1756585144556406894 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/isr_tables_vt.ld beb1a4c6615b155f +448 652 1756585144556406894 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/isr_tables_swi.ld beb1a4c6615b155f +652 838 1756585144748404421 zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj 124fbf3550f9d2a7 +839 1331 1756585144873402812 zephyr/zephyr.elf f79258f82ff1d2fd +839 1331 1756585144873402812 zephyr/zephyr.map f79258f82ff1d2fd +839 1331 1756585144873402812 zephyr/zephyr.hex f79258f82ff1d2fd +839 1331 1756585144873402812 zephyr/zephyr.bin f79258f82ff1d2fd +839 1331 1756585144873402812 zephyr/zephyr.stat f79258f82ff1d2fd +839 1331 1756585144873402812 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/zephyr.map f79258f82ff1d2fd +839 1331 1756585144873402812 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/zephyr.hex f79258f82ff1d2fd +839 1331 1756585144873402812 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/zephyr.bin f79258f82ff1d2fd +839 1331 1756585144873402812 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/zephyr.stat f79258f82ff1d2fd +7 559 1756586347954095785 CMakeFiles/app.dir/src/main.c.obj b4a1a8e3eeacdfca +8 583 1756586347977096360 CMakeFiles/app.dir/drivers/timer_count/timer_count.c.obj 8c15c67fe3442314 +583 613 1756586348014097283 app/libapp.a 2fc2ee03d83e5ced +613 700 1756586348096099325 zephyr/zephyr_pre0.elf 5ec7ee3b699364cb +613 700 1756586348096099325 zephyr/zephyr_pre0.map 5ec7ee3b699364cb +613 700 1756586348096099325 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/zephyr_pre0.map 5ec7ee3b699364cb +700 765 1756586348159100894 zephyr/linker.cmd c9debca5cf68bbd8 +700 765 1756586348159100894 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/linker.cmd c9debca5cf68bbd8 +765 994 1756586348383106471 zephyr/isr_tables.c beb1a4c6615b155f +765 994 1756586348383106471 zephyr/isr_tables_vt.ld beb1a4c6615b155f +765 994 1756586348383106471 zephyr/isr_tables_swi.ld beb1a4c6615b155f +765 994 1756586348383106471 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/isr_tables.c beb1a4c6615b155f +765 994 1756586348383106471 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/isr_tables_vt.ld beb1a4c6615b155f +765 994 1756586348383106471 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/isr_tables_swi.ld beb1a4c6615b155f +994 1181 1756586348576111277 zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj 124fbf3550f9d2a7 +1181 1657 1756586348691114140 zephyr/zephyr.elf f79258f82ff1d2fd +1181 1657 1756586348691114140 zephyr/zephyr.map f79258f82ff1d2fd +1181 1657 1756586348691114140 zephyr/zephyr.hex f79258f82ff1d2fd +1181 1657 1756586348691114140 zephyr/zephyr.bin f79258f82ff1d2fd +1181 1657 1756586348691114140 zephyr/zephyr.stat f79258f82ff1d2fd +1181 1657 1756586348691114140 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/zephyr.map f79258f82ff1d2fd +1181 1657 1756586348691114140 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/zephyr.hex f79258f82ff1d2fd +1181 1657 1756586348691114140 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/zephyr.bin f79258f82ff1d2fd +1181 1657 1756586348691114140 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/zephyr.stat f79258f82ff1d2fd +5 547 1756586592545651903 CMakeFiles/app.dir/src/main.c.obj b4a1a8e3eeacdfca +5 550 1756586592547651778 CMakeFiles/app.dir/drivers/timer_count/timer_count.c.obj 8c15c67fe3442314 +550 586 1756586592590649080 app/libapp.a 2fc2ee03d83e5ced +586 675 1756586592676643686 zephyr/zephyr_pre0.elf 5ec7ee3b699364cb +586 675 1756586592676643686 zephyr/zephyr_pre0.map 5ec7ee3b699364cb +586 675 1756586592676643686 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/zephyr_pre0.map 5ec7ee3b699364cb +675 721 1756586592722640801 zephyr/linker.cmd c9debca5cf68bbd8 +675 721 1756586592722640801 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/linker.cmd c9debca5cf68bbd8 +721 931 1756586592923628193 zephyr/isr_tables.c beb1a4c6615b155f +721 931 1756586592923628193 zephyr/isr_tables_vt.ld beb1a4c6615b155f +721 931 1756586592923628193 zephyr/isr_tables_swi.ld beb1a4c6615b155f +721 931 1756586592923628193 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/isr_tables.c beb1a4c6615b155f +721 931 1756586592923628193 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/isr_tables_vt.ld beb1a4c6615b155f +721 931 1756586592923628193 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/isr_tables_swi.ld beb1a4c6615b155f +931 1139 1756586593139614721 zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj 124fbf3550f9d2a7 +1139 1610 1756586593258607323 zephyr/zephyr.elf f79258f82ff1d2fd +1139 1610 1756586593258607323 zephyr/zephyr.map f79258f82ff1d2fd +1139 1610 1756586593258607323 zephyr/zephyr.hex f79258f82ff1d2fd +1139 1610 1756586593258607323 zephyr/zephyr.bin f79258f82ff1d2fd +1139 1610 1756586593258607323 zephyr/zephyr.stat f79258f82ff1d2fd +1139 1610 1756586593258607323 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/zephyr.map f79258f82ff1d2fd +1139 1610 1756586593258607323 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/zephyr.hex f79258f82ff1d2fd +1139 1610 1756586593258607323 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/zephyr.bin f79258f82ff1d2fd +1139 1610 1756586593258607323 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/zephyr.stat f79258f82ff1d2fd +5 539 1756586663208385107 CMakeFiles/app.dir/drivers/timer_count/timer_count.c.obj 8c15c67fe3442314 +540 571 1756586663248383810 app/libapp.a 2fc2ee03d83e5ced +571 648 1756586663321381442 zephyr/zephyr_pre0.elf 5ec7ee3b699364cb +571 648 1756586663321381442 zephyr/zephyr_pre0.map 5ec7ee3b699364cb +571 648 1756586663321381442 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/zephyr_pre0.map 5ec7ee3b699364cb +648 704 1756586663376379658 zephyr/linker.cmd c9debca5cf68bbd8 +648 704 1756586663376379658 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/linker.cmd c9debca5cf68bbd8 +704 920 1756586663585372880 zephyr/isr_tables.c beb1a4c6615b155f +704 920 1756586663585372880 zephyr/isr_tables_vt.ld beb1a4c6615b155f +704 920 1756586663585372880 zephyr/isr_tables_swi.ld beb1a4c6615b155f +704 920 1756586663585372880 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/isr_tables.c beb1a4c6615b155f +704 920 1756586663585372880 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/isr_tables_vt.ld beb1a4c6615b155f +704 920 1756586663585372880 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/isr_tables_swi.ld beb1a4c6615b155f +920 1117 1756586663789366263 zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj 124fbf3550f9d2a7 +1117 1609 1756586663924361884 zephyr/zephyr.elf f79258f82ff1d2fd +1117 1609 1756586663924361884 zephyr/zephyr.map f79258f82ff1d2fd +1117 1609 1756586663924361884 zephyr/zephyr.hex f79258f82ff1d2fd +1117 1609 1756586663924361884 zephyr/zephyr.bin f79258f82ff1d2fd +1117 1609 1756586663924361884 zephyr/zephyr.stat f79258f82ff1d2fd +1117 1609 1756586663924361884 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/zephyr.map f79258f82ff1d2fd +1117 1609 1756586663924361884 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/zephyr.hex f79258f82ff1d2fd +1117 1609 1756586663924361884 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/zephyr.bin f79258f82ff1d2fd +1117 1609 1756586663924361884 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/zephyr.stat f79258f82ff1d2fd +5 524 1756586773736281432 CMakeFiles/app.dir/src/main.c.obj b4a1a8e3eeacdfca +524 549 1756586773766281164 app/libapp.a 2fc2ee03d83e5ced +549 628 1756586773839280511 zephyr/zephyr_pre0.elf 5ec7ee3b699364cb +549 628 1756586773839280511 zephyr/zephyr_pre0.map 5ec7ee3b699364cb +549 628 1756586773839280511 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/zephyr_pre0.map 5ec7ee3b699364cb +629 680 1756586773889280064 zephyr/linker.cmd c9debca5cf68bbd8 +629 680 1756586773889280064 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/linker.cmd c9debca5cf68bbd8 +680 898 1756586774101278182 zephyr/isr_tables.c beb1a4c6615b155f +680 898 1756586774101278182 zephyr/isr_tables_vt.ld beb1a4c6615b155f +680 898 1756586774101278182 zephyr/isr_tables_swi.ld beb1a4c6615b155f +680 898 1756586774101278182 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/isr_tables.c beb1a4c6615b155f +680 898 1756586774101278182 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/isr_tables_vt.ld beb1a4c6615b155f +680 898 1756586774101278182 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/isr_tables_swi.ld beb1a4c6615b155f +898 904 1756586774120278015 zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj 124fbf3550f9d2a7 +904 1379 1756586774232277029 zephyr/zephyr.elf f79258f82ff1d2fd +904 1379 1756586774232277029 zephyr/zephyr.map f79258f82ff1d2fd +904 1379 1756586774232277029 zephyr/zephyr.hex f79258f82ff1d2fd +904 1379 1756586774232277029 zephyr/zephyr.bin f79258f82ff1d2fd +904 1379 1756586774232277029 zephyr/zephyr.stat f79258f82ff1d2fd +904 1379 1756586774232277029 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/zephyr.map f79258f82ff1d2fd +904 1379 1756586774232277029 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/zephyr.hex f79258f82ff1d2fd +904 1379 1756586774232277029 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/zephyr.bin f79258f82ff1d2fd +904 1379 1756586774232277029 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/zephyr.stat f79258f82ff1d2fd +6 540 1756586829421966329 CMakeFiles/app.dir/src/main.c.obj b4a1a8e3eeacdfca +540 560 1756586829449966249 app/libapp.a 2fc2ee03d83e5ced +560 642 1756586829526966031 zephyr/zephyr_pre0.elf 5ec7ee3b699364cb +560 642 1756586829526966031 zephyr/zephyr_pre0.map 5ec7ee3b699364cb +560 642 1756586829526966031 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/zephyr_pre0.map 5ec7ee3b699364cb +642 697 1756586829578965883 zephyr/linker.cmd c9debca5cf68bbd8 +642 697 1756586829578965883 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/linker.cmd c9debca5cf68bbd8 +697 912 1756586829786965292 zephyr/isr_tables.c beb1a4c6615b155f +697 912 1756586829786965292 zephyr/isr_tables_vt.ld beb1a4c6615b155f +697 912 1756586829786965292 zephyr/isr_tables_swi.ld beb1a4c6615b155f +697 912 1756586829786965292 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/isr_tables.c beb1a4c6615b155f +697 912 1756586829786965292 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/isr_tables_vt.ld beb1a4c6615b155f +697 912 1756586829786965292 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/isr_tables_swi.ld beb1a4c6615b155f +912 1098 1756586829983964732 zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj 124fbf3550f9d2a7 +1099 1583 1756586830114964369 zephyr/zephyr.elf f79258f82ff1d2fd +1099 1583 1756586830114964369 zephyr/zephyr.map f79258f82ff1d2fd +1099 1583 1756586830114964369 zephyr/zephyr.hex f79258f82ff1d2fd +1099 1583 1756586830114964369 zephyr/zephyr.bin f79258f82ff1d2fd +1099 1583 1756586830114964369 zephyr/zephyr.stat f79258f82ff1d2fd +1099 1583 1756586830114964369 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/zephyr.map f79258f82ff1d2fd +1099 1583 1756586830114964369 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/zephyr.hex f79258f82ff1d2fd +1099 1583 1756586830114964369 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/zephyr.bin f79258f82ff1d2fd +1099 1583 1756586830114964369 /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/zephyr.stat f79258f82ff1d2fd diff --git a/build/PHF000-Firmware/CMakeCache.tmp b/build/PHF000-Firmware/CMakeCache.tmp new file mode 100644 index 0000000..e4ef950 --- /dev/null +++ b/build/PHF000-Firmware/CMakeCache.tmp @@ -0,0 +1,623 @@ +# This is the CMakeCache file. +# For build in directory: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware +# It was generated by CMake: /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake +# You can edit this file to change values found and used by cmake. +# If you do not want to change any of the values, simply exit the editor. +# If you do want to change a value, simply edit, save, and exit the editor. +# The syntax for the file is as follows: +# KEY:TYPE=VALUE +# KEY is the name of a variable in the cache. +# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!. +# VALUE is the current value for the KEY. + +######################## +# EXTERNAL cache entries +######################## + +//Application Binary Directory +APPLICATION_BINARY_DIR:PATH=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + +//The application configuration folder +APPLICATION_CONFIG_DIR:PATH=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware + +//Application Source Directory +APPLICATION_SOURCE_DIR:PATH=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware + +//Selected board +BOARD:STRING=phf000_board/nrf52833 + +//Main board directory for board (phf000_board) +BOARD_DIR:PATH=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/boards/Mi_labs/phf000_board + +//Support board extensions +BOARD_EXTENSIONS:BOOL=ON + +//Path to a program. +BOSSAC:FILEPATH=BOSSAC-NOTFOUND + +//Kernel binary file +BYPRODUCT_KERNEL_BIN_NAME:FILEPATH=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/zephyr.bin + +//Kernel elf file +BYPRODUCT_KERNEL_ELF_NAME:FILEPATH=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/zephyr.elf + +//Kernel hex file +BYPRODUCT_KERNEL_HEX_NAME:FILEPATH=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/zephyr.hex + +//Selected board +CACHED_BOARD:STRING=phf000_board/nrf52833 + +//Selected shield +CACHED_SHIELD:STRING= + +//Selected snippet +CACHED_SNIPPET:STRING= + +//Path to a program. +CCACHE_FOUND:FILEPATH=/home/miguel/ncs/toolchains/7cbc0036f4/usr/bin/ccache + +//Path to a program. +CCACHE_PROGRAM:FILEPATH=/home/miguel/ncs/toolchains/7cbc0036f4/usr/bin/ccache + +//Path to a program. +CMAKE_ADDR2LINE:FILEPATH=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-addr2line + +//Path to a program. +CMAKE_AR:FILEPATH=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-ar + +//Path to a program. +CMAKE_AS:FILEPATH=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-as + +//ASM compiler +CMAKE_ASM_COMPILER:FILEPATH=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc + +//A wrapper around 'ar' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_ASM_COMPILER_AR:FILEPATH=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc-ar + +//A wrapper around 'ranlib' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_ASM_COMPILER_RANLIB:FILEPATH=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc-ranlib + +//Flags used by the ASM compiler during all build types. +CMAKE_ASM_FLAGS:STRING= + +//Flags used by the ASM compiler during DEBUG builds. +CMAKE_ASM_FLAGS_DEBUG:STRING=-g + +//Flags used by the ASM compiler during MINSIZEREL builds. +CMAKE_ASM_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the ASM compiler during RELEASE builds. +CMAKE_ASM_FLAGS_RELEASE:STRING=-O3 -DNDEBUG + +//Flags used by the ASM compiler during RELWITHDEBINFO builds. +CMAKE_ASM_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//Choose the type of build, options are: None Debug Release RelWithDebInfo +// MinSizeRel ... +CMAKE_BUILD_TYPE:STRING= + +//CXX compiler +CMAKE_CXX_COMPILER:STRING=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-g++ + +//A wrapper around 'ar' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_CXX_COMPILER_AR:FILEPATH=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc-ar + +//A wrapper around 'ranlib' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_CXX_COMPILER_RANLIB:FILEPATH=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc-ranlib + +//Flags used by the CXX compiler during all build types. +CMAKE_CXX_FLAGS:STRING= + +//Flags used by the CXX compiler during DEBUG builds. +CMAKE_CXX_FLAGS_DEBUG:STRING=-g + +//Flags used by the CXX compiler during MINSIZEREL builds. +CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the CXX compiler during RELEASE builds. +CMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -DNDEBUG + +//Flags used by the CXX compiler during RELWITHDEBINFO builds. +CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//Path to a program. +CMAKE_C_COMPILER:FILEPATH=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc + +//A wrapper around 'ar' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_C_COMPILER_AR:FILEPATH=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc-ar + +//A wrapper around 'ranlib' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_C_COMPILER_RANLIB:FILEPATH=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc-ranlib + +//Flags used by the C compiler during all build types. +CMAKE_C_FLAGS:STRING= + +//Flags used by the C compiler during DEBUG builds. +CMAKE_C_FLAGS_DEBUG:STRING=-g + +//Flags used by the C compiler during MINSIZEREL builds. +CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the C compiler during RELEASE builds. +CMAKE_C_FLAGS_RELEASE:STRING=-O3 -DNDEBUG + +//Flags used by the C compiler during RELWITHDEBINFO builds. +CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//Path to a program. +CMAKE_DLLTOOL:FILEPATH=CMAKE_DLLTOOL-NOTFOUND + +//Flags used by the linker during all build types. +CMAKE_EXE_LINKER_FLAGS:STRING= + +//Flags used by the linker during DEBUG builds. +CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during MINSIZEREL builds. +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during RELEASE builds. +CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during RELWITHDEBINFO builds. +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Export CMake compile commands. Used by gen_app_partitions.py +// script +CMAKE_EXPORT_COMPILE_COMMANDS:BOOL=TRUE + +//Path to a program. +CMAKE_GCOV:FILEPATH=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcov + +//Path to a program. +CMAKE_GDB:FILEPATH=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gdb + +//Path to a program. +CMAKE_GDB_NO_PY:FILEPATH=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gdb + +//Install path prefix, prepended onto install directories. +CMAKE_INSTALL_PREFIX:PATH=/usr/local + +//Program used to build from build.ninja files. +CMAKE_MAKE_PROGRAM:FILEPATH=/home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/ninja + +//Flags used by the linker during the creation of modules during +// all build types. +CMAKE_MODULE_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of modules during +// DEBUG builds. +CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of modules during +// MINSIZEREL builds. +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of modules during +// RELEASE builds. +CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of modules during +// RELWITHDEBINFO builds. +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_NM:FILEPATH=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-nm + +//Path to a program. +CMAKE_OBJCOPY:FILEPATH=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objcopy + +//Path to a program. +CMAKE_OBJDUMP:FILEPATH=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump + +//Value Computed by CMake +CMAKE_PROJECT_DESCRIPTION:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_HOMEPAGE_URL:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_NAME:STATIC=PHF000-Firmware + +//Value Computed by CMake +CMAKE_PROJECT_VERSION:STATIC=4.0.99 + +//Value Computed by CMake +CMAKE_PROJECT_VERSION_MAJOR:STATIC=4 + +//Value Computed by CMake +CMAKE_PROJECT_VERSION_MINOR:STATIC=0 + +//Value Computed by CMake +CMAKE_PROJECT_VERSION_PATCH:STATIC=99 + +//Value Computed by CMake +CMAKE_PROJECT_VERSION_TWEAK:STATIC= + +//Path to a program. +CMAKE_RANLIB:FILEPATH=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-ranlib + +//Path to a program. +CMAKE_READELF:FILEPATH=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-readelf + +//Flags used by the linker during the creation of shared libraries +// during all build types. +CMAKE_SHARED_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of shared libraries +// during DEBUG builds. +CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of shared libraries +// during MINSIZEREL builds. +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of shared libraries +// during RELEASE builds. +CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of shared libraries +// during RELWITHDEBINFO builds. +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//If set, runtime paths are not added when installing shared libraries, +// but are added when building. +CMAKE_SKIP_INSTALL_RPATH:BOOL=NO + +//If set, runtime paths are not added when using shared libraries. +CMAKE_SKIP_RPATH:BOOL=NO + +//Flags used by the linker during the creation of static libraries +// during all build types. +CMAKE_STATIC_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of static libraries +// during DEBUG builds. +CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of static libraries +// during MINSIZEREL builds. +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of static libraries +// during RELEASE builds. +CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of static libraries +// during RELWITHDEBINFO builds. +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_STRIP:FILEPATH=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-strip + +//No help, variable specified on the command line. +CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE + +//If desired, you can build the application usingthe configuration +// settings specified in an alternate .conf file using this parameter. +// These settings will override the settings in the application’s +// .config file or its default .conf file.Multiple files may be +// listed, e.g. CONF_FILE="prj1.conf;prj2.conf" The CACHED_CONF_FILE +// is internal Zephyr variable used between CMake runs. To change +// CONF_FILE, use the CONF_FILE variable. +CONF_FILE:STRING=prj.conf + +//Path to a program. +DTC:FILEPATH=/home/miguel/ncs/toolchains/7cbc0036f4/usr/bin/dtc + +//If desired, you can build the application using the DT configuration +// settings specified in an alternate .overlay file using this +// parameter. These settings will override the settings in the +// board's .dts file. Multiple files may be listed, e.g. DTC_OVERLAY_FILE="dts1.overlay +// dts2.overlay" +DTC_OVERLAY_FILE:STRING= + +//No help, variable specified on the command line. +EXTRA_KCONFIG_TARGETS:UNINITIALIZED= + +//No help, variable specified on the command line. +FORCED_CONF_FILE:FILEPATH=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/.config.sysbuild + +//Git command line client +GIT_EXECUTABLE:FILEPATH=/home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/git + +//Linker BFD compatibility (compiler reported) +GNULD_LINKER_IS_BFD:BOOL=ON + +//GNU ld version +GNULD_VERSION_STRING:STRING=2.38 + +//Path to a program. +GPERF:FILEPATH=/home/miguel/ncs/toolchains/7cbc0036f4/usr/bin/gperf + +//Path to a program. +IMGTOOL:FILEPATH=/home/miguel/ncs/v3.0.2/bootloader/mcuboot/scripts/imgtool.py + +//NRFXLIB root directory +NRFXLIB_DIR:PATH=/home/miguel/ncs/v3.0.2/nrfxlib + +//nrfx Directory +NRFX_DIR:PATH=/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx + +//NCS root directory +NRF_DIR:PATH=/home/miguel/ncs/v3.0.2/nrf + +//Path to a program. +OPENOCD:FILEPATH=OPENOCD-NOTFOUND + +//Path to a program. +PAHOLE:FILEPATH=PAHOLE-NOTFOUND + +//Value Computed by CMake +PHF000-Firmware_BINARY_DIR:STATIC=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + +//Value Computed by CMake +PHF000-Firmware_IS_TOP_LEVEL:STATIC=ON + +//Value Computed by CMake +PHF000-Firmware_SOURCE_DIR:STATIC=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware + +//Path to a program. +PTY_INTERFACE:FILEPATH=PTY_INTERFACE-NOTFOUND + +//Path to a program. +PUNCOVER:FILEPATH=PUNCOVER-NOTFOUND + +//Value Computed by CMake +Picolibc_BINARY_DIR:STATIC=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/picolibc + +//Value Computed by CMake +Picolibc_IS_TOP_LEVEL:STATIC=OFF + +//Value Computed by CMake +Picolibc_SOURCE_DIR:STATIC=/home/miguel/ncs/v3.0.2/modules/lib/picolibc + +//Path to a program. +Python3_EXECUTABLE:FILEPATH=/home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/python + +//Path to the SoC directory. +SOC_FULL_DIR:PATH=/home/miguel/ncs/v3.0.2/zephyr/soc/nordic + +//Path to a CMSIS-SVD file +SOC_SVD_FILE:FILEPATH=/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk/nrf52833.svd + +//No help, variable specified on the command line. +SYSBUILD:BOOL=True + +//No help, variable specified on the command line. +SYSBUILD_CACHE:FILEPATH=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware_sysbuild_cache.txt + +//True if toolchain supports newlib +TOOLCHAIN_HAS_NEWLIB:BOOL=ON + +//True if toolchain supports picolibc +TOOLCHAIN_HAS_PICOLIBC:BOOL=ON + +//Zephyr toolchain root +TOOLCHAIN_ROOT:STRING=/home/miguel/ncs/v3.0.2/zephyr + +//Zephyr base +ZEPHYR_BASE:PATH=/home/miguel/ncs/v3.0.2/zephyr + +//Path to Zephyr git repository index file +ZEPHYR_GIT_INDEX:PATH=/home/miguel/ncs/v3.0.2/zephyr/.git/index + +//Value Computed by CMake +Zephyr-Kernel_BINARY_DIR:STATIC=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + +//Value Computed by CMake +Zephyr-Kernel_IS_TOP_LEVEL:STATIC=ON + +//Value Computed by CMake +Zephyr-Kernel_SOURCE_DIR:STATIC=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware + +//The directory containing a CMake configuration file for Zephyr-sdk. +Zephyr-sdk_DIR:PATH=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/cmake + +//The directory containing a CMake configuration file for ZephyrAppConfiguration. +ZephyrAppConfiguration_DIR:PATH=ZephyrAppConfiguration_DIR-NOTFOUND + +//The directory containing a CMake configuration file for ZephyrBuildConfiguration. +ZephyrBuildConfiguration_DIR:PATH=/home/miguel/ncs/v3.0.2/nrf/share/zephyrbuild-package/cmake + +//The directory containing a CMake configuration file for Zephyr. +Zephyr_DIR:PATH=/home/miguel/ncs/v3.0.2/zephyr/share/zephyr-package/cmake + + +######################## +# INTERNAL cache entries +######################## + +//List of board directories for board (phf000_board) +BOARD_DIRECTORIES:INTERNAL=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/boards/Mi_labs/phf000_board +//DT bindings root directories +CACHED_DTS_ROOT_BINDINGS:INTERNAL=/home/miguel/ncs/v3.0.2/nrf/dts/bindings;/home/miguel/ncs/v3.0.2/zephyr/dts/bindings +CLI_CONFIG_SPEED_OPTIMIZATIONS:INTERNAL=y +//ADVANCED property for variable: CMAKE_ADDR2LINE +CMAKE_ADDR2LINE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_AR +CMAKE_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_ASM_COMPILER +CMAKE_ASM_COMPILER-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_ASM_COMPILER_AR +CMAKE_ASM_COMPILER_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_ASM_COMPILER_RANLIB +CMAKE_ASM_COMPILER_RANLIB-ADVANCED:INTERNAL=1 +CMAKE_ASM_COMPILER_WORKS:INTERNAL=1 +//ADVANCED property for variable: CMAKE_ASM_FLAGS +CMAKE_ASM_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_ASM_FLAGS_DEBUG +CMAKE_ASM_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_ASM_FLAGS_MINSIZEREL +CMAKE_ASM_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_ASM_FLAGS_RELEASE +CMAKE_ASM_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_ASM_FLAGS_RELWITHDEBINFO +CMAKE_ASM_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//This is the directory where this CMakeCache.txt was created +CMAKE_CACHEFILE_DIR:INTERNAL=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware +//Major version of cmake used to create the current loaded cache +CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3 +//Minor version of cmake used to create the current loaded cache +CMAKE_CACHE_MINOR_VERSION:INTERNAL=21 +//Patch version of cmake used to create the current loaded cache +CMAKE_CACHE_PATCH_VERSION:INTERNAL=0 +//Path to CMake executable. +CMAKE_COMMAND:INTERNAL=/home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake +//Path to cpack program executable. +CMAKE_CPACK_COMMAND:INTERNAL=/home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cpack +//Path to ctest program executable. +CMAKE_CTEST_COMMAND:INTERNAL=/home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/ctest +//ADVANCED property for variable: CMAKE_CXX_COMPILER +CMAKE_CXX_COMPILER-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_COMPILER_AR +CMAKE_CXX_COMPILER_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_COMPILER_RANLIB +CMAKE_CXX_COMPILER_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS +CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG +CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL +CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE +CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO +CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_COMPILER_AR +CMAKE_C_COMPILER_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_COMPILER_RANLIB +CMAKE_C_COMPILER_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS +CMAKE_C_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG +CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL +CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE +CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO +CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_DLLTOOL +CMAKE_DLLTOOL-ADVANCED:INTERNAL=1 +//Executable file format +CMAKE_EXECUTABLE_FORMAT:INTERNAL=ELF +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS +CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG +CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE +CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//Name of external makefile project generator. +CMAKE_EXTRA_GENERATOR:INTERNAL= +//Name of generator. +CMAKE_GENERATOR:INTERNAL=Ninja +//Generator instance identifier. +CMAKE_GENERATOR_INSTANCE:INTERNAL= +//Name of generator platform. +CMAKE_GENERATOR_PLATFORM:INTERNAL= +//Name of generator toolset. +CMAKE_GENERATOR_TOOLSET:INTERNAL= +//Source directory with the top level CMakeLists.txt file for this +// project +CMAKE_HOME_DIRECTORY:INTERNAL=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware +//ADVANCED property for variable: CMAKE_MAKE_PROGRAM +CMAKE_MAKE_PROGRAM-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS +CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG +CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE +CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_NM +CMAKE_NM-ADVANCED:INTERNAL=1 +//number of local generators +CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=193 +//ADVANCED property for variable: CMAKE_OBJCOPY +CMAKE_OBJCOPY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_OBJDUMP +CMAKE_OBJDUMP-ADVANCED:INTERNAL=1 +//Platform information initialized +CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RANLIB +CMAKE_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_READELF +CMAKE_READELF-ADVANCED:INTERNAL=1 +//Path to CMake installation. +CMAKE_ROOT:INTERNAL=/home/miguel/ncs/toolchains/7cbc0036f4/usr/local/share/cmake-3.21 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS +CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG +CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE +CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH +CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_RPATH +CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS +CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG +CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE +CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STRIP +CMAKE_STRIP-ADVANCED:INTERNAL=1 +//uname command +CMAKE_UNAME:INTERNAL=/usr/bin/uname +//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE +CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 +//The build type +CONF_FILE_BUILD_TYPE:INTERNAL= +//Details about finding Dtc +FIND_PACKAGE_MESSAGE_DETAILS_Dtc:INTERNAL=[/home/miguel/ncs/toolchains/7cbc0036f4/usr/bin/dtc][v1.5.0(1.4.6)] +//Details about finding GnuLd +FIND_PACKAGE_MESSAGE_DETAILS_GnuLd:INTERNAL=[/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi/bin/ld.bfd][v2.38()] +//Details about finding Python3 +FIND_PACKAGE_MESSAGE_DETAILS_Python3:INTERNAL=[/home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/python][cfound components: Interpreter ][v3.12.4(3.10)] +//ADVANCED property for variable: GIT_EXECUTABLE +GIT_EXECUTABLE-ADVANCED:INTERNAL=1 +//Zephyr hardware model version +HWM:INTERNAL=v2 +//Zephyr hardware model +HWMv2:INTERNAL=True +KERNEL_META_PATH:INTERNAL=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/zephyr.meta +//List of SoC directories for SoC (nrf52833) +SOC_DIRECTORIES:INTERNAL=/home/miguel/ncs/v3.0.2/zephyr/soc/nordic +//SoC Linker script +SOC_LINKER_SCRIPT:INTERNAL=/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/arch/arm/cortex_m/scripts/linker.ld +//West +WEST:INTERNAL=/home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/python;-m;west +//shared var +ZEPHYR_BINARY_DIR:INTERNAL=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr +//Cached environment variable ZEPHYR_SDK_INSTALL_DIR +ZEPHYR_SDK_INSTALL_DIR:INTERNAL=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk +//Cached environment variable ZEPHYR_TOOLCHAIN_VARIANT +ZEPHYR_TOOLCHAIN_VARIANT:INTERNAL=zephyr +_Python3_EXECUTABLE:INTERNAL=/home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/python +//Python3 Properties +_Python3_INTERPRETER_PROPERTIES:INTERNAL=Python;3;12;4;64;;cpython-312-x86_64-linux-gnu;/home/miguel/ncs/toolchains/7cbc0036f4/usr/local/lib/python3.12;/home/miguel/ncs/toolchains/7cbc0036f4/usr/local/lib/python3.12;/home/miguel/ncs/toolchains/7cbc0036f4/usr/local/lib/python3.12/site-packages;/home/miguel/ncs/toolchains/7cbc0036f4/usr/local/lib/python3.12/site-packages +_Python3_INTERPRETER_SIGNATURE:INTERNAL=d749fd7d897dd04991111043581ff852 + diff --git a/build/PHF000-Firmware/CMakeCache.txt b/build/PHF000-Firmware/CMakeCache.txt new file mode 100644 index 0000000..e4ef950 --- /dev/null +++ b/build/PHF000-Firmware/CMakeCache.txt @@ -0,0 +1,623 @@ +# This is the CMakeCache file. +# For build in directory: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware +# It was generated by CMake: /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake +# You can edit this file to change values found and used by cmake. +# If you do not want to change any of the values, simply exit the editor. +# If you do want to change a value, simply edit, save, and exit the editor. +# The syntax for the file is as follows: +# KEY:TYPE=VALUE +# KEY is the name of a variable in the cache. +# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!. +# VALUE is the current value for the KEY. + +######################## +# EXTERNAL cache entries +######################## + +//Application Binary Directory +APPLICATION_BINARY_DIR:PATH=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + +//The application configuration folder +APPLICATION_CONFIG_DIR:PATH=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware + +//Application Source Directory +APPLICATION_SOURCE_DIR:PATH=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware + +//Selected board +BOARD:STRING=phf000_board/nrf52833 + +//Main board directory for board (phf000_board) +BOARD_DIR:PATH=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/boards/Mi_labs/phf000_board + +//Support board extensions +BOARD_EXTENSIONS:BOOL=ON + +//Path to a program. +BOSSAC:FILEPATH=BOSSAC-NOTFOUND + +//Kernel binary file +BYPRODUCT_KERNEL_BIN_NAME:FILEPATH=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/zephyr.bin + +//Kernel elf file +BYPRODUCT_KERNEL_ELF_NAME:FILEPATH=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/zephyr.elf + +//Kernel hex file +BYPRODUCT_KERNEL_HEX_NAME:FILEPATH=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/zephyr.hex + +//Selected board +CACHED_BOARD:STRING=phf000_board/nrf52833 + +//Selected shield +CACHED_SHIELD:STRING= + +//Selected snippet +CACHED_SNIPPET:STRING= + +//Path to a program. +CCACHE_FOUND:FILEPATH=/home/miguel/ncs/toolchains/7cbc0036f4/usr/bin/ccache + +//Path to a program. +CCACHE_PROGRAM:FILEPATH=/home/miguel/ncs/toolchains/7cbc0036f4/usr/bin/ccache + +//Path to a program. +CMAKE_ADDR2LINE:FILEPATH=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-addr2line + +//Path to a program. +CMAKE_AR:FILEPATH=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-ar + +//Path to a program. +CMAKE_AS:FILEPATH=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-as + +//ASM compiler +CMAKE_ASM_COMPILER:FILEPATH=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc + +//A wrapper around 'ar' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_ASM_COMPILER_AR:FILEPATH=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc-ar + +//A wrapper around 'ranlib' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_ASM_COMPILER_RANLIB:FILEPATH=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc-ranlib + +//Flags used by the ASM compiler during all build types. +CMAKE_ASM_FLAGS:STRING= + +//Flags used by the ASM compiler during DEBUG builds. +CMAKE_ASM_FLAGS_DEBUG:STRING=-g + +//Flags used by the ASM compiler during MINSIZEREL builds. +CMAKE_ASM_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the ASM compiler during RELEASE builds. +CMAKE_ASM_FLAGS_RELEASE:STRING=-O3 -DNDEBUG + +//Flags used by the ASM compiler during RELWITHDEBINFO builds. +CMAKE_ASM_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//Choose the type of build, options are: None Debug Release RelWithDebInfo +// MinSizeRel ... +CMAKE_BUILD_TYPE:STRING= + +//CXX compiler +CMAKE_CXX_COMPILER:STRING=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-g++ + +//A wrapper around 'ar' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_CXX_COMPILER_AR:FILEPATH=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc-ar + +//A wrapper around 'ranlib' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_CXX_COMPILER_RANLIB:FILEPATH=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc-ranlib + +//Flags used by the CXX compiler during all build types. +CMAKE_CXX_FLAGS:STRING= + +//Flags used by the CXX compiler during DEBUG builds. +CMAKE_CXX_FLAGS_DEBUG:STRING=-g + +//Flags used by the CXX compiler during MINSIZEREL builds. +CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the CXX compiler during RELEASE builds. +CMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -DNDEBUG + +//Flags used by the CXX compiler during RELWITHDEBINFO builds. +CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//Path to a program. +CMAKE_C_COMPILER:FILEPATH=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc + +//A wrapper around 'ar' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_C_COMPILER_AR:FILEPATH=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc-ar + +//A wrapper around 'ranlib' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_C_COMPILER_RANLIB:FILEPATH=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc-ranlib + +//Flags used by the C compiler during all build types. +CMAKE_C_FLAGS:STRING= + +//Flags used by the C compiler during DEBUG builds. +CMAKE_C_FLAGS_DEBUG:STRING=-g + +//Flags used by the C compiler during MINSIZEREL builds. +CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the C compiler during RELEASE builds. +CMAKE_C_FLAGS_RELEASE:STRING=-O3 -DNDEBUG + +//Flags used by the C compiler during RELWITHDEBINFO builds. +CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//Path to a program. +CMAKE_DLLTOOL:FILEPATH=CMAKE_DLLTOOL-NOTFOUND + +//Flags used by the linker during all build types. +CMAKE_EXE_LINKER_FLAGS:STRING= + +//Flags used by the linker during DEBUG builds. +CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during MINSIZEREL builds. +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during RELEASE builds. +CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during RELWITHDEBINFO builds. +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Export CMake compile commands. Used by gen_app_partitions.py +// script +CMAKE_EXPORT_COMPILE_COMMANDS:BOOL=TRUE + +//Path to a program. +CMAKE_GCOV:FILEPATH=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcov + +//Path to a program. +CMAKE_GDB:FILEPATH=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gdb + +//Path to a program. +CMAKE_GDB_NO_PY:FILEPATH=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gdb + +//Install path prefix, prepended onto install directories. +CMAKE_INSTALL_PREFIX:PATH=/usr/local + +//Program used to build from build.ninja files. +CMAKE_MAKE_PROGRAM:FILEPATH=/home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/ninja + +//Flags used by the linker during the creation of modules during +// all build types. +CMAKE_MODULE_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of modules during +// DEBUG builds. +CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of modules during +// MINSIZEREL builds. +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of modules during +// RELEASE builds. +CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of modules during +// RELWITHDEBINFO builds. +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_NM:FILEPATH=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-nm + +//Path to a program. +CMAKE_OBJCOPY:FILEPATH=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objcopy + +//Path to a program. +CMAKE_OBJDUMP:FILEPATH=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump + +//Value Computed by CMake +CMAKE_PROJECT_DESCRIPTION:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_HOMEPAGE_URL:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_NAME:STATIC=PHF000-Firmware + +//Value Computed by CMake +CMAKE_PROJECT_VERSION:STATIC=4.0.99 + +//Value Computed by CMake +CMAKE_PROJECT_VERSION_MAJOR:STATIC=4 + +//Value Computed by CMake +CMAKE_PROJECT_VERSION_MINOR:STATIC=0 + +//Value Computed by CMake +CMAKE_PROJECT_VERSION_PATCH:STATIC=99 + +//Value Computed by CMake +CMAKE_PROJECT_VERSION_TWEAK:STATIC= + +//Path to a program. +CMAKE_RANLIB:FILEPATH=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-ranlib + +//Path to a program. +CMAKE_READELF:FILEPATH=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-readelf + +//Flags used by the linker during the creation of shared libraries +// during all build types. +CMAKE_SHARED_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of shared libraries +// during DEBUG builds. +CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of shared libraries +// during MINSIZEREL builds. +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of shared libraries +// during RELEASE builds. +CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of shared libraries +// during RELWITHDEBINFO builds. +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//If set, runtime paths are not added when installing shared libraries, +// but are added when building. +CMAKE_SKIP_INSTALL_RPATH:BOOL=NO + +//If set, runtime paths are not added when using shared libraries. +CMAKE_SKIP_RPATH:BOOL=NO + +//Flags used by the linker during the creation of static libraries +// during all build types. +CMAKE_STATIC_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of static libraries +// during DEBUG builds. +CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of static libraries +// during MINSIZEREL builds. +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of static libraries +// during RELEASE builds. +CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of static libraries +// during RELWITHDEBINFO builds. +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_STRIP:FILEPATH=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-strip + +//No help, variable specified on the command line. +CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE + +//If desired, you can build the application usingthe configuration +// settings specified in an alternate .conf file using this parameter. +// These settings will override the settings in the application’s +// .config file or its default .conf file.Multiple files may be +// listed, e.g. CONF_FILE="prj1.conf;prj2.conf" The CACHED_CONF_FILE +// is internal Zephyr variable used between CMake runs. To change +// CONF_FILE, use the CONF_FILE variable. +CONF_FILE:STRING=prj.conf + +//Path to a program. +DTC:FILEPATH=/home/miguel/ncs/toolchains/7cbc0036f4/usr/bin/dtc + +//If desired, you can build the application using the DT configuration +// settings specified in an alternate .overlay file using this +// parameter. These settings will override the settings in the +// board's .dts file. Multiple files may be listed, e.g. DTC_OVERLAY_FILE="dts1.overlay +// dts2.overlay" +DTC_OVERLAY_FILE:STRING= + +//No help, variable specified on the command line. +EXTRA_KCONFIG_TARGETS:UNINITIALIZED= + +//No help, variable specified on the command line. +FORCED_CONF_FILE:FILEPATH=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/.config.sysbuild + +//Git command line client +GIT_EXECUTABLE:FILEPATH=/home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/git + +//Linker BFD compatibility (compiler reported) +GNULD_LINKER_IS_BFD:BOOL=ON + +//GNU ld version +GNULD_VERSION_STRING:STRING=2.38 + +//Path to a program. +GPERF:FILEPATH=/home/miguel/ncs/toolchains/7cbc0036f4/usr/bin/gperf + +//Path to a program. +IMGTOOL:FILEPATH=/home/miguel/ncs/v3.0.2/bootloader/mcuboot/scripts/imgtool.py + +//NRFXLIB root directory +NRFXLIB_DIR:PATH=/home/miguel/ncs/v3.0.2/nrfxlib + +//nrfx Directory +NRFX_DIR:PATH=/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx + +//NCS root directory +NRF_DIR:PATH=/home/miguel/ncs/v3.0.2/nrf + +//Path to a program. +OPENOCD:FILEPATH=OPENOCD-NOTFOUND + +//Path to a program. +PAHOLE:FILEPATH=PAHOLE-NOTFOUND + +//Value Computed by CMake +PHF000-Firmware_BINARY_DIR:STATIC=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + +//Value Computed by CMake +PHF000-Firmware_IS_TOP_LEVEL:STATIC=ON + +//Value Computed by CMake +PHF000-Firmware_SOURCE_DIR:STATIC=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware + +//Path to a program. +PTY_INTERFACE:FILEPATH=PTY_INTERFACE-NOTFOUND + +//Path to a program. +PUNCOVER:FILEPATH=PUNCOVER-NOTFOUND + +//Value Computed by CMake +Picolibc_BINARY_DIR:STATIC=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/picolibc + +//Value Computed by CMake +Picolibc_IS_TOP_LEVEL:STATIC=OFF + +//Value Computed by CMake +Picolibc_SOURCE_DIR:STATIC=/home/miguel/ncs/v3.0.2/modules/lib/picolibc + +//Path to a program. +Python3_EXECUTABLE:FILEPATH=/home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/python + +//Path to the SoC directory. +SOC_FULL_DIR:PATH=/home/miguel/ncs/v3.0.2/zephyr/soc/nordic + +//Path to a CMSIS-SVD file +SOC_SVD_FILE:FILEPATH=/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk/nrf52833.svd + +//No help, variable specified on the command line. +SYSBUILD:BOOL=True + +//No help, variable specified on the command line. +SYSBUILD_CACHE:FILEPATH=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware_sysbuild_cache.txt + +//True if toolchain supports newlib +TOOLCHAIN_HAS_NEWLIB:BOOL=ON + +//True if toolchain supports picolibc +TOOLCHAIN_HAS_PICOLIBC:BOOL=ON + +//Zephyr toolchain root +TOOLCHAIN_ROOT:STRING=/home/miguel/ncs/v3.0.2/zephyr + +//Zephyr base +ZEPHYR_BASE:PATH=/home/miguel/ncs/v3.0.2/zephyr + +//Path to Zephyr git repository index file +ZEPHYR_GIT_INDEX:PATH=/home/miguel/ncs/v3.0.2/zephyr/.git/index + +//Value Computed by CMake +Zephyr-Kernel_BINARY_DIR:STATIC=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + +//Value Computed by CMake +Zephyr-Kernel_IS_TOP_LEVEL:STATIC=ON + +//Value Computed by CMake +Zephyr-Kernel_SOURCE_DIR:STATIC=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware + +//The directory containing a CMake configuration file for Zephyr-sdk. +Zephyr-sdk_DIR:PATH=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/cmake + +//The directory containing a CMake configuration file for ZephyrAppConfiguration. +ZephyrAppConfiguration_DIR:PATH=ZephyrAppConfiguration_DIR-NOTFOUND + +//The directory containing a CMake configuration file for ZephyrBuildConfiguration. +ZephyrBuildConfiguration_DIR:PATH=/home/miguel/ncs/v3.0.2/nrf/share/zephyrbuild-package/cmake + +//The directory containing a CMake configuration file for Zephyr. +Zephyr_DIR:PATH=/home/miguel/ncs/v3.0.2/zephyr/share/zephyr-package/cmake + + +######################## +# INTERNAL cache entries +######################## + +//List of board directories for board (phf000_board) +BOARD_DIRECTORIES:INTERNAL=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/boards/Mi_labs/phf000_board +//DT bindings root directories +CACHED_DTS_ROOT_BINDINGS:INTERNAL=/home/miguel/ncs/v3.0.2/nrf/dts/bindings;/home/miguel/ncs/v3.0.2/zephyr/dts/bindings +CLI_CONFIG_SPEED_OPTIMIZATIONS:INTERNAL=y +//ADVANCED property for variable: CMAKE_ADDR2LINE +CMAKE_ADDR2LINE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_AR +CMAKE_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_ASM_COMPILER +CMAKE_ASM_COMPILER-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_ASM_COMPILER_AR +CMAKE_ASM_COMPILER_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_ASM_COMPILER_RANLIB +CMAKE_ASM_COMPILER_RANLIB-ADVANCED:INTERNAL=1 +CMAKE_ASM_COMPILER_WORKS:INTERNAL=1 +//ADVANCED property for variable: CMAKE_ASM_FLAGS +CMAKE_ASM_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_ASM_FLAGS_DEBUG +CMAKE_ASM_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_ASM_FLAGS_MINSIZEREL +CMAKE_ASM_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_ASM_FLAGS_RELEASE +CMAKE_ASM_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_ASM_FLAGS_RELWITHDEBINFO +CMAKE_ASM_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//This is the directory where this CMakeCache.txt was created +CMAKE_CACHEFILE_DIR:INTERNAL=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware +//Major version of cmake used to create the current loaded cache +CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3 +//Minor version of cmake used to create the current loaded cache +CMAKE_CACHE_MINOR_VERSION:INTERNAL=21 +//Patch version of cmake used to create the current loaded cache +CMAKE_CACHE_PATCH_VERSION:INTERNAL=0 +//Path to CMake executable. +CMAKE_COMMAND:INTERNAL=/home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake +//Path to cpack program executable. +CMAKE_CPACK_COMMAND:INTERNAL=/home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cpack +//Path to ctest program executable. +CMAKE_CTEST_COMMAND:INTERNAL=/home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/ctest +//ADVANCED property for variable: CMAKE_CXX_COMPILER +CMAKE_CXX_COMPILER-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_COMPILER_AR +CMAKE_CXX_COMPILER_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_COMPILER_RANLIB +CMAKE_CXX_COMPILER_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS +CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG +CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL +CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE +CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO +CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_COMPILER_AR +CMAKE_C_COMPILER_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_COMPILER_RANLIB +CMAKE_C_COMPILER_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS +CMAKE_C_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG +CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL +CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE +CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO +CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_DLLTOOL +CMAKE_DLLTOOL-ADVANCED:INTERNAL=1 +//Executable file format +CMAKE_EXECUTABLE_FORMAT:INTERNAL=ELF +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS +CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG +CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE +CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//Name of external makefile project generator. +CMAKE_EXTRA_GENERATOR:INTERNAL= +//Name of generator. +CMAKE_GENERATOR:INTERNAL=Ninja +//Generator instance identifier. +CMAKE_GENERATOR_INSTANCE:INTERNAL= +//Name of generator platform. +CMAKE_GENERATOR_PLATFORM:INTERNAL= +//Name of generator toolset. +CMAKE_GENERATOR_TOOLSET:INTERNAL= +//Source directory with the top level CMakeLists.txt file for this +// project +CMAKE_HOME_DIRECTORY:INTERNAL=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware +//ADVANCED property for variable: CMAKE_MAKE_PROGRAM +CMAKE_MAKE_PROGRAM-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS +CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG +CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE +CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_NM +CMAKE_NM-ADVANCED:INTERNAL=1 +//number of local generators +CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=193 +//ADVANCED property for variable: CMAKE_OBJCOPY +CMAKE_OBJCOPY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_OBJDUMP +CMAKE_OBJDUMP-ADVANCED:INTERNAL=1 +//Platform information initialized +CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RANLIB +CMAKE_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_READELF +CMAKE_READELF-ADVANCED:INTERNAL=1 +//Path to CMake installation. +CMAKE_ROOT:INTERNAL=/home/miguel/ncs/toolchains/7cbc0036f4/usr/local/share/cmake-3.21 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS +CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG +CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE +CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH +CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_RPATH +CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS +CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG +CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE +CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STRIP +CMAKE_STRIP-ADVANCED:INTERNAL=1 +//uname command +CMAKE_UNAME:INTERNAL=/usr/bin/uname +//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE +CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 +//The build type +CONF_FILE_BUILD_TYPE:INTERNAL= +//Details about finding Dtc +FIND_PACKAGE_MESSAGE_DETAILS_Dtc:INTERNAL=[/home/miguel/ncs/toolchains/7cbc0036f4/usr/bin/dtc][v1.5.0(1.4.6)] +//Details about finding GnuLd +FIND_PACKAGE_MESSAGE_DETAILS_GnuLd:INTERNAL=[/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi/bin/ld.bfd][v2.38()] +//Details about finding Python3 +FIND_PACKAGE_MESSAGE_DETAILS_Python3:INTERNAL=[/home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/python][cfound components: Interpreter ][v3.12.4(3.10)] +//ADVANCED property for variable: GIT_EXECUTABLE +GIT_EXECUTABLE-ADVANCED:INTERNAL=1 +//Zephyr hardware model version +HWM:INTERNAL=v2 +//Zephyr hardware model +HWMv2:INTERNAL=True +KERNEL_META_PATH:INTERNAL=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/zephyr.meta +//List of SoC directories for SoC (nrf52833) +SOC_DIRECTORIES:INTERNAL=/home/miguel/ncs/v3.0.2/zephyr/soc/nordic +//SoC Linker script +SOC_LINKER_SCRIPT:INTERNAL=/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/arch/arm/cortex_m/scripts/linker.ld +//West +WEST:INTERNAL=/home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/python;-m;west +//shared var +ZEPHYR_BINARY_DIR:INTERNAL=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr +//Cached environment variable ZEPHYR_SDK_INSTALL_DIR +ZEPHYR_SDK_INSTALL_DIR:INTERNAL=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk +//Cached environment variable ZEPHYR_TOOLCHAIN_VARIANT +ZEPHYR_TOOLCHAIN_VARIANT:INTERNAL=zephyr +_Python3_EXECUTABLE:INTERNAL=/home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/python +//Python3 Properties +_Python3_INTERPRETER_PROPERTIES:INTERNAL=Python;3;12;4;64;;cpython-312-x86_64-linux-gnu;/home/miguel/ncs/toolchains/7cbc0036f4/usr/local/lib/python3.12;/home/miguel/ncs/toolchains/7cbc0036f4/usr/local/lib/python3.12;/home/miguel/ncs/toolchains/7cbc0036f4/usr/local/lib/python3.12/site-packages;/home/miguel/ncs/toolchains/7cbc0036f4/usr/local/lib/python3.12/site-packages +_Python3_INTERPRETER_SIGNATURE:INTERNAL=d749fd7d897dd04991111043581ff852 + diff --git a/build/PHF000-Firmware/CMakeCache.txt.tmp b/build/PHF000-Firmware/CMakeCache.txt.tmp new file mode 100644 index 0000000..e4ef950 --- /dev/null +++ b/build/PHF000-Firmware/CMakeCache.txt.tmp @@ -0,0 +1,623 @@ +# This is the CMakeCache file. +# For build in directory: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware +# It was generated by CMake: /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake +# You can edit this file to change values found and used by cmake. +# If you do not want to change any of the values, simply exit the editor. +# If you do want to change a value, simply edit, save, and exit the editor. +# The syntax for the file is as follows: +# KEY:TYPE=VALUE +# KEY is the name of a variable in the cache. +# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!. +# VALUE is the current value for the KEY. + +######################## +# EXTERNAL cache entries +######################## + +//Application Binary Directory +APPLICATION_BINARY_DIR:PATH=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + +//The application configuration folder +APPLICATION_CONFIG_DIR:PATH=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware + +//Application Source Directory +APPLICATION_SOURCE_DIR:PATH=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware + +//Selected board +BOARD:STRING=phf000_board/nrf52833 + +//Main board directory for board (phf000_board) +BOARD_DIR:PATH=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/boards/Mi_labs/phf000_board + +//Support board extensions +BOARD_EXTENSIONS:BOOL=ON + +//Path to a program. +BOSSAC:FILEPATH=BOSSAC-NOTFOUND + +//Kernel binary file +BYPRODUCT_KERNEL_BIN_NAME:FILEPATH=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/zephyr.bin + +//Kernel elf file +BYPRODUCT_KERNEL_ELF_NAME:FILEPATH=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/zephyr.elf + +//Kernel hex file +BYPRODUCT_KERNEL_HEX_NAME:FILEPATH=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/zephyr.hex + +//Selected board +CACHED_BOARD:STRING=phf000_board/nrf52833 + +//Selected shield +CACHED_SHIELD:STRING= + +//Selected snippet +CACHED_SNIPPET:STRING= + +//Path to a program. +CCACHE_FOUND:FILEPATH=/home/miguel/ncs/toolchains/7cbc0036f4/usr/bin/ccache + +//Path to a program. +CCACHE_PROGRAM:FILEPATH=/home/miguel/ncs/toolchains/7cbc0036f4/usr/bin/ccache + +//Path to a program. +CMAKE_ADDR2LINE:FILEPATH=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-addr2line + +//Path to a program. +CMAKE_AR:FILEPATH=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-ar + +//Path to a program. +CMAKE_AS:FILEPATH=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-as + +//ASM compiler +CMAKE_ASM_COMPILER:FILEPATH=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc + +//A wrapper around 'ar' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_ASM_COMPILER_AR:FILEPATH=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc-ar + +//A wrapper around 'ranlib' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_ASM_COMPILER_RANLIB:FILEPATH=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc-ranlib + +//Flags used by the ASM compiler during all build types. +CMAKE_ASM_FLAGS:STRING= + +//Flags used by the ASM compiler during DEBUG builds. +CMAKE_ASM_FLAGS_DEBUG:STRING=-g + +//Flags used by the ASM compiler during MINSIZEREL builds. +CMAKE_ASM_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the ASM compiler during RELEASE builds. +CMAKE_ASM_FLAGS_RELEASE:STRING=-O3 -DNDEBUG + +//Flags used by the ASM compiler during RELWITHDEBINFO builds. +CMAKE_ASM_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//Choose the type of build, options are: None Debug Release RelWithDebInfo +// MinSizeRel ... +CMAKE_BUILD_TYPE:STRING= + +//CXX compiler +CMAKE_CXX_COMPILER:STRING=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-g++ + +//A wrapper around 'ar' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_CXX_COMPILER_AR:FILEPATH=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc-ar + +//A wrapper around 'ranlib' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_CXX_COMPILER_RANLIB:FILEPATH=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc-ranlib + +//Flags used by the CXX compiler during all build types. +CMAKE_CXX_FLAGS:STRING= + +//Flags used by the CXX compiler during DEBUG builds. +CMAKE_CXX_FLAGS_DEBUG:STRING=-g + +//Flags used by the CXX compiler during MINSIZEREL builds. +CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the CXX compiler during RELEASE builds. +CMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -DNDEBUG + +//Flags used by the CXX compiler during RELWITHDEBINFO builds. +CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//Path to a program. +CMAKE_C_COMPILER:FILEPATH=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc + +//A wrapper around 'ar' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_C_COMPILER_AR:FILEPATH=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc-ar + +//A wrapper around 'ranlib' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_C_COMPILER_RANLIB:FILEPATH=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc-ranlib + +//Flags used by the C compiler during all build types. +CMAKE_C_FLAGS:STRING= + +//Flags used by the C compiler during DEBUG builds. +CMAKE_C_FLAGS_DEBUG:STRING=-g + +//Flags used by the C compiler during MINSIZEREL builds. +CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the C compiler during RELEASE builds. +CMAKE_C_FLAGS_RELEASE:STRING=-O3 -DNDEBUG + +//Flags used by the C compiler during RELWITHDEBINFO builds. +CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//Path to a program. +CMAKE_DLLTOOL:FILEPATH=CMAKE_DLLTOOL-NOTFOUND + +//Flags used by the linker during all build types. +CMAKE_EXE_LINKER_FLAGS:STRING= + +//Flags used by the linker during DEBUG builds. +CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during MINSIZEREL builds. +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during RELEASE builds. +CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during RELWITHDEBINFO builds. +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Export CMake compile commands. Used by gen_app_partitions.py +// script +CMAKE_EXPORT_COMPILE_COMMANDS:BOOL=TRUE + +//Path to a program. +CMAKE_GCOV:FILEPATH=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcov + +//Path to a program. +CMAKE_GDB:FILEPATH=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gdb + +//Path to a program. +CMAKE_GDB_NO_PY:FILEPATH=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gdb + +//Install path prefix, prepended onto install directories. +CMAKE_INSTALL_PREFIX:PATH=/usr/local + +//Program used to build from build.ninja files. +CMAKE_MAKE_PROGRAM:FILEPATH=/home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/ninja + +//Flags used by the linker during the creation of modules during +// all build types. +CMAKE_MODULE_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of modules during +// DEBUG builds. +CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of modules during +// MINSIZEREL builds. +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of modules during +// RELEASE builds. +CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of modules during +// RELWITHDEBINFO builds. +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_NM:FILEPATH=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-nm + +//Path to a program. +CMAKE_OBJCOPY:FILEPATH=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objcopy + +//Path to a program. +CMAKE_OBJDUMP:FILEPATH=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump + +//Value Computed by CMake +CMAKE_PROJECT_DESCRIPTION:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_HOMEPAGE_URL:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_NAME:STATIC=PHF000-Firmware + +//Value Computed by CMake +CMAKE_PROJECT_VERSION:STATIC=4.0.99 + +//Value Computed by CMake +CMAKE_PROJECT_VERSION_MAJOR:STATIC=4 + +//Value Computed by CMake +CMAKE_PROJECT_VERSION_MINOR:STATIC=0 + +//Value Computed by CMake +CMAKE_PROJECT_VERSION_PATCH:STATIC=99 + +//Value Computed by CMake +CMAKE_PROJECT_VERSION_TWEAK:STATIC= + +//Path to a program. +CMAKE_RANLIB:FILEPATH=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-ranlib + +//Path to a program. +CMAKE_READELF:FILEPATH=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-readelf + +//Flags used by the linker during the creation of shared libraries +// during all build types. +CMAKE_SHARED_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of shared libraries +// during DEBUG builds. +CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of shared libraries +// during MINSIZEREL builds. +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of shared libraries +// during RELEASE builds. +CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of shared libraries +// during RELWITHDEBINFO builds. +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//If set, runtime paths are not added when installing shared libraries, +// but are added when building. +CMAKE_SKIP_INSTALL_RPATH:BOOL=NO + +//If set, runtime paths are not added when using shared libraries. +CMAKE_SKIP_RPATH:BOOL=NO + +//Flags used by the linker during the creation of static libraries +// during all build types. +CMAKE_STATIC_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of static libraries +// during DEBUG builds. +CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of static libraries +// during MINSIZEREL builds. +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of static libraries +// during RELEASE builds. +CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of static libraries +// during RELWITHDEBINFO builds. +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_STRIP:FILEPATH=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-strip + +//No help, variable specified on the command line. +CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE + +//If desired, you can build the application usingthe configuration +// settings specified in an alternate .conf file using this parameter. +// These settings will override the settings in the application’s +// .config file or its default .conf file.Multiple files may be +// listed, e.g. CONF_FILE="prj1.conf;prj2.conf" The CACHED_CONF_FILE +// is internal Zephyr variable used between CMake runs. To change +// CONF_FILE, use the CONF_FILE variable. +CONF_FILE:STRING=prj.conf + +//Path to a program. +DTC:FILEPATH=/home/miguel/ncs/toolchains/7cbc0036f4/usr/bin/dtc + +//If desired, you can build the application using the DT configuration +// settings specified in an alternate .overlay file using this +// parameter. These settings will override the settings in the +// board's .dts file. Multiple files may be listed, e.g. DTC_OVERLAY_FILE="dts1.overlay +// dts2.overlay" +DTC_OVERLAY_FILE:STRING= + +//No help, variable specified on the command line. +EXTRA_KCONFIG_TARGETS:UNINITIALIZED= + +//No help, variable specified on the command line. +FORCED_CONF_FILE:FILEPATH=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/.config.sysbuild + +//Git command line client +GIT_EXECUTABLE:FILEPATH=/home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/git + +//Linker BFD compatibility (compiler reported) +GNULD_LINKER_IS_BFD:BOOL=ON + +//GNU ld version +GNULD_VERSION_STRING:STRING=2.38 + +//Path to a program. +GPERF:FILEPATH=/home/miguel/ncs/toolchains/7cbc0036f4/usr/bin/gperf + +//Path to a program. +IMGTOOL:FILEPATH=/home/miguel/ncs/v3.0.2/bootloader/mcuboot/scripts/imgtool.py + +//NRFXLIB root directory +NRFXLIB_DIR:PATH=/home/miguel/ncs/v3.0.2/nrfxlib + +//nrfx Directory +NRFX_DIR:PATH=/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx + +//NCS root directory +NRF_DIR:PATH=/home/miguel/ncs/v3.0.2/nrf + +//Path to a program. +OPENOCD:FILEPATH=OPENOCD-NOTFOUND + +//Path to a program. +PAHOLE:FILEPATH=PAHOLE-NOTFOUND + +//Value Computed by CMake +PHF000-Firmware_BINARY_DIR:STATIC=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + +//Value Computed by CMake +PHF000-Firmware_IS_TOP_LEVEL:STATIC=ON + +//Value Computed by CMake +PHF000-Firmware_SOURCE_DIR:STATIC=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware + +//Path to a program. +PTY_INTERFACE:FILEPATH=PTY_INTERFACE-NOTFOUND + +//Path to a program. +PUNCOVER:FILEPATH=PUNCOVER-NOTFOUND + +//Value Computed by CMake +Picolibc_BINARY_DIR:STATIC=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/picolibc + +//Value Computed by CMake +Picolibc_IS_TOP_LEVEL:STATIC=OFF + +//Value Computed by CMake +Picolibc_SOURCE_DIR:STATIC=/home/miguel/ncs/v3.0.2/modules/lib/picolibc + +//Path to a program. +Python3_EXECUTABLE:FILEPATH=/home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/python + +//Path to the SoC directory. +SOC_FULL_DIR:PATH=/home/miguel/ncs/v3.0.2/zephyr/soc/nordic + +//Path to a CMSIS-SVD file +SOC_SVD_FILE:FILEPATH=/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk/nrf52833.svd + +//No help, variable specified on the command line. +SYSBUILD:BOOL=True + +//No help, variable specified on the command line. +SYSBUILD_CACHE:FILEPATH=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware_sysbuild_cache.txt + +//True if toolchain supports newlib +TOOLCHAIN_HAS_NEWLIB:BOOL=ON + +//True if toolchain supports picolibc +TOOLCHAIN_HAS_PICOLIBC:BOOL=ON + +//Zephyr toolchain root +TOOLCHAIN_ROOT:STRING=/home/miguel/ncs/v3.0.2/zephyr + +//Zephyr base +ZEPHYR_BASE:PATH=/home/miguel/ncs/v3.0.2/zephyr + +//Path to Zephyr git repository index file +ZEPHYR_GIT_INDEX:PATH=/home/miguel/ncs/v3.0.2/zephyr/.git/index + +//Value Computed by CMake +Zephyr-Kernel_BINARY_DIR:STATIC=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + +//Value Computed by CMake +Zephyr-Kernel_IS_TOP_LEVEL:STATIC=ON + +//Value Computed by CMake +Zephyr-Kernel_SOURCE_DIR:STATIC=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware + +//The directory containing a CMake configuration file for Zephyr-sdk. +Zephyr-sdk_DIR:PATH=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/cmake + +//The directory containing a CMake configuration file for ZephyrAppConfiguration. +ZephyrAppConfiguration_DIR:PATH=ZephyrAppConfiguration_DIR-NOTFOUND + +//The directory containing a CMake configuration file for ZephyrBuildConfiguration. +ZephyrBuildConfiguration_DIR:PATH=/home/miguel/ncs/v3.0.2/nrf/share/zephyrbuild-package/cmake + +//The directory containing a CMake configuration file for Zephyr. +Zephyr_DIR:PATH=/home/miguel/ncs/v3.0.2/zephyr/share/zephyr-package/cmake + + +######################## +# INTERNAL cache entries +######################## + +//List of board directories for board (phf000_board) +BOARD_DIRECTORIES:INTERNAL=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/boards/Mi_labs/phf000_board +//DT bindings root directories +CACHED_DTS_ROOT_BINDINGS:INTERNAL=/home/miguel/ncs/v3.0.2/nrf/dts/bindings;/home/miguel/ncs/v3.0.2/zephyr/dts/bindings +CLI_CONFIG_SPEED_OPTIMIZATIONS:INTERNAL=y +//ADVANCED property for variable: CMAKE_ADDR2LINE +CMAKE_ADDR2LINE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_AR +CMAKE_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_ASM_COMPILER +CMAKE_ASM_COMPILER-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_ASM_COMPILER_AR +CMAKE_ASM_COMPILER_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_ASM_COMPILER_RANLIB +CMAKE_ASM_COMPILER_RANLIB-ADVANCED:INTERNAL=1 +CMAKE_ASM_COMPILER_WORKS:INTERNAL=1 +//ADVANCED property for variable: CMAKE_ASM_FLAGS +CMAKE_ASM_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_ASM_FLAGS_DEBUG +CMAKE_ASM_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_ASM_FLAGS_MINSIZEREL +CMAKE_ASM_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_ASM_FLAGS_RELEASE +CMAKE_ASM_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_ASM_FLAGS_RELWITHDEBINFO +CMAKE_ASM_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//This is the directory where this CMakeCache.txt was created +CMAKE_CACHEFILE_DIR:INTERNAL=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware +//Major version of cmake used to create the current loaded cache +CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3 +//Minor version of cmake used to create the current loaded cache +CMAKE_CACHE_MINOR_VERSION:INTERNAL=21 +//Patch version of cmake used to create the current loaded cache +CMAKE_CACHE_PATCH_VERSION:INTERNAL=0 +//Path to CMake executable. +CMAKE_COMMAND:INTERNAL=/home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake +//Path to cpack program executable. +CMAKE_CPACK_COMMAND:INTERNAL=/home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cpack +//Path to ctest program executable. +CMAKE_CTEST_COMMAND:INTERNAL=/home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/ctest +//ADVANCED property for variable: CMAKE_CXX_COMPILER +CMAKE_CXX_COMPILER-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_COMPILER_AR +CMAKE_CXX_COMPILER_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_COMPILER_RANLIB +CMAKE_CXX_COMPILER_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS +CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG +CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL +CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE +CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO +CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_COMPILER_AR +CMAKE_C_COMPILER_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_COMPILER_RANLIB +CMAKE_C_COMPILER_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS +CMAKE_C_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG +CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL +CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE +CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO +CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_DLLTOOL +CMAKE_DLLTOOL-ADVANCED:INTERNAL=1 +//Executable file format +CMAKE_EXECUTABLE_FORMAT:INTERNAL=ELF +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS +CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG +CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE +CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//Name of external makefile project generator. +CMAKE_EXTRA_GENERATOR:INTERNAL= +//Name of generator. +CMAKE_GENERATOR:INTERNAL=Ninja +//Generator instance identifier. +CMAKE_GENERATOR_INSTANCE:INTERNAL= +//Name of generator platform. +CMAKE_GENERATOR_PLATFORM:INTERNAL= +//Name of generator toolset. +CMAKE_GENERATOR_TOOLSET:INTERNAL= +//Source directory with the top level CMakeLists.txt file for this +// project +CMAKE_HOME_DIRECTORY:INTERNAL=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware +//ADVANCED property for variable: CMAKE_MAKE_PROGRAM +CMAKE_MAKE_PROGRAM-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS +CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG +CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE +CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_NM +CMAKE_NM-ADVANCED:INTERNAL=1 +//number of local generators +CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=193 +//ADVANCED property for variable: CMAKE_OBJCOPY +CMAKE_OBJCOPY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_OBJDUMP +CMAKE_OBJDUMP-ADVANCED:INTERNAL=1 +//Platform information initialized +CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RANLIB +CMAKE_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_READELF +CMAKE_READELF-ADVANCED:INTERNAL=1 +//Path to CMake installation. +CMAKE_ROOT:INTERNAL=/home/miguel/ncs/toolchains/7cbc0036f4/usr/local/share/cmake-3.21 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS +CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG +CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE +CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH +CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_RPATH +CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS +CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG +CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE +CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STRIP +CMAKE_STRIP-ADVANCED:INTERNAL=1 +//uname command +CMAKE_UNAME:INTERNAL=/usr/bin/uname +//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE +CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 +//The build type +CONF_FILE_BUILD_TYPE:INTERNAL= +//Details about finding Dtc +FIND_PACKAGE_MESSAGE_DETAILS_Dtc:INTERNAL=[/home/miguel/ncs/toolchains/7cbc0036f4/usr/bin/dtc][v1.5.0(1.4.6)] +//Details about finding GnuLd +FIND_PACKAGE_MESSAGE_DETAILS_GnuLd:INTERNAL=[/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi/bin/ld.bfd][v2.38()] +//Details about finding Python3 +FIND_PACKAGE_MESSAGE_DETAILS_Python3:INTERNAL=[/home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/python][cfound components: Interpreter ][v3.12.4(3.10)] +//ADVANCED property for variable: GIT_EXECUTABLE +GIT_EXECUTABLE-ADVANCED:INTERNAL=1 +//Zephyr hardware model version +HWM:INTERNAL=v2 +//Zephyr hardware model +HWMv2:INTERNAL=True +KERNEL_META_PATH:INTERNAL=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/zephyr.meta +//List of SoC directories for SoC (nrf52833) +SOC_DIRECTORIES:INTERNAL=/home/miguel/ncs/v3.0.2/zephyr/soc/nordic +//SoC Linker script +SOC_LINKER_SCRIPT:INTERNAL=/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/arch/arm/cortex_m/scripts/linker.ld +//West +WEST:INTERNAL=/home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/python;-m;west +//shared var +ZEPHYR_BINARY_DIR:INTERNAL=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr +//Cached environment variable ZEPHYR_SDK_INSTALL_DIR +ZEPHYR_SDK_INSTALL_DIR:INTERNAL=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk +//Cached environment variable ZEPHYR_TOOLCHAIN_VARIANT +ZEPHYR_TOOLCHAIN_VARIANT:INTERNAL=zephyr +_Python3_EXECUTABLE:INTERNAL=/home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/python +//Python3 Properties +_Python3_INTERPRETER_PROPERTIES:INTERNAL=Python;3;12;4;64;;cpython-312-x86_64-linux-gnu;/home/miguel/ncs/toolchains/7cbc0036f4/usr/local/lib/python3.12;/home/miguel/ncs/toolchains/7cbc0036f4/usr/local/lib/python3.12;/home/miguel/ncs/toolchains/7cbc0036f4/usr/local/lib/python3.12/site-packages;/home/miguel/ncs/toolchains/7cbc0036f4/usr/local/lib/python3.12/site-packages +_Python3_INTERPRETER_SIGNATURE:INTERNAL=d749fd7d897dd04991111043581ff852 + diff --git a/build/PHF000-Firmware/CMakeFiles/3.21.0/CMakeASMCompiler.cmake b/build/PHF000-Firmware/CMakeFiles/3.21.0/CMakeASMCompiler.cmake new file mode 100644 index 0000000..881a8a4 --- /dev/null +++ b/build/PHF000-Firmware/CMakeFiles/3.21.0/CMakeASMCompiler.cmake @@ -0,0 +1,20 @@ +set(CMAKE_ASM_COMPILER "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc") +set(CMAKE_ASM_COMPILER_ARG1 "") +set(CMAKE_AR "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-ar") +set(CMAKE_ASM_COMPILER_AR "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc-ar") +set(CMAKE_RANLIB "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-ranlib") +set(CMAKE_ASM_COMPILER_RANLIB "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc-ranlib") +set(CMAKE_LINKER "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi/bin/ld.bfd") +set(CMAKE_MT "") +set(CMAKE_ASM_COMPILER_LOADED 1) +set(CMAKE_ASM_COMPILER_ID "GNU") +set(CMAKE_ASM_COMPILER_VERSION "") +set(CMAKE_ASM_COMPILER_ENV_VAR "ASM") + + + + +set(CMAKE_ASM_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC) +set(CMAKE_ASM_LINKER_PREFERENCE 0) + + diff --git a/build/PHF000-Firmware/CMakeFiles/3.21.0/CMakeCCompiler.cmake b/build/PHF000-Firmware/CMakeFiles/3.21.0/CMakeCCompiler.cmake new file mode 100644 index 0000000..60ad079 --- /dev/null +++ b/build/PHF000-Firmware/CMakeFiles/3.21.0/CMakeCCompiler.cmake @@ -0,0 +1,80 @@ +set(CMAKE_C_COMPILER "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc") +set(CMAKE_C_COMPILER_ARG1 "") +set(CMAKE_C_COMPILER_ID "GNU") +set(CMAKE_C_COMPILER_VERSION "12.2.0") +set(CMAKE_C_COMPILER_VERSION_INTERNAL "") +set(CMAKE_C_COMPILER_WRAPPER "") +set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "17") +set(CMAKE_C_COMPILE_FEATURES "") +set(CMAKE_C90_COMPILE_FEATURES "") +set(CMAKE_C99_COMPILE_FEATURES "") +set(CMAKE_C11_COMPILE_FEATURES "") +set(CMAKE_C17_COMPILE_FEATURES "") +set(CMAKE_C23_COMPILE_FEATURES "") + +set(CMAKE_C_PLATFORM_ID "") +set(CMAKE_C_SIMULATE_ID "") +set(CMAKE_C_COMPILER_FRONTEND_VARIANT "") +set(CMAKE_C_SIMULATE_VERSION "") + + + + +set(CMAKE_AR "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-ar") +set(CMAKE_C_COMPILER_AR "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc-ar") +set(CMAKE_RANLIB "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-ranlib") +set(CMAKE_C_COMPILER_RANLIB "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc-ranlib") +set(CMAKE_LINKER "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi/bin/ld.bfd") +set(CMAKE_MT "") +set(CMAKE_COMPILER_IS_GNUCC 1) +set(CMAKE_C_COMPILER_LOADED 1) +set(CMAKE_C_COMPILER_WORKS ) +set(CMAKE_C_ABI_COMPILED ) +set(CMAKE_COMPILER_IS_MINGW ) +set(CMAKE_COMPILER_IS_CYGWIN ) +if(CMAKE_COMPILER_IS_CYGWIN) + set(CYGWIN 1) + set(UNIX 1) +endif() + +set(CMAKE_C_COMPILER_ENV_VAR "CC") + +if(CMAKE_COMPILER_IS_MINGW) + set(MINGW 1) +endif() +set(CMAKE_C_COMPILER_ID_RUN 1) +set(CMAKE_C_SOURCE_FILE_EXTENSIONS c;m) +set(CMAKE_C_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC) +set(CMAKE_C_LINKER_PREFERENCE 10) + +# Save compiler ABI information. +set(CMAKE_C_SIZEOF_DATA_PTR "") +set(CMAKE_C_COMPILER_ABI "") +set(CMAKE_C_BYTE_ORDER "LITTLE_ENDIAN") +set(CMAKE_C_LIBRARY_ARCHITECTURE "") + +if(CMAKE_C_SIZEOF_DATA_PTR) + set(CMAKE_SIZEOF_VOID_P "${CMAKE_C_SIZEOF_DATA_PTR}") +endif() + +if(CMAKE_C_COMPILER_ABI) + set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_C_COMPILER_ABI}") +endif() + +if(CMAKE_C_LIBRARY_ARCHITECTURE) + set(CMAKE_LIBRARY_ARCHITECTURE "") +endif() + +set(CMAKE_C_CL_SHOWINCLUDES_PREFIX "") +if(CMAKE_C_CL_SHOWINCLUDES_PREFIX) + set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_C_CL_SHOWINCLUDES_PREFIX}") +endif() + + + + + +set(CMAKE_C_IMPLICIT_INCLUDE_DIRECTORIES "") +set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "") +set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "") +set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/build/PHF000-Firmware/CMakeFiles/3.21.0/CMakeCXXCompiler.cmake b/build/PHF000-Firmware/CMakeFiles/3.21.0/CMakeCXXCompiler.cmake new file mode 100644 index 0000000..de25835 --- /dev/null +++ b/build/PHF000-Firmware/CMakeFiles/3.21.0/CMakeCXXCompiler.cmake @@ -0,0 +1,91 @@ +set(CMAKE_CXX_COMPILER "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-g++") +set(CMAKE_CXX_COMPILER_ARG1 "") +set(CMAKE_CXX_COMPILER_ID "GNU") +set(CMAKE_CXX_COMPILER_VERSION "12.2.0") +set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "") +set(CMAKE_CXX_COMPILER_WRAPPER "") +set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "17") +set(CMAKE_CXX_COMPILE_FEATURES "") +set(CMAKE_CXX98_COMPILE_FEATURES "") +set(CMAKE_CXX11_COMPILE_FEATURES "") +set(CMAKE_CXX14_COMPILE_FEATURES "") +set(CMAKE_CXX17_COMPILE_FEATURES "") +set(CMAKE_CXX20_COMPILE_FEATURES "") +set(CMAKE_CXX23_COMPILE_FEATURES "") + +set(CMAKE_CXX_PLATFORM_ID "") +set(CMAKE_CXX_SIMULATE_ID "") +set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "") +set(CMAKE_CXX_SIMULATE_VERSION "") + + + + +set(CMAKE_AR "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-ar") +set(CMAKE_CXX_COMPILER_AR "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc-ar") +set(CMAKE_RANLIB "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-ranlib") +set(CMAKE_CXX_COMPILER_RANLIB "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc-ranlib") +set(CMAKE_LINKER "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi/bin/ld.bfd") +set(CMAKE_MT "") +set(CMAKE_COMPILER_IS_GNUCXX 1) +set(CMAKE_CXX_COMPILER_LOADED 1) +set(CMAKE_CXX_COMPILER_WORKS ) +set(CMAKE_CXX_ABI_COMPILED ) +set(CMAKE_COMPILER_IS_MINGW ) +set(CMAKE_COMPILER_IS_CYGWIN ) +if(CMAKE_COMPILER_IS_CYGWIN) + set(CYGWIN 1) + set(UNIX 1) +endif() + +set(CMAKE_CXX_COMPILER_ENV_VAR "CXX") + +if(CMAKE_COMPILER_IS_MINGW) + set(MINGW 1) +endif() +set(CMAKE_CXX_COMPILER_ID_RUN 1) +set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;m;mm;mpp;CPP;ixx;cppm) +set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC) + +foreach (lang C OBJC OBJCXX) + if (CMAKE_${lang}_COMPILER_ID_RUN) + foreach(extension IN LISTS CMAKE_${lang}_SOURCE_FILE_EXTENSIONS) + list(REMOVE_ITEM CMAKE_CXX_SOURCE_FILE_EXTENSIONS ${extension}) + endforeach() + endif() +endforeach() + +set(CMAKE_CXX_LINKER_PREFERENCE 30) +set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1) + +# Save compiler ABI information. +set(CMAKE_CXX_SIZEOF_DATA_PTR "") +set(CMAKE_CXX_COMPILER_ABI "") +set(CMAKE_CXX_BYTE_ORDER "LITTLE_ENDIAN") +set(CMAKE_CXX_LIBRARY_ARCHITECTURE "") + +if(CMAKE_CXX_SIZEOF_DATA_PTR) + set(CMAKE_SIZEOF_VOID_P "${CMAKE_CXX_SIZEOF_DATA_PTR}") +endif() + +if(CMAKE_CXX_COMPILER_ABI) + set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_CXX_COMPILER_ABI}") +endif() + +if(CMAKE_CXX_LIBRARY_ARCHITECTURE) + set(CMAKE_LIBRARY_ARCHITECTURE "") +endif() + +set(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX "") +if(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX) + set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_CXX_CL_SHOWINCLUDES_PREFIX}") +endif() + + + + + +set(CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES "") +set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "") +set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "") +set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/build/PHF000-Firmware/CMakeFiles/3.21.0/CMakeSystem.cmake b/build/PHF000-Firmware/CMakeFiles/3.21.0/CMakeSystem.cmake new file mode 100644 index 0000000..0a89ce0 --- /dev/null +++ b/build/PHF000-Firmware/CMakeFiles/3.21.0/CMakeSystem.cmake @@ -0,0 +1,15 @@ +set(CMAKE_HOST_SYSTEM "Linux-6.8.0-64-generic") +set(CMAKE_HOST_SYSTEM_NAME "Linux") +set(CMAKE_HOST_SYSTEM_VERSION "6.8.0-64-generic") +set(CMAKE_HOST_SYSTEM_PROCESSOR "x86_64") + + + +set(CMAKE_SYSTEM "Generic-4.0.99") +set(CMAKE_SYSTEM_NAME "Generic") +set(CMAKE_SYSTEM_VERSION "4.0.99") +set(CMAKE_SYSTEM_PROCESSOR "arm") + +set(CMAKE_CROSSCOMPILING "TRUE") + +set(CMAKE_SYSTEM_LOADED 1) diff --git a/build/PHF000-Firmware/CMakeFiles/3.21.0/CompilerIdC/CMakeCCompilerId.c b/build/PHF000-Firmware/CMakeFiles/3.21.0/CompilerIdC/CMakeCCompilerId.c new file mode 100644 index 0000000..051f748 --- /dev/null +++ b/build/PHF000-Firmware/CMakeFiles/3.21.0/CompilerIdC/CMakeCCompilerId.c @@ -0,0 +1,807 @@ +#ifdef __cplusplus +# error "A C++ compiler has been selected for C." +#endif + +#if defined(__18CXX) +# define ID_VOID_MAIN +#endif +#if defined(__CLASSIC_C__) +/* cv-qualifiers did not exist in K&R C */ +# define const +# define volatile +#endif + +#if !defined(__has_include) +/* If the compiler does not have __has_include, pretend the answer is + always no. */ +# define __has_include(x) 0 +#endif + + +/* Version number components: V=Version, R=Revision, P=Patch + Version date components: YYYY=Year, MM=Month, DD=Day */ + +#if defined(__INTEL_COMPILER) || defined(__ICC) +# define COMPILER_ID "Intel" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# if defined(__GNUC__) +# define SIMULATE_ID "GNU" +# endif + /* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later, + except that a few beta releases use the old format with V=2021. */ +# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111 +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) +# if defined(__INTEL_COMPILER_UPDATE) +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) +# else +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) +# endif +# else +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE) + /* The third version component from --version is an update index, + but no macro is provided for it. */ +# define COMPILER_VERSION_PATCH DEC(0) +# endif +# if defined(__INTEL_COMPILER_BUILD_DATE) + /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ +# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) +# endif +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +# elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +# endif +# if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER) +# define COMPILER_ID "IntelLLVM" +#if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +#endif +#if defined(__GNUC__) +# define SIMULATE_ID "GNU" +#endif +/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and + * later. Look for 6 digit vs. 8 digit version number to decide encoding. + * VVVV is no smaller than the current year when a version is released. + */ +#if __INTEL_LLVM_COMPILER < 1000000L +# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10) +#else +# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000) +# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100) +#endif +#if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +#endif +#if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +#elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +#endif +#if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +#endif +#if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +#endif + +#elif defined(__PATHCC__) +# define COMPILER_ID "PathScale" +# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) +# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) +# if defined(__PATHCC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) +# endif + +#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) +# define COMPILER_ID "Embarcadero" +# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) +# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) +# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) + +#elif defined(__BORLANDC__) +# define COMPILER_ID "Borland" + /* __BORLANDC__ = 0xVRR */ +# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) +# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) + +#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 +# define COMPILER_ID "Watcom" + /* __WATCOMC__ = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__WATCOMC__) +# define COMPILER_ID "OpenWatcom" + /* __WATCOMC__ = VVRP + 1100 */ +# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__SUNPRO_C) +# define COMPILER_ID "SunPro" +# if __SUNPRO_C >= 0x5100 + /* __SUNPRO_C = 0xVRRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>12) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) +# else + /* __SUNPRO_CC = 0xVRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>8) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) +# endif + +#elif defined(__HP_cc) +# define COMPILER_ID "HP" + /* __HP_cc = VVRRPP */ +# define COMPILER_VERSION_MAJOR DEC(__HP_cc/10000) +# define COMPILER_VERSION_MINOR DEC(__HP_cc/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__HP_cc % 100) + +#elif defined(__DECC) +# define COMPILER_ID "Compaq" + /* __DECC_VER = VVRRTPPPP */ +# define COMPILER_VERSION_MAJOR DEC(__DECC_VER/10000000) +# define COMPILER_VERSION_MINOR DEC(__DECC_VER/100000 % 100) +# define COMPILER_VERSION_PATCH DEC(__DECC_VER % 10000) + +#elif defined(__IBMC__) && defined(__COMPILER_VER__) +# define COMPILER_ID "zOS" + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) + +#elif defined(__ibmxl__) && defined(__clang__) +# define COMPILER_ID "XLClang" +# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) +# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) +# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) + + +#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ >= 800 +# define COMPILER_ID "XL" + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) + +#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ < 800 +# define COMPILER_ID "VisualAge" + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) + +#elif defined(__NVCOMPILER) +# define COMPILER_ID "NVHPC" +# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__) +# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__) +# if defined(__NVCOMPILER_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__) +# endif + +#elif defined(__PGI) +# define COMPILER_ID "PGI" +# define COMPILER_VERSION_MAJOR DEC(__PGIC__) +# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) +# if defined(__PGIC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) +# endif + +#elif defined(_CRAYC) +# define COMPILER_ID "Cray" +# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) +# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) + +#elif defined(__TI_COMPILER_VERSION__) +# define COMPILER_ID "TI" + /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ +# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) +# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) +# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) + +#elif defined(__CLANG_FUJITSU) +# define COMPILER_ID "FujitsuClang" +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(__FUJITSU) +# define COMPILER_ID "Fujitsu" +# if defined(__FCC_version__) +# define COMPILER_VERSION __FCC_version__ +# elif defined(__FCC_major__) +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# endif +# if defined(__fcc_version) +# define COMPILER_VERSION_INTERNAL DEC(__fcc_version) +# elif defined(__FCC_VERSION) +# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION) +# endif + + +#elif defined(__ghs__) +# define COMPILER_ID "GHS" +/* __GHS_VERSION_NUMBER = VVVVRP */ +# ifdef __GHS_VERSION_NUMBER +# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) +# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) +# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) +# endif + +#elif defined(__TINYC__) +# define COMPILER_ID "TinyCC" + +#elif defined(__BCC__) +# define COMPILER_ID "Bruce" + +#elif defined(__SCO_VERSION__) +# define COMPILER_ID "SCO" + +#elif defined(__ARMCC_VERSION) && !defined(__clang__) +# define COMPILER_ID "ARMCC" +#if __ARMCC_VERSION >= 1000000 + /* __ARMCC_VERSION = VRRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#else + /* __ARMCC_VERSION = VRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#endif + + +#elif defined(__clang__) && defined(__apple_build_version__) +# define COMPILER_ID "AppleClang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) + +#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) +# define COMPILER_ID "ARMClang" + # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION % 10000) +# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) + +#elif defined(__clang__) && __has_include() +# define COMPILER_ID "ROCMClang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# elif defined(__clang__) +# define SIMULATE_ID "Clang" +# elif defined(__GNUC__) +# define SIMULATE_ID "GNU" +# endif +# if defined(__clang__) && __has_include() +# include +# define COMPILER_VERSION_MAJOR DEC(HIP_VERSION_MAJOR) +# define COMPILER_VERSION_MINOR DEC(HIP_VERSION_MINOR) +# define COMPILER_VERSION_PATCH DEC(HIP_VERSION_PATCH) +# endif + +#elif defined(__clang__) +# define COMPILER_ID "Clang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif + +#elif defined(__GNUC__) +# define COMPILER_ID "GNU" +# define COMPILER_VERSION_MAJOR DEC(__GNUC__) +# if defined(__GNUC_MINOR__) +# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif defined(_MSC_VER) +# define COMPILER_ID "MSVC" + /* _MSC_VER = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) +# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) +# if defined(_MSC_FULL_VER) +# if _MSC_VER >= 1400 + /* _MSC_FULL_VER = VVRRPPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) +# else + /* _MSC_FULL_VER = VVRRPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) +# endif +# endif +# if defined(_MSC_BUILD) +# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) +# endif + +#elif defined(__VISUALDSPVERSION__) || defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__) +# define COMPILER_ID "ADSP" +#if defined(__VISUALDSPVERSION__) + /* __VISUALDSPVERSION__ = 0xVVRRPP00 */ +# define COMPILER_VERSION_MAJOR HEX(__VISUALDSPVERSION__>>24) +# define COMPILER_VERSION_MINOR HEX(__VISUALDSPVERSION__>>16 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__VISUALDSPVERSION__>>8 & 0xFF) +#endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# define COMPILER_ID "IAR" +# if defined(__VER__) && defined(__ICCARM__) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) +# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) +# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__)) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) +# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) +# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# endif + +#elif defined(__SDCC_VERSION_MAJOR) || defined(SDCC) +# define COMPILER_ID "SDCC" +# if defined(__SDCC_VERSION_MAJOR) +# define COMPILER_VERSION_MAJOR DEC(__SDCC_VERSION_MAJOR) +# define COMPILER_VERSION_MINOR DEC(__SDCC_VERSION_MINOR) +# define COMPILER_VERSION_PATCH DEC(__SDCC_VERSION_PATCH) +# else + /* SDCC = VRP */ +# define COMPILER_VERSION_MAJOR DEC(SDCC/100) +# define COMPILER_VERSION_MINOR DEC(SDCC/10 % 10) +# define COMPILER_VERSION_PATCH DEC(SDCC % 10) +# endif + + +/* These compilers are either not known or too old to define an + identification macro. Try to identify the platform and guess that + it is the native compiler. */ +#elif defined(__hpux) || defined(__hpua) +# define COMPILER_ID "HP" + +#else /* unknown compiler */ +# define COMPILER_ID "" +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; +#ifdef SIMULATE_ID +char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; +#endif + +#ifdef __QNXNTO__ +char const* qnxnto = "INFO" ":" "qnxnto[]"; +#endif + +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) +char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; +#endif + +#define STRINGIFY_HELPER(X) #X +#define STRINGIFY(X) STRINGIFY_HELPER(X) + +/* Identify known platforms by name. */ +#if defined(__linux) || defined(__linux__) || defined(linux) +# define PLATFORM_ID "Linux" + +#elif defined(__MSYS__) +# define PLATFORM_ID "MSYS" + +#elif defined(__CYGWIN__) +# define PLATFORM_ID "Cygwin" + +#elif defined(__MINGW32__) +# define PLATFORM_ID "MinGW" + +#elif defined(__APPLE__) +# define PLATFORM_ID "Darwin" + +#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) +# define PLATFORM_ID "Windows" + +#elif defined(__FreeBSD__) || defined(__FreeBSD) +# define PLATFORM_ID "FreeBSD" + +#elif defined(__NetBSD__) || defined(__NetBSD) +# define PLATFORM_ID "NetBSD" + +#elif defined(__OpenBSD__) || defined(__OPENBSD) +# define PLATFORM_ID "OpenBSD" + +#elif defined(__sun) || defined(sun) +# define PLATFORM_ID "SunOS" + +#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) +# define PLATFORM_ID "AIX" + +#elif defined(__hpux) || defined(__hpux__) +# define PLATFORM_ID "HP-UX" + +#elif defined(__HAIKU__) +# define PLATFORM_ID "Haiku" + +#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) +# define PLATFORM_ID "BeOS" + +#elif defined(__QNX__) || defined(__QNXNTO__) +# define PLATFORM_ID "QNX" + +#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) +# define PLATFORM_ID "Tru64" + +#elif defined(__riscos) || defined(__riscos__) +# define PLATFORM_ID "RISCos" + +#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) +# define PLATFORM_ID "SINIX" + +#elif defined(__UNIX_SV__) +# define PLATFORM_ID "UNIX_SV" + +#elif defined(__bsdos__) +# define PLATFORM_ID "BSDOS" + +#elif defined(_MPRAS) || defined(MPRAS) +# define PLATFORM_ID "MP-RAS" + +#elif defined(__osf) || defined(__osf__) +# define PLATFORM_ID "OSF1" + +#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) +# define PLATFORM_ID "SCO_SV" + +#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) +# define PLATFORM_ID "ULTRIX" + +#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) +# define PLATFORM_ID "Xenix" + +#elif defined(__WATCOMC__) +# if defined(__LINUX__) +# define PLATFORM_ID "Linux" + +# elif defined(__DOS__) +# define PLATFORM_ID "DOS" + +# elif defined(__OS2__) +# define PLATFORM_ID "OS2" + +# elif defined(__WINDOWS__) +# define PLATFORM_ID "Windows3x" + +# elif defined(__VXWORKS__) +# define PLATFORM_ID "VxWorks" + +# else /* unknown platform */ +# define PLATFORM_ID +# endif + +#elif defined(__INTEGRITY) +# if defined(INT_178B) +# define PLATFORM_ID "Integrity178" + +# else /* regular Integrity */ +# define PLATFORM_ID "Integrity" +# endif + +#else /* unknown platform */ +# define PLATFORM_ID + +#endif + +/* For windows compilers MSVC and Intel we can determine + the architecture of the compiler being used. This is because + the compilers do not have flags that can change the architecture, + but rather depend on which compiler is being used +*/ +#if defined(_WIN32) && defined(_MSC_VER) +# if defined(_M_IA64) +# define ARCHITECTURE_ID "IA64" + +# elif defined(_M_ARM64EC) +# define ARCHITECTURE_ID "ARM64EC" + +# elif defined(_M_X64) || defined(_M_AMD64) +# define ARCHITECTURE_ID "x64" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# elif defined(_M_ARM64) +# define ARCHITECTURE_ID "ARM64" + +# elif defined(_M_ARM) +# if _M_ARM == 4 +# define ARCHITECTURE_ID "ARMV4I" +# elif _M_ARM == 5 +# define ARCHITECTURE_ID "ARMV5I" +# else +# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) +# endif + +# elif defined(_M_MIPS) +# define ARCHITECTURE_ID "MIPS" + +# elif defined(_M_SH) +# define ARCHITECTURE_ID "SHx" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__WATCOMC__) +# if defined(_M_I86) +# define ARCHITECTURE_ID "I86" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# if defined(__ICCARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__ICCRX__) +# define ARCHITECTURE_ID "RX" + +# elif defined(__ICCRH850__) +# define ARCHITECTURE_ID "RH850" + +# elif defined(__ICCRL78__) +# define ARCHITECTURE_ID "RL78" + +# elif defined(__ICCRISCV__) +# define ARCHITECTURE_ID "RISCV" + +# elif defined(__ICCAVR__) +# define ARCHITECTURE_ID "AVR" + +# elif defined(__ICC430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__ICCV850__) +# define ARCHITECTURE_ID "V850" + +# elif defined(__ICC8051__) +# define ARCHITECTURE_ID "8051" + +# elif defined(__ICCSTM8__) +# define ARCHITECTURE_ID "STM8" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__ghs__) +# if defined(__PPC64__) +# define ARCHITECTURE_ID "PPC64" + +# elif defined(__ppc__) +# define ARCHITECTURE_ID "PPC" + +# elif defined(__ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__x86_64__) +# define ARCHITECTURE_ID "x64" + +# elif defined(__i386__) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__TI_COMPILER_VERSION__) +# if defined(__TI_ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__MSP430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__TMS320C28XX__) +# define ARCHITECTURE_ID "TMS320C28x" + +# elif defined(__TMS320C6X__) || defined(_TMS320C6X) +# define ARCHITECTURE_ID "TMS320C6x" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#else +# define ARCHITECTURE_ID +#endif + +/* Convert integer to decimal digit literals. */ +#define DEC(n) \ + ('0' + (((n) / 10000000)%10)), \ + ('0' + (((n) / 1000000)%10)), \ + ('0' + (((n) / 100000)%10)), \ + ('0' + (((n) / 10000)%10)), \ + ('0' + (((n) / 1000)%10)), \ + ('0' + (((n) / 100)%10)), \ + ('0' + (((n) / 10)%10)), \ + ('0' + ((n) % 10)) + +/* Convert integer to hex digit literals. */ +#define HEX(n) \ + ('0' + ((n)>>28 & 0xF)), \ + ('0' + ((n)>>24 & 0xF)), \ + ('0' + ((n)>>20 & 0xF)), \ + ('0' + ((n)>>16 & 0xF)), \ + ('0' + ((n)>>12 & 0xF)), \ + ('0' + ((n)>>8 & 0xF)), \ + ('0' + ((n)>>4 & 0xF)), \ + ('0' + ((n) & 0xF)) + +/* Construct a string literal encoding the version number. */ +#ifdef COMPILER_VERSION +char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]"; + +/* Construct a string literal encoding the version number components. */ +#elif defined(COMPILER_VERSION_MAJOR) +char const info_version[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', + COMPILER_VERSION_MAJOR, +# ifdef COMPILER_VERSION_MINOR + '.', COMPILER_VERSION_MINOR, +# ifdef COMPILER_VERSION_PATCH + '.', COMPILER_VERSION_PATCH, +# ifdef COMPILER_VERSION_TWEAK + '.', COMPILER_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct a string literal encoding the internal version number. */ +#ifdef COMPILER_VERSION_INTERNAL +char const info_version_internal[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', + 'i','n','t','e','r','n','a','l','[', + COMPILER_VERSION_INTERNAL,']','\0'}; +#elif defined(COMPILER_VERSION_INTERNAL_STR) +char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]"; +#endif + +/* Construct a string literal encoding the version number components. */ +#ifdef SIMULATE_VERSION_MAJOR +char const info_simulate_version[] = { + 'I', 'N', 'F', 'O', ':', + 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', + SIMULATE_VERSION_MAJOR, +# ifdef SIMULATE_VERSION_MINOR + '.', SIMULATE_VERSION_MINOR, +# ifdef SIMULATE_VERSION_PATCH + '.', SIMULATE_VERSION_PATCH, +# ifdef SIMULATE_VERSION_TWEAK + '.', SIMULATE_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; +char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; + + + +#if !defined(__STDC__) && !defined(__clang__) +# if defined(_MSC_VER) || defined(__ibmxl__) || defined(__IBMC__) +# define C_DIALECT "90" +# else +# define C_DIALECT +# endif +#elif __STDC_VERSION__ > 201710L +# define C_DIALECT "23" +#elif __STDC_VERSION__ >= 201710L +# define C_DIALECT "17" +#elif __STDC_VERSION__ >= 201000L +# define C_DIALECT "11" +#elif __STDC_VERSION__ >= 199901L +# define C_DIALECT "99" +#else +# define C_DIALECT "90" +#endif +const char* info_language_dialect_default = + "INFO" ":" "dialect_default[" C_DIALECT "]"; + +/*--------------------------------------------------------------------------*/ + +#ifdef ID_VOID_MAIN +void main() {} +#else +# if defined(__CLASSIC_C__) +int main(argc, argv) int argc; char *argv[]; +# else +int main(int argc, char* argv[]) +# endif +{ + int require = 0; + require += info_compiler[argc]; + require += info_platform[argc]; + require += info_arch[argc]; +#ifdef COMPILER_VERSION_MAJOR + require += info_version[argc]; +#endif +#ifdef COMPILER_VERSION_INTERNAL + require += info_version_internal[argc]; +#endif +#ifdef SIMULATE_ID + require += info_simulate[argc]; +#endif +#ifdef SIMULATE_VERSION_MAJOR + require += info_simulate_version[argc]; +#endif +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) + require += info_cray[argc]; +#endif + require += info_language_dialect_default[argc]; + (void)argv; + return require; +} +#endif diff --git a/build/PHF000-Firmware/CMakeFiles/3.21.0/CompilerIdC/CMakeCCompilerId.o b/build/PHF000-Firmware/CMakeFiles/3.21.0/CompilerIdC/CMakeCCompilerId.o new file mode 100644 index 0000000..457195b Binary files /dev/null and b/build/PHF000-Firmware/CMakeFiles/3.21.0/CompilerIdC/CMakeCCompilerId.o differ diff --git a/build/PHF000-Firmware/CMakeFiles/3.21.0/CompilerIdCXX/CMakeCXXCompilerId.cpp b/build/PHF000-Firmware/CMakeFiles/3.21.0/CompilerIdCXX/CMakeCXXCompilerId.cpp new file mode 100644 index 0000000..f675021 --- /dev/null +++ b/build/PHF000-Firmware/CMakeFiles/3.21.0/CompilerIdCXX/CMakeCXXCompilerId.cpp @@ -0,0 +1,795 @@ +/* This source file must have a .cpp extension so that all C++ compilers + recognize the extension without flags. Borland does not know .cxx for + example. */ +#ifndef __cplusplus +# error "A C compiler has been selected for C++." +#endif + +#if !defined(__has_include) +/* If the compiler does not have __has_include, pretend the answer is + always no. */ +# define __has_include(x) 0 +#endif + + +/* Version number components: V=Version, R=Revision, P=Patch + Version date components: YYYY=Year, MM=Month, DD=Day */ + +#if defined(__COMO__) +# define COMPILER_ID "Comeau" + /* __COMO_VERSION__ = VRR */ +# define COMPILER_VERSION_MAJOR DEC(__COMO_VERSION__ / 100) +# define COMPILER_VERSION_MINOR DEC(__COMO_VERSION__ % 100) + +#elif defined(__INTEL_COMPILER) || defined(__ICC) +# define COMPILER_ID "Intel" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# if defined(__GNUC__) +# define SIMULATE_ID "GNU" +# endif + /* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later, + except that a few beta releases use the old format with V=2021. */ +# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111 +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) +# if defined(__INTEL_COMPILER_UPDATE) +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) +# else +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) +# endif +# else +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE) + /* The third version component from --version is an update index, + but no macro is provided for it. */ +# define COMPILER_VERSION_PATCH DEC(0) +# endif +# if defined(__INTEL_COMPILER_BUILD_DATE) + /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ +# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) +# endif +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +# elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +# endif +# if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER) +# define COMPILER_ID "IntelLLVM" +#if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +#endif +#if defined(__GNUC__) +# define SIMULATE_ID "GNU" +#endif +/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and + * later. Look for 6 digit vs. 8 digit version number to decide encoding. + * VVVV is no smaller than the current year when a version is released. + */ +#if __INTEL_LLVM_COMPILER < 1000000L +# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10) +#else +# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000) +# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100) +#endif +#if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +#endif +#if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +#elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +#endif +#if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +#endif +#if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +#endif + +#elif defined(__PATHCC__) +# define COMPILER_ID "PathScale" +# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) +# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) +# if defined(__PATHCC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) +# endif + +#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) +# define COMPILER_ID "Embarcadero" +# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) +# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) +# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) + +#elif defined(__BORLANDC__) +# define COMPILER_ID "Borland" + /* __BORLANDC__ = 0xVRR */ +# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) +# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) + +#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 +# define COMPILER_ID "Watcom" + /* __WATCOMC__ = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__WATCOMC__) +# define COMPILER_ID "OpenWatcom" + /* __WATCOMC__ = VVRP + 1100 */ +# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__SUNPRO_CC) +# define COMPILER_ID "SunPro" +# if __SUNPRO_CC >= 0x5100 + /* __SUNPRO_CC = 0xVRRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>12) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) +# else + /* __SUNPRO_CC = 0xVRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>8) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) +# endif + +#elif defined(__HP_aCC) +# define COMPILER_ID "HP" + /* __HP_aCC = VVRRPP */ +# define COMPILER_VERSION_MAJOR DEC(__HP_aCC/10000) +# define COMPILER_VERSION_MINOR DEC(__HP_aCC/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__HP_aCC % 100) + +#elif defined(__DECCXX) +# define COMPILER_ID "Compaq" + /* __DECCXX_VER = VVRRTPPPP */ +# define COMPILER_VERSION_MAJOR DEC(__DECCXX_VER/10000000) +# define COMPILER_VERSION_MINOR DEC(__DECCXX_VER/100000 % 100) +# define COMPILER_VERSION_PATCH DEC(__DECCXX_VER % 10000) + +#elif defined(__IBMCPP__) && defined(__COMPILER_VER__) +# define COMPILER_ID "zOS" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__ibmxl__) && defined(__clang__) +# define COMPILER_ID "XLClang" +# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) +# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) +# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) + + +#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ >= 800 +# define COMPILER_ID "XL" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ < 800 +# define COMPILER_ID "VisualAge" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__NVCOMPILER) +# define COMPILER_ID "NVHPC" +# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__) +# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__) +# if defined(__NVCOMPILER_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__) +# endif + +#elif defined(__PGI) +# define COMPILER_ID "PGI" +# define COMPILER_VERSION_MAJOR DEC(__PGIC__) +# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) +# if defined(__PGIC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) +# endif + +#elif defined(_CRAYC) +# define COMPILER_ID "Cray" +# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) +# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) + +#elif defined(__TI_COMPILER_VERSION__) +# define COMPILER_ID "TI" + /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ +# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) +# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) +# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) + +#elif defined(__CLANG_FUJITSU) +# define COMPILER_ID "FujitsuClang" +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(__FUJITSU) +# define COMPILER_ID "Fujitsu" +# if defined(__FCC_version__) +# define COMPILER_VERSION __FCC_version__ +# elif defined(__FCC_major__) +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# endif +# if defined(__fcc_version) +# define COMPILER_VERSION_INTERNAL DEC(__fcc_version) +# elif defined(__FCC_VERSION) +# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION) +# endif + + +#elif defined(__ghs__) +# define COMPILER_ID "GHS" +/* __GHS_VERSION_NUMBER = VVVVRP */ +# ifdef __GHS_VERSION_NUMBER +# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) +# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) +# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) +# endif + +#elif defined(__SCO_VERSION__) +# define COMPILER_ID "SCO" + +#elif defined(__ARMCC_VERSION) && !defined(__clang__) +# define COMPILER_ID "ARMCC" +#if __ARMCC_VERSION >= 1000000 + /* __ARMCC_VERSION = VRRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#else + /* __ARMCC_VERSION = VRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#endif + + +#elif defined(__clang__) && defined(__apple_build_version__) +# define COMPILER_ID "AppleClang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) + +#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) +# define COMPILER_ID "ARMClang" + # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION % 10000) +# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) + +#elif defined(__clang__) && __has_include() +# define COMPILER_ID "ROCMClang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# elif defined(__clang__) +# define SIMULATE_ID "Clang" +# elif defined(__GNUC__) +# define SIMULATE_ID "GNU" +# endif +# if defined(__clang__) && __has_include() +# include +# define COMPILER_VERSION_MAJOR DEC(HIP_VERSION_MAJOR) +# define COMPILER_VERSION_MINOR DEC(HIP_VERSION_MINOR) +# define COMPILER_VERSION_PATCH DEC(HIP_VERSION_PATCH) +# endif + +#elif defined(__clang__) +# define COMPILER_ID "Clang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif + +#elif defined(__GNUC__) || defined(__GNUG__) +# define COMPILER_ID "GNU" +# if defined(__GNUC__) +# define COMPILER_VERSION_MAJOR DEC(__GNUC__) +# else +# define COMPILER_VERSION_MAJOR DEC(__GNUG__) +# endif +# if defined(__GNUC_MINOR__) +# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif defined(_MSC_VER) +# define COMPILER_ID "MSVC" + /* _MSC_VER = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) +# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) +# if defined(_MSC_FULL_VER) +# if _MSC_VER >= 1400 + /* _MSC_FULL_VER = VVRRPPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) +# else + /* _MSC_FULL_VER = VVRRPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) +# endif +# endif +# if defined(_MSC_BUILD) +# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) +# endif + +#elif defined(__VISUALDSPVERSION__) || defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__) +# define COMPILER_ID "ADSP" +#if defined(__VISUALDSPVERSION__) + /* __VISUALDSPVERSION__ = 0xVVRRPP00 */ +# define COMPILER_VERSION_MAJOR HEX(__VISUALDSPVERSION__>>24) +# define COMPILER_VERSION_MINOR HEX(__VISUALDSPVERSION__>>16 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__VISUALDSPVERSION__>>8 & 0xFF) +#endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# define COMPILER_ID "IAR" +# if defined(__VER__) && defined(__ICCARM__) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) +# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) +# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__)) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) +# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) +# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# endif + + +/* These compilers are either not known or too old to define an + identification macro. Try to identify the platform and guess that + it is the native compiler. */ +#elif defined(__hpux) || defined(__hpua) +# define COMPILER_ID "HP" + +#else /* unknown compiler */ +# define COMPILER_ID "" +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; +#ifdef SIMULATE_ID +char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; +#endif + +#ifdef __QNXNTO__ +char const* qnxnto = "INFO" ":" "qnxnto[]"; +#endif + +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) +char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; +#endif + +#define STRINGIFY_HELPER(X) #X +#define STRINGIFY(X) STRINGIFY_HELPER(X) + +/* Identify known platforms by name. */ +#if defined(__linux) || defined(__linux__) || defined(linux) +# define PLATFORM_ID "Linux" + +#elif defined(__MSYS__) +# define PLATFORM_ID "MSYS" + +#elif defined(__CYGWIN__) +# define PLATFORM_ID "Cygwin" + +#elif defined(__MINGW32__) +# define PLATFORM_ID "MinGW" + +#elif defined(__APPLE__) +# define PLATFORM_ID "Darwin" + +#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) +# define PLATFORM_ID "Windows" + +#elif defined(__FreeBSD__) || defined(__FreeBSD) +# define PLATFORM_ID "FreeBSD" + +#elif defined(__NetBSD__) || defined(__NetBSD) +# define PLATFORM_ID "NetBSD" + +#elif defined(__OpenBSD__) || defined(__OPENBSD) +# define PLATFORM_ID "OpenBSD" + +#elif defined(__sun) || defined(sun) +# define PLATFORM_ID "SunOS" + +#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) +# define PLATFORM_ID "AIX" + +#elif defined(__hpux) || defined(__hpux__) +# define PLATFORM_ID "HP-UX" + +#elif defined(__HAIKU__) +# define PLATFORM_ID "Haiku" + +#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) +# define PLATFORM_ID "BeOS" + +#elif defined(__QNX__) || defined(__QNXNTO__) +# define PLATFORM_ID "QNX" + +#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) +# define PLATFORM_ID "Tru64" + +#elif defined(__riscos) || defined(__riscos__) +# define PLATFORM_ID "RISCos" + +#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) +# define PLATFORM_ID "SINIX" + +#elif defined(__UNIX_SV__) +# define PLATFORM_ID "UNIX_SV" + +#elif defined(__bsdos__) +# define PLATFORM_ID "BSDOS" + +#elif defined(_MPRAS) || defined(MPRAS) +# define PLATFORM_ID "MP-RAS" + +#elif defined(__osf) || defined(__osf__) +# define PLATFORM_ID "OSF1" + +#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) +# define PLATFORM_ID "SCO_SV" + +#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) +# define PLATFORM_ID "ULTRIX" + +#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) +# define PLATFORM_ID "Xenix" + +#elif defined(__WATCOMC__) +# if defined(__LINUX__) +# define PLATFORM_ID "Linux" + +# elif defined(__DOS__) +# define PLATFORM_ID "DOS" + +# elif defined(__OS2__) +# define PLATFORM_ID "OS2" + +# elif defined(__WINDOWS__) +# define PLATFORM_ID "Windows3x" + +# elif defined(__VXWORKS__) +# define PLATFORM_ID "VxWorks" + +# else /* unknown platform */ +# define PLATFORM_ID +# endif + +#elif defined(__INTEGRITY) +# if defined(INT_178B) +# define PLATFORM_ID "Integrity178" + +# else /* regular Integrity */ +# define PLATFORM_ID "Integrity" +# endif + +#else /* unknown platform */ +# define PLATFORM_ID + +#endif + +/* For windows compilers MSVC and Intel we can determine + the architecture of the compiler being used. This is because + the compilers do not have flags that can change the architecture, + but rather depend on which compiler is being used +*/ +#if defined(_WIN32) && defined(_MSC_VER) +# if defined(_M_IA64) +# define ARCHITECTURE_ID "IA64" + +# elif defined(_M_ARM64EC) +# define ARCHITECTURE_ID "ARM64EC" + +# elif defined(_M_X64) || defined(_M_AMD64) +# define ARCHITECTURE_ID "x64" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# elif defined(_M_ARM64) +# define ARCHITECTURE_ID "ARM64" + +# elif defined(_M_ARM) +# if _M_ARM == 4 +# define ARCHITECTURE_ID "ARMV4I" +# elif _M_ARM == 5 +# define ARCHITECTURE_ID "ARMV5I" +# else +# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) +# endif + +# elif defined(_M_MIPS) +# define ARCHITECTURE_ID "MIPS" + +# elif defined(_M_SH) +# define ARCHITECTURE_ID "SHx" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__WATCOMC__) +# if defined(_M_I86) +# define ARCHITECTURE_ID "I86" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# if defined(__ICCARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__ICCRX__) +# define ARCHITECTURE_ID "RX" + +# elif defined(__ICCRH850__) +# define ARCHITECTURE_ID "RH850" + +# elif defined(__ICCRL78__) +# define ARCHITECTURE_ID "RL78" + +# elif defined(__ICCRISCV__) +# define ARCHITECTURE_ID "RISCV" + +# elif defined(__ICCAVR__) +# define ARCHITECTURE_ID "AVR" + +# elif defined(__ICC430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__ICCV850__) +# define ARCHITECTURE_ID "V850" + +# elif defined(__ICC8051__) +# define ARCHITECTURE_ID "8051" + +# elif defined(__ICCSTM8__) +# define ARCHITECTURE_ID "STM8" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__ghs__) +# if defined(__PPC64__) +# define ARCHITECTURE_ID "PPC64" + +# elif defined(__ppc__) +# define ARCHITECTURE_ID "PPC" + +# elif defined(__ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__x86_64__) +# define ARCHITECTURE_ID "x64" + +# elif defined(__i386__) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__TI_COMPILER_VERSION__) +# if defined(__TI_ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__MSP430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__TMS320C28XX__) +# define ARCHITECTURE_ID "TMS320C28x" + +# elif defined(__TMS320C6X__) || defined(_TMS320C6X) +# define ARCHITECTURE_ID "TMS320C6x" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#else +# define ARCHITECTURE_ID +#endif + +/* Convert integer to decimal digit literals. */ +#define DEC(n) \ + ('0' + (((n) / 10000000)%10)), \ + ('0' + (((n) / 1000000)%10)), \ + ('0' + (((n) / 100000)%10)), \ + ('0' + (((n) / 10000)%10)), \ + ('0' + (((n) / 1000)%10)), \ + ('0' + (((n) / 100)%10)), \ + ('0' + (((n) / 10)%10)), \ + ('0' + ((n) % 10)) + +/* Convert integer to hex digit literals. */ +#define HEX(n) \ + ('0' + ((n)>>28 & 0xF)), \ + ('0' + ((n)>>24 & 0xF)), \ + ('0' + ((n)>>20 & 0xF)), \ + ('0' + ((n)>>16 & 0xF)), \ + ('0' + ((n)>>12 & 0xF)), \ + ('0' + ((n)>>8 & 0xF)), \ + ('0' + ((n)>>4 & 0xF)), \ + ('0' + ((n) & 0xF)) + +/* Construct a string literal encoding the version number. */ +#ifdef COMPILER_VERSION +char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]"; + +/* Construct a string literal encoding the version number components. */ +#elif defined(COMPILER_VERSION_MAJOR) +char const info_version[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', + COMPILER_VERSION_MAJOR, +# ifdef COMPILER_VERSION_MINOR + '.', COMPILER_VERSION_MINOR, +# ifdef COMPILER_VERSION_PATCH + '.', COMPILER_VERSION_PATCH, +# ifdef COMPILER_VERSION_TWEAK + '.', COMPILER_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct a string literal encoding the internal version number. */ +#ifdef COMPILER_VERSION_INTERNAL +char const info_version_internal[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', + 'i','n','t','e','r','n','a','l','[', + COMPILER_VERSION_INTERNAL,']','\0'}; +#elif defined(COMPILER_VERSION_INTERNAL_STR) +char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]"; +#endif + +/* Construct a string literal encoding the version number components. */ +#ifdef SIMULATE_VERSION_MAJOR +char const info_simulate_version[] = { + 'I', 'N', 'F', 'O', ':', + 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', + SIMULATE_VERSION_MAJOR, +# ifdef SIMULATE_VERSION_MINOR + '.', SIMULATE_VERSION_MINOR, +# ifdef SIMULATE_VERSION_PATCH + '.', SIMULATE_VERSION_PATCH, +# ifdef SIMULATE_VERSION_TWEAK + '.', SIMULATE_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; +char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; + + + +#if defined(__INTEL_COMPILER) && defined(_MSVC_LANG) && _MSVC_LANG < 201403L +# if defined(__INTEL_CXX11_MODE__) +# if defined(__cpp_aggregate_nsdmi) +# define CXX_STD 201402L +# else +# define CXX_STD 201103L +# endif +# else +# define CXX_STD 199711L +# endif +#elif defined(_MSC_VER) && defined(_MSVC_LANG) +# define CXX_STD _MSVC_LANG +#else +# define CXX_STD __cplusplus +#endif + +const char* info_language_dialect_default = "INFO" ":" "dialect_default[" +#if CXX_STD > 202002L + "23" +#elif CXX_STD > 201703L + "20" +#elif CXX_STD >= 201703L + "17" +#elif CXX_STD >= 201402L + "14" +#elif CXX_STD >= 201103L + "11" +#else + "98" +#endif +"]"; + +/*--------------------------------------------------------------------------*/ + +int main(int argc, char* argv[]) +{ + int require = 0; + require += info_compiler[argc]; + require += info_platform[argc]; +#ifdef COMPILER_VERSION_MAJOR + require += info_version[argc]; +#endif +#ifdef COMPILER_VERSION_INTERNAL + require += info_version_internal[argc]; +#endif +#ifdef SIMULATE_ID + require += info_simulate[argc]; +#endif +#ifdef SIMULATE_VERSION_MAJOR + require += info_simulate_version[argc]; +#endif +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) + require += info_cray[argc]; +#endif + require += info_language_dialect_default[argc]; + (void)argv; + return require; +} diff --git a/build/PHF000-Firmware/CMakeFiles/3.21.0/CompilerIdCXX/CMakeCXXCompilerId.o b/build/PHF000-Firmware/CMakeFiles/3.21.0/CompilerIdCXX/CMakeCXXCompilerId.o new file mode 100644 index 0000000..14181d3 Binary files /dev/null and b/build/PHF000-Firmware/CMakeFiles/3.21.0/CompilerIdCXX/CMakeCXXCompilerId.o differ diff --git a/build/PHF000-Firmware/CMakeFiles/CMakeError.log b/build/PHF000-Firmware/CMakeFiles/CMakeError.log new file mode 100644 index 0000000..be1ea61 --- /dev/null +++ b/build/PHF000-Firmware/CMakeFiles/CMakeError.log @@ -0,0 +1,24 @@ +Compiling the C compiler identification source file "CMakeCCompilerId.c" failed. +Compiler: /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc +Build flags: +Id flags: + +The output was: +1 +/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/../../../../arm-zephyr-eabi/bin/ld: /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/../../../../arm-zephyr-eabi/lib/libc.a(lib_a-exit.o): in function `exit': +exit.c:(.text.exit+0x34): undefined reference to `_exit' +collect2: error: ld returned 1 exit status + + +Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" failed. +Compiler: /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-g++ +Build flags: +Id flags: + +The output was: +1 +/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/../../../../arm-zephyr-eabi/bin/ld: /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/../../../../arm-zephyr-eabi/lib/libc.a(lib_a-exit.o): in function `exit': +exit.c:(.text.exit+0x34): undefined reference to `_exit' +collect2: error: ld returned 1 exit status + + diff --git a/build/PHF000-Firmware/CMakeFiles/CMakeOutput.log b/build/PHF000-Firmware/CMakeFiles/CMakeOutput.log new file mode 100644 index 0000000..3ca6a7c --- /dev/null +++ b/build/PHF000-Firmware/CMakeFiles/CMakeOutput.log @@ -0,0 +1,34 @@ +The target system is: Generic - 4.0.99 - arm +The host system is: Linux - 6.8.0-64-generic - x86_64 +Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. +Compiler: /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc +Build flags: +Id flags: -c + +The output was: +0 + + +Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "CMakeCCompilerId.o" + +The C compiler identification is GNU, found in "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/CMakeFiles/3.21.0/CompilerIdC/CMakeCCompilerId.o" + +Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. +Compiler: /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-g++ +Build flags: +Id flags: -c + +The output was: +0 + + +Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "CMakeCXXCompilerId.o" + +The CXX compiler identification is GNU, found in "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/CMakeFiles/3.21.0/CompilerIdCXX/CMakeCXXCompilerId.o" + +Checking whether the ASM compiler is GNU using "--version" matched "(GNU assembler)|(GCC)|(Free Software Foundation)": +arm-zephyr-eabi-gcc (Zephyr SDK 0.17.0) 12.2.0 +Copyright (C) 2022 Free Software Foundation, Inc. +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + diff --git a/build/PHF000-Firmware/CMakeFiles/TargetDirectories.txt b/build/PHF000-Firmware/CMakeFiles/TargetDirectories.txt new file mode 100644 index 0000000..68ad029 --- /dev/null +++ b/build/PHF000-Firmware/CMakeFiles/TargetDirectories.txt @@ -0,0 +1,460 @@ +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/CMakeFiles/bintools.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/CMakeFiles/linker.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/CMakeFiles/compiler-cpp.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/CMakeFiles/compiler.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/CMakeFiles/runners_yaml_props_target.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/CMakeFiles/shields.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/CMakeFiles/snippets.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/CMakeFiles/guiconfig.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/CMakeFiles/boards.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/CMakeFiles/app.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/CMakeFiles/asm.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/CMakeFiles/sysbuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/CMakeFiles/zephyr_property_target.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/CMakeFiles/code_data_relocation_target.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/CMakeFiles/menuconfig.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/CMakeFiles/pristine.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/CMakeFiles/devicetree_target.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/CMakeFiles/hardenconfig.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/CMakeFiles/config-twister.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/CMakeFiles/build_info_yaml_saved.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/CMakeFiles/llext-edk.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/CMakeFiles/run.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/CMakeFiles/initlevels.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/CMakeFiles/zephyr_final.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/CMakeFiles/linker_zephyr_final_script_target.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/CMakeFiles/version_h.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/CMakeFiles/zephyr.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/CMakeFiles/offsets_h.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/CMakeFiles/device_api_ld_target.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/CMakeFiles/syscall_list_h_target.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/CMakeFiles/zephyr_pre0.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/CMakeFiles/driver_validation_h_target.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/CMakeFiles/offsets.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/CMakeFiles/parse_syscalls_target.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/CMakeFiles/kobj_types_h_target.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/CMakeFiles/linker_zephyr_prebuilt_script_target.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/CMakeFiles/zephyr_generated_headers.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/arch/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/arch/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/arch/common/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/arch/common/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/arch/common/CMakeFiles/isr_tables.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/arch/common/CMakeFiles/arch__common.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/arch/arch/arm/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/arch/arch/arm/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/arch/arch/arm/core/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/arch/arch/arm/core/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/arch/arch/arm/core/CMakeFiles/arch__arm__core.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/arch/arch/arm/core/mpu/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/arch/arch/arm/core/mpu/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/arch/arch/arm/core/mpu/CMakeFiles/arch__arm__core__mpu.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/lib/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/lib/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/lib/crc/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/lib/crc/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/lib/libc/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/lib/libc/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/lib/libc/picolibc/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/lib/libc/picolibc/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/lib/libc/common/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/lib/libc/common/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/lib/libc/common/CMakeFiles/lib__libc__common.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/lib/posix/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/lib/posix/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/lib/posix/options/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/lib/posix/options/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/lib/posix/options/CMakeFiles/lib__posix__options.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/lib/hash/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/lib/hash/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/lib/heap/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/lib/heap/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/lib/mem_blocks/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/lib/mem_blocks/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/lib/os/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/lib/os/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/lib/utils/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/lib/utils/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/soc/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/soc/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/soc/common/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/soc/common/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/soc/soc/nrf52833/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/soc/soc/nrf52833/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/soc/soc/nrf52833/CMakeFiles/soc__nordic.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/soc/soc/nrf52833/nrf52/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/soc/soc/nrf52833/nrf52/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/soc/soc/nrf52833/common/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/soc/soc/nrf52833/common/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/boards/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/boards/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/boards/shields/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/boards/shields/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/canbus/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/canbus/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/debug/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/debug/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/fb/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/fb/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/fs/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/fs/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/ipc/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/ipc/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/logging/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/logging/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/logging/backends/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/logging/backends/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/logging/frontends/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/logging/frontends/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/mem_mgmt/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/mem_mgmt/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/mgmt/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/mgmt/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/modbus/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/modbus/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/pm/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/pm/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/pm/policy/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/pm/policy/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/portability/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/portability/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/random/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/random/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/rtio/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/rtio/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/sd/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/sd/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/stats/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/stats/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/storage/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/storage/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/task_wdt/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/task_wdt/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/testsuite/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/testsuite/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/tracing/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/tracing/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/usb/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/usb/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/usb/device/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/usb/device/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/usb/device/class/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/usb/device/class/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/disk/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/disk/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/firmware/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/firmware/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/interrupt_controller/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/interrupt_controller/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/interrupt_controller/CMakeFiles/drivers__interrupt_controller.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/misc/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/misc/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/misc/coresight/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/misc/coresight/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/pcie/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/pcie/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/usb/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/usb/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/usb/device/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/usb/device/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/usb/device/CMakeFiles/drivers__usb__device.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/usb/common/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/usb/common/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/usb/common/nrf_usbd_common/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/usb/common/nrf_usbd_common/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/usb/common/nrf_usbd_common/CMakeFiles/drivers__usb__common__nrf_usbd_common.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/usb_c/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/usb_c/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/adc/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/adc/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/adc/CMakeFiles/drivers__adc.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/clock_control/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/clock_control/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/clock_control/CMakeFiles/drivers__clock_control.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/console/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/console/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/console/CMakeFiles/drivers__console.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/gpio/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/gpio/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/gpio/CMakeFiles/drivers__gpio.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/hwinfo/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/hwinfo/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/hwinfo/CMakeFiles/drivers__hwinfo.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/pinctrl/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/pinctrl/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/pinctrl/CMakeFiles/drivers__pinctrl.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/pinctrl/renesas/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/pinctrl/renesas/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/CMakeFiles/drivers__sensor.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/adi/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/adi/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/ams/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/ams/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/aosong/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/aosong/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/asahi_kasei/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/asahi_kasei/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/bosch/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/bosch/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/espressif/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/espressif/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/honeywell/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/honeywell/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/infineon/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/infineon/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/ite/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/ite/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/jedec/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/jedec/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/maxim/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/maxim/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/meas/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/meas/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/memsic/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/memsic/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/microchip/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/microchip/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/nordic/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/nordic/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/nordic/temp/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/nordic/temp/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/nordic/temp/CMakeFiles/drivers__sensor__nordic__temp.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/nuvoton/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/nuvoton/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/nxp/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/nxp/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/renesas/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/renesas/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/rohm/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/rohm/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/seeed/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/seeed/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/sensirion/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/sensirion/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/silabs/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/silabs/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/st/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/st/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/tdk/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/tdk/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/ti/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/ti/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/vishay/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/vishay/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/wsen/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/wsen/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/serial/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/serial/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/serial/CMakeFiles/drivers__serial.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/timer/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/timer/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/timer/CMakeFiles/drivers__timer.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/CMakeFiles/ncs_version_h.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/CMakeFiles/ncs_commit_h.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/CMakeFiles/zephyr_commit_h.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/ext/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/ext/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/lib/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/lib/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/lib/bin/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/lib/bin/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/lib/flash_patch/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/lib/flash_patch/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/lib/fatal_error/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/lib/fatal_error/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/lib/boot_banner/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/lib/boot_banner/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/samples/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/samples/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/samples/common/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/samples/common/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/samples/common/mcumgr_bt_ota_dfu/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/samples/common/mcumgr_bt_ota_dfu/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/subsys/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/subsys/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/subsys/net/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/subsys/net/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/subsys/net/lib/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/subsys/net/lib/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/subsys/dfu/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/subsys/dfu/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/subsys/mpsl/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/subsys/mpsl/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/subsys/mpsl/cx/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/subsys/mpsl/cx/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/subsys/logging/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/subsys/logging/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/subsys/shell/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/subsys/shell/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/subsys/debug/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/subsys/debug/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/subsys/partition_manager/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/subsys/partition_manager/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/subsys/suit/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/subsys/suit/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/subsys/suit/app_tools/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/subsys/suit/app_tools/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/subsys/mgmt/mcumgr/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/subsys/mgmt/mcumgr/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/subsys/mgmt/mcumgr/grp/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/subsys/mgmt/mcumgr/grp/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/modules/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/modules/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/modules/wfa-qt/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/modules/wfa-qt/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/drivers/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/drivers/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/drivers/entropy/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/drivers/entropy/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/drivers/flash/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/drivers/flash/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/drivers/gpio/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/drivers/gpio/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/drivers/hw_cc3xx/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/drivers/hw_cc3xx/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/drivers/mpsl/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/drivers/mpsl/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/drivers/mpsl/flash_sync/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/drivers/mpsl/flash_sync/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/drivers/sensor/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/drivers/sensor/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/drivers/serial/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/drivers/serial/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/tests/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/tests/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/tests/mocks/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/tests/mocks/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/hostap/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/hostap/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/mcuboot/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/mcuboot/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/mcuboot/boot/bootutil/zephyr/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/mcuboot/boot/bootutil/zephyr/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/mbedtls/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/mbedtls/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/trusted-firmware-m/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/trusted-firmware-m/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/cjson/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/cjson/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/azure-sdk-for-c/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/azure-sdk-for-c/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/cirrus-logic/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/cirrus-logic/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/openthread/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/openthread/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/suit-processor/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/suit-processor/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/memfault-firmware-sdk/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/memfault-firmware-sdk/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/canopennode/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/canopennode/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/chre/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/chre/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/lz4/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/lz4/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nanopb/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nanopb/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/zscilib/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/zscilib/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/cmsis/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/cmsis/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/cmsis/cmsis/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/cmsis/cmsis/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/cmsis/cmsis/CMSIS/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/cmsis/cmsis/CMSIS/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/cmsis/cmsis/CMSIS/Core/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/cmsis/cmsis/CMSIS/Core/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/cmsis-dsp/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/cmsis-dsp/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/cmsis-nn/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/cmsis-nn/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/fatfs/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/fatfs/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/hal_nordic/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/hal_nordic/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/hal_nordic/modules/hal_nordic/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/hal_nordic/modules/hal_nordic/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/hal_nordic/modules/hal_nordic/nrfx/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/hal_nordic/modules/hal_nordic/nrfx/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/hal_nordic/modules/hal_nordic/nrfx/CMakeFiles/modules__hal_nordic__nrfx.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/hal_nordic/nrfx/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/hal_nordic/nrfx/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/hal_st/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/hal_st/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/hal_tdk/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/hal_tdk/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/hal_wurthelektronik/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/hal_wurthelektronik/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/liblc3/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/liblc3/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/libmetal/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/libmetal/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/littlefs/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/littlefs/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/loramac-node/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/loramac-node/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/lvgl/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/lvgl/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/mipi-sys-t/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/mipi-sys-t/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf_wifi/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf_wifi/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/open-amp/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/open-amp/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/percepio/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/percepio/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/picolibc/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/picolibc/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/segger/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/segger/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/segger/CMakeFiles/modules__segger.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/tinycrypt/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/tinycrypt/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/uoscore-uedhoc/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/uoscore-uedhoc/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/zcbor/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/zcbor/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrfxlib/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrfxlib/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrfxlib/nrfxlib/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrfxlib/nrfxlib/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrfxlib/nrf_802154/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrfxlib/nrf_802154/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf_hw_models/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf_hw_models/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/connectedhomeip/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/connectedhomeip/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/kernel/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/kernel/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/kernel/CMakeFiles/kernel.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/cmake/flash/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/cmake/flash/CMakeFiles/rtt.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/cmake/flash/CMakeFiles/flash.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/cmake/flash/CMakeFiles/debug.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/cmake/flash/CMakeFiles/debugserver.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/cmake/flash/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/cmake/flash/CMakeFiles/attach.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/cmake/usage/CMakeFiles/edit_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/cmake/usage/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/cmake/usage/CMakeFiles/usage.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/cmake/reports/CMakeFiles/rebuild_cache.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/cmake/reports/CMakeFiles/rom_report.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/cmake/reports/CMakeFiles/ram_report.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/cmake/reports/CMakeFiles/footprint.dir +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/cmake/reports/CMakeFiles/edit_cache.dir diff --git a/build/PHF000-Firmware/CMakeFiles/app.dir/drivers/actuator/actuator.c.obj b/build/PHF000-Firmware/CMakeFiles/app.dir/drivers/actuator/actuator.c.obj new file mode 100644 index 0000000..989b6ff Binary files /dev/null and b/build/PHF000-Firmware/CMakeFiles/app.dir/drivers/actuator/actuator.c.obj differ diff --git a/build/PHF000-Firmware/CMakeFiles/app.dir/drivers/battery_adc/battery_adc.c.obj b/build/PHF000-Firmware/CMakeFiles/app.dir/drivers/battery_adc/battery_adc.c.obj new file mode 100644 index 0000000..852ae93 Binary files /dev/null and b/build/PHF000-Firmware/CMakeFiles/app.dir/drivers/battery_adc/battery_adc.c.obj differ diff --git a/build/PHF000-Firmware/CMakeFiles/app.dir/drivers/button/button.c.obj b/build/PHF000-Firmware/CMakeFiles/app.dir/drivers/button/button.c.obj new file mode 100644 index 0000000..fbd7604 Binary files /dev/null and b/build/PHF000-Firmware/CMakeFiles/app.dir/drivers/button/button.c.obj differ diff --git a/build/PHF000-Firmware/CMakeFiles/app.dir/drivers/led/led.c.obj b/build/PHF000-Firmware/CMakeFiles/app.dir/drivers/led/led.c.obj new file mode 100644 index 0000000..b55ef40 Binary files /dev/null and b/build/PHF000-Firmware/CMakeFiles/app.dir/drivers/led/led.c.obj differ diff --git a/build/PHF000-Firmware/CMakeFiles/app.dir/drivers/temperature/temperature.c.obj b/build/PHF000-Firmware/CMakeFiles/app.dir/drivers/temperature/temperature.c.obj new file mode 100644 index 0000000..0f39925 Binary files /dev/null and b/build/PHF000-Firmware/CMakeFiles/app.dir/drivers/temperature/temperature.c.obj differ diff --git a/build/PHF000-Firmware/CMakeFiles/app.dir/drivers/timer_count/timer_count.c.obj b/build/PHF000-Firmware/CMakeFiles/app.dir/drivers/timer_count/timer_count.c.obj new file mode 100644 index 0000000..8796a42 Binary files /dev/null and b/build/PHF000-Firmware/CMakeFiles/app.dir/drivers/timer_count/timer_count.c.obj differ diff --git a/build/PHF000-Firmware/CMakeFiles/app.dir/src/main.c.obj b/build/PHF000-Firmware/CMakeFiles/app.dir/src/main.c.obj new file mode 100644 index 0000000..63f74e4 Binary files /dev/null and b/build/PHF000-Firmware/CMakeFiles/app.dir/src/main.c.obj differ diff --git a/build/PHF000-Firmware/CMakeFiles/clean_additional.cmake b/build/PHF000-Firmware/CMakeFiles/clean_additional.cmake new file mode 100644 index 0000000..f276c0e --- /dev/null +++ b/build/PHF000-Firmware/CMakeFiles/clean_additional.cmake @@ -0,0 +1,8 @@ +# Additional clean files +cmake_minimum_required(VERSION 3.16) + +if("${CONFIG}" STREQUAL "" OR "${CONFIG}" STREQUAL "") + file(REMOVE_RECURSE + "zephyr/include/generated/zephyr/syscalls" + ) +endif() diff --git a/build/PHF000-Firmware/CMakeFiles/cmake.check_cache b/build/PHF000-Firmware/CMakeFiles/cmake.check_cache new file mode 100644 index 0000000..3dccd73 --- /dev/null +++ b/build/PHF000-Firmware/CMakeFiles/cmake.check_cache @@ -0,0 +1 @@ +# This file is generated by cmake for dependency checking of the CMakeCache.txt file diff --git a/build/PHF000-Firmware/CMakeFiles/d/1a4c9f18d2250843b7410779831b04ccc3715fda6cff75c907a4f0325e2ed54c.d b/build/PHF000-Firmware/CMakeFiles/d/1a4c9f18d2250843b7410779831b04ccc3715fda6cff75c907a4f0325e2ed54c.d new file mode 100644 index 0000000..0899e86 --- /dev/null +++ b/build/PHF000-Firmware/CMakeFiles/d/1a4c9f18d2250843b7410779831b04ccc3715fda6cff75c907a4f0325e2ed54c.d @@ -0,0 +1,86 @@ +zephyr/linker_zephyr_pre0.cmd: \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/arch/arm/cortex_m/scripts/linker.ld \ + zephyr/include/generated/zephyr/autoconf.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/sections.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/section_tags.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/gcc.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/devicetree.h \ + zephyr/include/generated/zephyr/devicetree_generated.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/irq_multilevel.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/sys/util.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/sys/util_macro.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/sys/util_internal.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/sys/util_loops.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/sys/util_listify.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/sys/util_internal_is_eq.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/sys/util_internal_util_inc.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/sys/util_internal_util_dec.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/sys/util_internal_util_x2.h \ + /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/lib/gcc/arm-zephyr-eabi/12.2.0/include/stdbool.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/devicetree/io-channels.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/devicetree/clocks.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/devicetree/gpio.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/devicetree/spi.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/devicetree/dma.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/devicetree/pwms.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/devicetree/fixed-partitions.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/devicetree/ordinals.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/devicetree/pinctrl.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/devicetree/can.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/devicetree/reset.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/devicetree/mbox.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/devicetree/port-endpoint.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/devicetree_regions.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/linker-defs.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/common.h \ + zephyr/include/generated/zephyr/offsets.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/linker-tool.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/linker-tool-gcc.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/kernel/mm.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/kernel/internal/mm.h \ + zephyr/include/generated/pm_config.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/linker-devnull.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/rel-sections.ld \ + zephyr/include/generated/snippets-rom-start.ld \ + /home/miguel/ncs/v3.0.2/zephyr/arch/common/rom_start_address.ld \ + /home/miguel/ncs/v3.0.2/zephyr/arch/common/fill_with_zeros.ld \ + /home/miguel/ncs/v3.0.2/zephyr/arch/common/rom_start_offset.ld \ + /home/miguel/ncs/v3.0.2/zephyr/arch/arm/core/vector_table.ld \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/irq-vector-table-section.ld \ + /home/miguel/ncs/v3.0.2/zephyr/arch/arm/core/cortex_m/vector_table_pad.ld \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/kobject-text.ld \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/common-rom.ld \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/common-rom/common-rom-kernel-devices.ld \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/iterable_sections.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/device-deps.ld \ + zephyr/include/generated/device-api-sections.ld \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/common-rom/common-rom-ztest.ld \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/common-rom/common-rom-init.ld \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/common-rom/common-rom-net.ld \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/common-rom/common-rom-bt.ld \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/common-rom/common-rom-logging.ld \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/common-rom/common-rom-debug.ld \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/common-rom/common-rom-interrupt-controllers.ld \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/common-rom/common-rom-misc.ld \ + zephyr/include/generated/snippets-rom-sections.ld \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/thread-local-storage.ld \ + zephyr/include/generated/snippets-rodata.ld \ + /home/miguel/ncs/v3.0.2/zephyr/arch/arm/core/swi_tables.ld \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/kobject-rom.ld \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/cplusplus-rom.ld \ + zephyr/include/generated/snippets-ram-sections.ld \ + /home/miguel/ncs/v3.0.2/zephyr/modules/segger/segger_rtt.ld \ + /home/miguel/ncs/v3.0.2/zephyr/arch/common/ramfunc.ld \ + zephyr/include/generated/snippets-ramfunc-section.ld \ + zephyr/include/generated/snippets-rwdata.ld \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/common-ram.ld \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/kobject-data.ld \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/cplusplus-ram.ld \ + zephyr/include/generated/snippets-data-sections.ld \ + zephyr/include/generated/snippets-sections.ld \ + /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/arm_platform_init.ld \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/intlist.ld \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/debug-sections.ld \ + zephyr/include/generated/snippets-noinit.ld \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/ram-end.ld diff --git a/build/PHF000-Firmware/CMakeFiles/d/d3f51782b78ce6c377ffe1fec2e2a49cf9bc2dba4690bea8ce5efe200077f5a6.d b/build/PHF000-Firmware/CMakeFiles/d/d3f51782b78ce6c377ffe1fec2e2a49cf9bc2dba4690bea8ce5efe200077f5a6.d new file mode 100644 index 0000000..730d0c1 --- /dev/null +++ b/build/PHF000-Firmware/CMakeFiles/d/d3f51782b78ce6c377ffe1fec2e2a49cf9bc2dba4690bea8ce5efe200077f5a6.d @@ -0,0 +1,86 @@ +zephyr/linker.cmd: \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/arch/arm/cortex_m/scripts/linker.ld \ + zephyr/include/generated/zephyr/autoconf.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/sections.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/section_tags.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/gcc.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/devicetree.h \ + zephyr/include/generated/zephyr/devicetree_generated.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/irq_multilevel.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/sys/util.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/sys/util_macro.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/sys/util_internal.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/sys/util_loops.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/sys/util_listify.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/sys/util_internal_is_eq.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/sys/util_internal_util_inc.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/sys/util_internal_util_dec.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/sys/util_internal_util_x2.h \ + /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/lib/gcc/arm-zephyr-eabi/12.2.0/include/stdbool.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/devicetree/io-channels.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/devicetree/clocks.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/devicetree/gpio.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/devicetree/spi.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/devicetree/dma.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/devicetree/pwms.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/devicetree/fixed-partitions.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/devicetree/ordinals.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/devicetree/pinctrl.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/devicetree/can.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/devicetree/reset.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/devicetree/mbox.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/devicetree/port-endpoint.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/devicetree_regions.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/linker-defs.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/common.h \ + zephyr/include/generated/zephyr/offsets.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/linker-tool.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/linker-tool-gcc.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/kernel/mm.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/kernel/internal/mm.h \ + zephyr/include/generated/pm_config.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/linker-devnull.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/rel-sections.ld \ + zephyr/include/generated/snippets-rom-start.ld \ + /home/miguel/ncs/v3.0.2/zephyr/arch/common/rom_start_address.ld \ + /home/miguel/ncs/v3.0.2/zephyr/arch/common/fill_with_zeros.ld \ + /home/miguel/ncs/v3.0.2/zephyr/arch/common/rom_start_offset.ld \ + /home/miguel/ncs/v3.0.2/zephyr/arch/arm/core/vector_table.ld \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/irq-vector-table-section.ld \ + /home/miguel/ncs/v3.0.2/zephyr/arch/arm/core/cortex_m/vector_table_pad.ld \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/kobject-text.ld \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/common-rom.ld \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/common-rom/common-rom-kernel-devices.ld \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/iterable_sections.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/device-deps.ld \ + zephyr/include/generated/device-api-sections.ld \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/common-rom/common-rom-ztest.ld \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/common-rom/common-rom-init.ld \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/common-rom/common-rom-net.ld \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/common-rom/common-rom-bt.ld \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/common-rom/common-rom-logging.ld \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/common-rom/common-rom-debug.ld \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/common-rom/common-rom-interrupt-controllers.ld \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/common-rom/common-rom-misc.ld \ + zephyr/include/generated/snippets-rom-sections.ld \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/thread-local-storage.ld \ + zephyr/include/generated/snippets-rodata.ld \ + /home/miguel/ncs/v3.0.2/zephyr/arch/arm/core/swi_tables.ld \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/kobject-rom.ld \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/cplusplus-rom.ld \ + zephyr/include/generated/snippets-ram-sections.ld \ + /home/miguel/ncs/v3.0.2/zephyr/modules/segger/segger_rtt.ld \ + /home/miguel/ncs/v3.0.2/zephyr/arch/common/ramfunc.ld \ + zephyr/include/generated/snippets-ramfunc-section.ld \ + zephyr/include/generated/snippets-rwdata.ld \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/common-ram.ld \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/kobject-data.ld \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/cplusplus-ram.ld \ + zephyr/include/generated/snippets-data-sections.ld \ + zephyr/include/generated/snippets-sections.ld \ + /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/arm_platform_init.ld \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/intlist.ld \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/debug-sections.ld \ + zephyr/include/generated/snippets-noinit.ld \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/ram-end.ld diff --git a/build/PHF000-Firmware/CMakeFiles/rules.ninja b/build/PHF000-Firmware/CMakeFiles/rules.ninja new file mode 100644 index 0000000..1d7806d --- /dev/null +++ b/build/PHF000-Firmware/CMakeFiles/rules.ninja @@ -0,0 +1,634 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Ninja" Generator, CMake Version 3.21 + +# This file contains all the rules used to get the outputs files +# built from the input files. +# It is included in the main 'build.ninja'. + +# ============================================================================= +# Project: PHF000-Firmware +# Configurations: +# ============================================================================= +# ============================================================================= + +############################################# +# Rule for running custom commands. + +rule CUSTOM_COMMAND + command = $COMMAND + description = $DESC + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER__app_ + depfile = $DEP_FILE + deps = gcc + command = ccache /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER__app_ + command = $PRE_LINK && ccache /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E rm -f $TARGET_FILE && ccache /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-ar qc $TARGET_FILE $LINK_FLAGS $in && ccache /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-ranlib $TARGET_FILE && $POST_BUILD + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER__zephyr_final_ + depfile = $DEP_FILE + deps = gcc + command = ccache /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C executable. + +rule C_EXECUTABLE_LINKER__zephyr_final_ + command = $PRE_LINK && ccache /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc $FLAGS $LINK_FLAGS $in -o $TARGET_FILE $LINK_PATH $LINK_LIBRARIES -L"/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp" -lc -lgcc && $POST_BUILD + description = Linking C executable $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER__zephyr_ + depfile = $DEP_FILE + deps = gcc + command = ccache /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER__zephyr_ + command = $PRE_LINK && ccache /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E rm -f $TARGET_FILE && ccache /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-ar qc $TARGET_FILE $LINK_FLAGS $in && ccache /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-ranlib $TARGET_FILE && $POST_BUILD + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER__zephyr_pre0_ + depfile = $DEP_FILE + deps = gcc + command = ccache /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C executable. + +rule C_EXECUTABLE_LINKER__zephyr_pre0_ + command = $PRE_LINK && ccache /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc $FLAGS $LINK_FLAGS $in -o $TARGET_FILE $LINK_PATH $LINK_LIBRARIES -L"/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp" -lc -lgcc && $POST_BUILD + description = Linking C executable $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER__offsets_ + depfile = $DEP_FILE + deps = gcc + command = ccache /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER__isr_tables_ + depfile = $DEP_FILE + deps = gcc + command = ccache /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER__isr_tables_ + command = $PRE_LINK && ccache /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E rm -f $TARGET_FILE && ccache /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-ar qc $TARGET_FILE $LINK_FLAGS $in && ccache /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-ranlib $TARGET_FILE && $POST_BUILD + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER__arch__common_ + depfile = $DEP_FILE + deps = gcc + command = ccache /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER__arch__common_ + command = $PRE_LINK && ccache /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E rm -f $TARGET_FILE && ccache /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-ar qc $TARGET_FILE $LINK_FLAGS $in && ccache /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-ranlib $TARGET_FILE && $POST_BUILD + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling ASM files. + +rule ASM_COMPILER__arch__arm__core_ + depfile = $DEP_FILE + deps = gcc + command = ccache /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building ASM object $out + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER__arch__arm__core_ + depfile = $DEP_FILE + deps = gcc + command = ccache /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER__arch__arm__core_ + command = $PRE_LINK && ccache /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E rm -f $TARGET_FILE && ccache /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-ar qc $TARGET_FILE $LINK_FLAGS $in && ccache /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-ranlib $TARGET_FILE && $POST_BUILD + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling ASM files. + +rule ASM_COMPILER__arch__arm__core__cortex_m_ + depfile = $DEP_FILE + deps = gcc + command = ccache /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building ASM object $out + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER__arch__arm__core__cortex_m_ + depfile = $DEP_FILE + deps = gcc + command = ccache /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER__arch__arm__core__cortex_m_ + command = $PRE_LINK && ccache /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E rm -f $TARGET_FILE && ccache /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-ar qc $TARGET_FILE $LINK_FLAGS $in && ccache /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-ranlib $TARGET_FILE && $POST_BUILD + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER__arch__arm__core__mpu_ + depfile = $DEP_FILE + deps = gcc + command = ccache /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER__arch__arm__core__mpu_ + command = $PRE_LINK && ccache /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E rm -f $TARGET_FILE && ccache /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-ar qc $TARGET_FILE $LINK_FLAGS $in && ccache /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-ranlib $TARGET_FILE && $POST_BUILD + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER__lib__libc__picolibc_ + depfile = $DEP_FILE + deps = gcc + command = ccache /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER__lib__libc__picolibc_ + command = $PRE_LINK && ccache /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E rm -f $TARGET_FILE && ccache /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-ar qc $TARGET_FILE $LINK_FLAGS $in && ccache /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-ranlib $TARGET_FILE && $POST_BUILD + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER__lib__libc__common_ + depfile = $DEP_FILE + deps = gcc + command = ccache /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER__lib__libc__common_ + command = $PRE_LINK && ccache /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E rm -f $TARGET_FILE && ccache /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-ar qc $TARGET_FILE $LINK_FLAGS $in && ccache /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-ranlib $TARGET_FILE && $POST_BUILD + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER__lib__posix__options_ + depfile = $DEP_FILE + deps = gcc + command = ccache /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER__lib__posix__options_ + command = $PRE_LINK && ccache /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E rm -f $TARGET_FILE && ccache /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-ar qc $TARGET_FILE $LINK_FLAGS $in && ccache /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-ranlib $TARGET_FILE && $POST_BUILD + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER__soc__nordic_ + depfile = $DEP_FILE + deps = gcc + command = ccache /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER__soc__nordic_ + command = $PRE_LINK && ccache /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E rm -f $TARGET_FILE && ccache /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-ar qc $TARGET_FILE $LINK_FLAGS $in && ccache /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-ranlib $TARGET_FILE && $POST_BUILD + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER__drivers__interrupt_controller_ + depfile = $DEP_FILE + deps = gcc + command = ccache /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER__drivers__interrupt_controller_ + command = $PRE_LINK && ccache /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E rm -f $TARGET_FILE && ccache /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-ar qc $TARGET_FILE $LINK_FLAGS $in && ccache /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-ranlib $TARGET_FILE && $POST_BUILD + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER__drivers__usb__device_ + depfile = $DEP_FILE + deps = gcc + command = ccache /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER__drivers__usb__device_ + command = $PRE_LINK && ccache /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E rm -f $TARGET_FILE && ccache /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-ar qc $TARGET_FILE $LINK_FLAGS $in && ccache /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-ranlib $TARGET_FILE && $POST_BUILD + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER__drivers__usb__common__nrf_usbd_common_ + depfile = $DEP_FILE + deps = gcc + command = ccache /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER__drivers__usb__common__nrf_usbd_common_ + command = $PRE_LINK && ccache /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E rm -f $TARGET_FILE && ccache /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-ar qc $TARGET_FILE $LINK_FLAGS $in && ccache /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-ranlib $TARGET_FILE && $POST_BUILD + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER__drivers__adc_ + depfile = $DEP_FILE + deps = gcc + command = ccache /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER__drivers__adc_ + command = $PRE_LINK && ccache /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E rm -f $TARGET_FILE && ccache /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-ar qc $TARGET_FILE $LINK_FLAGS $in && ccache /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-ranlib $TARGET_FILE && $POST_BUILD + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER__drivers__clock_control_ + depfile = $DEP_FILE + deps = gcc + command = ccache /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER__drivers__clock_control_ + command = $PRE_LINK && ccache /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E rm -f $TARGET_FILE && ccache /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-ar qc $TARGET_FILE $LINK_FLAGS $in && ccache /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-ranlib $TARGET_FILE && $POST_BUILD + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER__drivers__console_ + depfile = $DEP_FILE + deps = gcc + command = ccache /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER__drivers__console_ + command = $PRE_LINK && ccache /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E rm -f $TARGET_FILE && ccache /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-ar qc $TARGET_FILE $LINK_FLAGS $in && ccache /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-ranlib $TARGET_FILE && $POST_BUILD + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER__drivers__gpio_ + depfile = $DEP_FILE + deps = gcc + command = ccache /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER__drivers__gpio_ + command = $PRE_LINK && ccache /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E rm -f $TARGET_FILE && ccache /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-ar qc $TARGET_FILE $LINK_FLAGS $in && ccache /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-ranlib $TARGET_FILE && $POST_BUILD + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER__drivers__hwinfo_ + depfile = $DEP_FILE + deps = gcc + command = ccache /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER__drivers__hwinfo_ + command = $PRE_LINK && ccache /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E rm -f $TARGET_FILE && ccache /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-ar qc $TARGET_FILE $LINK_FLAGS $in && ccache /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-ranlib $TARGET_FILE && $POST_BUILD + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER__drivers__pinctrl_ + depfile = $DEP_FILE + deps = gcc + command = ccache /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER__drivers__pinctrl_ + command = $PRE_LINK && ccache /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E rm -f $TARGET_FILE && ccache /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-ar qc $TARGET_FILE $LINK_FLAGS $in && ccache /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-ranlib $TARGET_FILE && $POST_BUILD + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER__drivers__sensor_ + depfile = $DEP_FILE + deps = gcc + command = ccache /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER__drivers__sensor_ + command = $PRE_LINK && ccache /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E rm -f $TARGET_FILE && ccache /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-ar qc $TARGET_FILE $LINK_FLAGS $in && ccache /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-ranlib $TARGET_FILE && $POST_BUILD + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER__drivers__sensor__nordic__temp_ + depfile = $DEP_FILE + deps = gcc + command = ccache /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER__drivers__sensor__nordic__temp_ + command = $PRE_LINK && ccache /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E rm -f $TARGET_FILE && ccache /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-ar qc $TARGET_FILE $LINK_FLAGS $in && ccache /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-ranlib $TARGET_FILE && $POST_BUILD + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER__drivers__serial_ + depfile = $DEP_FILE + deps = gcc + command = ccache /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER__drivers__serial_ + command = $PRE_LINK && ccache /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E rm -f $TARGET_FILE && ccache /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-ar qc $TARGET_FILE $LINK_FLAGS $in && ccache /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-ranlib $TARGET_FILE && $POST_BUILD + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER__drivers__timer_ + depfile = $DEP_FILE + deps = gcc + command = ccache /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER__drivers__timer_ + command = $PRE_LINK && ccache /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E rm -f $TARGET_FILE && ccache /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-ar qc $TARGET_FILE $LINK_FLAGS $in && ccache /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-ranlib $TARGET_FILE && $POST_BUILD + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER__modules__hal_nordic__nrfx_ + depfile = $DEP_FILE + deps = gcc + command = ccache /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER__modules__hal_nordic__nrfx_ + command = $PRE_LINK && ccache /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E rm -f $TARGET_FILE && ccache /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-ar qc $TARGET_FILE $LINK_FLAGS $in && ccache /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-ranlib $TARGET_FILE && $POST_BUILD + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER__modules__segger_ + depfile = $DEP_FILE + deps = gcc + command = ccache /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER__modules__segger_ + command = $PRE_LINK && ccache /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E rm -f $TARGET_FILE && ccache /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-ar qc $TARGET_FILE $LINK_FLAGS $in && ccache /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-ranlib $TARGET_FILE && $POST_BUILD + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER__kernel_ + depfile = $DEP_FILE + deps = gcc + command = ccache /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER__kernel_ + command = $PRE_LINK && ccache /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E rm -f $TARGET_FILE && ccache /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-ar qc $TARGET_FILE $LINK_FLAGS $in && ccache /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-ranlib $TARGET_FILE && $POST_BUILD + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for re-running cmake. + +rule RERUN_CMAKE + command = /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + description = Re-running CMake... + generator = 1 + + +############################################# +# Rule for cleaning additional files. + +rule CLEAN_ADDITIONAL + command = /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -DCONFIG=$CONFIG -P CMakeFiles/clean_additional.cmake + description = Cleaning additional files... + + +############################################# +# Rule for cleaning all built files. + +rule CLEAN + command = /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/ninja $FILE_ARG -t clean $TARGETS + description = Cleaning all built files... + + +############################################# +# Rule for printing all primary targets available. + +rule HELP + command = /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/ninja -t targets + description = All primary targets available: + diff --git a/build/PHF000-Firmware/Kconfig/Kconfig.dts b/build/PHF000-Firmware/Kconfig/Kconfig.dts new file mode 100644 index 0000000..747a10c --- /dev/null +++ b/build/PHF000-Firmware/Kconfig/Kconfig.dts @@ -0,0 +1,11313 @@ +# Generated devicetree Kconfig +# +# SPDX-License-Identifier: Apache-2.0 + +DT_COMPAT_ADAFRUIT_FEATHER_HEADER := adafruit-feather-header + +config DT_HAS_ADAFRUIT_FEATHER_HEADER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADAFRUIT_FEATHER_HEADER)) + +DT_COMPAT_ADC_KEYS := adc-keys + +config DT_HAS_ADC_KEYS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADC_KEYS)) + +DT_COMPAT_ADI_AD559X := adi,ad559x + +config DT_HAS_ADI_AD559X_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_AD559X)) + +DT_COMPAT_ADI_AD559X_ADC := adi,ad559x-adc + +config DT_HAS_ADI_AD559X_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_AD559X_ADC)) + +DT_COMPAT_ADI_AD559X_DAC := adi,ad559x-dac + +config DT_HAS_ADI_AD559X_DAC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_AD559X_DAC)) + +DT_COMPAT_ADI_AD559X_GPIO := adi,ad559x-gpio + +config DT_HAS_ADI_AD559X_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_AD559X_GPIO)) + +DT_COMPAT_ADI_AD5628 := adi,ad5628 + +config DT_HAS_ADI_AD5628_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_AD5628)) + +DT_COMPAT_ADI_AD5648 := adi,ad5648 + +config DT_HAS_ADI_AD5648_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_AD5648)) + +DT_COMPAT_ADI_AD5668 := adi,ad5668 + +config DT_HAS_ADI_AD5668_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_AD5668)) + +DT_COMPAT_ADI_AD5672 := adi,ad5672 + +config DT_HAS_ADI_AD5672_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_AD5672)) + +DT_COMPAT_ADI_AD5674 := adi,ad5674 + +config DT_HAS_ADI_AD5674_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_AD5674)) + +DT_COMPAT_ADI_AD5676 := adi,ad5676 + +config DT_HAS_ADI_AD5676_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_AD5676)) + +DT_COMPAT_ADI_AD5679 := adi,ad5679 + +config DT_HAS_ADI_AD5679_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_AD5679)) + +DT_COMPAT_ADI_AD5684 := adi,ad5684 + +config DT_HAS_ADI_AD5684_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_AD5684)) + +DT_COMPAT_ADI_AD5686 := adi,ad5686 + +config DT_HAS_ADI_AD5686_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_AD5686)) + +DT_COMPAT_ADI_AD5687 := adi,ad5687 + +config DT_HAS_ADI_AD5687_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_AD5687)) + +DT_COMPAT_ADI_AD5689 := adi,ad5689 + +config DT_HAS_ADI_AD5689_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_AD5689)) + +DT_COMPAT_ADI_AD5691 := adi,ad5691 + +config DT_HAS_ADI_AD5691_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_AD5691)) + +DT_COMPAT_ADI_AD5692 := adi,ad5692 + +config DT_HAS_ADI_AD5692_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_AD5692)) + +DT_COMPAT_ADI_AD5693 := adi,ad5693 + +config DT_HAS_ADI_AD5693_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_AD5693)) + +DT_COMPAT_ADI_ADIN1100_PHY := adi,adin1100-phy + +config DT_HAS_ADI_ADIN1100_PHY_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_ADIN1100_PHY)) + +DT_COMPAT_ADI_ADIN1110 := adi,adin1110 + +config DT_HAS_ADI_ADIN1110_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_ADIN1110)) + +DT_COMPAT_ADI_ADIN2111 := adi,adin2111 + +config DT_HAS_ADI_ADIN2111_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_ADIN2111)) + +DT_COMPAT_ADI_ADIN2111_MDIO := adi,adin2111-mdio + +config DT_HAS_ADI_ADIN2111_MDIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_ADIN2111_MDIO)) + +DT_COMPAT_ADI_ADIN2111_PHY := adi,adin2111-phy + +config DT_HAS_ADI_ADIN2111_PHY_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_ADIN2111_PHY)) + +DT_COMPAT_ADI_ADLTC2990 := adi,adltc2990 + +config DT_HAS_ADI_ADLTC2990_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_ADLTC2990)) + +DT_COMPAT_ADI_ADP5360 := adi,adp5360 + +config DT_HAS_ADI_ADP5360_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_ADP5360)) + +DT_COMPAT_ADI_ADP5360_REGULATOR := adi,adp5360-regulator + +config DT_HAS_ADI_ADP5360_REGULATOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_ADP5360_REGULATOR)) + +DT_COMPAT_ADI_ADP5585 := adi,adp5585 + +config DT_HAS_ADI_ADP5585_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_ADP5585)) + +DT_COMPAT_ADI_ADP5585_GPIO := adi,adp5585-gpio + +config DT_HAS_ADI_ADP5585_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_ADP5585_GPIO)) + +DT_COMPAT_ADI_ADT7310 := adi,adt7310 + +config DT_HAS_ADI_ADT7310_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_ADT7310)) + +DT_COMPAT_ADI_ADT7420 := adi,adt7420 + +config DT_HAS_ADI_ADT7420_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_ADT7420)) + +DT_COMPAT_ADI_ADXL345 := adi,adxl345 + +config DT_HAS_ADI_ADXL345_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_ADXL345)) + +DT_COMPAT_ADI_ADXL362 := adi,adxl362 + +config DT_HAS_ADI_ADXL362_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_ADXL362)) + +DT_COMPAT_ADI_ADXL366 := adi,adxl366 + +config DT_HAS_ADI_ADXL366_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_ADXL366)) + +DT_COMPAT_ADI_ADXL367 := adi,adxl367 + +config DT_HAS_ADI_ADXL367_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_ADXL367)) + +DT_COMPAT_ADI_ADXL372 := adi,adxl372 + +config DT_HAS_ADI_ADXL372_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_ADXL372)) + +DT_COMPAT_ADI_MAX14906_GPIO := adi,max14906-gpio + +config DT_HAS_ADI_MAX14906_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_MAX14906_GPIO)) + +DT_COMPAT_ADI_MAX14916_GPIO := adi,max14916-gpio + +config DT_HAS_ADI_MAX14916_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_MAX14916_GPIO)) + +DT_COMPAT_ADI_MAX22190_GPIO := adi,max22190-gpio + +config DT_HAS_ADI_MAX22190_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_MAX22190_GPIO)) + +DT_COMPAT_ADI_MAX32_ADC := adi,max32-adc + +config DT_HAS_ADI_MAX32_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_MAX32_ADC)) + +DT_COMPAT_ADI_MAX32_ADC_10B := adi,max32-adc-10b + +config DT_HAS_ADI_MAX32_ADC_10B_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_MAX32_ADC_10B)) + +DT_COMPAT_ADI_MAX32_ADC_SAR := adi,max32-adc-sar + +config DT_HAS_ADI_MAX32_ADC_SAR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_MAX32_ADC_SAR)) + +DT_COMPAT_ADI_MAX32_COUNTER := adi,max32-counter + +config DT_HAS_ADI_MAX32_COUNTER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_MAX32_COUNTER)) + +DT_COMPAT_ADI_MAX32_DMA := adi,max32-dma + +config DT_HAS_ADI_MAX32_DMA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_MAX32_DMA)) + +DT_COMPAT_ADI_MAX32_FLASH_CONTROLLER := adi,max32-flash-controller + +config DT_HAS_ADI_MAX32_FLASH_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_MAX32_FLASH_CONTROLLER)) + +DT_COMPAT_ADI_MAX32_GCR := adi,max32-gcr + +config DT_HAS_ADI_MAX32_GCR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_MAX32_GCR)) + +DT_COMPAT_ADI_MAX32_GPIO := adi,max32-gpio + +config DT_HAS_ADI_MAX32_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_MAX32_GPIO)) + +DT_COMPAT_ADI_MAX32_I2C := adi,max32-i2c + +config DT_HAS_ADI_MAX32_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_MAX32_I2C)) + +DT_COMPAT_ADI_MAX32_PINCTRL := adi,max32-pinctrl + +config DT_HAS_ADI_MAX32_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_MAX32_PINCTRL)) + +DT_COMPAT_ADI_MAX32_PWM := adi,max32-pwm + +config DT_HAS_ADI_MAX32_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_MAX32_PWM)) + +DT_COMPAT_ADI_MAX32_RTC_COUNTER := adi,max32-rtc-counter + +config DT_HAS_ADI_MAX32_RTC_COUNTER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_MAX32_RTC_COUNTER)) + +DT_COMPAT_ADI_MAX32_SPI := adi,max32-spi + +config DT_HAS_ADI_MAX32_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_MAX32_SPI)) + +DT_COMPAT_ADI_MAX32_TIMER := adi,max32-timer + +config DT_HAS_ADI_MAX32_TIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_MAX32_TIMER)) + +DT_COMPAT_ADI_MAX32_TRNG := adi,max32-trng + +config DT_HAS_ADI_MAX32_TRNG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_MAX32_TRNG)) + +DT_COMPAT_ADI_MAX32_UART := adi,max32-uart + +config DT_HAS_ADI_MAX32_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_MAX32_UART)) + +DT_COMPAT_ADI_MAX32_W1 := adi,max32-w1 + +config DT_HAS_ADI_MAX32_W1_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_MAX32_W1)) + +DT_COMPAT_ADI_MAX32_WATCHDOG := adi,max32-watchdog + +config DT_HAS_ADI_MAX32_WATCHDOG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_MAX32_WATCHDOG)) + +DT_COMPAT_ADI_SDP_120 := adi,sdp-120 + +config DT_HAS_ADI_SDP_120_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_SDP_120)) + +DT_COMPAT_ADI_TMC2209 := adi,tmc2209 + +config DT_HAS_ADI_TMC2209_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_TMC2209)) + +DT_COMPAT_ADI_TMC5041 := adi,tmc5041 + +config DT_HAS_ADI_TMC5041_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_TMC5041)) + +DT_COMPAT_ALTR_JTAG_UART := altr,jtag-uart + +config DT_HAS_ALTR_JTAG_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ALTR_JTAG_UART)) + +DT_COMPAT_ALTR_MSGDMA := altr,msgdma + +config DT_HAS_ALTR_MSGDMA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ALTR_MSGDMA)) + +DT_COMPAT_ALTR_NIOS2_I2C := altr,nios2-i2c + +config DT_HAS_ALTR_NIOS2_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ALTR_NIOS2_I2C)) + +DT_COMPAT_ALTR_NIOS2_QSPI := altr,nios2-qspi + +config DT_HAS_ALTR_NIOS2_QSPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ALTR_NIOS2_QSPI)) + +DT_COMPAT_ALTR_NIOS2_QSPI_NOR := altr,nios2-qspi-nor + +config DT_HAS_ALTR_NIOS2_QSPI_NOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ALTR_NIOS2_QSPI_NOR)) + +DT_COMPAT_ALTR_NIOS2F := altr,nios2f + +config DT_HAS_ALTR_NIOS2F_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ALTR_NIOS2F)) + +DT_COMPAT_ALTR_PIO_1_0 := altr,pio-1.0 + +config DT_HAS_ALTR_PIO_1_0_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ALTR_PIO_1_0)) + +DT_COMPAT_ALTR_UART := altr,uart + +config DT_HAS_ALTR_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ALTR_UART)) + +DT_COMPAT_AMBIQ_ADC := ambiq,adc + +config DT_HAS_AMBIQ_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMBIQ_ADC)) + +DT_COMPAT_AMBIQ_AM1805 := ambiq,am1805 + +config DT_HAS_AMBIQ_AM1805_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMBIQ_AM1805)) + +DT_COMPAT_AMBIQ_APOLLO3_PINCTRL := ambiq,apollo3-pinctrl + +config DT_HAS_AMBIQ_APOLLO3_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMBIQ_APOLLO3_PINCTRL)) + +DT_COMPAT_AMBIQ_APOLLO4_PINCTRL := ambiq,apollo4-pinctrl + +config DT_HAS_AMBIQ_APOLLO4_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMBIQ_APOLLO4_PINCTRL)) + +DT_COMPAT_AMBIQ_BT_HCI_SPI := ambiq,bt-hci-spi + +config DT_HAS_AMBIQ_BT_HCI_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMBIQ_BT_HCI_SPI)) + +DT_COMPAT_AMBIQ_CLKCTRL := ambiq,clkctrl + +config DT_HAS_AMBIQ_CLKCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMBIQ_CLKCTRL)) + +DT_COMPAT_AMBIQ_COUNTER := ambiq,counter + +config DT_HAS_AMBIQ_COUNTER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMBIQ_COUNTER)) + +DT_COMPAT_AMBIQ_FLASH_CONTROLLER := ambiq,flash-controller + +config DT_HAS_AMBIQ_FLASH_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMBIQ_FLASH_CONTROLLER)) + +DT_COMPAT_AMBIQ_GPIO := ambiq,gpio + +config DT_HAS_AMBIQ_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMBIQ_GPIO)) + +DT_COMPAT_AMBIQ_GPIO_BANK := ambiq,gpio-bank + +config DT_HAS_AMBIQ_GPIO_BANK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMBIQ_GPIO_BANK)) + +DT_COMPAT_AMBIQ_I2C := ambiq,i2c + +config DT_HAS_AMBIQ_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMBIQ_I2C)) + +DT_COMPAT_AMBIQ_MSPI := ambiq,mspi + +config DT_HAS_AMBIQ_MSPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMBIQ_MSPI)) + +DT_COMPAT_AMBIQ_MSPI_CONTROLLER := ambiq,mspi-controller + +config DT_HAS_AMBIQ_MSPI_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMBIQ_MSPI_CONTROLLER)) + +DT_COMPAT_AMBIQ_MSPI_DEVICE := ambiq,mspi-device + +config DT_HAS_AMBIQ_MSPI_DEVICE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMBIQ_MSPI_DEVICE)) + +DT_COMPAT_AMBIQ_PWRCTRL := ambiq,pwrctrl + +config DT_HAS_AMBIQ_PWRCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMBIQ_PWRCTRL)) + +DT_COMPAT_AMBIQ_RTC := ambiq,rtc + +config DT_HAS_AMBIQ_RTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMBIQ_RTC)) + +DT_COMPAT_AMBIQ_SPI := ambiq,spi + +config DT_HAS_AMBIQ_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMBIQ_SPI)) + +DT_COMPAT_AMBIQ_SPI_BLEIF := ambiq,spi-bleif + +config DT_HAS_AMBIQ_SPI_BLEIF_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMBIQ_SPI_BLEIF)) + +DT_COMPAT_AMBIQ_SPID := ambiq,spid + +config DT_HAS_AMBIQ_SPID_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMBIQ_SPID)) + +DT_COMPAT_AMBIQ_STIMER := ambiq,stimer + +config DT_HAS_AMBIQ_STIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMBIQ_STIMER)) + +DT_COMPAT_AMBIQ_UART := ambiq,uart + +config DT_HAS_AMBIQ_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMBIQ_UART)) + +DT_COMPAT_AMBIQ_USB := ambiq,usb + +config DT_HAS_AMBIQ_USB_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMBIQ_USB)) + +DT_COMPAT_AMBIQ_WATCHDOG := ambiq,watchdog + +config DT_HAS_AMBIQ_WATCHDOG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMBIQ_WATCHDOG)) + +DT_COMPAT_AMBIQ_HEADER := ambiq-header + +config DT_HAS_AMBIQ_HEADER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMBIQ_HEADER)) + +DT_COMPAT_AMD_SB_TSI := amd,sb-tsi + +config DT_HAS_AMD_SB_TSI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMD_SB_TSI)) + +DT_COMPAT_AMS_AS5600 := ams,as5600 + +config DT_HAS_AMS_AS5600_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMS_AS5600)) + +DT_COMPAT_AMS_AS6212 := ams,as6212 + +config DT_HAS_AMS_AS6212_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMS_AS6212)) + +DT_COMPAT_AMS_CCS811 := ams,ccs811 + +config DT_HAS_AMS_CCS811_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMS_CCS811)) + +DT_COMPAT_AMS_ENS210 := ams,ens210 + +config DT_HAS_AMS_ENS210_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMS_ENS210)) + +DT_COMPAT_AMS_IAQCORE := ams,iaqcore + +config DT_HAS_AMS_IAQCORE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMS_IAQCORE)) + +DT_COMPAT_AMS_TCS3400 := ams,tcs3400 + +config DT_HAS_AMS_TCS3400_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMS_TCS3400)) + +DT_COMPAT_AMS_TMD2620 := ams,tmd2620 + +config DT_HAS_AMS_TMD2620_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMS_TMD2620)) + +DT_COMPAT_AMS_TSL2540 := ams,tsl2540 + +config DT_HAS_AMS_TSL2540_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMS_TSL2540)) + +DT_COMPAT_AMS_TSL2561 := ams,tsl2561 + +config DT_HAS_AMS_TSL2561_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMS_TSL2561)) + +DT_COMPAT_AMS_TSL2591 := ams,tsl2591 + +config DT_HAS_AMS_TSL2591_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMS_TSL2591)) + +DT_COMPAT_ANALOG_AXIS := analog-axis + +config DT_HAS_ANALOG_AXIS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ANALOG_AXIS)) + +DT_COMPAT_ANDESTECH_ANDESCORE_V5 := andestech,andescore-v5 + +config DT_HAS_ANDESTECH_ANDESCORE_V5_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ANDESTECH_ANDESCORE_V5)) + +DT_COMPAT_ANDESTECH_ATCDMAC300 := andestech,atcdmac300 + +config DT_HAS_ANDESTECH_ATCDMAC300_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ANDESTECH_ATCDMAC300)) + +DT_COMPAT_ANDESTECH_ATCGPIO100 := andestech,atcgpio100 + +config DT_HAS_ANDESTECH_ATCGPIO100_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ANDESTECH_ATCGPIO100)) + +DT_COMPAT_ANDESTECH_ATCIIC100 := andestech,atciic100 + +config DT_HAS_ANDESTECH_ATCIIC100_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ANDESTECH_ATCIIC100)) + +DT_COMPAT_ANDESTECH_ATCPIT100 := andestech,atcpit100 + +config DT_HAS_ANDESTECH_ATCPIT100_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ANDESTECH_ATCPIT100)) + +DT_COMPAT_ANDESTECH_ATCSPI200 := andestech,atcspi200 + +config DT_HAS_ANDESTECH_ATCSPI200_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ANDESTECH_ATCSPI200)) + +DT_COMPAT_ANDESTECH_ATCWDT200 := andestech,atcwdt200 + +config DT_HAS_ANDESTECH_ATCWDT200_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ANDESTECH_ATCWDT200)) + +DT_COMPAT_ANDESTECH_L2C := andestech,l2c + +config DT_HAS_ANDESTECH_L2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ANDESTECH_L2C)) + +DT_COMPAT_ANDESTECH_MACHINE_TIMER := andestech,machine-timer + +config DT_HAS_ANDESTECH_MACHINE_TIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ANDESTECH_MACHINE_TIMER)) + +DT_COMPAT_ANDESTECH_MBOX_PLIC_SW := andestech,mbox-plic-sw + +config DT_HAS_ANDESTECH_MBOX_PLIC_SW_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ANDESTECH_MBOX_PLIC_SW)) + +DT_COMPAT_ANDESTECH_NCEPLIC100 := andestech,nceplic100 + +config DT_HAS_ANDESTECH_NCEPLIC100_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ANDESTECH_NCEPLIC100)) + +DT_COMPAT_ANDESTECH_QSPI_NOR := andestech,qspi-nor + +config DT_HAS_ANDESTECH_QSPI_NOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ANDESTECH_QSPI_NOR)) + +DT_COMPAT_AOSONG_AGS10 := aosong,ags10 + +config DT_HAS_AOSONG_AGS10_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AOSONG_AGS10)) + +DT_COMPAT_AOSONG_AHT20 := aosong,aht20 + +config DT_HAS_AOSONG_AHT20_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AOSONG_AHT20)) + +DT_COMPAT_AOSONG_AM2301B := aosong,am2301b + +config DT_HAS_AOSONG_AM2301B_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AOSONG_AM2301B)) + +DT_COMPAT_AOSONG_DHT := aosong,dht + +config DT_HAS_AOSONG_DHT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AOSONG_DHT)) + +DT_COMPAT_AOSONG_DHT20 := aosong,dht20 + +config DT_HAS_AOSONG_DHT20_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AOSONG_DHT20)) + +DT_COMPAT_AP_FCX_MLDX5 := ap,fcx-mldx5 + +config DT_HAS_AP_FCX_MLDX5_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AP_FCX_MLDX5)) + +DT_COMPAT_APA_APA102 := apa,apa102 + +config DT_HAS_APA_APA102_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_APA_APA102)) + +DT_COMPAT_APTINA_MT9M114 := aptina,mt9m114 + +config DT_HAS_APTINA_MT9M114_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_APTINA_MT9M114)) + +DT_COMPAT_ARC_DCCM := arc,dccm + +config DT_HAS_ARC_DCCM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARC_DCCM)) + +DT_COMPAT_ARC_ICCM := arc,iccm + +config DT_HAS_ARC_ICCM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARC_ICCM)) + +DT_COMPAT_ARC_XCCM := arc,xccm + +config DT_HAS_ARC_XCCM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARC_XCCM)) + +DT_COMPAT_ARC_YCCM := arc,yccm + +config DT_HAS_ARC_YCCM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARC_YCCM)) + +DT_COMPAT_ARDUINO_UNO_ADC := arduino,uno-adc + +config DT_HAS_ARDUINO_UNO_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARDUINO_UNO_ADC)) + +DT_COMPAT_ARDUINO_HEADER_R3 := arduino-header-r3 + +config DT_HAS_ARDUINO_HEADER_R3_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARDUINO_HEADER_R3)) + +DT_COMPAT_ARDUINO_MKR_HEADER := arduino-mkr-header + +config DT_HAS_ARDUINO_MKR_HEADER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARDUINO_MKR_HEADER)) + +DT_COMPAT_ARDUINO_NANO_HEADER_R3 := arduino-nano-header-r3 + +config DT_HAS_ARDUINO_NANO_HEADER_R3_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARDUINO_NANO_HEADER_R3)) + +DT_COMPAT_ARM_ARMV6M_MPU := arm,armv6m-mpu + +config DT_HAS_ARM_ARMV6M_MPU_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_ARMV6M_MPU)) + +DT_COMPAT_ARM_ARMV6M_SYSTICK := arm,armv6m-systick + +config DT_HAS_ARM_ARMV6M_SYSTICK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_ARMV6M_SYSTICK)) + +DT_COMPAT_ARM_ARMV7M_ITM := arm,armv7m-itm + +config DT_HAS_ARM_ARMV7M_ITM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_ARMV7M_ITM)) + +DT_COMPAT_ARM_ARMV7M_MPU := arm,armv7m-mpu + +config DT_HAS_ARM_ARMV7M_MPU_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_ARMV7M_MPU)) + +DT_COMPAT_ARM_ARMV7M_SYSTICK := arm,armv7m-systick + +config DT_HAS_ARM_ARMV7M_SYSTICK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_ARMV7M_SYSTICK)) + +DT_COMPAT_ARM_ARMV8_TIMER := arm,armv8-timer + +config DT_HAS_ARM_ARMV8_TIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_ARMV8_TIMER)) + +DT_COMPAT_ARM_ARMV8_1M_MPU := arm,armv8.1m-mpu + +config DT_HAS_ARM_ARMV8_1M_MPU_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_ARMV8_1M_MPU)) + +DT_COMPAT_ARM_ARMV8_1M_SYSTICK := arm,armv8.1m-systick + +config DT_HAS_ARM_ARMV8_1M_SYSTICK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_ARMV8_1M_SYSTICK)) + +DT_COMPAT_ARM_ARMV8M_ITM := arm,armv8m-itm + +config DT_HAS_ARM_ARMV8M_ITM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_ARMV8M_ITM)) + +DT_COMPAT_ARM_ARMV8M_MPU := arm,armv8m-mpu + +config DT_HAS_ARM_ARMV8M_MPU_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_ARMV8M_MPU)) + +DT_COMPAT_ARM_ARMV8M_SYSTICK := arm,armv8m-systick + +config DT_HAS_ARM_ARMV8M_SYSTICK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_ARMV8M_SYSTICK)) + +DT_COMPAT_ARM_BEETLE_SYSCON := arm,beetle-syscon + +config DT_HAS_ARM_BEETLE_SYSCON_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_BEETLE_SYSCON)) + +DT_COMPAT_ARM_CMSDK_DTIMER := arm,cmsdk-dtimer + +config DT_HAS_ARM_CMSDK_DTIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_CMSDK_DTIMER)) + +DT_COMPAT_ARM_CMSDK_GPIO := arm,cmsdk-gpio + +config DT_HAS_ARM_CMSDK_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_CMSDK_GPIO)) + +DT_COMPAT_ARM_CMSDK_TIMER := arm,cmsdk-timer + +config DT_HAS_ARM_CMSDK_TIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_CMSDK_TIMER)) + +DT_COMPAT_ARM_CMSDK_UART := arm,cmsdk-uart + +config DT_HAS_ARM_CMSDK_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_CMSDK_UART)) + +DT_COMPAT_ARM_CMSDK_WATCHDOG := arm,cmsdk-watchdog + +config DT_HAS_ARM_CMSDK_WATCHDOG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_CMSDK_WATCHDOG)) + +DT_COMPAT_ARM_CORTEX_A53 := arm,cortex-a53 + +config DT_HAS_ARM_CORTEX_A53_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_CORTEX_A53)) + +DT_COMPAT_ARM_CORTEX_A55 := arm,cortex-a55 + +config DT_HAS_ARM_CORTEX_A55_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_CORTEX_A55)) + +DT_COMPAT_ARM_CORTEX_A72 := arm,cortex-a72 + +config DT_HAS_ARM_CORTEX_A72_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_CORTEX_A72)) + +DT_COMPAT_ARM_CORTEX_A76 := arm,cortex-a76 + +config DT_HAS_ARM_CORTEX_A76_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_CORTEX_A76)) + +DT_COMPAT_ARM_CORTEX_M0 := arm,cortex-m0 + +config DT_HAS_ARM_CORTEX_M0_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_CORTEX_M0)) + +DT_COMPAT_ARM_CORTEX_M0_ := arm,cortex-m0+ + +config DT_HAS_ARM_CORTEX_M0__ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_CORTEX_M0_)) + +DT_COMPAT_ARM_CORTEX_M1 := arm,cortex-m1 + +config DT_HAS_ARM_CORTEX_M1_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_CORTEX_M1)) + +DT_COMPAT_ARM_CORTEX_M23 := arm,cortex-m23 + +config DT_HAS_ARM_CORTEX_M23_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_CORTEX_M23)) + +DT_COMPAT_ARM_CORTEX_M3 := arm,cortex-m3 + +config DT_HAS_ARM_CORTEX_M3_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_CORTEX_M3)) + +DT_COMPAT_ARM_CORTEX_M33 := arm,cortex-m33 + +config DT_HAS_ARM_CORTEX_M33_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_CORTEX_M33)) + +DT_COMPAT_ARM_CORTEX_M33F := arm,cortex-m33f + +config DT_HAS_ARM_CORTEX_M33F_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_CORTEX_M33F)) + +DT_COMPAT_ARM_CORTEX_M4 := arm,cortex-m4 + +config DT_HAS_ARM_CORTEX_M4_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_CORTEX_M4)) + +DT_COMPAT_ARM_CORTEX_M4F := arm,cortex-m4f + +config DT_HAS_ARM_CORTEX_M4F_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_CORTEX_M4F)) + +DT_COMPAT_ARM_CORTEX_M55 := arm,cortex-m55 + +config DT_HAS_ARM_CORTEX_M55_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_CORTEX_M55)) + +DT_COMPAT_ARM_CORTEX_M55F := arm,cortex-m55f + +config DT_HAS_ARM_CORTEX_M55F_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_CORTEX_M55F)) + +DT_COMPAT_ARM_CORTEX_M7 := arm,cortex-m7 + +config DT_HAS_ARM_CORTEX_M7_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_CORTEX_M7)) + +DT_COMPAT_ARM_CORTEX_M85 := arm,cortex-m85 + +config DT_HAS_ARM_CORTEX_M85_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_CORTEX_M85)) + +DT_COMPAT_ARM_CORTEX_M85F := arm,cortex-m85f + +config DT_HAS_ARM_CORTEX_M85F_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_CORTEX_M85F)) + +DT_COMPAT_ARM_CORTEX_R4 := arm,cortex-r4 + +config DT_HAS_ARM_CORTEX_R4_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_CORTEX_R4)) + +DT_COMPAT_ARM_CORTEX_R4F := arm,cortex-r4f + +config DT_HAS_ARM_CORTEX_R4F_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_CORTEX_R4F)) + +DT_COMPAT_ARM_CORTEX_R5 := arm,cortex-r5 + +config DT_HAS_ARM_CORTEX_R5_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_CORTEX_R5)) + +DT_COMPAT_ARM_CORTEX_R52 := arm,cortex-r52 + +config DT_HAS_ARM_CORTEX_R52_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_CORTEX_R52)) + +DT_COMPAT_ARM_CORTEX_R5F := arm,cortex-r5f + +config DT_HAS_ARM_CORTEX_R5F_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_CORTEX_R5F)) + +DT_COMPAT_ARM_CORTEX_R7 := arm,cortex-r7 + +config DT_HAS_ARM_CORTEX_R7_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_CORTEX_R7)) + +DT_COMPAT_ARM_CORTEX_R82 := arm,cortex-r82 + +config DT_HAS_ARM_CORTEX_R82_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_CORTEX_R82)) + +DT_COMPAT_ARM_CRYPTOCELL_310 := arm,cryptocell-310 + +config DT_HAS_ARM_CRYPTOCELL_310_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_CRYPTOCELL_310)) + +DT_COMPAT_ARM_CRYPTOCELL_312 := arm,cryptocell-312 + +config DT_HAS_ARM_CRYPTOCELL_312_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_CRYPTOCELL_312)) + +DT_COMPAT_ARM_DMA_PL330 := arm,dma-pl330 + +config DT_HAS_ARM_DMA_PL330_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_DMA_PL330)) + +DT_COMPAT_ARM_DTCM := arm,dtcm + +config DT_HAS_ARM_DTCM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_DTCM)) + +DT_COMPAT_ARM_ETHOS_U := arm,ethos-u + +config DT_HAS_ARM_ETHOS_U_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_ETHOS_U)) + +DT_COMPAT_ARM_GIC := arm,gic + +config DT_HAS_ARM_GIC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_GIC)) + +DT_COMPAT_ARM_GIC_V1 := arm,gic-v1 + +config DT_HAS_ARM_GIC_V1_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_GIC_V1)) + +DT_COMPAT_ARM_GIC_V2 := arm,gic-v2 + +config DT_HAS_ARM_GIC_V2_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_GIC_V2)) + +DT_COMPAT_ARM_GIC_V3 := arm,gic-v3 + +config DT_HAS_ARM_GIC_V3_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_GIC_V3)) + +DT_COMPAT_ARM_GIC_V3_ITS := arm,gic-v3-its + +config DT_HAS_ARM_GIC_V3_ITS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_GIC_V3_ITS)) + +DT_COMPAT_ARM_ITCM := arm,itcm + +config DT_HAS_ARM_ITCM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_ITCM)) + +DT_COMPAT_ARM_MHU := arm,mhu + +config DT_HAS_ARM_MHU_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_MHU)) + +DT_COMPAT_ARM_MPS2_FPGAIO_GPIO := arm,mps2-fpgaio-gpio + +config DT_HAS_ARM_MPS2_FPGAIO_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_MPS2_FPGAIO_GPIO)) + +DT_COMPAT_ARM_MPS3_FPGAIO_GPIO := arm,mps3-fpgaio-gpio + +config DT_HAS_ARM_MPS3_FPGAIO_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_MPS3_FPGAIO_GPIO)) + +DT_COMPAT_ARM_PL011 := arm,pl011 + +config DT_HAS_ARM_PL011_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_PL011)) + +DT_COMPAT_ARM_PL022 := arm,pl022 + +config DT_HAS_ARM_PL022_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_PL022)) + +DT_COMPAT_ARM_PSCI_0_2 := arm,psci-0.2 + +config DT_HAS_ARM_PSCI_0_2_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_PSCI_0_2)) + +DT_COMPAT_ARM_PSCI_1_1 := arm,psci-1.1 + +config DT_HAS_ARM_PSCI_1_1_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_PSCI_1_1)) + +DT_COMPAT_ARM_SBSA_UART := arm,sbsa-uart + +config DT_HAS_ARM_SBSA_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_SBSA_UART)) + +DT_COMPAT_ARM_SCC := arm,scc + +config DT_HAS_ARM_SCC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_SCC)) + +DT_COMPAT_ARM_SCMI := arm,scmi + +config DT_HAS_ARM_SCMI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_SCMI)) + +DT_COMPAT_ARM_SCMI_CLOCK := arm,scmi-clock + +config DT_HAS_ARM_SCMI_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_SCMI_CLOCK)) + +DT_COMPAT_ARM_SCMI_PINCTRL := arm,scmi-pinctrl + +config DT_HAS_ARM_SCMI_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_SCMI_PINCTRL)) + +DT_COMPAT_ARM_SCMI_SHMEM := arm,scmi-shmem + +config DT_HAS_ARM_SCMI_SHMEM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_SCMI_SHMEM)) + +DT_COMPAT_ARM_V6M_NVIC := arm,v6m-nvic + +config DT_HAS_ARM_V6M_NVIC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_V6M_NVIC)) + +DT_COMPAT_ARM_V7M_NVIC := arm,v7m-nvic + +config DT_HAS_ARM_V7M_NVIC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_V7M_NVIC)) + +DT_COMPAT_ARM_V8_1M_NVIC := arm,v8.1m-nvic + +config DT_HAS_ARM_V8_1M_NVIC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_V8_1M_NVIC)) + +DT_COMPAT_ARM_V8M_NVIC := arm,v8m-nvic + +config DT_HAS_ARM_V8M_NVIC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_V8M_NVIC)) + +DT_COMPAT_ARM_VERSATILE_I2C := arm,versatile-i2c + +config DT_HAS_ARM_VERSATILE_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_VERSATILE_I2C)) + +DT_COMPAT_ASAHI_KASEI_AK8975 := asahi-kasei,ak8975 + +config DT_HAS_ASAHI_KASEI_AK8975_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ASAHI_KASEI_AK8975)) + +DT_COMPAT_ASAHI_KASEI_AKM09918C := asahi-kasei,akm09918c + +config DT_HAS_ASAHI_KASEI_AKM09918C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ASAHI_KASEI_AKM09918C)) + +DT_COMPAT_ASMEDIA_ASM2364 := asmedia,asm2364 + +config DT_HAS_ASMEDIA_ASM2364_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ASMEDIA_ASM2364)) + +DT_COMPAT_ASPEED_AST10X0_CLOCK := aspeed,ast10x0-clock + +config DT_HAS_ASPEED_AST10X0_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ASPEED_AST10X0_CLOCK)) + +DT_COMPAT_ASPEED_AST10X0_RESET := aspeed,ast10x0-reset + +config DT_HAS_ASPEED_AST10X0_RESET_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ASPEED_AST10X0_RESET)) + +DT_COMPAT_ATMEL_AT24 := atmel,at24 + +config DT_HAS_ATMEL_AT24_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_AT24)) + +DT_COMPAT_ATMEL_AT24MAC402 := atmel,at24mac402 + +config DT_HAS_ATMEL_AT24MAC402_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_AT24MAC402)) + +DT_COMPAT_ATMEL_AT25 := atmel,at25 + +config DT_HAS_ATMEL_AT25_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_AT25)) + +DT_COMPAT_ATMEL_AT45 := atmel,at45 + +config DT_HAS_ATMEL_AT45_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_AT45)) + +DT_COMPAT_ATMEL_ATAES132A := atmel,ataes132a + +config DT_HAS_ATMEL_ATAES132A_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_ATAES132A)) + +DT_COMPAT_ATMEL_RF2XX := atmel,rf2xx + +config DT_HAS_ATMEL_RF2XX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_RF2XX)) + +DT_COMPAT_ATMEL_SAM_ADC := atmel,sam-adc + +config DT_HAS_ATMEL_SAM_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM_ADC)) + +DT_COMPAT_ATMEL_SAM_AFEC := atmel,sam-afec + +config DT_HAS_ATMEL_SAM_AFEC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM_AFEC)) + +DT_COMPAT_ATMEL_SAM_CAN := atmel,sam-can + +config DT_HAS_ATMEL_SAM_CAN_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM_CAN)) + +DT_COMPAT_ATMEL_SAM_DAC := atmel,sam-dac + +config DT_HAS_ATMEL_SAM_DAC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM_DAC)) + +DT_COMPAT_ATMEL_SAM_FLASH := atmel,sam-flash + +config DT_HAS_ATMEL_SAM_FLASH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM_FLASH)) + +DT_COMPAT_ATMEL_SAM_FLASH_CONTROLLER := atmel,sam-flash-controller + +config DT_HAS_ATMEL_SAM_FLASH_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM_FLASH_CONTROLLER)) + +DT_COMPAT_ATMEL_SAM_GMAC := atmel,sam-gmac + +config DT_HAS_ATMEL_SAM_GMAC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM_GMAC)) + +DT_COMPAT_ATMEL_SAM_GPIO := atmel,sam-gpio + +config DT_HAS_ATMEL_SAM_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM_GPIO)) + +DT_COMPAT_ATMEL_SAM_HSMCI := atmel,sam-hsmci + +config DT_HAS_ATMEL_SAM_HSMCI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM_HSMCI)) + +DT_COMPAT_ATMEL_SAM_I2C_TWI := atmel,sam-i2c-twi + +config DT_HAS_ATMEL_SAM_I2C_TWI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM_I2C_TWI)) + +DT_COMPAT_ATMEL_SAM_I2C_TWIHS := atmel,sam-i2c-twihs + +config DT_HAS_ATMEL_SAM_I2C_TWIHS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM_I2C_TWIHS)) + +DT_COMPAT_ATMEL_SAM_I2C_TWIM := atmel,sam-i2c-twim + +config DT_HAS_ATMEL_SAM_I2C_TWIM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM_I2C_TWIM)) + +DT_COMPAT_ATMEL_SAM_MDIO := atmel,sam-mdio + +config DT_HAS_ATMEL_SAM_MDIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM_MDIO)) + +DT_COMPAT_ATMEL_SAM_PINCTRL := atmel,sam-pinctrl + +config DT_HAS_ATMEL_SAM_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM_PINCTRL)) + +DT_COMPAT_ATMEL_SAM_PMC := atmel,sam-pmc + +config DT_HAS_ATMEL_SAM_PMC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM_PMC)) + +DT_COMPAT_ATMEL_SAM_PWM := atmel,sam-pwm + +config DT_HAS_ATMEL_SAM_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM_PWM)) + +DT_COMPAT_ATMEL_SAM_RSTC := atmel,sam-rstc + +config DT_HAS_ATMEL_SAM_RSTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM_RSTC)) + +DT_COMPAT_ATMEL_SAM_RTC := atmel,sam-rtc + +config DT_HAS_ATMEL_SAM_RTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM_RTC)) + +DT_COMPAT_ATMEL_SAM_SMC := atmel,sam-smc + +config DT_HAS_ATMEL_SAM_SMC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM_SMC)) + +DT_COMPAT_ATMEL_SAM_SPI := atmel,sam-spi + +config DT_HAS_ATMEL_SAM_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM_SPI)) + +DT_COMPAT_ATMEL_SAM_SSC := atmel,sam-ssc + +config DT_HAS_ATMEL_SAM_SSC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM_SSC)) + +DT_COMPAT_ATMEL_SAM_SUPC := atmel,sam-supc + +config DT_HAS_ATMEL_SAM_SUPC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM_SUPC)) + +DT_COMPAT_ATMEL_SAM_TC := atmel,sam-tc + +config DT_HAS_ATMEL_SAM_TC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM_TC)) + +DT_COMPAT_ATMEL_SAM_TC_QDEC := atmel,sam-tc-qdec + +config DT_HAS_ATMEL_SAM_TC_QDEC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM_TC_QDEC)) + +DT_COMPAT_ATMEL_SAM_TRNG := atmel,sam-trng + +config DT_HAS_ATMEL_SAM_TRNG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM_TRNG)) + +DT_COMPAT_ATMEL_SAM_UART := atmel,sam-uart + +config DT_HAS_ATMEL_SAM_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM_UART)) + +DT_COMPAT_ATMEL_SAM_USART := atmel,sam-usart + +config DT_HAS_ATMEL_SAM_USART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM_USART)) + +DT_COMPAT_ATMEL_SAM_USBC := atmel,sam-usbc + +config DT_HAS_ATMEL_SAM_USBC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM_USBC)) + +DT_COMPAT_ATMEL_SAM_USBHS := atmel,sam-usbhs + +config DT_HAS_ATMEL_SAM_USBHS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM_USBHS)) + +DT_COMPAT_ATMEL_SAM_WATCHDOG := atmel,sam-watchdog + +config DT_HAS_ATMEL_SAM_WATCHDOG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM_WATCHDOG)) + +DT_COMPAT_ATMEL_SAM_XDMAC := atmel,sam-xdmac + +config DT_HAS_ATMEL_SAM_XDMAC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM_XDMAC)) + +DT_COMPAT_ATMEL_SAM0_ADC := atmel,sam0-adc + +config DT_HAS_ATMEL_SAM0_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM0_ADC)) + +DT_COMPAT_ATMEL_SAM0_CAN := atmel,sam0-can + +config DT_HAS_ATMEL_SAM0_CAN_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM0_CAN)) + +DT_COMPAT_ATMEL_SAM0_DAC := atmel,sam0-dac + +config DT_HAS_ATMEL_SAM0_DAC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM0_DAC)) + +DT_COMPAT_ATMEL_SAM0_DMAC := atmel,sam0-dmac + +config DT_HAS_ATMEL_SAM0_DMAC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM0_DMAC)) + +DT_COMPAT_ATMEL_SAM0_EIC := atmel,sam0-eic + +config DT_HAS_ATMEL_SAM0_EIC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM0_EIC)) + +DT_COMPAT_ATMEL_SAM0_GMAC := atmel,sam0-gmac + +config DT_HAS_ATMEL_SAM0_GMAC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM0_GMAC)) + +DT_COMPAT_ATMEL_SAM0_GPIO := atmel,sam0-gpio + +config DT_HAS_ATMEL_SAM0_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM0_GPIO)) + +DT_COMPAT_ATMEL_SAM0_I2C := atmel,sam0-i2c + +config DT_HAS_ATMEL_SAM0_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM0_I2C)) + +DT_COMPAT_ATMEL_SAM0_ID := atmel,sam0-id + +config DT_HAS_ATMEL_SAM0_ID_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM0_ID)) + +DT_COMPAT_ATMEL_SAM0_NVMCTRL := atmel,sam0-nvmctrl + +config DT_HAS_ATMEL_SAM0_NVMCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM0_NVMCTRL)) + +DT_COMPAT_ATMEL_SAM0_PINCTRL := atmel,sam0-pinctrl + +config DT_HAS_ATMEL_SAM0_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM0_PINCTRL)) + +DT_COMPAT_ATMEL_SAM0_PINMUX := atmel,sam0-pinmux + +config DT_HAS_ATMEL_SAM0_PINMUX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM0_PINMUX)) + +DT_COMPAT_ATMEL_SAM0_RTC := atmel,sam0-rtc + +config DT_HAS_ATMEL_SAM0_RTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM0_RTC)) + +DT_COMPAT_ATMEL_SAM0_SERCOM := atmel,sam0-sercom + +config DT_HAS_ATMEL_SAM0_SERCOM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM0_SERCOM)) + +DT_COMPAT_ATMEL_SAM0_SPI := atmel,sam0-spi + +config DT_HAS_ATMEL_SAM0_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM0_SPI)) + +DT_COMPAT_ATMEL_SAM0_TC_PWM := atmel,sam0-tc-pwm + +config DT_HAS_ATMEL_SAM0_TC_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM0_TC_PWM)) + +DT_COMPAT_ATMEL_SAM0_TC32 := atmel,sam0-tc32 + +config DT_HAS_ATMEL_SAM0_TC32_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM0_TC32)) + +DT_COMPAT_ATMEL_SAM0_TCC_PWM := atmel,sam0-tcc-pwm + +config DT_HAS_ATMEL_SAM0_TCC_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM0_TCC_PWM)) + +DT_COMPAT_ATMEL_SAM0_UART := atmel,sam0-uart + +config DT_HAS_ATMEL_SAM0_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM0_UART)) + +DT_COMPAT_ATMEL_SAM0_USB := atmel,sam0-usb + +config DT_HAS_ATMEL_SAM0_USB_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM0_USB)) + +DT_COMPAT_ATMEL_SAM0_WATCHDOG := atmel,sam0-watchdog + +config DT_HAS_ATMEL_SAM0_WATCHDOG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM0_WATCHDOG)) + +DT_COMPAT_ATMEL_SAM4L_FLASHCALW_CONTROLLER := atmel,sam4l-flashcalw-controller + +config DT_HAS_ATMEL_SAM4L_FLASHCALW_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM4L_FLASHCALW_CONTROLLER)) + +DT_COMPAT_ATMEL_SAM4L_GPIO := atmel,sam4l-gpio + +config DT_HAS_ATMEL_SAM4L_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM4L_GPIO)) + +DT_COMPAT_ATMEL_SAM4L_UID := atmel,sam4l-uid + +config DT_HAS_ATMEL_SAM4L_UID_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM4L_UID)) + +DT_COMPAT_ATMEL_SAMC2X_GCLK := atmel,samc2x-gclk + +config DT_HAS_ATMEL_SAMC2X_GCLK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAMC2X_GCLK)) + +DT_COMPAT_ATMEL_SAMC2X_MCLK := atmel,samc2x-mclk + +config DT_HAS_ATMEL_SAMC2X_MCLK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAMC2X_MCLK)) + +DT_COMPAT_ATMEL_SAMD2X_GCLK := atmel,samd2x-gclk + +config DT_HAS_ATMEL_SAMD2X_GCLK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAMD2X_GCLK)) + +DT_COMPAT_ATMEL_SAMD2X_PM := atmel,samd2x-pm + +config DT_HAS_ATMEL_SAMD2X_PM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAMD2X_PM)) + +DT_COMPAT_ATMEL_SAMD5X_GCLK := atmel,samd5x-gclk + +config DT_HAS_ATMEL_SAMD5X_GCLK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAMD5X_GCLK)) + +DT_COMPAT_ATMEL_SAMD5X_MCLK := atmel,samd5x-mclk + +config DT_HAS_ATMEL_SAMD5X_MCLK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAMD5X_MCLK)) + +DT_COMPAT_ATMEL_SAML2X_GCLK := atmel,saml2x-gclk + +config DT_HAS_ATMEL_SAML2X_GCLK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAML2X_GCLK)) + +DT_COMPAT_ATMEL_SAML2X_MCLK := atmel,saml2x-mclk + +config DT_HAS_ATMEL_SAML2X_MCLK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAML2X_MCLK)) + +DT_COMPAT_ATMEL_WINC1500 := atmel,winc1500 + +config DT_HAS_ATMEL_WINC1500_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_WINC1500)) + +DT_COMPAT_ATMEL_XPLAINED_HEADER := atmel-xplained-header + +config DT_HAS_ATMEL_XPLAINED_HEADER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_XPLAINED_HEADER)) + +DT_COMPAT_ATMEL_XPLAINED_PRO_HEADER := atmel-xplained-pro-header + +config DT_HAS_ATMEL_XPLAINED_PRO_HEADER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_XPLAINED_PRO_HEADER)) + +DT_COMPAT_AVAGO_APDS9253 := avago,apds9253 + +config DT_HAS_AVAGO_APDS9253_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AVAGO_APDS9253)) + +DT_COMPAT_AVAGO_APDS9306 := avago,apds9306 + +config DT_HAS_AVAGO_APDS9306_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AVAGO_APDS9306)) + +DT_COMPAT_AVAGO_APDS9960 := avago,apds9960 + +config DT_HAS_AVAGO_APDS9960_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AVAGO_APDS9960)) + +DT_COMPAT_AWINIC_AW9523B := awinic,aw9523b + +config DT_HAS_AWINIC_AW9523B_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AWINIC_AW9523B)) + +DT_COMPAT_AWINIC_AW9523B_GPIO := awinic,aw9523b-gpio + +config DT_HAS_AWINIC_AW9523B_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AWINIC_AW9523B_GPIO)) + +DT_COMPAT_BOSCH_BMA280 := bosch,bma280 + +config DT_HAS_BOSCH_BMA280_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BOSCH_BMA280)) + +DT_COMPAT_BOSCH_BMA4XX := bosch,bma4xx + +config DT_HAS_BOSCH_BMA4XX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BOSCH_BMA4XX)) + +DT_COMPAT_BOSCH_BMC150_MAGN := bosch,bmc150_magn + +config DT_HAS_BOSCH_BMC150_MAGN_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BOSCH_BMC150_MAGN)) + +DT_COMPAT_BOSCH_BME280 := bosch,bme280 + +config DT_HAS_BOSCH_BME280_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BOSCH_BME280)) + +DT_COMPAT_BOSCH_BME680 := bosch,bme680 + +config DT_HAS_BOSCH_BME680_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BOSCH_BME680)) + +DT_COMPAT_BOSCH_BMG160 := bosch,bmg160 + +config DT_HAS_BOSCH_BMG160_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BOSCH_BMG160)) + +DT_COMPAT_BOSCH_BMI08X_ACCEL := bosch,bmi08x-accel + +config DT_HAS_BOSCH_BMI08X_ACCEL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BOSCH_BMI08X_ACCEL)) + +DT_COMPAT_BOSCH_BMI08X_GYRO := bosch,bmi08x-gyro + +config DT_HAS_BOSCH_BMI08X_GYRO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BOSCH_BMI08X_GYRO)) + +DT_COMPAT_BOSCH_BMI160 := bosch,bmi160 + +config DT_HAS_BOSCH_BMI160_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BOSCH_BMI160)) + +DT_COMPAT_BOSCH_BMI270 := bosch,bmi270 + +config DT_HAS_BOSCH_BMI270_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BOSCH_BMI270)) + +DT_COMPAT_BOSCH_BMI323 := bosch,bmi323 + +config DT_HAS_BOSCH_BMI323_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BOSCH_BMI323)) + +DT_COMPAT_BOSCH_BMM150 := bosch,bmm150 + +config DT_HAS_BOSCH_BMM150_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BOSCH_BMM150)) + +DT_COMPAT_BOSCH_BMM350 := bosch,bmm350 + +config DT_HAS_BOSCH_BMM350_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BOSCH_BMM350)) + +DT_COMPAT_BOSCH_BMP180 := bosch,bmp180 + +config DT_HAS_BOSCH_BMP180_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BOSCH_BMP180)) + +DT_COMPAT_BOSCH_BMP388 := bosch,bmp388 + +config DT_HAS_BOSCH_BMP388_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BOSCH_BMP388)) + +DT_COMPAT_BOSCH_BMP390 := bosch,bmp390 + +config DT_HAS_BOSCH_BMP390_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BOSCH_BMP390)) + +DT_COMPAT_BOSCH_BMP581 := bosch,bmp581 + +config DT_HAS_BOSCH_BMP581_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BOSCH_BMP581)) + +DT_COMPAT_BRCM_BCM2711_AUX_UART := brcm,bcm2711-aux-uart + +config DT_HAS_BRCM_BCM2711_AUX_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BRCM_BCM2711_AUX_UART)) + +DT_COMPAT_BRCM_BCM2711_GPIO := brcm,bcm2711-gpio + +config DT_HAS_BRCM_BCM2711_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BRCM_BCM2711_GPIO)) + +DT_COMPAT_BRCM_BRCMSTB_GPIO := brcm,brcmstb-gpio + +config DT_HAS_BRCM_BRCMSTB_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BRCM_BRCMSTB_GPIO)) + +DT_COMPAT_BRCM_IPROC_GPIO := brcm,iproc-gpio + +config DT_HAS_BRCM_IPROC_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BRCM_IPROC_GPIO)) + +DT_COMPAT_BRCM_IPROC_I2C := brcm,iproc-i2c + +config DT_HAS_BRCM_IPROC_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BRCM_IPROC_I2C)) + +DT_COMPAT_BRCM_IPROC_PAX_DMA_V1 := brcm,iproc-pax-dma-v1 + +config DT_HAS_BRCM_IPROC_PAX_DMA_V1_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BRCM_IPROC_PAX_DMA_V1)) + +DT_COMPAT_BRCM_IPROC_PAX_DMA_V2 := brcm,iproc-pax-dma-v2 + +config DT_HAS_BRCM_IPROC_PAX_DMA_V2_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BRCM_IPROC_PAX_DMA_V2)) + +DT_COMPAT_BRCM_IPROC_PCIE_EP := brcm,iproc-pcie-ep + +config DT_HAS_BRCM_IPROC_PCIE_EP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BRCM_IPROC_PCIE_EP)) + +DT_COMPAT_CAF_AGGREGATOR := caf,aggregator + +config DT_HAS_CAF_AGGREGATOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_CAF_AGGREGATOR)) + +DT_COMPAT_CAN_TRANSCEIVER_GPIO := can-transceiver-gpio + +config DT_HAS_CAN_TRANSCEIVER_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_CAN_TRANSCEIVER_GPIO)) + +DT_COMPAT_CDNS_I3C := cdns,i3c + +config DT_HAS_CDNS_I3C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_CDNS_I3C)) + +DT_COMPAT_CDNS_NAND := cdns,nand + +config DT_HAS_CDNS_NAND_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_CDNS_NAND)) + +DT_COMPAT_CDNS_QSPI_NOR := cdns,qspi-nor + +config DT_HAS_CDNS_QSPI_NOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_CDNS_QSPI_NOR)) + +DT_COMPAT_CDNS_SDHC := cdns,sdhc + +config DT_HAS_CDNS_SDHC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_CDNS_SDHC)) + +DT_COMPAT_CDNS_TENSILICA_XTENSA_LX3 := cdns,tensilica-xtensa-lx3 + +config DT_HAS_CDNS_TENSILICA_XTENSA_LX3_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_CDNS_TENSILICA_XTENSA_LX3)) + +DT_COMPAT_CDNS_TENSILICA_XTENSA_LX4 := cdns,tensilica-xtensa-lx4 + +config DT_HAS_CDNS_TENSILICA_XTENSA_LX4_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_CDNS_TENSILICA_XTENSA_LX4)) + +DT_COMPAT_CDNS_TENSILICA_XTENSA_LX6 := cdns,tensilica-xtensa-lx6 + +config DT_HAS_CDNS_TENSILICA_XTENSA_LX6_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_CDNS_TENSILICA_XTENSA_LX6)) + +DT_COMPAT_CDNS_TENSILICA_XTENSA_LX7 := cdns,tensilica-xtensa-lx7 + +config DT_HAS_CDNS_TENSILICA_XTENSA_LX7_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_CDNS_TENSILICA_XTENSA_LX7)) + +DT_COMPAT_CDNS_UART := cdns,uart + +config DT_HAS_CDNS_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_CDNS_UART)) + +DT_COMPAT_CDNS_XTENSA_CORE_INTC := cdns,xtensa-core-intc + +config DT_HAS_CDNS_XTENSA_CORE_INTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_CDNS_XTENSA_CORE_INTC)) + +DT_COMPAT_CHIPSEMI_CHSC6X := chipsemi,chsc6x + +config DT_HAS_CHIPSEMI_CHSC6X_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_CHIPSEMI_CHSC6X)) + +DT_COMPAT_CIRQUE_PINNACLE := cirque,pinnacle + +config DT_HAS_CIRQUE_PINNACLE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_CIRQUE_PINNACLE)) + +DT_COMPAT_CIRRUS_CP9314 := cirrus,cp9314 + +config DT_HAS_CIRRUS_CP9314_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_CIRRUS_CP9314)) + +DT_COMPAT_CIRRUS_CS47L63 := cirrus,cs47l63 + +config DT_HAS_CIRRUS_CS47L63_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_CIRRUS_CS47L63)) + +DT_COMPAT_CURRENT_SENSE_AMPLIFIER := current-sense-amplifier + +config DT_HAS_CURRENT_SENSE_AMPLIFIER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_CURRENT_SENSE_AMPLIFIER)) + +DT_COMPAT_CURRENT_SENSE_SHUNT := current-sense-shunt + +config DT_HAS_CURRENT_SENSE_SHUNT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_CURRENT_SENSE_SHUNT)) + +DT_COMPAT_CYPRESS_CY8C95XX_GPIO := cypress,cy8c95xx-gpio + +config DT_HAS_CYPRESS_CY8C95XX_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_CYPRESS_CY8C95XX_GPIO)) + +DT_COMPAT_CYPRESS_CY8C95XX_GPIO_PORT := cypress,cy8c95xx-gpio-port + +config DT_HAS_CYPRESS_CY8C95XX_GPIO_PORT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_CYPRESS_CY8C95XX_GPIO_PORT)) + +DT_COMPAT_CYPRESS_PSOC6_FLASH_CONTROLLER := cypress,psoc6-flash-controller + +config DT_HAS_CYPRESS_PSOC6_FLASH_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_CYPRESS_PSOC6_FLASH_CONTROLLER)) + +DT_COMPAT_CYPRESS_PSOC6_GPIO := cypress,psoc6-gpio + +config DT_HAS_CYPRESS_PSOC6_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_CYPRESS_PSOC6_GPIO)) + +DT_COMPAT_CYPRESS_PSOC6_HSIOM := cypress,psoc6-hsiom + +config DT_HAS_CYPRESS_PSOC6_HSIOM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_CYPRESS_PSOC6_HSIOM)) + +DT_COMPAT_CYPRESS_PSOC6_INTMUX := cypress,psoc6-intmux + +config DT_HAS_CYPRESS_PSOC6_INTMUX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_CYPRESS_PSOC6_INTMUX)) + +DT_COMPAT_CYPRESS_PSOC6_INTMUX_CH := cypress,psoc6-intmux-ch + +config DT_HAS_CYPRESS_PSOC6_INTMUX_CH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_CYPRESS_PSOC6_INTMUX_CH)) + +DT_COMPAT_CYPRESS_PSOC6_SPI := cypress,psoc6-spi + +config DT_HAS_CYPRESS_PSOC6_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_CYPRESS_PSOC6_SPI)) + +DT_COMPAT_CYPRESS_PSOC6_UART := cypress,psoc6-uart + +config DT_HAS_CYPRESS_PSOC6_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_CYPRESS_PSOC6_UART)) + +DT_COMPAT_CYPRESS_PSOC6_UID := cypress,psoc6-uid + +config DT_HAS_CYPRESS_PSOC6_UID_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_CYPRESS_PSOC6_UID)) + +DT_COMPAT_DAVICOM_DM8806_PHY := davicom,dm8806-phy + +config DT_HAS_DAVICOM_DM8806_PHY_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_DAVICOM_DM8806_PHY)) + +DT_COMPAT_DECAWAVE_DW1000 := decawave,dw1000 + +config DT_HAS_DECAWAVE_DW1000_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_DECAWAVE_DW1000)) + +DT_COMPAT_DFROBOT_A01NYUB := dfrobot,a01nyub + +config DT_HAS_DFROBOT_A01NYUB_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_DFROBOT_A01NYUB)) + +DT_COMPAT_DIGILENT_PMOD := digilent,pmod + +config DT_HAS_DIGILENT_PMOD_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_DIGILENT_PMOD)) + +DT_COMPAT_DIODES_PI3USB9201 := diodes,pi3usb9201 + +config DT_HAS_DIODES_PI3USB9201_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_DIODES_PI3USB9201)) + +DT_COMPAT_EFINIX_SAPPHIRE_GPIO := efinix,sapphire-gpio + +config DT_HAS_EFINIX_SAPPHIRE_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_EFINIX_SAPPHIRE_GPIO)) + +DT_COMPAT_EFINIX_SAPPHIRE_TIMER0 := efinix,sapphire-timer0 + +config DT_HAS_EFINIX_SAPPHIRE_TIMER0_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_EFINIX_SAPPHIRE_TIMER0)) + +DT_COMPAT_EFINIX_SAPPHIRE_UART0 := efinix,sapphire-uart0 + +config DT_HAS_EFINIX_SAPPHIRE_UART0_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_EFINIX_SAPPHIRE_UART0)) + +DT_COMPAT_EFINIX_VEXRISCV_SAPPHIRE := efinix,vexriscv-sapphire + +config DT_HAS_EFINIX_VEXRISCV_SAPPHIRE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_EFINIX_VEXRISCV_SAPPHIRE)) + +DT_COMPAT_ENE_KB1200_ADC := ene,kb1200-adc + +config DT_HAS_ENE_KB1200_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ENE_KB1200_ADC)) + +DT_COMPAT_ENE_KB1200_GCFG := ene,kb1200-gcfg + +config DT_HAS_ENE_KB1200_GCFG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ENE_KB1200_GCFG)) + +DT_COMPAT_ENE_KB1200_GPIO := ene,kb1200-gpio + +config DT_HAS_ENE_KB1200_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ENE_KB1200_GPIO)) + +DT_COMPAT_ENE_KB1200_I2C := ene,kb1200-i2c + +config DT_HAS_ENE_KB1200_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ENE_KB1200_I2C)) + +DT_COMPAT_ENE_KB1200_PINCTRL := ene,kb1200-pinctrl + +config DT_HAS_ENE_KB1200_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ENE_KB1200_PINCTRL)) + +DT_COMPAT_ENE_KB1200_PMU := ene,kb1200-pmu + +config DT_HAS_ENE_KB1200_PMU_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ENE_KB1200_PMU)) + +DT_COMPAT_ENE_KB1200_PWM := ene,kb1200-pwm + +config DT_HAS_ENE_KB1200_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ENE_KB1200_PWM)) + +DT_COMPAT_ENE_KB1200_TACH := ene,kb1200-tach + +config DT_HAS_ENE_KB1200_TACH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ENE_KB1200_TACH)) + +DT_COMPAT_ENE_KB1200_UART := ene,kb1200-uart + +config DT_HAS_ENE_KB1200_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ENE_KB1200_UART)) + +DT_COMPAT_ENE_KB1200_WATCHDOG := ene,kb1200-watchdog + +config DT_HAS_ENE_KB1200_WATCHDOG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ENE_KB1200_WATCHDOG)) + +DT_COMPAT_EPCOS_B57861S0103A039 := epcos,b57861s0103a039 + +config DT_HAS_EPCOS_B57861S0103A039_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_EPCOS_B57861S0103A039)) + +DT_COMPAT_ESPRESSIF_ESP_AT := espressif,esp-at + +config DT_HAS_ESPRESSIF_ESP_AT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP_AT)) + +DT_COMPAT_ESPRESSIF_ESP32_ADC := espressif,esp32-adc + +config DT_HAS_ESPRESSIF_ESP32_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_ADC)) + +DT_COMPAT_ESPRESSIF_ESP32_BT_HCI := espressif,esp32-bt-hci + +config DT_HAS_ESPRESSIF_ESP32_BT_HCI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_BT_HCI)) + +DT_COMPAT_ESPRESSIF_ESP32_DAC := espressif,esp32-dac + +config DT_HAS_ESPRESSIF_ESP32_DAC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_DAC)) + +DT_COMPAT_ESPRESSIF_ESP32_ETH := espressif,esp32-eth + +config DT_HAS_ESPRESSIF_ESP32_ETH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_ETH)) + +DT_COMPAT_ESPRESSIF_ESP32_FLASH_CONTROLLER := espressif,esp32-flash-controller + +config DT_HAS_ESPRESSIF_ESP32_FLASH_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_FLASH_CONTROLLER)) + +DT_COMPAT_ESPRESSIF_ESP32_GDMA := espressif,esp32-gdma + +config DT_HAS_ESPRESSIF_ESP32_GDMA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_GDMA)) + +DT_COMPAT_ESPRESSIF_ESP32_GPIO := espressif,esp32-gpio + +config DT_HAS_ESPRESSIF_ESP32_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_GPIO)) + +DT_COMPAT_ESPRESSIF_ESP32_I2C := espressif,esp32-i2c + +config DT_HAS_ESPRESSIF_ESP32_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_I2C)) + +DT_COMPAT_ESPRESSIF_ESP32_I2S := espressif,esp32-i2s + +config DT_HAS_ESPRESSIF_ESP32_I2S_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_I2S)) + +DT_COMPAT_ESPRESSIF_ESP32_INTC := espressif,esp32-intc + +config DT_HAS_ESPRESSIF_ESP32_INTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_INTC)) + +DT_COMPAT_ESPRESSIF_ESP32_IPM := espressif,esp32-ipm + +config DT_HAS_ESPRESSIF_ESP32_IPM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_IPM)) + +DT_COMPAT_ESPRESSIF_ESP32_LCD_CAM := espressif,esp32-lcd-cam + +config DT_HAS_ESPRESSIF_ESP32_LCD_CAM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_LCD_CAM)) + +DT_COMPAT_ESPRESSIF_ESP32_LEDC := espressif,esp32-ledc + +config DT_HAS_ESPRESSIF_ESP32_LEDC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_LEDC)) + +DT_COMPAT_ESPRESSIF_ESP32_MCPWM := espressif,esp32-mcpwm + +config DT_HAS_ESPRESSIF_ESP32_MCPWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_MCPWM)) + +DT_COMPAT_ESPRESSIF_ESP32_MDIO := espressif,esp32-mdio + +config DT_HAS_ESPRESSIF_ESP32_MDIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_MDIO)) + +DT_COMPAT_ESPRESSIF_ESP32_PCNT := espressif,esp32-pcnt + +config DT_HAS_ESPRESSIF_ESP32_PCNT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_PCNT)) + +DT_COMPAT_ESPRESSIF_ESP32_PINCTRL := espressif,esp32-pinctrl + +config DT_HAS_ESPRESSIF_ESP32_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_PINCTRL)) + +DT_COMPAT_ESPRESSIF_ESP32_RTC := espressif,esp32-rtc + +config DT_HAS_ESPRESSIF_ESP32_RTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_RTC)) + +DT_COMPAT_ESPRESSIF_ESP32_RTC_TIMER := espressif,esp32-rtc-timer + +config DT_HAS_ESPRESSIF_ESP32_RTC_TIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_RTC_TIMER)) + +DT_COMPAT_ESPRESSIF_ESP32_SDHC := espressif,esp32-sdhc + +config DT_HAS_ESPRESSIF_ESP32_SDHC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_SDHC)) + +DT_COMPAT_ESPRESSIF_ESP32_SDHC_SLOT := espressif,esp32-sdhc-slot + +config DT_HAS_ESPRESSIF_ESP32_SDHC_SLOT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_SDHC_SLOT)) + +DT_COMPAT_ESPRESSIF_ESP32_SPI := espressif,esp32-spi + +config DT_HAS_ESPRESSIF_ESP32_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_SPI)) + +DT_COMPAT_ESPRESSIF_ESP32_SYSTIMER := espressif,esp32-systimer + +config DT_HAS_ESPRESSIF_ESP32_SYSTIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_SYSTIMER)) + +DT_COMPAT_ESPRESSIF_ESP32_TEMP := espressif,esp32-temp + +config DT_HAS_ESPRESSIF_ESP32_TEMP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_TEMP)) + +DT_COMPAT_ESPRESSIF_ESP32_TIMER := espressif,esp32-timer + +config DT_HAS_ESPRESSIF_ESP32_TIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_TIMER)) + +DT_COMPAT_ESPRESSIF_ESP32_TOUCH := espressif,esp32-touch + +config DT_HAS_ESPRESSIF_ESP32_TOUCH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_TOUCH)) + +DT_COMPAT_ESPRESSIF_ESP32_TRNG := espressif,esp32-trng + +config DT_HAS_ESPRESSIF_ESP32_TRNG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_TRNG)) + +DT_COMPAT_ESPRESSIF_ESP32_TWAI := espressif,esp32-twai + +config DT_HAS_ESPRESSIF_ESP32_TWAI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_TWAI)) + +DT_COMPAT_ESPRESSIF_ESP32_UART := espressif,esp32-uart + +config DT_HAS_ESPRESSIF_ESP32_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_UART)) + +DT_COMPAT_ESPRESSIF_ESP32_USB_SERIAL := espressif,esp32-usb-serial + +config DT_HAS_ESPRESSIF_ESP32_USB_SERIAL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_USB_SERIAL)) + +DT_COMPAT_ESPRESSIF_ESP32_WATCHDOG := espressif,esp32-watchdog + +config DT_HAS_ESPRESSIF_ESP32_WATCHDOG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_WATCHDOG)) + +DT_COMPAT_ESPRESSIF_ESP32_WIFI := espressif,esp32-wifi + +config DT_HAS_ESPRESSIF_ESP32_WIFI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_WIFI)) + +DT_COMPAT_ESPRESSIF_ESP32_XT_WDT := espressif,esp32-xt-wdt + +config DT_HAS_ESPRESSIF_ESP32_XT_WDT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_XT_WDT)) + +DT_COMPAT_ESPRESSIF_MBOX_ESP32 := espressif,mbox-esp32 + +config DT_HAS_ESPRESSIF_MBOX_ESP32_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_MBOX_ESP32)) + +DT_COMPAT_ESPRESSIF_RISCV := espressif,riscv + +config DT_HAS_ESPRESSIF_RISCV_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_RISCV)) + +DT_COMPAT_ESPRESSIF_XTENSA_LX6 := espressif,xtensa-lx6 + +config DT_HAS_ESPRESSIF_XTENSA_LX6_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_XTENSA_LX6)) + +DT_COMPAT_ESPRESSIF_XTENSA_LX7 := espressif,xtensa-lx7 + +config DT_HAS_ESPRESSIF_XTENSA_LX7_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_XTENSA_LX7)) + +DT_COMPAT_ETHERNET_PHY := ethernet-phy + +config DT_HAS_ETHERNET_PHY_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ETHERNET_PHY)) + +DT_COMPAT_FCS_FXL6408 := fcs,fxl6408 + +config DT_HAS_FCS_FXL6408_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_FCS_FXL6408)) + +DT_COMPAT_FESTO_VEAA_X_3 := festo,veaa-x-3 + +config DT_HAS_FESTO_VEAA_X_3_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_FESTO_VEAA_X_3)) + +DT_COMPAT_FINTEK_F75303 := fintek,f75303 + +config DT_HAS_FINTEK_F75303_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_FINTEK_F75303)) + +DT_COMPAT_FIXED_CLOCK := fixed-clock + +config DT_HAS_FIXED_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_FIXED_CLOCK)) + +DT_COMPAT_FIXED_FACTOR_CLOCK := fixed-factor-clock + +config DT_HAS_FIXED_FACTOR_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_FIXED_FACTOR_CLOCK)) + +DT_COMPAT_FIXED_PARTITIONS := fixed-partitions + +config DT_HAS_FIXED_PARTITIONS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_FIXED_PARTITIONS)) + +DT_COMPAT_FOCALTECH_FT5336 := focaltech,ft5336 + +config DT_HAS_FOCALTECH_FT5336_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_FOCALTECH_FT5336)) + +DT_COMPAT_FRIDA_NT35510 := frida,nt35510 + +config DT_HAS_FRIDA_NT35510_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_FRIDA_NT35510)) + +DT_COMPAT_FSL_IMX21_I2C := fsl,imx21-i2c + +config DT_HAS_FSL_IMX21_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_FSL_IMX21_I2C)) + +DT_COMPAT_FSL_IMX27_PWM := fsl,imx27-pwm + +config DT_HAS_FSL_IMX27_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_FSL_IMX27_PWM)) + +DT_COMPAT_FTDI_FT800 := ftdi,ft800 + +config DT_HAS_FTDI_FT800_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_FTDI_FT800)) + +DT_COMPAT_FUJITSU_MB85RCXX := fujitsu,mb85rcxx + +config DT_HAS_FUJITSU_MB85RCXX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_FUJITSU_MB85RCXX)) + +DT_COMPAT_FUJITSU_MB85RSXX := fujitsu,mb85rsxx + +config DT_HAS_FUJITSU_MB85RSXX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_FUJITSU_MB85RSXX)) + +DT_COMPAT_FUTABA_SBUS := futaba,sbus + +config DT_HAS_FUTABA_SBUS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_FUTABA_SBUS)) + +DT_COMPAT_GAISLER_APBUART := gaisler,apbuart + +config DT_HAS_GAISLER_APBUART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GAISLER_APBUART)) + +DT_COMPAT_GAISLER_GPTIMER := gaisler,gptimer + +config DT_HAS_GAISLER_GPTIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GAISLER_GPTIMER)) + +DT_COMPAT_GAISLER_GRGPIO := gaisler,grgpio + +config DT_HAS_GAISLER_GRGPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GAISLER_GRGPIO)) + +DT_COMPAT_GAISLER_IRQMP := gaisler,irqmp + +config DT_HAS_GAISLER_IRQMP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GAISLER_IRQMP)) + +DT_COMPAT_GAISLER_LEON3 := gaisler,leon3 + +config DT_HAS_GAISLER_LEON3_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GAISLER_LEON3)) + +DT_COMPAT_GAISLER_SPIMCTRL := gaisler,spimctrl + +config DT_HAS_GAISLER_SPIMCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GAISLER_SPIMCTRL)) + +DT_COMPAT_GALAXYCORE_GC2145 := galaxycore,gc2145 + +config DT_HAS_GALAXYCORE_GC2145_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GALAXYCORE_GC2145)) + +DT_COMPAT_GALAXYCORE_GC9X01X := galaxycore,gc9x01x + +config DT_HAS_GALAXYCORE_GC9X01X_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GALAXYCORE_GC9X01X)) + +DT_COMPAT_GD_GD32_ADC := gd,gd32-adc + +config DT_HAS_GD_GD32_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GD_GD32_ADC)) + +DT_COMPAT_GD_GD32_AFIO := gd,gd32-afio + +config DT_HAS_GD_GD32_AFIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GD_GD32_AFIO)) + +DT_COMPAT_GD_GD32_CCTL := gd,gd32-cctl + +config DT_HAS_GD_GD32_CCTL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GD_GD32_CCTL)) + +DT_COMPAT_GD_GD32_DAC := gd,gd32-dac + +config DT_HAS_GD_GD32_DAC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GD_GD32_DAC)) + +DT_COMPAT_GD_GD32_DMA := gd,gd32-dma + +config DT_HAS_GD_GD32_DMA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GD_GD32_DMA)) + +DT_COMPAT_GD_GD32_DMA_V1 := gd,gd32-dma-v1 + +config DT_HAS_GD_GD32_DMA_V1_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GD_GD32_DMA_V1)) + +DT_COMPAT_GD_GD32_EXTI := gd,gd32-exti + +config DT_HAS_GD_GD32_EXTI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GD_GD32_EXTI)) + +DT_COMPAT_GD_GD32_FLASH_CONTROLLER := gd,gd32-flash-controller + +config DT_HAS_GD_GD32_FLASH_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GD_GD32_FLASH_CONTROLLER)) + +DT_COMPAT_GD_GD32_FWDGT := gd,gd32-fwdgt + +config DT_HAS_GD_GD32_FWDGT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GD_GD32_FWDGT)) + +DT_COMPAT_GD_GD32_GPIO := gd,gd32-gpio + +config DT_HAS_GD_GD32_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GD_GD32_GPIO)) + +DT_COMPAT_GD_GD32_I2C := gd,gd32-i2c + +config DT_HAS_GD_GD32_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GD_GD32_I2C)) + +DT_COMPAT_GD_GD32_NV_FLASH_V1 := gd,gd32-nv-flash-v1 + +config DT_HAS_GD_GD32_NV_FLASH_V1_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GD_GD32_NV_FLASH_V1)) + +DT_COMPAT_GD_GD32_NV_FLASH_V2 := gd,gd32-nv-flash-v2 + +config DT_HAS_GD_GD32_NV_FLASH_V2_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GD_GD32_NV_FLASH_V2)) + +DT_COMPAT_GD_GD32_NV_FLASH_V3 := gd,gd32-nv-flash-v3 + +config DT_HAS_GD_GD32_NV_FLASH_V3_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GD_GD32_NV_FLASH_V3)) + +DT_COMPAT_GD_GD32_PINCTRL_AF := gd,gd32-pinctrl-af + +config DT_HAS_GD_GD32_PINCTRL_AF_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GD_GD32_PINCTRL_AF)) + +DT_COMPAT_GD_GD32_PINCTRL_AFIO := gd,gd32-pinctrl-afio + +config DT_HAS_GD_GD32_PINCTRL_AFIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GD_GD32_PINCTRL_AFIO)) + +DT_COMPAT_GD_GD32_PWM := gd,gd32-pwm + +config DT_HAS_GD_GD32_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GD_GD32_PWM)) + +DT_COMPAT_GD_GD32_RCTL := gd,gd32-rctl + +config DT_HAS_GD_GD32_RCTL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GD_GD32_RCTL)) + +DT_COMPAT_GD_GD32_RCU := gd,gd32-rcu + +config DT_HAS_GD_GD32_RCU_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GD_GD32_RCU)) + +DT_COMPAT_GD_GD32_SPI := gd,gd32-spi + +config DT_HAS_GD_GD32_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GD_GD32_SPI)) + +DT_COMPAT_GD_GD32_SYSCFG := gd,gd32-syscfg + +config DT_HAS_GD_GD32_SYSCFG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GD_GD32_SYSCFG)) + +DT_COMPAT_GD_GD32_TIMER := gd,gd32-timer + +config DT_HAS_GD_GD32_TIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GD_GD32_TIMER)) + +DT_COMPAT_GD_GD32_USART := gd,gd32-usart + +config DT_HAS_GD_GD32_USART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GD_GD32_USART)) + +DT_COMPAT_GD_GD32_WWDGT := gd,gd32-wwdgt + +config DT_HAS_GD_GD32_WWDGT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GD_GD32_WWDGT)) + +DT_COMPAT_GENERIC_FEM_TWO_CTRL_PINS := generic-fem-two-ctrl-pins + +config DT_HAS_GENERIC_FEM_TWO_CTRL_PINS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GENERIC_FEM_TWO_CTRL_PINS)) + +DT_COMPAT_GENERIC_RADIO_COEX_ONE_WIRE := generic-radio-coex-one-wire + +config DT_HAS_GENERIC_RADIO_COEX_ONE_WIRE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GENERIC_RADIO_COEX_ONE_WIRE)) + +DT_COMPAT_GENERIC_RADIO_COEX_THREE_WIRE := generic-radio-coex-three-wire + +config DT_HAS_GENERIC_RADIO_COEX_THREE_WIRE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GENERIC_RADIO_COEX_THREE_WIRE)) + +DT_COMPAT_GNSS_NMEA_GENERIC := gnss-nmea-generic + +config DT_HAS_GNSS_NMEA_GENERIC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GNSS_NMEA_GENERIC)) + +DT_COMPAT_GOODIX_GT911 := goodix,gt911 + +config DT_HAS_GOODIX_GT911_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GOODIX_GT911)) + +DT_COMPAT_GPIO_I2C := gpio-i2c + +config DT_HAS_GPIO_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GPIO_I2C)) + +DT_COMPAT_GPIO_I2C_SWITCH := gpio-i2c-switch + +config DT_HAS_GPIO_I2C_SWITCH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GPIO_I2C_SWITCH)) + +DT_COMPAT_GPIO_KBD_MATRIX := gpio-kbd-matrix + +config DT_HAS_GPIO_KBD_MATRIX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GPIO_KBD_MATRIX)) + +DT_COMPAT_GPIO_KEYS := gpio-keys + +config DT_HAS_GPIO_KEYS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GPIO_KEYS)) + +DT_COMPAT_GPIO_LEDS := gpio-leds + +config DT_HAS_GPIO_LEDS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GPIO_LEDS)) + +DT_COMPAT_GPIO_QDEC := gpio-qdec + +config DT_HAS_GPIO_QDEC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GPIO_QDEC)) + +DT_COMPAT_GPIO_RADIO_COEX := gpio-radio-coex + +config DT_HAS_GPIO_RADIO_COEX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GPIO_RADIO_COEX)) + +DT_COMPAT_GREELED_LPD8803 := greeled,lpd8803 + +config DT_HAS_GREELED_LPD8803_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GREELED_LPD8803)) + +DT_COMPAT_GREELED_LPD8806 := greeled,lpd8806 + +config DT_HAS_GREELED_LPD8806_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GREELED_LPD8806)) + +DT_COMPAT_GROVE_HEADER := grove-header + +config DT_HAS_GROVE_HEADER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GROVE_HEADER)) + +DT_COMPAT_GSS_EXPLORIR_M := gss,explorir-m + +config DT_HAS_GSS_EXPLORIR_M_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GSS_EXPLORIR_M)) + +DT_COMPAT_HAMAMATSU_S11059 := hamamatsu,s11059 + +config DT_HAS_HAMAMATSU_S11059_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_HAMAMATSU_S11059)) + +DT_COMPAT_HC_SR04 := hc-sr04 + +config DT_HAS_HC_SR04_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_HC_SR04)) + +DT_COMPAT_HIMAX_HX8394 := himax,hx8394 + +config DT_HAS_HIMAX_HX8394_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_HIMAX_HX8394)) + +DT_COMPAT_HIT_HD44780 := hit,hd44780 + +config DT_HAS_HIT_HD44780_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_HIT_HD44780)) + +DT_COMPAT_HOLTEK_HT16K33 := holtek,ht16k33 + +config DT_HAS_HOLTEK_HT16K33_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_HOLTEK_HT16K33)) + +DT_COMPAT_HONEYWELL_HMC5883L := honeywell,hmc5883l + +config DT_HAS_HONEYWELL_HMC5883L_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_HONEYWELL_HMC5883L)) + +DT_COMPAT_HONEYWELL_MPR := honeywell,mpr + +config DT_HAS_HONEYWELL_MPR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_HONEYWELL_MPR)) + +DT_COMPAT_HONEYWELL_SM351LT := honeywell,sm351lt + +config DT_HAS_HONEYWELL_SM351LT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_HONEYWELL_SM351LT)) + +DT_COMPAT_HOPERF_HP206C := hoperf,hp206c + +config DT_HAS_HOPERF_HP206C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_HOPERF_HP206C)) + +DT_COMPAT_HOPERF_TH02 := hoperf,th02 + +config DT_HAS_HOPERF_TH02_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_HOPERF_TH02)) + +DT_COMPAT_HYNITRON_CST816S := hynitron,cst816s + +config DT_HAS_HYNITRON_CST816S_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_HYNITRON_CST816S)) + +DT_COMPAT_HZGROW_R502A := hzgrow,r502a + +config DT_HAS_HZGROW_R502A_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_HZGROW_R502A)) + +DT_COMPAT_ILITEK_ILI2132A := ilitek,ili2132a + +config DT_HAS_ILITEK_ILI2132A_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ILITEK_ILI2132A)) + +DT_COMPAT_ILITEK_ILI9340 := ilitek,ili9340 + +config DT_HAS_ILITEK_ILI9340_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ILITEK_ILI9340)) + +DT_COMPAT_ILITEK_ILI9341 := ilitek,ili9341 + +config DT_HAS_ILITEK_ILI9341_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ILITEK_ILI9341)) + +DT_COMPAT_ILITEK_ILI9342C := ilitek,ili9342c + +config DT_HAS_ILITEK_ILI9342C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ILITEK_ILI9342C)) + +DT_COMPAT_ILITEK_ILI9488 := ilitek,ili9488 + +config DT_HAS_ILITEK_ILI9488_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ILITEK_ILI9488)) + +DT_COMPAT_ILITEK_ILI9806E_DSI := ilitek,ili9806e-dsi + +config DT_HAS_ILITEK_ILI9806E_DSI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ILITEK_ILI9806E_DSI)) + +DT_COMPAT_INFINEON_AIROC_WIFI := infineon,airoc-wifi + +config DT_HAS_INFINEON_AIROC_WIFI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_AIROC_WIFI)) + +DT_COMPAT_INFINEON_CAT1_ADC := infineon,cat1-adc + +config DT_HAS_INFINEON_CAT1_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_CAT1_ADC)) + +DT_COMPAT_INFINEON_CAT1_BLESS_HCI := infineon,cat1-bless-hci + +config DT_HAS_INFINEON_CAT1_BLESS_HCI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_CAT1_BLESS_HCI)) + +DT_COMPAT_INFINEON_CAT1_COUNTER := infineon,cat1-counter + +config DT_HAS_INFINEON_CAT1_COUNTER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_CAT1_COUNTER)) + +DT_COMPAT_INFINEON_CAT1_FLASH_CONTROLLER := infineon,cat1-flash-controller + +config DT_HAS_INFINEON_CAT1_FLASH_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_CAT1_FLASH_CONTROLLER)) + +DT_COMPAT_INFINEON_CAT1_GPIO := infineon,cat1-gpio + +config DT_HAS_INFINEON_CAT1_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_CAT1_GPIO)) + +DT_COMPAT_INFINEON_CAT1_I2C := infineon,cat1-i2c + +config DT_HAS_INFINEON_CAT1_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_CAT1_I2C)) + +DT_COMPAT_INFINEON_CAT1_PINCTRL := infineon,cat1-pinctrl + +config DT_HAS_INFINEON_CAT1_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_CAT1_PINCTRL)) + +DT_COMPAT_INFINEON_CAT1_PWM := infineon,cat1-pwm + +config DT_HAS_INFINEON_CAT1_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_CAT1_PWM)) + +DT_COMPAT_INFINEON_CAT1_QSPI_FLASH := infineon,cat1-qspi-flash + +config DT_HAS_INFINEON_CAT1_QSPI_FLASH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_CAT1_QSPI_FLASH)) + +DT_COMPAT_INFINEON_CAT1_RTC := infineon,cat1-rtc + +config DT_HAS_INFINEON_CAT1_RTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_CAT1_RTC)) + +DT_COMPAT_INFINEON_CAT1_SCB := infineon,cat1-scb + +config DT_HAS_INFINEON_CAT1_SCB_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_CAT1_SCB)) + +DT_COMPAT_INFINEON_CAT1_SDHC_SDIO := infineon,cat1-sdhc-sdio + +config DT_HAS_INFINEON_CAT1_SDHC_SDIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_CAT1_SDHC_SDIO)) + +DT_COMPAT_INFINEON_CAT1_SPI := infineon,cat1-spi + +config DT_HAS_INFINEON_CAT1_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_CAT1_SPI)) + +DT_COMPAT_INFINEON_CAT1_UART := infineon,cat1-uart + +config DT_HAS_INFINEON_CAT1_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_CAT1_UART)) + +DT_COMPAT_INFINEON_CAT1_WATCHDOG := infineon,cat1-watchdog + +config DT_HAS_INFINEON_CAT1_WATCHDOG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_CAT1_WATCHDOG)) + +DT_COMPAT_INFINEON_CYW208XX_HCI := infineon,cyw208xx-hci + +config DT_HAS_INFINEON_CYW208XX_HCI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_CYW208XX_HCI)) + +DT_COMPAT_INFINEON_CYW43XXX_BT_HCI := infineon,cyw43xxx-bt-hci + +config DT_HAS_INFINEON_CYW43XXX_BT_HCI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_CYW43XXX_BT_HCI)) + +DT_COMPAT_INFINEON_DPS310 := infineon,dps310 + +config DT_HAS_INFINEON_DPS310_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_DPS310)) + +DT_COMPAT_INFINEON_TLE9104 := infineon,tle9104 + +config DT_HAS_INFINEON_TLE9104_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_TLE9104)) + +DT_COMPAT_INFINEON_TLE9104_DIAGNOSTICS := infineon,tle9104-diagnostics + +config DT_HAS_INFINEON_TLE9104_DIAGNOSTICS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_TLE9104_DIAGNOSTICS)) + +DT_COMPAT_INFINEON_TLE9104_GPIO := infineon,tle9104-gpio + +config DT_HAS_INFINEON_TLE9104_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_TLE9104_GPIO)) + +DT_COMPAT_INFINEON_XMC4XXX_ADC := infineon,xmc4xxx-adc + +config DT_HAS_INFINEON_XMC4XXX_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_XMC4XXX_ADC)) + +DT_COMPAT_INFINEON_XMC4XXX_CAN := infineon,xmc4xxx-can + +config DT_HAS_INFINEON_XMC4XXX_CAN_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_XMC4XXX_CAN)) + +DT_COMPAT_INFINEON_XMC4XXX_CAN_NODE := infineon,xmc4xxx-can-node + +config DT_HAS_INFINEON_XMC4XXX_CAN_NODE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_XMC4XXX_CAN_NODE)) + +DT_COMPAT_INFINEON_XMC4XXX_CCU4_PWM := infineon,xmc4xxx-ccu4-pwm + +config DT_HAS_INFINEON_XMC4XXX_CCU4_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_XMC4XXX_CCU4_PWM)) + +DT_COMPAT_INFINEON_XMC4XXX_CCU8_PWM := infineon,xmc4xxx-ccu8-pwm + +config DT_HAS_INFINEON_XMC4XXX_CCU8_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_XMC4XXX_CCU8_PWM)) + +DT_COMPAT_INFINEON_XMC4XXX_DMA := infineon,xmc4xxx-dma + +config DT_HAS_INFINEON_XMC4XXX_DMA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_XMC4XXX_DMA)) + +DT_COMPAT_INFINEON_XMC4XXX_ETHERNET := infineon,xmc4xxx-ethernet + +config DT_HAS_INFINEON_XMC4XXX_ETHERNET_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_XMC4XXX_ETHERNET)) + +DT_COMPAT_INFINEON_XMC4XXX_FLASH_CONTROLLER := infineon,xmc4xxx-flash-controller + +config DT_HAS_INFINEON_XMC4XXX_FLASH_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_XMC4XXX_FLASH_CONTROLLER)) + +DT_COMPAT_INFINEON_XMC4XXX_GPIO := infineon,xmc4xxx-gpio + +config DT_HAS_INFINEON_XMC4XXX_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_XMC4XXX_GPIO)) + +DT_COMPAT_INFINEON_XMC4XXX_I2C := infineon,xmc4xxx-i2c + +config DT_HAS_INFINEON_XMC4XXX_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_XMC4XXX_I2C)) + +DT_COMPAT_INFINEON_XMC4XXX_INTC := infineon,xmc4xxx-intc + +config DT_HAS_INFINEON_XMC4XXX_INTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_XMC4XXX_INTC)) + +DT_COMPAT_INFINEON_XMC4XXX_MDIO := infineon,xmc4xxx-mdio + +config DT_HAS_INFINEON_XMC4XXX_MDIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_XMC4XXX_MDIO)) + +DT_COMPAT_INFINEON_XMC4XXX_NV_FLASH := infineon,xmc4xxx-nv-flash + +config DT_HAS_INFINEON_XMC4XXX_NV_FLASH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_XMC4XXX_NV_FLASH)) + +DT_COMPAT_INFINEON_XMC4XXX_PINCTRL := infineon,xmc4xxx-pinctrl + +config DT_HAS_INFINEON_XMC4XXX_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_XMC4XXX_PINCTRL)) + +DT_COMPAT_INFINEON_XMC4XXX_RTC := infineon,xmc4xxx-rtc + +config DT_HAS_INFINEON_XMC4XXX_RTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_XMC4XXX_RTC)) + +DT_COMPAT_INFINEON_XMC4XXX_SPI := infineon,xmc4xxx-spi + +config DT_HAS_INFINEON_XMC4XXX_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_XMC4XXX_SPI)) + +DT_COMPAT_INFINEON_XMC4XXX_TEMP := infineon,xmc4xxx-temp + +config DT_HAS_INFINEON_XMC4XXX_TEMP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_XMC4XXX_TEMP)) + +DT_COMPAT_INFINEON_XMC4XXX_UART := infineon,xmc4xxx-uart + +config DT_HAS_INFINEON_XMC4XXX_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_XMC4XXX_UART)) + +DT_COMPAT_INFINEON_XMC4XXX_WATCHDOG := infineon,xmc4xxx-watchdog + +config DT_HAS_INFINEON_XMC4XXX_WATCHDOG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_XMC4XXX_WATCHDOG)) + +DT_COMPAT_INPUT_KEYMAP := input-keymap + +config DT_HAS_INPUT_KEYMAP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INPUT_KEYMAP)) + +DT_COMPAT_INTEL_ACE_ART_COUNTER := intel,ace-art-counter + +config DT_HAS_INTEL_ACE_ART_COUNTER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_ACE_ART_COUNTER)) + +DT_COMPAT_INTEL_ACE_INTC := intel,ace-intc + +config DT_HAS_INTEL_ACE_INTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_ACE_INTC)) + +DT_COMPAT_INTEL_ACE_RTC_COUNTER := intel,ace-rtc-counter + +config DT_HAS_INTEL_ACE_RTC_COUNTER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_ACE_RTC_COUNTER)) + +DT_COMPAT_INTEL_ACE_TIMESTAMP := intel,ace-timestamp + +config DT_HAS_INTEL_ACE_TIMESTAMP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_ACE_TIMESTAMP)) + +DT_COMPAT_INTEL_ADSP_COMMUNICATION_WIDGET := intel,adsp-communication-widget + +config DT_HAS_INTEL_ADSP_COMMUNICATION_WIDGET_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_ADSP_COMMUNICATION_WIDGET)) + +DT_COMPAT_INTEL_ADSP_DFPMCCH := intel,adsp-dfpmcch + +config DT_HAS_INTEL_ADSP_DFPMCCH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_ADSP_DFPMCCH)) + +DT_COMPAT_INTEL_ADSP_DFPMCCU := intel,adsp-dfpmccu + +config DT_HAS_INTEL_ADSP_DFPMCCU_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_ADSP_DFPMCCU)) + +DT_COMPAT_INTEL_ADSP_DMIC_VSS := intel,adsp-dmic-vss + +config DT_HAS_INTEL_ADSP_DMIC_VSS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_ADSP_DMIC_VSS)) + +DT_COMPAT_INTEL_ADSP_GPDMA := intel,adsp-gpdma + +config DT_HAS_INTEL_ADSP_GPDMA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_ADSP_GPDMA)) + +DT_COMPAT_INTEL_ADSP_HDA_DMIC_CAP := intel,adsp-hda-dmic-cap + +config DT_HAS_INTEL_ADSP_HDA_DMIC_CAP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_ADSP_HDA_DMIC_CAP)) + +DT_COMPAT_INTEL_ADSP_HDA_HOST_IN := intel,adsp-hda-host-in + +config DT_HAS_INTEL_ADSP_HDA_HOST_IN_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_ADSP_HDA_HOST_IN)) + +DT_COMPAT_INTEL_ADSP_HDA_HOST_OUT := intel,adsp-hda-host-out + +config DT_HAS_INTEL_ADSP_HDA_HOST_OUT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_ADSP_HDA_HOST_OUT)) + +DT_COMPAT_INTEL_ADSP_HDA_LINK_IN := intel,adsp-hda-link-in + +config DT_HAS_INTEL_ADSP_HDA_LINK_IN_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_ADSP_HDA_LINK_IN)) + +DT_COMPAT_INTEL_ADSP_HDA_LINK_OUT := intel,adsp-hda-link-out + +config DT_HAS_INTEL_ADSP_HDA_LINK_OUT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_ADSP_HDA_LINK_OUT)) + +DT_COMPAT_INTEL_ADSP_HDA_SSP_CAP := intel,adsp-hda-ssp-cap + +config DT_HAS_INTEL_ADSP_HDA_SSP_CAP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_ADSP_HDA_SSP_CAP)) + +DT_COMPAT_INTEL_ADSP_HOST_IPC := intel,adsp-host-ipc + +config DT_HAS_INTEL_ADSP_HOST_IPC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_ADSP_HOST_IPC)) + +DT_COMPAT_INTEL_ADSP_IDC := intel,adsp-idc + +config DT_HAS_INTEL_ADSP_IDC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_ADSP_IDC)) + +DT_COMPAT_INTEL_ADSP_IMR := intel,adsp-imr + +config DT_HAS_INTEL_ADSP_IMR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_ADSP_IMR)) + +DT_COMPAT_INTEL_ADSP_MAILBOX := intel,adsp-mailbox + +config DT_HAS_INTEL_ADSP_MAILBOX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_ADSP_MAILBOX)) + +DT_COMPAT_INTEL_ADSP_MEM_WINDOW := intel,adsp-mem-window + +config DT_HAS_INTEL_ADSP_MEM_WINDOW_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_ADSP_MEM_WINDOW)) + +DT_COMPAT_INTEL_ADSP_MTL_TLB := intel,adsp-mtl-tlb + +config DT_HAS_INTEL_ADSP_MTL_TLB_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_ADSP_MTL_TLB)) + +DT_COMPAT_INTEL_ADSP_POWER_DOMAIN := intel,adsp-power-domain + +config DT_HAS_INTEL_ADSP_POWER_DOMAIN_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_ADSP_POWER_DOMAIN)) + +DT_COMPAT_INTEL_ADSP_SHA := intel,adsp-sha + +config DT_HAS_INTEL_ADSP_SHA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_ADSP_SHA)) + +DT_COMPAT_INTEL_ADSP_SHIM_CLKCTL := intel,adsp-shim-clkctl + +config DT_HAS_INTEL_ADSP_SHIM_CLKCTL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_ADSP_SHIM_CLKCTL)) + +DT_COMPAT_INTEL_ADSP_TIMER := intel,adsp-timer + +config DT_HAS_INTEL_ADSP_TIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_ADSP_TIMER)) + +DT_COMPAT_INTEL_ADSP_TLB := intel,adsp-tlb + +config DT_HAS_INTEL_ADSP_TLB_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_ADSP_TLB)) + +DT_COMPAT_INTEL_ADSP_WATCHDOG := intel,adsp-watchdog + +config DT_HAS_INTEL_ADSP_WATCHDOG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_ADSP_WATCHDOG)) + +DT_COMPAT_INTEL_AGILEX_CLOCK := intel,agilex-clock + +config DT_HAS_INTEL_AGILEX_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_AGILEX_CLOCK)) + +DT_COMPAT_INTEL_AGILEX5_CLOCK := intel,agilex5-clock + +config DT_HAS_INTEL_AGILEX5_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_AGILEX5_CLOCK)) + +DT_COMPAT_INTEL_ALDER_LAKE := intel,alder-lake + +config DT_HAS_INTEL_ALDER_LAKE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_ALDER_LAKE)) + +DT_COMPAT_INTEL_ALH_DAI := intel,alh-dai + +config DT_HAS_INTEL_ALH_DAI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_ALH_DAI)) + +DT_COMPAT_INTEL_APOLLO_LAKE := intel,apollo-lake + +config DT_HAS_INTEL_APOLLO_LAKE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_APOLLO_LAKE)) + +DT_COMPAT_INTEL_BLINKY_PWM := intel,blinky-pwm + +config DT_HAS_INTEL_BLINKY_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_BLINKY_PWM)) + +DT_COMPAT_INTEL_CAVS_I2S := intel,cavs-i2s + +config DT_HAS_INTEL_CAVS_I2S_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_CAVS_I2S)) + +DT_COMPAT_INTEL_CAVS_INTC := intel,cavs-intc + +config DT_HAS_INTEL_CAVS_INTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_CAVS_INTC)) + +DT_COMPAT_INTEL_DAI_DMIC := intel,dai-dmic + +config DT_HAS_INTEL_DAI_DMIC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_DAI_DMIC)) + +DT_COMPAT_INTEL_E1000 := intel,e1000 + +config DT_HAS_INTEL_E1000_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_E1000)) + +DT_COMPAT_INTEL_ELKHART_LAKE := intel,elkhart-lake + +config DT_HAS_INTEL_ELKHART_LAKE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_ELKHART_LAKE)) + +DT_COMPAT_INTEL_EMMC_HOST := intel,emmc-host + +config DT_HAS_INTEL_EMMC_HOST_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_EMMC_HOST)) + +DT_COMPAT_INTEL_GPIO := intel,gpio + +config DT_HAS_INTEL_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_GPIO)) + +DT_COMPAT_INTEL_HDA_DAI := intel,hda-dai + +config DT_HAS_INTEL_HDA_DAI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_HDA_DAI)) + +DT_COMPAT_INTEL_HPET := intel,hpet + +config DT_HAS_INTEL_HPET_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_HPET)) + +DT_COMPAT_INTEL_IBECC := intel,ibecc + +config DT_HAS_INTEL_IBECC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_IBECC)) + +DT_COMPAT_INTEL_IOAPIC := intel,ioapic + +config DT_HAS_INTEL_IOAPIC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_IOAPIC)) + +DT_COMPAT_INTEL_ISH := intel,ish + +config DT_HAS_INTEL_ISH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_ISH)) + +DT_COMPAT_INTEL_LAKEMONT := intel,lakemont + +config DT_HAS_INTEL_LAKEMONT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_LAKEMONT)) + +DT_COMPAT_INTEL_LOAPIC := intel,loapic + +config DT_HAS_INTEL_LOAPIC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_LOAPIC)) + +DT_COMPAT_INTEL_LPSS := intel,lpss + +config DT_HAS_INTEL_LPSS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_LPSS)) + +DT_COMPAT_INTEL_LW_UART := intel,lw-uart + +config DT_HAS_INTEL_LW_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_LW_UART)) + +DT_COMPAT_INTEL_MULTIBOOT_FRAMEBUFFER := intel,multiboot-framebuffer + +config DT_HAS_INTEL_MULTIBOOT_FRAMEBUFFER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_MULTIBOOT_FRAMEBUFFER)) + +DT_COMPAT_INTEL_NIOSV := intel,niosv + +config DT_HAS_INTEL_NIOSV_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_NIOSV)) + +DT_COMPAT_INTEL_PCH_SMBUS := intel,pch-smbus + +config DT_HAS_INTEL_PCH_SMBUS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_PCH_SMBUS)) + +DT_COMPAT_INTEL_PENWELL_SPI := intel,penwell-spi + +config DT_HAS_INTEL_PENWELL_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_PENWELL_SPI)) + +DT_COMPAT_INTEL_RAPTOR_LAKE := intel,raptor-lake + +config DT_HAS_INTEL_RAPTOR_LAKE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_RAPTOR_LAKE)) + +DT_COMPAT_INTEL_SEDI_DMA := intel,sedi-dma + +config DT_HAS_INTEL_SEDI_DMA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_SEDI_DMA)) + +DT_COMPAT_INTEL_SEDI_GPIO := intel,sedi-gpio + +config DT_HAS_INTEL_SEDI_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_SEDI_GPIO)) + +DT_COMPAT_INTEL_SEDI_I2C := intel,sedi-i2c + +config DT_HAS_INTEL_SEDI_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_SEDI_I2C)) + +DT_COMPAT_INTEL_SEDI_IPM := intel,sedi-ipm + +config DT_HAS_INTEL_SEDI_IPM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_SEDI_IPM)) + +DT_COMPAT_INTEL_SEDI_SPI := intel,sedi-spi + +config DT_HAS_INTEL_SEDI_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_SEDI_SPI)) + +DT_COMPAT_INTEL_SEDI_UART := intel,sedi-uart + +config DT_HAS_INTEL_SEDI_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_SEDI_UART)) + +DT_COMPAT_INTEL_SOCFPGA_AGILEX_SIP_SMC := intel,socfpga-agilex-sip-smc + +config DT_HAS_INTEL_SOCFPGA_AGILEX_SIP_SMC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_SOCFPGA_AGILEX_SIP_SMC)) + +DT_COMPAT_INTEL_SOCFPGA_RESET := intel,socfpga-reset + +config DT_HAS_INTEL_SOCFPGA_RESET_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_SOCFPGA_RESET)) + +DT_COMPAT_INTEL_SSP := intel,ssp + +config DT_HAS_INTEL_SSP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_SSP)) + +DT_COMPAT_INTEL_SSP_DAI := intel,ssp-dai + +config DT_HAS_INTEL_SSP_DAI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_SSP_DAI)) + +DT_COMPAT_INTEL_SSP_SSPBASE := intel,ssp-sspbase + +config DT_HAS_INTEL_SSP_SSPBASE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_SSP_SSPBASE)) + +DT_COMPAT_INTEL_TCO_WDT := intel,tco-wdt + +config DT_HAS_INTEL_TCO_WDT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_TCO_WDT)) + +DT_COMPAT_INTEL_TIMEAWARE_GPIO := intel,timeaware-gpio + +config DT_HAS_INTEL_TIMEAWARE_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_TIMEAWARE_GPIO)) + +DT_COMPAT_INTEL_VT_D := intel,vt-d + +config DT_HAS_INTEL_VT_D_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_VT_D)) + +DT_COMPAT_INTEL_X86 := intel,x86 + +config DT_HAS_INTEL_X86_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_X86)) + +DT_COMPAT_INVENSENSE_ICM42605 := invensense,icm42605 + +config DT_HAS_INVENSENSE_ICM42605_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INVENSENSE_ICM42605)) + +DT_COMPAT_INVENSENSE_ICM42670P := invensense,icm42670p + +config DT_HAS_INVENSENSE_ICM42670P_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INVENSENSE_ICM42670P)) + +DT_COMPAT_INVENSENSE_ICM42670S := invensense,icm42670s + +config DT_HAS_INVENSENSE_ICM42670S_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INVENSENSE_ICM42670S)) + +DT_COMPAT_INVENSENSE_ICM42688 := invensense,icm42688 + +config DT_HAS_INVENSENSE_ICM42688_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INVENSENSE_ICM42688)) + +DT_COMPAT_INVENSENSE_ICP10125 := invensense,icp10125 + +config DT_HAS_INVENSENSE_ICP10125_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INVENSENSE_ICP10125)) + +DT_COMPAT_INVENSENSE_MPU6050 := invensense,mpu6050 + +config DT_HAS_INVENSENSE_MPU6050_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INVENSENSE_MPU6050)) + +DT_COMPAT_INVENSENSE_MPU9250 := invensense,mpu9250 + +config DT_HAS_INVENSENSE_MPU9250_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INVENSENSE_MPU9250)) + +DT_COMPAT_INVENTEK_ESWIFI := inventek,eswifi + +config DT_HAS_INVENTEK_ESWIFI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INVENTEK_ESWIFI)) + +DT_COMPAT_INVENTEK_ESWIFI_UART := inventek,eswifi-uart + +config DT_HAS_INVENTEK_ESWIFI_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INVENTEK_ESWIFI_UART)) + +DT_COMPAT_ISENTEK_IST8310 := isentek,ist8310 + +config DT_HAS_ISENTEK_IST8310_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ISENTEK_IST8310)) + +DT_COMPAT_ISIL_ISL29035 := isil,isl29035 + +config DT_HAS_ISIL_ISL29035_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ISIL_ISL29035)) + +DT_COMPAT_ISSI_IS31FL3194 := issi,is31fl3194 + +config DT_HAS_ISSI_IS31FL3194_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ISSI_IS31FL3194)) + +DT_COMPAT_ISSI_IS31FL3216A := issi,is31fl3216a + +config DT_HAS_ISSI_IS31FL3216A_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ISSI_IS31FL3216A)) + +DT_COMPAT_ISSI_IS31FL3733 := issi,is31fl3733 + +config DT_HAS_ISSI_IS31FL3733_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ISSI_IS31FL3733)) + +DT_COMPAT_IST_TSIC_XX6 := ist,tsic-xx6 + +config DT_HAS_IST_TSIC_XX6_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_IST_TSIC_XX6)) + +DT_COMPAT_ISTECH_IST3931 := istech,ist3931 + +config DT_HAS_ISTECH_IST3931_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ISTECH_IST3931)) + +DT_COMPAT_ITE_ENHANCE_I2C := ite,enhance-i2c + +config DT_HAS_ITE_ENHANCE_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_ENHANCE_I2C)) + +DT_COMPAT_ITE_IT82XX2_USB := ite,it82xx2-usb + +config DT_HAS_ITE_IT82XX2_USB_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT82XX2_USB)) + +DT_COMPAT_ITE_IT8801_ALTCTRL := ite,it8801-altctrl + +config DT_HAS_ITE_IT8801_ALTCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT8801_ALTCTRL)) + +DT_COMPAT_ITE_IT8801_GPIO := ite,it8801-gpio + +config DT_HAS_ITE_IT8801_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT8801_GPIO)) + +DT_COMPAT_ITE_IT8801_KBD := ite,it8801-kbd + +config DT_HAS_ITE_IT8801_KBD_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT8801_KBD)) + +DT_COMPAT_ITE_IT8801_MFD := ite,it8801-mfd + +config DT_HAS_ITE_IT8801_MFD_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT8801_MFD)) + +DT_COMPAT_ITE_IT8801_MFD_MAP := ite,it8801-mfd-map + +config DT_HAS_ITE_IT8801_MFD_MAP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT8801_MFD_MAP)) + +DT_COMPAT_ITE_IT8801_PWM := ite,it8801-pwm + +config DT_HAS_ITE_IT8801_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT8801_PWM)) + +DT_COMPAT_ITE_IT8XXX2_ADC := ite,it8xxx2-adc + +config DT_HAS_ITE_IT8XXX2_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT8XXX2_ADC)) + +DT_COMPAT_ITE_IT8XXX2_BBRAM := ite,it8xxx2-bbram + +config DT_HAS_ITE_IT8XXX2_BBRAM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT8XXX2_BBRAM)) + +DT_COMPAT_ITE_IT8XXX2_ESPI := ite,it8xxx2-espi + +config DT_HAS_ITE_IT8XXX2_ESPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT8XXX2_ESPI)) + +DT_COMPAT_ITE_IT8XXX2_FLASH_CONTROLLER := ite,it8xxx2-flash-controller + +config DT_HAS_ITE_IT8XXX2_FLASH_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT8XXX2_FLASH_CONTROLLER)) + +DT_COMPAT_ITE_IT8XXX2_GPIO := ite,it8xxx2-gpio + +config DT_HAS_ITE_IT8XXX2_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT8XXX2_GPIO)) + +DT_COMPAT_ITE_IT8XXX2_GPIO_V2 := ite,it8xxx2-gpio-v2 + +config DT_HAS_ITE_IT8XXX2_GPIO_V2_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT8XXX2_GPIO_V2)) + +DT_COMPAT_ITE_IT8XXX2_GPIOKSCAN := ite,it8xxx2-gpiokscan + +config DT_HAS_ITE_IT8XXX2_GPIOKSCAN_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT8XXX2_GPIOKSCAN)) + +DT_COMPAT_ITE_IT8XXX2_I2C := ite,it8xxx2-i2c + +config DT_HAS_ITE_IT8XXX2_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT8XXX2_I2C)) + +DT_COMPAT_ITE_IT8XXX2_ILM := ite,it8xxx2-ilm + +config DT_HAS_ITE_IT8XXX2_ILM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT8XXX2_ILM)) + +DT_COMPAT_ITE_IT8XXX2_INTC := ite,it8xxx2-intc + +config DT_HAS_ITE_IT8XXX2_INTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT8XXX2_INTC)) + +DT_COMPAT_ITE_IT8XXX2_INTC_V2 := ite,it8xxx2-intc-v2 + +config DT_HAS_ITE_IT8XXX2_INTC_V2_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT8XXX2_INTC_V2)) + +DT_COMPAT_ITE_IT8XXX2_KBD := ite,it8xxx2-kbd + +config DT_HAS_ITE_IT8XXX2_KBD_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT8XXX2_KBD)) + +DT_COMPAT_ITE_IT8XXX2_PECI := ite,it8xxx2-peci + +config DT_HAS_ITE_IT8XXX2_PECI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT8XXX2_PECI)) + +DT_COMPAT_ITE_IT8XXX2_PINCTRL := ite,it8xxx2-pinctrl + +config DT_HAS_ITE_IT8XXX2_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT8XXX2_PINCTRL)) + +DT_COMPAT_ITE_IT8XXX2_PINCTRL_FUNC := ite,it8xxx2-pinctrl-func + +config DT_HAS_ITE_IT8XXX2_PINCTRL_FUNC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT8XXX2_PINCTRL_FUNC)) + +DT_COMPAT_ITE_IT8XXX2_PWM := ite,it8xxx2-pwm + +config DT_HAS_ITE_IT8XXX2_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT8XXX2_PWM)) + +DT_COMPAT_ITE_IT8XXX2_PWMPRS := ite,it8xxx2-pwmprs + +config DT_HAS_ITE_IT8XXX2_PWMPRS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT8XXX2_PWMPRS)) + +DT_COMPAT_ITE_IT8XXX2_SHA := ite,it8xxx2-sha + +config DT_HAS_ITE_IT8XXX2_SHA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT8XXX2_SHA)) + +DT_COMPAT_ITE_IT8XXX2_SHA_V2 := ite,it8xxx2-sha-v2 + +config DT_HAS_ITE_IT8XXX2_SHA_V2_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT8XXX2_SHA_V2)) + +DT_COMPAT_ITE_IT8XXX2_SHI := ite,it8xxx2-shi + +config DT_HAS_ITE_IT8XXX2_SHI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT8XXX2_SHI)) + +DT_COMPAT_ITE_IT8XXX2_SPI := ite,it8xxx2-spi + +config DT_HAS_ITE_IT8XXX2_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT8XXX2_SPI)) + +DT_COMPAT_ITE_IT8XXX2_TACH := ite,it8xxx2-tach + +config DT_HAS_ITE_IT8XXX2_TACH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT8XXX2_TACH)) + +DT_COMPAT_ITE_IT8XXX2_TIMER := ite,it8xxx2-timer + +config DT_HAS_ITE_IT8XXX2_TIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT8XXX2_TIMER)) + +DT_COMPAT_ITE_IT8XXX2_UART := ite,it8xxx2-uart + +config DT_HAS_ITE_IT8XXX2_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT8XXX2_UART)) + +DT_COMPAT_ITE_IT8XXX2_USBPD := ite,it8xxx2-usbpd + +config DT_HAS_ITE_IT8XXX2_USBPD_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT8XXX2_USBPD)) + +DT_COMPAT_ITE_IT8XXX2_VCMP := ite,it8xxx2-vcmp + +config DT_HAS_ITE_IT8XXX2_VCMP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT8XXX2_VCMP)) + +DT_COMPAT_ITE_IT8XXX2_WATCHDOG := ite,it8xxx2-watchdog + +config DT_HAS_ITE_IT8XXX2_WATCHDOG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT8XXX2_WATCHDOG)) + +DT_COMPAT_ITE_IT8XXX2_WUC := ite,it8xxx2-wuc + +config DT_HAS_ITE_IT8XXX2_WUC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT8XXX2_WUC)) + +DT_COMPAT_ITE_IT8XXX2_WUC_MAP := ite,it8xxx2-wuc-map + +config DT_HAS_ITE_IT8XXX2_WUC_MAP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT8XXX2_WUC_MAP)) + +DT_COMPAT_ITE_RISCV_ITE := ite,riscv-ite + +config DT_HAS_ITE_RISCV_ITE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_RISCV_ITE)) + +DT_COMPAT_JEDEC_JC_42_4_TEMP := jedec,jc-42.4-temp + +config DT_HAS_JEDEC_JC_42_4_TEMP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_JEDEC_JC_42_4_TEMP)) + +DT_COMPAT_JEDEC_MSPI_NOR := jedec,mspi-nor + +config DT_HAS_JEDEC_MSPI_NOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_JEDEC_MSPI_NOR)) + +DT_COMPAT_JEDEC_SPI_NOR := jedec,spi-nor + +config DT_HAS_JEDEC_SPI_NOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_JEDEC_SPI_NOR)) + +DT_COMPAT_JHD_JHD1313 := jhd,jhd1313 + +config DT_HAS_JHD_JHD1313_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_JHD_JHD1313)) + +DT_COMPAT_KVASER_PCICAN := kvaser,pcican + +config DT_HAS_KVASER_PCICAN_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_KVASER_PCICAN)) + +DT_COMPAT_LATTICE_ICE40_FPGA := lattice,ice40-fpga + +config DT_HAS_LATTICE_ICE40_FPGA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LATTICE_ICE40_FPGA)) + +DT_COMPAT_LATTICE_ICE40_FPGA_BASE := lattice,ice40-fpga-base + +config DT_HAS_LATTICE_ICE40_FPGA_BASE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LATTICE_ICE40_FPGA_BASE)) + +DT_COMPAT_LATTICE_ICE40_FPGA_BITBANG := lattice,ice40-fpga-bitbang + +config DT_HAS_LATTICE_ICE40_FPGA_BITBANG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LATTICE_ICE40_FPGA_BITBANG)) + +DT_COMPAT_LED_STRIP_MATRIX := led-strip-matrix + +config DT_HAS_LED_STRIP_MATRIX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LED_STRIP_MATRIX)) + +DT_COMPAT_LINARO_96B_LSCON_1V8 := linaro,96b-lscon-1v8 + +config DT_HAS_LINARO_96B_LSCON_1V8_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LINARO_96B_LSCON_1V8)) + +DT_COMPAT_LINARO_96B_LSCON_3V3 := linaro,96b-lscon-3v3 + +config DT_HAS_LINARO_96B_LSCON_3V3_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LINARO_96B_LSCON_3V3)) + +DT_COMPAT_LINARO_IVSHMEM_IPM := linaro,ivshmem-ipm + +config DT_HAS_LINARO_IVSHMEM_IPM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LINARO_IVSHMEM_IPM)) + +DT_COMPAT_LINARO_IVSHMEM_MBOX := linaro,ivshmem-mbox + +config DT_HAS_LINARO_IVSHMEM_MBOX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LINARO_IVSHMEM_MBOX)) + +DT_COMPAT_LINARO_OPTEE_TZ := linaro,optee-tz + +config DT_HAS_LINARO_OPTEE_TZ_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LINARO_OPTEE_TZ)) + +DT_COMPAT_LITEX_CLK := litex,clk + +config DT_HAS_LITEX_CLK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LITEX_CLK)) + +DT_COMPAT_LITEX_CLKOUT := litex,clkout + +config DT_HAS_LITEX_CLKOUT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LITEX_CLKOUT)) + +DT_COMPAT_LITEX_DNA0 := litex,dna0 + +config DT_HAS_LITEX_DNA0_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LITEX_DNA0)) + +DT_COMPAT_LITEX_GPIO := litex,gpio + +config DT_HAS_LITEX_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LITEX_GPIO)) + +DT_COMPAT_LITEX_I2C := litex,i2c + +config DT_HAS_LITEX_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LITEX_I2C)) + +DT_COMPAT_LITEX_I2S := litex,i2s + +config DT_HAS_LITEX_I2S_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LITEX_I2S)) + +DT_COMPAT_LITEX_LITEETH := litex,liteeth + +config DT_HAS_LITEX_LITEETH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LITEX_LITEETH)) + +DT_COMPAT_LITEX_LITEETH_MDIO := litex,liteeth-mdio + +config DT_HAS_LITEX_LITEETH_MDIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LITEX_LITEETH_MDIO)) + +DT_COMPAT_LITEX_PRBS := litex,prbs + +config DT_HAS_LITEX_PRBS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LITEX_PRBS)) + +DT_COMPAT_LITEX_PWM := litex,pwm + +config DT_HAS_LITEX_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LITEX_PWM)) + +DT_COMPAT_LITEX_SOC_CONTROLLER := litex,soc-controller + +config DT_HAS_LITEX_SOC_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LITEX_SOC_CONTROLLER)) + +DT_COMPAT_LITEX_SPI := litex,spi + +config DT_HAS_LITEX_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LITEX_SPI)) + +DT_COMPAT_LITEX_SPI_LITESPI := litex,spi-litespi + +config DT_HAS_LITEX_SPI_LITESPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LITEX_SPI_LITESPI)) + +DT_COMPAT_LITEX_TIMER0 := litex,timer0 + +config DT_HAS_LITEX_TIMER0_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LITEX_TIMER0)) + +DT_COMPAT_LITEX_UART := litex,uart + +config DT_HAS_LITEX_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LITEX_UART)) + +DT_COMPAT_LITEX_VEXRISCV_INTC0 := litex,vexriscv-intc0 + +config DT_HAS_LITEX_VEXRISCV_INTC0_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LITEX_VEXRISCV_INTC0)) + +DT_COMPAT_LITEX_VEXRISCV_STANDARD := litex,vexriscv-standard + +config DT_HAS_LITEX_VEXRISCV_STANDARD_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LITEX_VEXRISCV_STANDARD)) + +DT_COMPAT_LITEX_WATCHDOG := litex,watchdog + +config DT_HAS_LITEX_WATCHDOG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LITEX_WATCHDOG)) + +DT_COMPAT_LLTC_LTC1660 := lltc,ltc1660 + +config DT_HAS_LLTC_LTC1660_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LLTC_LTC1660)) + +DT_COMPAT_LLTC_LTC1665 := lltc,ltc1665 + +config DT_HAS_LLTC_LTC1665_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LLTC_LTC1665)) + +DT_COMPAT_LLTC_LTC2451 := lltc,ltc2451 + +config DT_HAS_LLTC_LTC2451_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LLTC_LTC2451)) + +DT_COMPAT_LM35 := lm35 + +config DT_HAS_LM35_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LM35)) + +DT_COMPAT_LM75 := lm75 + +config DT_HAS_LM75_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LM75)) + +DT_COMPAT_LM77 := lm77 + +config DT_HAS_LM77_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LM77)) + +DT_COMPAT_LOWRISC_IBEX := lowrisc,ibex + +config DT_HAS_LOWRISC_IBEX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LOWRISC_IBEX)) + +DT_COMPAT_LOWRISC_MACHINE_TIMER := lowrisc,machine-timer + +config DT_HAS_LOWRISC_MACHINE_TIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LOWRISC_MACHINE_TIMER)) + +DT_COMPAT_LOWRISC_OPENTITAN_AONTIMER := lowrisc,opentitan-aontimer + +config DT_HAS_LOWRISC_OPENTITAN_AONTIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LOWRISC_OPENTITAN_AONTIMER)) + +DT_COMPAT_LOWRISC_OPENTITAN_PWRMGR := lowrisc,opentitan-pwrmgr + +config DT_HAS_LOWRISC_OPENTITAN_PWRMGR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LOWRISC_OPENTITAN_PWRMGR)) + +DT_COMPAT_LOWRISC_OPENTITAN_SPI := lowrisc,opentitan-spi + +config DT_HAS_LOWRISC_OPENTITAN_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LOWRISC_OPENTITAN_SPI)) + +DT_COMPAT_LOWRISC_OPENTITAN_UART := lowrisc,opentitan-uart + +config DT_HAS_LOWRISC_OPENTITAN_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LOWRISC_OPENTITAN_UART)) + +DT_COMPAT_LTR_F216A := ltr,f216a + +config DT_HAS_LTR_F216A_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LTR_F216A)) + +DT_COMPAT_LUATOS_AIR530Z := luatos,air530z + +config DT_HAS_LUATOS_AIR530Z_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LUATOS_AIR530Z)) + +DT_COMPAT_M5STACK_ATOM_HEADER := m5stack,atom-header + +config DT_HAS_M5STACK_ATOM_HEADER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_M5STACK_ATOM_HEADER)) + +DT_COMPAT_M5STACK_MBUS_HEADER := m5stack,mbus-header + +config DT_HAS_M5STACK_MBUS_HEADER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_M5STACK_MBUS_HEADER)) + +DT_COMPAT_M5STACK_STAMPS3_HEADER := m5stack,stamps3-header + +config DT_HAS_M5STACK_STAMPS3_HEADER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_M5STACK_STAMPS3_HEADER)) + +DT_COMPAT_MAXIM_DS1307 := maxim,ds1307 + +config DT_HAS_MAXIM_DS1307_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_DS1307)) + +DT_COMPAT_MAXIM_DS18B20 := maxim,ds18b20 + +config DT_HAS_MAXIM_DS18B20_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_DS18B20)) + +DT_COMPAT_MAXIM_DS18S20 := maxim,ds18s20 + +config DT_HAS_MAXIM_DS18S20_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_DS18S20)) + +DT_COMPAT_MAXIM_DS2482_800 := maxim,ds2482-800 + +config DT_HAS_MAXIM_DS2482_800_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_DS2482_800)) + +DT_COMPAT_MAXIM_DS2482_800_CHANNEL := maxim,ds2482-800-channel + +config DT_HAS_MAXIM_DS2482_800_CHANNEL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_DS2482_800_CHANNEL)) + +DT_COMPAT_MAXIM_DS2484 := maxim,ds2484 + +config DT_HAS_MAXIM_DS2484_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_DS2484)) + +DT_COMPAT_MAXIM_DS2485 := maxim,ds2485 + +config DT_HAS_MAXIM_DS2485_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_DS2485)) + +DT_COMPAT_MAXIM_DS3231 := maxim,ds3231 + +config DT_HAS_MAXIM_DS3231_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_DS3231)) + +DT_COMPAT_MAXIM_DS3231_MFD := maxim,ds3231-mfd + +config DT_HAS_MAXIM_DS3231_MFD_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_DS3231_MFD)) + +DT_COMPAT_MAXIM_DS3231_RTC := maxim,ds3231-rtc + +config DT_HAS_MAXIM_DS3231_RTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_DS3231_RTC)) + +DT_COMPAT_MAXIM_DS3231_SENSOR := maxim,ds3231-sensor + +config DT_HAS_MAXIM_DS3231_SENSOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_DS3231_SENSOR)) + +DT_COMPAT_MAXIM_MAX11102 := maxim,max11102 + +config DT_HAS_MAXIM_MAX11102_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_MAX11102)) + +DT_COMPAT_MAXIM_MAX11103 := maxim,max11103 + +config DT_HAS_MAXIM_MAX11103_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_MAX11103)) + +DT_COMPAT_MAXIM_MAX11105 := maxim,max11105 + +config DT_HAS_MAXIM_MAX11105_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_MAX11105)) + +DT_COMPAT_MAXIM_MAX11106 := maxim,max11106 + +config DT_HAS_MAXIM_MAX11106_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_MAX11106)) + +DT_COMPAT_MAXIM_MAX11110 := maxim,max11110 + +config DT_HAS_MAXIM_MAX11110_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_MAX11110)) + +DT_COMPAT_MAXIM_MAX11111 := maxim,max11111 + +config DT_HAS_MAXIM_MAX11111_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_MAX11111)) + +DT_COMPAT_MAXIM_MAX11115 := maxim,max11115 + +config DT_HAS_MAXIM_MAX11115_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_MAX11115)) + +DT_COMPAT_MAXIM_MAX11116 := maxim,max11116 + +config DT_HAS_MAXIM_MAX11116_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_MAX11116)) + +DT_COMPAT_MAXIM_MAX11117 := maxim,max11117 + +config DT_HAS_MAXIM_MAX11117_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_MAX11117)) + +DT_COMPAT_MAXIM_MAX11253 := maxim,max11253 + +config DT_HAS_MAXIM_MAX11253_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_MAX11253)) + +DT_COMPAT_MAXIM_MAX11254 := maxim,max11254 + +config DT_HAS_MAXIM_MAX11254_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_MAX11254)) + +DT_COMPAT_MAXIM_MAX17048 := maxim,max17048 + +config DT_HAS_MAXIM_MAX17048_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_MAX17048)) + +DT_COMPAT_MAXIM_MAX17055 := maxim,max17055 + +config DT_HAS_MAXIM_MAX17055_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_MAX17055)) + +DT_COMPAT_MAXIM_MAX17262 := maxim,max17262 + +config DT_HAS_MAXIM_MAX17262_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_MAX17262)) + +DT_COMPAT_MAXIM_MAX20335 := maxim,max20335 + +config DT_HAS_MAXIM_MAX20335_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_MAX20335)) + +DT_COMPAT_MAXIM_MAX20335_CHARGER := maxim,max20335-charger + +config DT_HAS_MAXIM_MAX20335_CHARGER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_MAX20335_CHARGER)) + +DT_COMPAT_MAXIM_MAX20335_REGULATOR := maxim,max20335-regulator + +config DT_HAS_MAXIM_MAX20335_REGULATOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_MAX20335_REGULATOR)) + +DT_COMPAT_MAXIM_MAX30101 := maxim,max30101 + +config DT_HAS_MAXIM_MAX30101_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_MAX30101)) + +DT_COMPAT_MAXIM_MAX31790 := maxim,max31790 + +config DT_HAS_MAXIM_MAX31790_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_MAX31790)) + +DT_COMPAT_MAXIM_MAX31790_FAN_FAULT := maxim,max31790-fan-fault + +config DT_HAS_MAXIM_MAX31790_FAN_FAULT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_MAX31790_FAN_FAULT)) + +DT_COMPAT_MAXIM_MAX31790_FAN_SPEED := maxim,max31790-fan-speed + +config DT_HAS_MAXIM_MAX31790_FAN_SPEED_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_MAX31790_FAN_SPEED)) + +DT_COMPAT_MAXIM_MAX31790_PWM := maxim,max31790-pwm + +config DT_HAS_MAXIM_MAX31790_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_MAX31790_PWM)) + +DT_COMPAT_MAXIM_MAX31855 := maxim,max31855 + +config DT_HAS_MAXIM_MAX31855_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_MAX31855)) + +DT_COMPAT_MAXIM_MAX31865 := maxim,max31865 + +config DT_HAS_MAXIM_MAX31865_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_MAX31865)) + +DT_COMPAT_MAXIM_MAX31875 := maxim,max31875 + +config DT_HAS_MAXIM_MAX31875_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_MAX31875)) + +DT_COMPAT_MAXIM_MAX3421E_SPI := maxim,max3421e_spi + +config DT_HAS_MAXIM_MAX3421E_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_MAX3421E_SPI)) + +DT_COMPAT_MAXIM_MAX44009 := maxim,max44009 + +config DT_HAS_MAXIM_MAX44009_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_MAX44009)) + +DT_COMPAT_MAXIM_MAX6675 := maxim,max6675 + +config DT_HAS_MAXIM_MAX6675_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_MAX6675)) + +DT_COMPAT_MAXIM_MAX7219 := maxim,max7219 + +config DT_HAS_MAXIM_MAX7219_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_MAX7219)) + +DT_COMPAT_MEAS_MS5607 := meas,ms5607 + +config DT_HAS_MEAS_MS5607_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MEAS_MS5607)) + +DT_COMPAT_MEAS_MS5837 := meas,ms5837 + +config DT_HAS_MEAS_MS5837_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MEAS_MS5837)) + +DT_COMPAT_MEDIATEK_ADSP_INTC := mediatek,adsp_intc + +config DT_HAS_MEDIATEK_ADSP_INTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MEDIATEK_ADSP_INTC)) + +DT_COMPAT_MEDIATEK_MT8195_CPUCLK := mediatek,mt8195_cpuclk + +config DT_HAS_MEDIATEK_MT8195_CPUCLK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MEDIATEK_MT8195_CPUCLK)) + +DT_COMPAT_MEDIATEK_OSTIMER64 := mediatek,ostimer64 + +config DT_HAS_MEDIATEK_OSTIMER64_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MEDIATEK_OSTIMER64)) + +DT_COMPAT_MEMSIC_MC3419 := memsic,mc3419 + +config DT_HAS_MEMSIC_MC3419_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MEMSIC_MC3419)) + +DT_COMPAT_MEMSIC_MMC56X3 := memsic,mmc56x3 + +config DT_HAS_MEMSIC_MMC56X3_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MEMSIC_MMC56X3)) + +DT_COMPAT_MICROBIT_EDGE_CONNECTOR := microbit,edge-connector + +config DT_HAS_MICROBIT_EDGE_CONNECTOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROBIT_EDGE_CONNECTOR)) + +DT_COMPAT_MICROCHIP_CAP12XX := microchip,cap12xx + +config DT_HAS_MICROCHIP_CAP12XX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_CAP12XX)) + +DT_COMPAT_MICROCHIP_COREUART := microchip,coreuart + +config DT_HAS_MICROCHIP_COREUART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_COREUART)) + +DT_COMPAT_MICROCHIP_ENC28J60 := microchip,enc28j60 + +config DT_HAS_MICROCHIP_ENC28J60_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_ENC28J60)) + +DT_COMPAT_MICROCHIP_ENC424J600 := microchip,enc424j600 + +config DT_HAS_MICROCHIP_ENC424J600_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_ENC424J600)) + +DT_COMPAT_MICROCHIP_KSZ8081 := microchip,ksz8081 + +config DT_HAS_MICROCHIP_KSZ8081_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_KSZ8081)) + +DT_COMPAT_MICROCHIP_KSZ8794 := microchip,ksz8794 + +config DT_HAS_MICROCHIP_KSZ8794_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_KSZ8794)) + +DT_COMPAT_MICROCHIP_KSZ8863 := microchip,ksz8863 + +config DT_HAS_MICROCHIP_KSZ8863_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_KSZ8863)) + +DT_COMPAT_MICROCHIP_LAN865X := microchip,lan865x + +config DT_HAS_MICROCHIP_LAN865X_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_LAN865X)) + +DT_COMPAT_MICROCHIP_LAN9250 := microchip,lan9250 + +config DT_HAS_MICROCHIP_LAN9250_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_LAN9250)) + +DT_COMPAT_MICROCHIP_MCP23008 := microchip,mcp23008 + +config DT_HAS_MICROCHIP_MCP23008_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_MCP23008)) + +DT_COMPAT_MICROCHIP_MCP23009 := microchip,mcp23009 + +config DT_HAS_MICROCHIP_MCP23009_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_MCP23009)) + +DT_COMPAT_MICROCHIP_MCP23016 := microchip,mcp23016 + +config DT_HAS_MICROCHIP_MCP23016_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_MCP23016)) + +DT_COMPAT_MICROCHIP_MCP23017 := microchip,mcp23017 + +config DT_HAS_MICROCHIP_MCP23017_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_MCP23017)) + +DT_COMPAT_MICROCHIP_MCP23018 := microchip,mcp23018 + +config DT_HAS_MICROCHIP_MCP23018_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_MCP23018)) + +DT_COMPAT_MICROCHIP_MCP23S08 := microchip,mcp23s08 + +config DT_HAS_MICROCHIP_MCP23S08_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_MCP23S08)) + +DT_COMPAT_MICROCHIP_MCP23S09 := microchip,mcp23s09 + +config DT_HAS_MICROCHIP_MCP23S09_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_MCP23S09)) + +DT_COMPAT_MICROCHIP_MCP23S17 := microchip,mcp23s17 + +config DT_HAS_MICROCHIP_MCP23S17_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_MCP23S17)) + +DT_COMPAT_MICROCHIP_MCP23S18 := microchip,mcp23s18 + +config DT_HAS_MICROCHIP_MCP23S18_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_MCP23S18)) + +DT_COMPAT_MICROCHIP_MCP2515 := microchip,mcp2515 + +config DT_HAS_MICROCHIP_MCP2515_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_MCP2515)) + +DT_COMPAT_MICROCHIP_MCP251XFD := microchip,mcp251xfd + +config DT_HAS_MICROCHIP_MCP251XFD_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_MCP251XFD)) + +DT_COMPAT_MICROCHIP_MCP3204 := microchip,mcp3204 + +config DT_HAS_MICROCHIP_MCP3204_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_MCP3204)) + +DT_COMPAT_MICROCHIP_MCP3208 := microchip,mcp3208 + +config DT_HAS_MICROCHIP_MCP3208_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_MCP3208)) + +DT_COMPAT_MICROCHIP_MCP4725 := microchip,mcp4725 + +config DT_HAS_MICROCHIP_MCP4725_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_MCP4725)) + +DT_COMPAT_MICROCHIP_MCP4728 := microchip,mcp4728 + +config DT_HAS_MICROCHIP_MCP4728_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_MCP4728)) + +DT_COMPAT_MICROCHIP_MCP7940N := microchip,mcp7940n + +config DT_HAS_MICROCHIP_MCP7940N_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_MCP7940N)) + +DT_COMPAT_MICROCHIP_MCP9600 := microchip,mcp9600 + +config DT_HAS_MICROCHIP_MCP9600_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_MCP9600)) + +DT_COMPAT_MICROCHIP_MCP970X := microchip,mcp970x + +config DT_HAS_MICROCHIP_MCP970X_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_MCP970X)) + +DT_COMPAT_MICROCHIP_MEC5_GPIO := microchip,mec5-gpio + +config DT_HAS_MICROCHIP_MEC5_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_MEC5_GPIO)) + +DT_COMPAT_MICROCHIP_MEC5_KTIMER := microchip,mec5-ktimer + +config DT_HAS_MICROCHIP_MEC5_KTIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_MEC5_KTIMER)) + +DT_COMPAT_MICROCHIP_MEC5_PINCTRL := microchip,mec5-pinctrl + +config DT_HAS_MICROCHIP_MEC5_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_MEC5_PINCTRL)) + +DT_COMPAT_MICROCHIP_MPFS_GPIO := microchip,mpfs-gpio + +config DT_HAS_MICROCHIP_MPFS_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_MPFS_GPIO)) + +DT_COMPAT_MICROCHIP_MPFS_I2C := microchip,mpfs-i2c + +config DT_HAS_MICROCHIP_MPFS_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_MPFS_I2C)) + +DT_COMPAT_MICROCHIP_MPFS_QSPI := microchip,mpfs-qspi + +config DT_HAS_MICROCHIP_MPFS_QSPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_MPFS_QSPI)) + +DT_COMPAT_MICROCHIP_MPFS_SPI := microchip,mpfs-spi + +config DT_HAS_MICROCHIP_MPFS_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_MPFS_SPI)) + +DT_COMPAT_MICROCHIP_TCN75A := microchip,tcn75a + +config DT_HAS_MICROCHIP_TCN75A_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_TCN75A)) + +DT_COMPAT_MICROCHIP_XEC_ADC := microchip,xec-adc + +config DT_HAS_MICROCHIP_XEC_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_XEC_ADC)) + +DT_COMPAT_MICROCHIP_XEC_BBLED := microchip,xec-bbled + +config DT_HAS_MICROCHIP_XEC_BBLED_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_XEC_BBLED)) + +DT_COMPAT_MICROCHIP_XEC_BBRAM := microchip,xec-bbram + +config DT_HAS_MICROCHIP_XEC_BBRAM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_XEC_BBRAM)) + +DT_COMPAT_MICROCHIP_XEC_DMAC := microchip,xec-dmac + +config DT_HAS_MICROCHIP_XEC_DMAC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_XEC_DMAC)) + +DT_COMPAT_MICROCHIP_XEC_ECIA := microchip,xec-ecia + +config DT_HAS_MICROCHIP_XEC_ECIA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_XEC_ECIA)) + +DT_COMPAT_MICROCHIP_XEC_ECIA_GIRQ := microchip,xec-ecia-girq + +config DT_HAS_MICROCHIP_XEC_ECIA_GIRQ_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_XEC_ECIA_GIRQ)) + +DT_COMPAT_MICROCHIP_XEC_ECS := microchip,xec-ecs + +config DT_HAS_MICROCHIP_XEC_ECS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_XEC_ECS)) + +DT_COMPAT_MICROCHIP_XEC_EEPROM := microchip,xec-eeprom + +config DT_HAS_MICROCHIP_XEC_EEPROM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_XEC_EEPROM)) + +DT_COMPAT_MICROCHIP_XEC_ESPI := microchip,xec-espi + +config DT_HAS_MICROCHIP_XEC_ESPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_XEC_ESPI)) + +DT_COMPAT_MICROCHIP_XEC_ESPI_HOST_DEV := microchip,xec-espi-host-dev + +config DT_HAS_MICROCHIP_XEC_ESPI_HOST_DEV_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_XEC_ESPI_HOST_DEV)) + +DT_COMPAT_MICROCHIP_XEC_ESPI_SAF := microchip,xec-espi-saf + +config DT_HAS_MICROCHIP_XEC_ESPI_SAF_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_XEC_ESPI_SAF)) + +DT_COMPAT_MICROCHIP_XEC_ESPI_SAF_V2 := microchip,xec-espi-saf-v2 + +config DT_HAS_MICROCHIP_XEC_ESPI_SAF_V2_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_XEC_ESPI_SAF_V2)) + +DT_COMPAT_MICROCHIP_XEC_ESPI_V2 := microchip,xec-espi-v2 + +config DT_HAS_MICROCHIP_XEC_ESPI_V2_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_XEC_ESPI_V2)) + +DT_COMPAT_MICROCHIP_XEC_ESPI_VW_ROUTING := microchip,xec-espi-vw-routing + +config DT_HAS_MICROCHIP_XEC_ESPI_VW_ROUTING_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_XEC_ESPI_VW_ROUTING)) + +DT_COMPAT_MICROCHIP_XEC_GPIO := microchip,xec-gpio + +config DT_HAS_MICROCHIP_XEC_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_XEC_GPIO)) + +DT_COMPAT_MICROCHIP_XEC_GPIO_V2 := microchip,xec-gpio-v2 + +config DT_HAS_MICROCHIP_XEC_GPIO_V2_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_XEC_GPIO_V2)) + +DT_COMPAT_MICROCHIP_XEC_I2C := microchip,xec-i2c + +config DT_HAS_MICROCHIP_XEC_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_XEC_I2C)) + +DT_COMPAT_MICROCHIP_XEC_I2C_V2 := microchip,xec-i2c-v2 + +config DT_HAS_MICROCHIP_XEC_I2C_V2_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_XEC_I2C_V2)) + +DT_COMPAT_MICROCHIP_XEC_KBD := microchip,xec-kbd + +config DT_HAS_MICROCHIP_XEC_KBD_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_XEC_KBD)) + +DT_COMPAT_MICROCHIP_XEC_PCR := microchip,xec-pcr + +config DT_HAS_MICROCHIP_XEC_PCR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_XEC_PCR)) + +DT_COMPAT_MICROCHIP_XEC_PECI := microchip,xec-peci + +config DT_HAS_MICROCHIP_XEC_PECI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_XEC_PECI)) + +DT_COMPAT_MICROCHIP_XEC_PINCTRL := microchip,xec-pinctrl + +config DT_HAS_MICROCHIP_XEC_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_XEC_PINCTRL)) + +DT_COMPAT_MICROCHIP_XEC_PS2 := microchip,xec-ps2 + +config DT_HAS_MICROCHIP_XEC_PS2_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_XEC_PS2)) + +DT_COMPAT_MICROCHIP_XEC_PWM := microchip,xec-pwm + +config DT_HAS_MICROCHIP_XEC_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_XEC_PWM)) + +DT_COMPAT_MICROCHIP_XEC_PWMBBLED := microchip,xec-pwmbbled + +config DT_HAS_MICROCHIP_XEC_PWMBBLED_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_XEC_PWMBBLED)) + +DT_COMPAT_MICROCHIP_XEC_QMSPI := microchip,xec-qmspi + +config DT_HAS_MICROCHIP_XEC_QMSPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_XEC_QMSPI)) + +DT_COMPAT_MICROCHIP_XEC_QMSPI_LDMA := microchip,xec-qmspi-ldma + +config DT_HAS_MICROCHIP_XEC_QMSPI_LDMA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_XEC_QMSPI_LDMA)) + +DT_COMPAT_MICROCHIP_XEC_RTOS_TIMER := microchip,xec-rtos-timer + +config DT_HAS_MICROCHIP_XEC_RTOS_TIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_XEC_RTOS_TIMER)) + +DT_COMPAT_MICROCHIP_XEC_SYMCR := microchip,xec-symcr + +config DT_HAS_MICROCHIP_XEC_SYMCR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_XEC_SYMCR)) + +DT_COMPAT_MICROCHIP_XEC_TACH := microchip,xec-tach + +config DT_HAS_MICROCHIP_XEC_TACH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_XEC_TACH)) + +DT_COMPAT_MICROCHIP_XEC_TIMER := microchip,xec-timer + +config DT_HAS_MICROCHIP_XEC_TIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_XEC_TIMER)) + +DT_COMPAT_MICROCHIP_XEC_UART := microchip,xec-uart + +config DT_HAS_MICROCHIP_XEC_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_XEC_UART)) + +DT_COMPAT_MICROCHIP_XEC_WATCHDOG := microchip,xec-watchdog + +config DT_HAS_MICROCHIP_XEC_WATCHDOG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_XEC_WATCHDOG)) + +DT_COMPAT_MICROCRYSTAL_RV_8263_C8 := microcrystal,rv-8263-c8 + +config DT_HAS_MICROCRYSTAL_RV_8263_C8_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCRYSTAL_RV_8263_C8)) + +DT_COMPAT_MICROCRYSTAL_RV3028 := microcrystal,rv3028 + +config DT_HAS_MICROCRYSTAL_RV3028_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCRYSTAL_RV3028)) + +DT_COMPAT_MICRON_MT25QU02G := micron,mt25qu02g + +config DT_HAS_MICRON_MT25QU02G_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICRON_MT25QU02G)) + +DT_COMPAT_MIKRO_BUS := mikro-bus + +config DT_HAS_MIKRO_BUS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MIKRO_BUS)) + +DT_COMPAT_MMIO_SRAM := mmio-sram + +config DT_HAS_MMIO_SRAM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MMIO_SRAM)) + +DT_COMPAT_MOTOROLA_MC146818 := motorola,mc146818 + +config DT_HAS_MOTOROLA_MC146818_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MOTOROLA_MC146818)) + +DT_COMPAT_MPS_MPM54304 := mps,mpm54304 + +config DT_HAS_MPS_MPM54304_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MPS_MPM54304)) + +DT_COMPAT_MSPI_APS6404L := mspi-aps6404l + +config DT_HAS_MSPI_APS6404L_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MSPI_APS6404L)) + +DT_COMPAT_MSPI_ATXP032 := mspi-atxp032 + +config DT_HAS_MSPI_ATXP032_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MSPI_ATXP032)) + +DT_COMPAT_MTI_CPU_INTC := mti,cpu-intc + +config DT_HAS_MTI_CPU_INTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MTI_CPU_INTC)) + +DT_COMPAT_MURATA_NCP15WB473 := murata,ncp15wb473 + +config DT_HAS_MURATA_NCP15WB473_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MURATA_NCP15WB473)) + +DT_COMPAT_MURATA_NCP15XH103 := murata,ncp15xh103 + +config DT_HAS_MURATA_NCP15XH103_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MURATA_NCP15XH103)) + +DT_COMPAT_NATIONAL_LM95234 := national,lm95234 + +config DT_HAS_NATIONAL_LM95234_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NATIONAL_LM95234)) + +DT_COMPAT_NEORV32_CPU := neorv32-cpu + +config DT_HAS_NEORV32_CPU_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NEORV32_CPU)) + +DT_COMPAT_NEORV32_GPIO := neorv32-gpio + +config DT_HAS_NEORV32_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NEORV32_GPIO)) + +DT_COMPAT_NEORV32_MACHINE_TIMER := neorv32-machine-timer + +config DT_HAS_NEORV32_MACHINE_TIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NEORV32_MACHINE_TIMER)) + +DT_COMPAT_NEORV32_TRNG := neorv32-trng + +config DT_HAS_NEORV32_TRNG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NEORV32_TRNG)) + +DT_COMPAT_NEORV32_UART := neorv32-uart + +config DT_HAS_NEORV32_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NEORV32_UART)) + +DT_COMPAT_NINTENDO_NUNCHUK := nintendo,nunchuk + +config DT_HAS_NINTENDO_NUNCHUK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NINTENDO_NUNCHUK)) + +DT_COMPAT_NIOSV_MACHINE_TIMER := niosv-machine-timer + +config DT_HAS_NIOSV_MACHINE_TIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NIOSV_MACHINE_TIMER)) + +DT_COMPAT_NORDIC_BT_CS_ANTENNA_SWITCH := nordic,bt-cs-antenna-switch + +config DT_HAS_NORDIC_BT_CS_ANTENNA_SWITCH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_BT_CS_ANTENNA_SWITCH)) + +DT_COMPAT_NORDIC_BT_HCI_SDC := nordic,bt-hci-sdc + +config DT_HAS_NORDIC_BT_HCI_SDC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_BT_HCI_SDC)) + +DT_COMPAT_NORDIC_ENTROPY_PRNG := nordic,entropy-prng + +config DT_HAS_NORDIC_ENTROPY_PRNG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_ENTROPY_PRNG)) + +DT_COMPAT_NORDIC_GPIO_PINS := nordic,gpio-pins + +config DT_HAS_NORDIC_GPIO_PINS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_GPIO_PINS)) + +DT_COMPAT_NORDIC_HPF_GPIO := nordic,hpf-gpio + +config DT_HAS_NORDIC_HPF_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_HPF_GPIO)) + +DT_COMPAT_NORDIC_HPF_MSPI_CONTROLLER := nordic,hpf-mspi-controller + +config DT_HAS_NORDIC_HPF_MSPI_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_HPF_MSPI_CONTROLLER)) + +DT_COMPAT_NORDIC_MBOX_NRF_IPC := nordic,mbox-nrf-ipc + +config DT_HAS_NORDIC_MBOX_NRF_IPC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_MBOX_NRF_IPC)) + +DT_COMPAT_NORDIC_MRAM := nordic,mram + +config DT_HAS_NORDIC_MRAM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_MRAM)) + +DT_COMPAT_NORDIC_NPM1100 := nordic,npm1100 + +config DT_HAS_NORDIC_NPM1100_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NPM1100)) + +DT_COMPAT_NORDIC_NPM1300 := nordic,npm1300 + +config DT_HAS_NORDIC_NPM1300_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NPM1300)) + +DT_COMPAT_NORDIC_NPM1300_CHARGER := nordic,npm1300-charger + +config DT_HAS_NORDIC_NPM1300_CHARGER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NPM1300_CHARGER)) + +DT_COMPAT_NORDIC_NPM1300_GPIO := nordic,npm1300-gpio + +config DT_HAS_NORDIC_NPM1300_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NPM1300_GPIO)) + +DT_COMPAT_NORDIC_NPM1300_LED := nordic,npm1300-led + +config DT_HAS_NORDIC_NPM1300_LED_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NPM1300_LED)) + +DT_COMPAT_NORDIC_NPM1300_REGULATOR := nordic,npm1300-regulator + +config DT_HAS_NORDIC_NPM1300_REGULATOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NPM1300_REGULATOR)) + +DT_COMPAT_NORDIC_NPM1300_WDT := nordic,npm1300-wdt + +config DT_HAS_NORDIC_NPM1300_WDT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NPM1300_WDT)) + +DT_COMPAT_NORDIC_NPM2100 := nordic,npm2100 + +config DT_HAS_NORDIC_NPM2100_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NPM2100)) + +DT_COMPAT_NORDIC_NPM2100_GPIO := nordic,npm2100-gpio + +config DT_HAS_NORDIC_NPM2100_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NPM2100_GPIO)) + +DT_COMPAT_NORDIC_NPM2100_REGULATOR := nordic,npm2100-regulator + +config DT_HAS_NORDIC_NPM2100_REGULATOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NPM2100_REGULATOR)) + +DT_COMPAT_NORDIC_NPM2100_VBAT := nordic,npm2100-vbat + +config DT_HAS_NORDIC_NPM2100_VBAT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NPM2100_VBAT)) + +DT_COMPAT_NORDIC_NPM2100_WDT := nordic,npm2100-wdt + +config DT_HAS_NORDIC_NPM2100_WDT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NPM2100_WDT)) + +DT_COMPAT_NORDIC_NPM6001 := nordic,npm6001 + +config DT_HAS_NORDIC_NPM6001_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NPM6001)) + +DT_COMPAT_NORDIC_NPM6001_GPIO := nordic,npm6001-gpio + +config DT_HAS_NORDIC_NPM6001_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NPM6001_GPIO)) + +DT_COMPAT_NORDIC_NPM6001_REGULATOR := nordic,npm6001-regulator + +config DT_HAS_NORDIC_NPM6001_REGULATOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NPM6001_REGULATOR)) + +DT_COMPAT_NORDIC_NPM6001_WDT := nordic,npm6001-wdt + +config DT_HAS_NORDIC_NPM6001_WDT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NPM6001_WDT)) + +DT_COMPAT_NORDIC_NRF_ACL := nordic,nrf-acl + +config DT_HAS_NORDIC_NRF_ACL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_ACL)) + +DT_COMPAT_NORDIC_NRF_ACLK := nordic,nrf-aclk + +config DT_HAS_NORDIC_NRF_ACLK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_ACLK)) + +DT_COMPAT_NORDIC_NRF_ADC := nordic,nrf-adc + +config DT_HAS_NORDIC_NRF_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_ADC)) + +DT_COMPAT_NORDIC_NRF_AUXPLL := nordic,nrf-auxpll + +config DT_HAS_NORDIC_NRF_AUXPLL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_AUXPLL)) + +DT_COMPAT_NORDIC_NRF_BELLBOARD_RX := nordic,nrf-bellboard-rx + +config DT_HAS_NORDIC_NRF_BELLBOARD_RX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_BELLBOARD_RX)) + +DT_COMPAT_NORDIC_NRF_BELLBOARD_TX := nordic,nrf-bellboard-tx + +config DT_HAS_NORDIC_NRF_BELLBOARD_TX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_BELLBOARD_TX)) + +DT_COMPAT_NORDIC_NRF_BICR := nordic,nrf-bicr + +config DT_HAS_NORDIC_NRF_BICR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_BICR)) + +DT_COMPAT_NORDIC_NRF_BPROT := nordic,nrf-bprot + +config DT_HAS_NORDIC_NRF_BPROT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_BPROT)) + +DT_COMPAT_NORDIC_NRF_CAN := nordic,nrf-can + +config DT_HAS_NORDIC_NRF_CAN_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_CAN)) + +DT_COMPAT_NORDIC_NRF_CCM := nordic,nrf-ccm + +config DT_HAS_NORDIC_NRF_CCM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_CCM)) + +DT_COMPAT_NORDIC_NRF_CLIC := nordic,nrf-clic + +config DT_HAS_NORDIC_NRF_CLIC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_CLIC)) + +DT_COMPAT_NORDIC_NRF_CLOCK := nordic,nrf-clock + +config DT_HAS_NORDIC_NRF_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_CLOCK)) + +DT_COMPAT_NORDIC_NRF_COMP := nordic,nrf-comp + +config DT_HAS_NORDIC_NRF_COMP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_COMP)) + +DT_COMPAT_NORDIC_NRF_CTRLAPPERI := nordic,nrf-ctrlapperi + +config DT_HAS_NORDIC_NRF_CTRLAPPERI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_CTRLAPPERI)) + +DT_COMPAT_NORDIC_NRF_DCNF := nordic,nrf-dcnf + +config DT_HAS_NORDIC_NRF_DCNF_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_DCNF)) + +DT_COMPAT_NORDIC_NRF_DPPIC := nordic,nrf-dppic + +config DT_HAS_NORDIC_NRF_DPPIC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_DPPIC)) + +DT_COMPAT_NORDIC_NRF_DPPIC_GLOBAL := nordic,nrf-dppic-global + +config DT_HAS_NORDIC_NRF_DPPIC_GLOBAL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_DPPIC_GLOBAL)) + +DT_COMPAT_NORDIC_NRF_DPPIC_LOCAL := nordic,nrf-dppic-local + +config DT_HAS_NORDIC_NRF_DPPIC_LOCAL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_DPPIC_LOCAL)) + +DT_COMPAT_NORDIC_NRF_ECB := nordic,nrf-ecb + +config DT_HAS_NORDIC_NRF_ECB_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_ECB)) + +DT_COMPAT_NORDIC_NRF_EGU := nordic,nrf-egu + +config DT_HAS_NORDIC_NRF_EGU_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_EGU)) + +DT_COMPAT_NORDIC_NRF_EXMIF := nordic,nrf-exmif + +config DT_HAS_NORDIC_NRF_EXMIF_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_EXMIF)) + +DT_COMPAT_NORDIC_NRF_EXMIF_SPI := nordic,nrf-exmif-spi + +config DT_HAS_NORDIC_NRF_EXMIF_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_EXMIF_SPI)) + +DT_COMPAT_NORDIC_NRF_FICR := nordic,nrf-ficr + +config DT_HAS_NORDIC_NRF_FICR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_FICR)) + +DT_COMPAT_NORDIC_NRF_FLL16M := nordic,nrf-fll16m + +config DT_HAS_NORDIC_NRF_FLL16M_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_FLL16M)) + +DT_COMPAT_NORDIC_NRF_GPD := nordic,nrf-gpd + +config DT_HAS_NORDIC_NRF_GPD_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_GPD)) + +DT_COMPAT_NORDIC_NRF_GPIO := nordic,nrf-gpio + +config DT_HAS_NORDIC_NRF_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_GPIO)) + +DT_COMPAT_NORDIC_NRF_GPIO_FORWARDER := nordic,nrf-gpio-forwarder + +config DT_HAS_NORDIC_NRF_GPIO_FORWARDER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_GPIO_FORWARDER)) + +DT_COMPAT_NORDIC_NRF_GPIOTE := nordic,nrf-gpiote + +config DT_HAS_NORDIC_NRF_GPIOTE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_GPIOTE)) + +DT_COMPAT_NORDIC_NRF_GPREGRET := nordic,nrf-gpregret + +config DT_HAS_NORDIC_NRF_GPREGRET_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_GPREGRET)) + +DT_COMPAT_NORDIC_NRF_GRTC := nordic,nrf-grtc + +config DT_HAS_NORDIC_NRF_GRTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_GRTC)) + +DT_COMPAT_NORDIC_NRF_HFXO := nordic,nrf-hfxo + +config DT_HAS_NORDIC_NRF_HFXO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_HFXO)) + +DT_COMPAT_NORDIC_NRF_HSFLL_GLOBAL := nordic,nrf-hsfll-global + +config DT_HAS_NORDIC_NRF_HSFLL_GLOBAL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_HSFLL_GLOBAL)) + +DT_COMPAT_NORDIC_NRF_HSFLL_LOCAL := nordic,nrf-hsfll-local + +config DT_HAS_NORDIC_NRF_HSFLL_LOCAL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_HSFLL_LOCAL)) + +DT_COMPAT_NORDIC_NRF_I2S := nordic,nrf-i2s + +config DT_HAS_NORDIC_NRF_I2S_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_I2S)) + +DT_COMPAT_NORDIC_NRF_IEEE802154 := nordic,nrf-ieee802154 + +config DT_HAS_NORDIC_NRF_IEEE802154_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_IEEE802154)) + +DT_COMPAT_NORDIC_NRF_IPC := nordic,nrf-ipc + +config DT_HAS_NORDIC_NRF_IPC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_IPC)) + +DT_COMPAT_NORDIC_NRF_IPC_UART := nordic,nrf-ipc-uart + +config DT_HAS_NORDIC_NRF_IPC_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_IPC_UART)) + +DT_COMPAT_NORDIC_NRF_IPCT_GLOBAL := nordic,nrf-ipct-global + +config DT_HAS_NORDIC_NRF_IPCT_GLOBAL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_IPCT_GLOBAL)) + +DT_COMPAT_NORDIC_NRF_IPCT_LOCAL := nordic,nrf-ipct-local + +config DT_HAS_NORDIC_NRF_IPCT_LOCAL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_IPCT_LOCAL)) + +DT_COMPAT_NORDIC_NRF_KMU := nordic,nrf-kmu + +config DT_HAS_NORDIC_NRF_KMU_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_KMU)) + +DT_COMPAT_NORDIC_NRF_LED_MATRIX := nordic,nrf-led-matrix + +config DT_HAS_NORDIC_NRF_LED_MATRIX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_LED_MATRIX)) + +DT_COMPAT_NORDIC_NRF_LFCLK := nordic,nrf-lfclk + +config DT_HAS_NORDIC_NRF_LFCLK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_LFCLK)) + +DT_COMPAT_NORDIC_NRF_LFXO := nordic,nrf-lfxo + +config DT_HAS_NORDIC_NRF_LFXO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_LFXO)) + +DT_COMPAT_NORDIC_NRF_LPCOMP := nordic,nrf-lpcomp + +config DT_HAS_NORDIC_NRF_LPCOMP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_LPCOMP)) + +DT_COMPAT_NORDIC_NRF_MPC := nordic,nrf-mpc + +config DT_HAS_NORDIC_NRF_MPC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_MPC)) + +DT_COMPAT_NORDIC_NRF_MPU := nordic,nrf-mpu + +config DT_HAS_NORDIC_NRF_MPU_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_MPU)) + +DT_COMPAT_NORDIC_NRF_MUTEX := nordic,nrf-mutex + +config DT_HAS_NORDIC_NRF_MUTEX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_MUTEX)) + +DT_COMPAT_NORDIC_NRF_MWU := nordic,nrf-mwu + +config DT_HAS_NORDIC_NRF_MWU_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_MWU)) + +DT_COMPAT_NORDIC_NRF_NFCT := nordic,nrf-nfct + +config DT_HAS_NORDIC_NRF_NFCT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_NFCT)) + +DT_COMPAT_NORDIC_NRF_PDM := nordic,nrf-pdm + +config DT_HAS_NORDIC_NRF_PDM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_PDM)) + +DT_COMPAT_NORDIC_NRF_PINCTRL := nordic,nrf-pinctrl + +config DT_HAS_NORDIC_NRF_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_PINCTRL)) + +DT_COMPAT_NORDIC_NRF_POWER := nordic,nrf-power + +config DT_HAS_NORDIC_NRF_POWER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_POWER)) + +DT_COMPAT_NORDIC_NRF_PPI := nordic,nrf-ppi + +config DT_HAS_NORDIC_NRF_PPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_PPI)) + +DT_COMPAT_NORDIC_NRF_PPIB := nordic,nrf-ppib + +config DT_HAS_NORDIC_NRF_PPIB_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_PPIB)) + +DT_COMPAT_NORDIC_NRF_PWM := nordic,nrf-pwm + +config DT_HAS_NORDIC_NRF_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_PWM)) + +DT_COMPAT_NORDIC_NRF_QDEC := nordic,nrf-qdec + +config DT_HAS_NORDIC_NRF_QDEC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_QDEC)) + +DT_COMPAT_NORDIC_NRF_QSPI := nordic,nrf-qspi + +config DT_HAS_NORDIC_NRF_QSPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_QSPI)) + +DT_COMPAT_NORDIC_NRF_RADIO := nordic,nrf-radio + +config DT_HAS_NORDIC_NRF_RADIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_RADIO)) + +DT_COMPAT_NORDIC_NRF_RESET := nordic,nrf-reset + +config DT_HAS_NORDIC_NRF_RESET_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_RESET)) + +DT_COMPAT_NORDIC_NRF_RESETINFO := nordic,nrf-resetinfo + +config DT_HAS_NORDIC_NRF_RESETINFO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_RESETINFO)) + +DT_COMPAT_NORDIC_NRF_RNG := nordic,nrf-rng + +config DT_HAS_NORDIC_NRF_RNG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_RNG)) + +DT_COMPAT_NORDIC_NRF_RTC := nordic,nrf-rtc + +config DT_HAS_NORDIC_NRF_RTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_RTC)) + +DT_COMPAT_NORDIC_NRF_SAADC := nordic,nrf-saadc + +config DT_HAS_NORDIC_NRF_SAADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_SAADC)) + +DT_COMPAT_NORDIC_NRF_SPI := nordic,nrf-spi + +config DT_HAS_NORDIC_NRF_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_SPI)) + +DT_COMPAT_NORDIC_NRF_SPIM := nordic,nrf-spim + +config DT_HAS_NORDIC_NRF_SPIM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_SPIM)) + +DT_COMPAT_NORDIC_NRF_SPIS := nordic,nrf-spis + +config DT_HAS_NORDIC_NRF_SPIS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_SPIS)) + +DT_COMPAT_NORDIC_NRF_SPU := nordic,nrf-spu + +config DT_HAS_NORDIC_NRF_SPU_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_SPU)) + +DT_COMPAT_NORDIC_NRF_SQSPI := nordic,nrf-sqspi + +config DT_HAS_NORDIC_NRF_SQSPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_SQSPI)) + +DT_COMPAT_NORDIC_NRF_SW_LPUART := nordic,nrf-sw-lpuart + +config DT_HAS_NORDIC_NRF_SW_LPUART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_SW_LPUART)) + +DT_COMPAT_NORDIC_NRF_SW_PWM := nordic,nrf-sw-pwm + +config DT_HAS_NORDIC_NRF_SW_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_SW_PWM)) + +DT_COMPAT_NORDIC_NRF_SWI := nordic,nrf-swi + +config DT_HAS_NORDIC_NRF_SWI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_SWI)) + +DT_COMPAT_NORDIC_NRF_TBM := nordic,nrf-tbm + +config DT_HAS_NORDIC_NRF_TBM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_TBM)) + +DT_COMPAT_NORDIC_NRF_TDDCONF := nordic,nrf-tddconf + +config DT_HAS_NORDIC_NRF_TDDCONF_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_TDDCONF)) + +DT_COMPAT_NORDIC_NRF_TDM := nordic,nrf-tdm + +config DT_HAS_NORDIC_NRF_TDM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_TDM)) + +DT_COMPAT_NORDIC_NRF_TEMP := nordic,nrf-temp + +config DT_HAS_NORDIC_NRF_TEMP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_TEMP)) + +DT_COMPAT_NORDIC_NRF_TEMP_NRFS := nordic,nrf-temp-nrfs + +config DT_HAS_NORDIC_NRF_TEMP_NRFS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_TEMP_NRFS)) + +DT_COMPAT_NORDIC_NRF_TIMER := nordic,nrf-timer + +config DT_HAS_NORDIC_NRF_TIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_TIMER)) + +DT_COMPAT_NORDIC_NRF_TWI := nordic,nrf-twi + +config DT_HAS_NORDIC_NRF_TWI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_TWI)) + +DT_COMPAT_NORDIC_NRF_TWIM := nordic,nrf-twim + +config DT_HAS_NORDIC_NRF_TWIM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_TWIM)) + +DT_COMPAT_NORDIC_NRF_TWIS := nordic,nrf-twis + +config DT_HAS_NORDIC_NRF_TWIS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_TWIS)) + +DT_COMPAT_NORDIC_NRF_UART := nordic,nrf-uart + +config DT_HAS_NORDIC_NRF_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_UART)) + +DT_COMPAT_NORDIC_NRF_UARTE := nordic,nrf-uarte + +config DT_HAS_NORDIC_NRF_UARTE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_UARTE)) + +DT_COMPAT_NORDIC_NRF_UICR := nordic,nrf-uicr + +config DT_HAS_NORDIC_NRF_UICR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_UICR)) + +DT_COMPAT_NORDIC_NRF_UICR_V2 := nordic,nrf-uicr-v2 + +config DT_HAS_NORDIC_NRF_UICR_V2_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_UICR_V2)) + +DT_COMPAT_NORDIC_NRF_USBD := nordic,nrf-usbd + +config DT_HAS_NORDIC_NRF_USBD_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_USBD)) + +DT_COMPAT_NORDIC_NRF_USBREG := nordic,nrf-usbreg + +config DT_HAS_NORDIC_NRF_USBREG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_USBREG)) + +DT_COMPAT_NORDIC_NRF_VEVIF_EVENT_RX := nordic,nrf-vevif-event-rx + +config DT_HAS_NORDIC_NRF_VEVIF_EVENT_RX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_VEVIF_EVENT_RX)) + +DT_COMPAT_NORDIC_NRF_VEVIF_EVENT_TX := nordic,nrf-vevif-event-tx + +config DT_HAS_NORDIC_NRF_VEVIF_EVENT_TX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_VEVIF_EVENT_TX)) + +DT_COMPAT_NORDIC_NRF_VEVIF_TASK_RX := nordic,nrf-vevif-task-rx + +config DT_HAS_NORDIC_NRF_VEVIF_TASK_RX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_VEVIF_TASK_RX)) + +DT_COMPAT_NORDIC_NRF_VEVIF_TASK_TX := nordic,nrf-vevif-task-tx + +config DT_HAS_NORDIC_NRF_VEVIF_TASK_TX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_VEVIF_TASK_TX)) + +DT_COMPAT_NORDIC_NRF_VMC := nordic,nrf-vmc + +config DT_HAS_NORDIC_NRF_VMC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_VMC)) + +DT_COMPAT_NORDIC_NRF_VPR_COPROCESSOR := nordic,nrf-vpr-coprocessor + +config DT_HAS_NORDIC_NRF_VPR_COPROCESSOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_VPR_COPROCESSOR)) + +DT_COMPAT_NORDIC_NRF_WDT := nordic,nrf-wdt + +config DT_HAS_NORDIC_NRF_WDT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_WDT)) + +DT_COMPAT_NORDIC_NRF21540_FEM := nordic,nrf21540-fem + +config DT_HAS_NORDIC_NRF21540_FEM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF21540_FEM)) + +DT_COMPAT_NORDIC_NRF21540_FEM_SPI := nordic,nrf21540-fem-spi + +config DT_HAS_NORDIC_NRF21540_FEM_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF21540_FEM_SPI)) + +DT_COMPAT_NORDIC_NRF2220_FEM := nordic,nrf2220-fem + +config DT_HAS_NORDIC_NRF2220_FEM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF2220_FEM)) + +DT_COMPAT_NORDIC_NRF2220_FEM_TWI := nordic,nrf2220-fem-twi + +config DT_HAS_NORDIC_NRF2220_FEM_TWI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF2220_FEM_TWI)) + +DT_COMPAT_NORDIC_NRF2240_FEM := nordic,nrf2240-fem + +config DT_HAS_NORDIC_NRF2240_FEM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF2240_FEM)) + +DT_COMPAT_NORDIC_NRF2240_FEM_TWI := nordic,nrf2240-fem-twi + +config DT_HAS_NORDIC_NRF2240_FEM_TWI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF2240_FEM_TWI)) + +DT_COMPAT_NORDIC_NRF51_FLASH_CONTROLLER := nordic,nrf51-flash-controller + +config DT_HAS_NORDIC_NRF51_FLASH_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF51_FLASH_CONTROLLER)) + +DT_COMPAT_NORDIC_NRF52_FLASH_CONTROLLER := nordic,nrf52-flash-controller + +config DT_HAS_NORDIC_NRF52_FLASH_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF52_FLASH_CONTROLLER)) + +DT_COMPAT_NORDIC_NRF52X_REGULATOR_HV := nordic,nrf52x-regulator-hv + +config DT_HAS_NORDIC_NRF52X_REGULATOR_HV_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF52X_REGULATOR_HV)) + +DT_COMPAT_NORDIC_NRF53_FLASH_CONTROLLER := nordic,nrf53-flash-controller + +config DT_HAS_NORDIC_NRF53_FLASH_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF53_FLASH_CONTROLLER)) + +DT_COMPAT_NORDIC_NRF53_HFXO := nordic,nrf53-hfxo + +config DT_HAS_NORDIC_NRF53_HFXO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF53_HFXO)) + +DT_COMPAT_NORDIC_NRF53_LFXO := nordic,nrf53-lfxo + +config DT_HAS_NORDIC_NRF53_LFXO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF53_LFXO)) + +DT_COMPAT_NORDIC_NRF53_OSCILLATORS := nordic,nrf53-oscillators + +config DT_HAS_NORDIC_NRF53_OSCILLATORS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF53_OSCILLATORS)) + +DT_COMPAT_NORDIC_NRF53X_REGULATOR_HV := nordic,nrf53x-regulator-hv + +config DT_HAS_NORDIC_NRF53X_REGULATOR_HV_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF53X_REGULATOR_HV)) + +DT_COMPAT_NORDIC_NRF53X_REGULATORS := nordic,nrf53x-regulators + +config DT_HAS_NORDIC_NRF53X_REGULATORS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF53X_REGULATORS)) + +DT_COMPAT_NORDIC_NRF54H_HFXO := nordic,nrf54h-hfxo + +config DT_HAS_NORDIC_NRF54H_HFXO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF54H_HFXO)) + +DT_COMPAT_NORDIC_NRF54H_LFXO := nordic,nrf54h-lfxo + +config DT_HAS_NORDIC_NRF54H_LFXO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF54H_LFXO)) + +DT_COMPAT_NORDIC_NRF54L_REGULATORS := nordic,nrf54l-regulators + +config DT_HAS_NORDIC_NRF54L_REGULATORS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF54L_REGULATORS)) + +DT_COMPAT_NORDIC_NRF5X_REGULATOR := nordic,nrf5x-regulator + +config DT_HAS_NORDIC_NRF5X_REGULATOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF5X_REGULATOR)) + +DT_COMPAT_NORDIC_NRF7000_COEX := nordic,nrf7000-coex + +config DT_HAS_NORDIC_NRF7000_COEX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF7000_COEX)) + +DT_COMPAT_NORDIC_NRF7000_QSPI := nordic,nrf7000-qspi + +config DT_HAS_NORDIC_NRF7000_QSPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF7000_QSPI)) + +DT_COMPAT_NORDIC_NRF7000_SPI := nordic,nrf7000-spi + +config DT_HAS_NORDIC_NRF7000_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF7000_SPI)) + +DT_COMPAT_NORDIC_NRF7001_COEX := nordic,nrf7001-coex + +config DT_HAS_NORDIC_NRF7001_COEX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF7001_COEX)) + +DT_COMPAT_NORDIC_NRF7001_QSPI := nordic,nrf7001-qspi + +config DT_HAS_NORDIC_NRF7001_QSPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF7001_QSPI)) + +DT_COMPAT_NORDIC_NRF7001_SPI := nordic,nrf7001-spi + +config DT_HAS_NORDIC_NRF7001_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF7001_SPI)) + +DT_COMPAT_NORDIC_NRF7002_COEX := nordic,nrf7002-coex + +config DT_HAS_NORDIC_NRF7002_COEX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF7002_COEX)) + +DT_COMPAT_NORDIC_NRF7002_QSPI := nordic,nrf7002-qspi + +config DT_HAS_NORDIC_NRF7002_QSPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF7002_QSPI)) + +DT_COMPAT_NORDIC_NRF7002_SPI := nordic,nrf7002-spi + +config DT_HAS_NORDIC_NRF7002_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF7002_SPI)) + +DT_COMPAT_NORDIC_NRF91_FLASH_CONTROLLER := nordic,nrf91-flash-controller + +config DT_HAS_NORDIC_NRF91_FLASH_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF91_FLASH_CONTROLLER)) + +DT_COMPAT_NORDIC_NRF91_SLM := nordic,nrf91-slm + +config DT_HAS_NORDIC_NRF91_SLM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF91_SLM)) + +DT_COMPAT_NORDIC_NRF91X_REGULATORS := nordic,nrf91x-regulators + +config DT_HAS_NORDIC_NRF91X_REGULATORS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF91X_REGULATORS)) + +DT_COMPAT_NORDIC_NRFS_AUDIOPLL := nordic,nrfs-audiopll + +config DT_HAS_NORDIC_NRFS_AUDIOPLL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRFS_AUDIOPLL)) + +DT_COMPAT_NORDIC_OWNED_MEMORY := nordic,owned-memory + +config DT_HAS_NORDIC_OWNED_MEMORY_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_OWNED_MEMORY)) + +DT_COMPAT_NORDIC_OWNED_PARTITIONS := nordic,owned-partitions + +config DT_HAS_NORDIC_OWNED_PARTITIONS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_OWNED_PARTITIONS)) + +DT_COMPAT_NORDIC_QSPI_NOR := nordic,qspi-nor + +config DT_HAS_NORDIC_QSPI_NOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_QSPI_NOR)) + +DT_COMPAT_NORDIC_RRAM_CONTROLLER := nordic,rram-controller + +config DT_HAS_NORDIC_RRAM_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_RRAM_CONTROLLER)) + +DT_COMPAT_NORDIC_SENSOR_SIM := nordic,sensor-sim + +config DT_HAS_NORDIC_SENSOR_SIM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_SENSOR_SIM)) + +DT_COMPAT_NORDIC_SENSOR_STUB := nordic,sensor-stub + +config DT_HAS_NORDIC_SENSOR_STUB_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_SENSOR_STUB)) + +DT_COMPAT_NORDIC_VPR := nordic,vpr + +config DT_HAS_NORDIC_VPR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_VPR)) + +DT_COMPAT_NORDIC_WIFI71 := nordic,wifi71 + +config DT_HAS_NORDIC_WIFI71_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_WIFI71)) + +DT_COMPAT_NORDIC_THINGY53_EDGE_CONNECTOR := nordic-thingy53-edge-connector + +config DT_HAS_NORDIC_THINGY53_EDGE_CONNECTOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_THINGY53_EDGE_CONNECTOR)) + +DT_COMPAT_NORITAKE_ITRON := noritake,itron + +config DT_HAS_NORITAKE_ITRON_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORITAKE_ITRON)) + +DT_COMPAT_NS16550 := ns16550 + +config DT_HAS_NS16550_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NS16550)) + +DT_COMPAT_NTC_THERMISTOR_GENERIC := ntc-thermistor-generic + +config DT_HAS_NTC_THERMISTOR_GENERIC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NTC_THERMISTOR_GENERIC)) + +DT_COMPAT_NUCLEI_BUMBLEBEE := nuclei,bumblebee + +config DT_HAS_NUCLEI_BUMBLEBEE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUCLEI_BUMBLEBEE)) + +DT_COMPAT_NUCLEI_ECLIC := nuclei,eclic + +config DT_HAS_NUCLEI_ECLIC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUCLEI_ECLIC)) + +DT_COMPAT_NUCLEI_SYSTIMER := nuclei,systimer + +config DT_HAS_NUCLEI_SYSTIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUCLEI_SYSTIMER)) + +DT_COMPAT_NUVOTON_ADC_CMP := nuvoton,adc-cmp + +config DT_HAS_NUVOTON_ADC_CMP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_ADC_CMP)) + +DT_COMPAT_NUVOTON_NCT38XX := nuvoton,nct38xx + +config DT_HAS_NUVOTON_NCT38XX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NCT38XX)) + +DT_COMPAT_NUVOTON_NCT38XX_GPIO := nuvoton,nct38xx-gpio + +config DT_HAS_NUVOTON_NCT38XX_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NCT38XX_GPIO)) + +DT_COMPAT_NUVOTON_NCT38XX_GPIO_ALERT := nuvoton,nct38xx-gpio-alert + +config DT_HAS_NUVOTON_NCT38XX_GPIO_ALERT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NCT38XX_GPIO_ALERT)) + +DT_COMPAT_NUVOTON_NCT38XX_GPIO_PORT := nuvoton,nct38xx-gpio-port + +config DT_HAS_NUVOTON_NCT38XX_GPIO_PORT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NCT38XX_GPIO_PORT)) + +DT_COMPAT_NUVOTON_NPCM_PCC := nuvoton,npcm-pcc + +config DT_HAS_NUVOTON_NPCM_PCC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCM_PCC)) + +DT_COMPAT_NUVOTON_NPCX_ADC := nuvoton,npcx-adc + +config DT_HAS_NUVOTON_NPCX_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_ADC)) + +DT_COMPAT_NUVOTON_NPCX_BBRAM := nuvoton,npcx-bbram + +config DT_HAS_NUVOTON_NPCX_BBRAM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_BBRAM)) + +DT_COMPAT_NUVOTON_NPCX_BOOTER_VARIANT := nuvoton,npcx-booter-variant + +config DT_HAS_NUVOTON_NPCX_BOOTER_VARIANT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_BOOTER_VARIANT)) + +DT_COMPAT_NUVOTON_NPCX_DRBG := nuvoton,npcx-drbg + +config DT_HAS_NUVOTON_NPCX_DRBG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_DRBG)) + +DT_COMPAT_NUVOTON_NPCX_ESPI := nuvoton,npcx-espi + +config DT_HAS_NUVOTON_NPCX_ESPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_ESPI)) + +DT_COMPAT_NUVOTON_NPCX_ESPI_TAF := nuvoton,npcx-espi-taf + +config DT_HAS_NUVOTON_NPCX_ESPI_TAF_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_ESPI_TAF)) + +DT_COMPAT_NUVOTON_NPCX_ESPI_VW_CONF := nuvoton,npcx-espi-vw-conf + +config DT_HAS_NUVOTON_NPCX_ESPI_VW_CONF_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_ESPI_VW_CONF)) + +DT_COMPAT_NUVOTON_NPCX_FIU_NOR := nuvoton,npcx-fiu-nor + +config DT_HAS_NUVOTON_NPCX_FIU_NOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_FIU_NOR)) + +DT_COMPAT_NUVOTON_NPCX_FIU_QSPI := nuvoton,npcx-fiu-qspi + +config DT_HAS_NUVOTON_NPCX_FIU_QSPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_FIU_QSPI)) + +DT_COMPAT_NUVOTON_NPCX_GPIO := nuvoton,npcx-gpio + +config DT_HAS_NUVOTON_NPCX_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_GPIO)) + +DT_COMPAT_NUVOTON_NPCX_HOST_SUB := nuvoton,npcx-host-sub + +config DT_HAS_NUVOTON_NPCX_HOST_SUB_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_HOST_SUB)) + +DT_COMPAT_NUVOTON_NPCX_HOST_UART := nuvoton,npcx-host-uart + +config DT_HAS_NUVOTON_NPCX_HOST_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_HOST_UART)) + +DT_COMPAT_NUVOTON_NPCX_I2C_CTRL := nuvoton,npcx-i2c-ctrl + +config DT_HAS_NUVOTON_NPCX_I2C_CTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_I2C_CTRL)) + +DT_COMPAT_NUVOTON_NPCX_I2C_PORT := nuvoton,npcx-i2c-port + +config DT_HAS_NUVOTON_NPCX_I2C_PORT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_I2C_PORT)) + +DT_COMPAT_NUVOTON_NPCX_I3C := nuvoton,npcx-i3c + +config DT_HAS_NUVOTON_NPCX_I3C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_I3C)) + +DT_COMPAT_NUVOTON_NPCX_ITIM_TIMER := nuvoton,npcx-itim-timer + +config DT_HAS_NUVOTON_NPCX_ITIM_TIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_ITIM_TIMER)) + +DT_COMPAT_NUVOTON_NPCX_KBD := nuvoton,npcx-kbd + +config DT_HAS_NUVOTON_NPCX_KBD_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_KBD)) + +DT_COMPAT_NUVOTON_NPCX_LEAKAGE_IO := nuvoton,npcx-leakage-io + +config DT_HAS_NUVOTON_NPCX_LEAKAGE_IO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_LEAKAGE_IO)) + +DT_COMPAT_NUVOTON_NPCX_LVOLCTRL_CONF := nuvoton,npcx-lvolctrl-conf + +config DT_HAS_NUVOTON_NPCX_LVOLCTRL_CONF_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_LVOLCTRL_CONF)) + +DT_COMPAT_NUVOTON_NPCX_MIWU := nuvoton,npcx-miwu + +config DT_HAS_NUVOTON_NPCX_MIWU_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_MIWU)) + +DT_COMPAT_NUVOTON_NPCX_MIWU_INT_MAP := nuvoton,npcx-miwu-int-map + +config DT_HAS_NUVOTON_NPCX_MIWU_INT_MAP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_MIWU_INT_MAP)) + +DT_COMPAT_NUVOTON_NPCX_MIWU_WUI_MAP := nuvoton,npcx-miwu-wui-map + +config DT_HAS_NUVOTON_NPCX_MIWU_WUI_MAP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_MIWU_WUI_MAP)) + +DT_COMPAT_NUVOTON_NPCX_PCC := nuvoton,npcx-pcc + +config DT_HAS_NUVOTON_NPCX_PCC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_PCC)) + +DT_COMPAT_NUVOTON_NPCX_PECI := nuvoton,npcx-peci + +config DT_HAS_NUVOTON_NPCX_PECI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_PECI)) + +DT_COMPAT_NUVOTON_NPCX_PINCTRL := nuvoton,npcx-pinctrl + +config DT_HAS_NUVOTON_NPCX_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_PINCTRL)) + +DT_COMPAT_NUVOTON_NPCX_PINCTRL_CONF := nuvoton,npcx-pinctrl-conf + +config DT_HAS_NUVOTON_NPCX_PINCTRL_CONF_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_PINCTRL_CONF)) + +DT_COMPAT_NUVOTON_NPCX_PINCTRL_DEF := nuvoton,npcx-pinctrl-def + +config DT_HAS_NUVOTON_NPCX_PINCTRL_DEF_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_PINCTRL_DEF)) + +DT_COMPAT_NUVOTON_NPCX_POWER_PSL := nuvoton,npcx-power-psl + +config DT_HAS_NUVOTON_NPCX_POWER_PSL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_POWER_PSL)) + +DT_COMPAT_NUVOTON_NPCX_PS2_CHANNEL := nuvoton,npcx-ps2-channel + +config DT_HAS_NUVOTON_NPCX_PS2_CHANNEL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_PS2_CHANNEL)) + +DT_COMPAT_NUVOTON_NPCX_PS2_CTRL := nuvoton,npcx-ps2-ctrl + +config DT_HAS_NUVOTON_NPCX_PS2_CTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_PS2_CTRL)) + +DT_COMPAT_NUVOTON_NPCX_PWM := nuvoton,npcx-pwm + +config DT_HAS_NUVOTON_NPCX_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_PWM)) + +DT_COMPAT_NUVOTON_NPCX_RST := nuvoton,npcx-rst + +config DT_HAS_NUVOTON_NPCX_RST_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_RST)) + +DT_COMPAT_NUVOTON_NPCX_SCFG := nuvoton,npcx-scfg + +config DT_HAS_NUVOTON_NPCX_SCFG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_SCFG)) + +DT_COMPAT_NUVOTON_NPCX_SHA := nuvoton,npcx-sha + +config DT_HAS_NUVOTON_NPCX_SHA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_SHA)) + +DT_COMPAT_NUVOTON_NPCX_SHI := nuvoton,npcx-shi + +config DT_HAS_NUVOTON_NPCX_SHI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_SHI)) + +DT_COMPAT_NUVOTON_NPCX_SHI_ENHANCED := nuvoton,npcx-shi-enhanced + +config DT_HAS_NUVOTON_NPCX_SHI_ENHANCED_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_SHI_ENHANCED)) + +DT_COMPAT_NUVOTON_NPCX_SOC_ID := nuvoton,npcx-soc-id + +config DT_HAS_NUVOTON_NPCX_SOC_ID_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_SOC_ID)) + +DT_COMPAT_NUVOTON_NPCX_SPIP := nuvoton,npcx-spip + +config DT_HAS_NUVOTON_NPCX_SPIP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_SPIP)) + +DT_COMPAT_NUVOTON_NPCX_TACH := nuvoton,npcx-tach + +config DT_HAS_NUVOTON_NPCX_TACH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_TACH)) + +DT_COMPAT_NUVOTON_NPCX_UART := nuvoton,npcx-uart + +config DT_HAS_NUVOTON_NPCX_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_UART)) + +DT_COMPAT_NUVOTON_NPCX_WATCHDOG := nuvoton,npcx-watchdog + +config DT_HAS_NUVOTON_NPCX_WATCHDOG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_WATCHDOG)) + +DT_COMPAT_NUVOTON_NUMAKER_ADC := nuvoton,numaker-adc + +config DT_HAS_NUVOTON_NUMAKER_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NUMAKER_ADC)) + +DT_COMPAT_NUVOTON_NUMAKER_CANFD := nuvoton,numaker-canfd + +config DT_HAS_NUVOTON_NUMAKER_CANFD_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NUMAKER_CANFD)) + +DT_COMPAT_NUVOTON_NUMAKER_ETHERNET := nuvoton,numaker-ethernet + +config DT_HAS_NUVOTON_NUMAKER_ETHERNET_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NUMAKER_ETHERNET)) + +DT_COMPAT_NUVOTON_NUMAKER_FMC := nuvoton,numaker-fmc + +config DT_HAS_NUVOTON_NUMAKER_FMC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NUMAKER_FMC)) + +DT_COMPAT_NUVOTON_NUMAKER_GPIO := nuvoton,numaker-gpio + +config DT_HAS_NUVOTON_NUMAKER_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NUMAKER_GPIO)) + +DT_COMPAT_NUVOTON_NUMAKER_I2C := nuvoton,numaker-i2c + +config DT_HAS_NUVOTON_NUMAKER_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NUMAKER_I2C)) + +DT_COMPAT_NUVOTON_NUMAKER_PCC := nuvoton,numaker-pcc + +config DT_HAS_NUVOTON_NUMAKER_PCC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NUMAKER_PCC)) + +DT_COMPAT_NUVOTON_NUMAKER_PINCTRL := nuvoton,numaker-pinctrl + +config DT_HAS_NUVOTON_NUMAKER_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NUMAKER_PINCTRL)) + +DT_COMPAT_NUVOTON_NUMAKER_PPC := nuvoton,numaker-ppc + +config DT_HAS_NUVOTON_NUMAKER_PPC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NUMAKER_PPC)) + +DT_COMPAT_NUVOTON_NUMAKER_PWM := nuvoton,numaker-pwm + +config DT_HAS_NUVOTON_NUMAKER_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NUMAKER_PWM)) + +DT_COMPAT_NUVOTON_NUMAKER_RMC := nuvoton,numaker-rmc + +config DT_HAS_NUVOTON_NUMAKER_RMC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NUMAKER_RMC)) + +DT_COMPAT_NUVOTON_NUMAKER_RST := nuvoton,numaker-rst + +config DT_HAS_NUVOTON_NUMAKER_RST_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NUMAKER_RST)) + +DT_COMPAT_NUVOTON_NUMAKER_RTC := nuvoton,numaker-rtc + +config DT_HAS_NUVOTON_NUMAKER_RTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NUMAKER_RTC)) + +DT_COMPAT_NUVOTON_NUMAKER_SCC := nuvoton,numaker-scc + +config DT_HAS_NUVOTON_NUMAKER_SCC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NUMAKER_SCC)) + +DT_COMPAT_NUVOTON_NUMAKER_SPI := nuvoton,numaker-spi + +config DT_HAS_NUVOTON_NUMAKER_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NUMAKER_SPI)) + +DT_COMPAT_NUVOTON_NUMAKER_TCPC := nuvoton,numaker-tcpc + +config DT_HAS_NUVOTON_NUMAKER_TCPC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NUMAKER_TCPC)) + +DT_COMPAT_NUVOTON_NUMAKER_UART := nuvoton,numaker-uart + +config DT_HAS_NUVOTON_NUMAKER_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NUMAKER_UART)) + +DT_COMPAT_NUVOTON_NUMAKER_USBD := nuvoton,numaker-usbd + +config DT_HAS_NUVOTON_NUMAKER_USBD_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NUMAKER_USBD)) + +DT_COMPAT_NUVOTON_NUMAKER_VBUS := nuvoton,numaker-vbus + +config DT_HAS_NUVOTON_NUMAKER_VBUS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NUMAKER_VBUS)) + +DT_COMPAT_NUVOTON_NUMAKER_WWDT := nuvoton,numaker-wwdt + +config DT_HAS_NUVOTON_NUMAKER_WWDT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NUMAKER_WWDT)) + +DT_COMPAT_NUVOTON_NUMICRO_GPIO := nuvoton,numicro-gpio + +config DT_HAS_NUVOTON_NUMICRO_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NUMICRO_GPIO)) + +DT_COMPAT_NUVOTON_NUMICRO_PINCTRL := nuvoton,numicro-pinctrl + +config DT_HAS_NUVOTON_NUMICRO_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NUMICRO_PINCTRL)) + +DT_COMPAT_NUVOTON_NUMICRO_UART := nuvoton,numicro-uart + +config DT_HAS_NUVOTON_NUMICRO_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NUMICRO_UART)) + +DT_COMPAT_NVME_CONTROLLER := nvme-controller + +config DT_HAS_NVME_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NVME_CONTROLLER)) + +DT_COMPAT_NXP_ADC12 := nxp,adc12 + +config DT_HAS_NXP_ADC12_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_ADC12)) + +DT_COMPAT_NXP_AON_WAKEUP_PIN := nxp,aon-wakeup-pin + +config DT_HAS_NXP_AON_WAKEUP_PIN_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_AON_WAKEUP_PIN)) + +DT_COMPAT_NXP_BT_HCI_UART := nxp,bt-hci-uart + +config DT_HAS_NXP_BT_HCI_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_BT_HCI_UART)) + +DT_COMPAT_NXP_CAM_44PINS_CONNECTOR := nxp,cam-44pins-connector + +config DT_HAS_NXP_CAM_44PINS_CONNECTOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_CAM_44PINS_CONNECTOR)) + +DT_COMPAT_NXP_CTIMER_PWM := nxp,ctimer-pwm + +config DT_HAS_NXP_CTIMER_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_CTIMER_PWM)) + +DT_COMPAT_NXP_DAI_ESAI := nxp,dai-esai + +config DT_HAS_NXP_DAI_ESAI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_DAI_ESAI)) + +DT_COMPAT_NXP_DAI_SAI := nxp,dai-sai + +config DT_HAS_NXP_DAI_SAI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_DAI_SAI)) + +DT_COMPAT_NXP_DCNANO_LCDIF := nxp,dcnano-lcdif + +config DT_HAS_NXP_DCNANO_LCDIF_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_DCNANO_LCDIF)) + +DT_COMPAT_NXP_DMIC := nxp,dmic + +config DT_HAS_NXP_DMIC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_DMIC)) + +DT_COMPAT_NXP_DSPI := nxp,dspi + +config DT_HAS_NXP_DSPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_DSPI)) + +DT_COMPAT_NXP_EDMA := nxp,edma + +config DT_HAS_NXP_EDMA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_EDMA)) + +DT_COMPAT_NXP_EHCI := nxp,ehci + +config DT_HAS_NXP_EHCI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_EHCI)) + +DT_COMPAT_NXP_ENET := nxp,enet + +config DT_HAS_NXP_ENET_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_ENET)) + +DT_COMPAT_NXP_ENET_MAC := nxp,enet-mac + +config DT_HAS_NXP_ENET_MAC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_ENET_MAC)) + +DT_COMPAT_NXP_ENET_MDIO := nxp,enet-mdio + +config DT_HAS_NXP_ENET_MDIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_ENET_MDIO)) + +DT_COMPAT_NXP_ENET_PTP_CLOCK := nxp,enet-ptp-clock + +config DT_HAS_NXP_ENET_PTP_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_ENET_PTP_CLOCK)) + +DT_COMPAT_NXP_ENET_QOS := nxp,enet-qos + +config DT_HAS_NXP_ENET_QOS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_ENET_QOS)) + +DT_COMPAT_NXP_ENET_QOS_MAC := nxp,enet-qos-mac + +config DT_HAS_NXP_ENET_QOS_MAC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_ENET_QOS_MAC)) + +DT_COMPAT_NXP_ENET_QOS_MDIO := nxp,enet-qos-mdio + +config DT_HAS_NXP_ENET_QOS_MDIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_ENET_QOS_MDIO)) + +DT_COMPAT_NXP_ENET1G := nxp,enet1g + +config DT_HAS_NXP_ENET1G_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_ENET1G)) + +DT_COMPAT_NXP_FLEXCAN := nxp,flexcan + +config DT_HAS_NXP_FLEXCAN_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_FLEXCAN)) + +DT_COMPAT_NXP_FLEXCAN_FD := nxp,flexcan-fd + +config DT_HAS_NXP_FLEXCAN_FD_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_FLEXCAN_FD)) + +DT_COMPAT_NXP_FLEXIO := nxp,flexio + +config DT_HAS_NXP_FLEXIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_FLEXIO)) + +DT_COMPAT_NXP_FLEXIO_PWM := nxp,flexio-pwm + +config DT_HAS_NXP_FLEXIO_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_FLEXIO_PWM)) + +DT_COMPAT_NXP_FLEXIO_SPI := nxp,flexio-spi + +config DT_HAS_NXP_FLEXIO_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_FLEXIO_SPI)) + +DT_COMPAT_NXP_FLEXPWM := nxp,flexpwm + +config DT_HAS_NXP_FLEXPWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_FLEXPWM)) + +DT_COMPAT_NXP_FLEXRAM := nxp,flexram + +config DT_HAS_NXP_FLEXRAM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_FLEXRAM)) + +DT_COMPAT_NXP_FS26_WDOG := nxp,fs26-wdog + +config DT_HAS_NXP_FS26_WDOG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_FS26_WDOG)) + +DT_COMPAT_NXP_FTM := nxp,ftm + +config DT_HAS_NXP_FTM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_FTM)) + +DT_COMPAT_NXP_FTM_PWM := nxp,ftm-pwm + +config DT_HAS_NXP_FTM_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_FTM_PWM)) + +DT_COMPAT_NXP_FXAS21002 := nxp,fxas21002 + +config DT_HAS_NXP_FXAS21002_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_FXAS21002)) + +DT_COMPAT_NXP_FXLS8974 := nxp,fxls8974 + +config DT_HAS_NXP_FXLS8974_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_FXLS8974)) + +DT_COMPAT_NXP_FXOS8700 := nxp,fxos8700 + +config DT_HAS_NXP_FXOS8700_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_FXOS8700)) + +DT_COMPAT_NXP_GAU_ADC := nxp,gau-adc + +config DT_HAS_NXP_GAU_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_GAU_ADC)) + +DT_COMPAT_NXP_GAU_DAC := nxp,gau-dac + +config DT_HAS_NXP_GAU_DAC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_GAU_DAC)) + +DT_COMPAT_NXP_GPIO_CLUSTER := nxp,gpio-cluster + +config DT_HAS_NXP_GPIO_CLUSTER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_GPIO_CLUSTER)) + +DT_COMPAT_NXP_GPT_HW_TIMER := nxp,gpt-hw-timer + +config DT_HAS_NXP_GPT_HW_TIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_GPT_HW_TIMER)) + +DT_COMPAT_NXP_HCI_BLE := nxp,hci-ble + +config DT_HAS_NXP_HCI_BLE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_HCI_BLE)) + +DT_COMPAT_NXP_HDLC_RCP_IF := nxp,hdlc-rcp-if + +config DT_HAS_NXP_HDLC_RCP_IF_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_HDLC_RCP_IF)) + +DT_COMPAT_NXP_I2C_TSC_FPC := nxp,i2c-tsc-fpc + +config DT_HAS_NXP_I2C_TSC_FPC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_I2C_TSC_FPC)) + +DT_COMPAT_NXP_IAP_FMC11 := nxp,iap-fmc11 + +config DT_HAS_NXP_IAP_FMC11_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IAP_FMC11)) + +DT_COMPAT_NXP_IAP_FMC54 := nxp,iap-fmc54 + +config DT_HAS_NXP_IAP_FMC54_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IAP_FMC54)) + +DT_COMPAT_NXP_IAP_FMC55 := nxp,iap-fmc55 + +config DT_HAS_NXP_IAP_FMC55_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IAP_FMC55)) + +DT_COMPAT_NXP_IAP_FMC553 := nxp,iap-fmc553 + +config DT_HAS_NXP_IAP_FMC553_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IAP_FMC553)) + +DT_COMPAT_NXP_IMX_ANATOP := nxp,imx-anatop + +config DT_HAS_NXP_IMX_ANATOP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_ANATOP)) + +DT_COMPAT_NXP_IMX_CAAM := nxp,imx-caam + +config DT_HAS_NXP_IMX_CAAM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_CAAM)) + +DT_COMPAT_NXP_IMX_CCM := nxp,imx-ccm + +config DT_HAS_NXP_IMX_CCM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_CCM)) + +DT_COMPAT_NXP_IMX_CCM_FNPLL := nxp,imx-ccm-fnpll + +config DT_HAS_NXP_IMX_CCM_FNPLL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_CCM_FNPLL)) + +DT_COMPAT_NXP_IMX_CCM_REV2 := nxp,imx-ccm-rev2 + +config DT_HAS_NXP_IMX_CCM_REV2_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_CCM_REV2)) + +DT_COMPAT_NXP_IMX_CSI := nxp,imx-csi + +config DT_HAS_NXP_IMX_CSI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_CSI)) + +DT_COMPAT_NXP_IMX_DTCM := nxp,imx-dtcm + +config DT_HAS_NXP_IMX_DTCM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_DTCM)) + +DT_COMPAT_NXP_IMX_ECSPI := nxp,imx-ecspi + +config DT_HAS_NXP_IMX_ECSPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_ECSPI)) + +DT_COMPAT_NXP_IMX_ELCDIF := nxp,imx-elcdif + +config DT_HAS_NXP_IMX_ELCDIF_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_ELCDIF)) + +DT_COMPAT_NXP_IMX_EPIT := nxp,imx-epit + +config DT_HAS_NXP_IMX_EPIT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_EPIT)) + +DT_COMPAT_NXP_IMX_FLEXSPI := nxp,imx-flexspi + +config DT_HAS_NXP_IMX_FLEXSPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_FLEXSPI)) + +DT_COMPAT_NXP_IMX_FLEXSPI_APS6404L := nxp,imx-flexspi-aps6404l + +config DT_HAS_NXP_IMX_FLEXSPI_APS6404L_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_FLEXSPI_APS6404L)) + +DT_COMPAT_NXP_IMX_FLEXSPI_APS6408L := nxp,imx-flexspi-aps6408l + +config DT_HAS_NXP_IMX_FLEXSPI_APS6408L_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_FLEXSPI_APS6408L)) + +DT_COMPAT_NXP_IMX_FLEXSPI_HYPERFLASH := nxp,imx-flexspi-hyperflash + +config DT_HAS_NXP_IMX_FLEXSPI_HYPERFLASH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_FLEXSPI_HYPERFLASH)) + +DT_COMPAT_NXP_IMX_FLEXSPI_IS66WVQ8M4 := nxp,imx-flexspi-is66wvq8m4 + +config DT_HAS_NXP_IMX_FLEXSPI_IS66WVQ8M4_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_FLEXSPI_IS66WVQ8M4)) + +DT_COMPAT_NXP_IMX_FLEXSPI_MX25UM51345G := nxp,imx-flexspi-mx25um51345g + +config DT_HAS_NXP_IMX_FLEXSPI_MX25UM51345G_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_FLEXSPI_MX25UM51345G)) + +DT_COMPAT_NXP_IMX_FLEXSPI_NOR := nxp,imx-flexspi-nor + +config DT_HAS_NXP_IMX_FLEXSPI_NOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_FLEXSPI_NOR)) + +DT_COMPAT_NXP_IMX_FLEXSPI_S27KS0641 := nxp,imx-flexspi-s27ks0641 + +config DT_HAS_NXP_IMX_FLEXSPI_S27KS0641_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_FLEXSPI_S27KS0641)) + +DT_COMPAT_NXP_IMX_FLEXSPI_W956A8MBYA := nxp,imx-flexspi-w956a8mbya + +config DT_HAS_NXP_IMX_FLEXSPI_W956A8MBYA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_FLEXSPI_W956A8MBYA)) + +DT_COMPAT_NXP_IMX_GPIO := nxp,imx-gpio + +config DT_HAS_NXP_IMX_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_GPIO)) + +DT_COMPAT_NXP_IMX_GPR := nxp,imx-gpr + +config DT_HAS_NXP_IMX_GPR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_GPR)) + +DT_COMPAT_NXP_IMX_GPT := nxp,imx-gpt + +config DT_HAS_NXP_IMX_GPT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_GPT)) + +DT_COMPAT_NXP_IMX_IOMUXC := nxp,imx-iomuxc + +config DT_HAS_NXP_IMX_IOMUXC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_IOMUXC)) + +DT_COMPAT_NXP_IMX_IOMUXC_SCU := nxp,imx-iomuxc-scu + +config DT_HAS_NXP_IMX_IOMUXC_SCU_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_IOMUXC_SCU)) + +DT_COMPAT_NXP_IMX_ITCM := nxp,imx-itcm + +config DT_HAS_NXP_IMX_ITCM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_ITCM)) + +DT_COMPAT_NXP_IMX_IUART := nxp,imx-iuart + +config DT_HAS_NXP_IMX_IUART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_IUART)) + +DT_COMPAT_NXP_IMX_MIPI_DSI := nxp,imx-mipi-dsi + +config DT_HAS_NXP_IMX_MIPI_DSI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_MIPI_DSI)) + +DT_COMPAT_NXP_IMX_MU := nxp,imx-mu + +config DT_HAS_NXP_IMX_MU_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_MU)) + +DT_COMPAT_NXP_IMX_NETC_EMDIO := nxp,imx-netc-emdio + +config DT_HAS_NXP_IMX_NETC_EMDIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_NETC_EMDIO)) + +DT_COMPAT_NXP_IMX_NETC_PSI := nxp,imx-netc-psi + +config DT_HAS_NXP_IMX_NETC_PSI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_NETC_PSI)) + +DT_COMPAT_NXP_IMX_PWM := nxp,imx-pwm + +config DT_HAS_NXP_IMX_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_PWM)) + +DT_COMPAT_NXP_IMX_QTMR := nxp,imx-qtmr + +config DT_HAS_NXP_IMX_QTMR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_QTMR)) + +DT_COMPAT_NXP_IMX_RGPIO := nxp,imx-rgpio + +config DT_HAS_NXP_IMX_RGPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_RGPIO)) + +DT_COMPAT_NXP_IMX_SEMC := nxp,imx-semc + +config DT_HAS_NXP_IMX_SEMC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_SEMC)) + +DT_COMPAT_NXP_IMX_SNVS_RTC := nxp,imx-snvs-rtc + +config DT_HAS_NXP_IMX_SNVS_RTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_SNVS_RTC)) + +DT_COMPAT_NXP_IMX_TMR := nxp,imx-tmr + +config DT_HAS_NXP_IMX_TMR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_TMR)) + +DT_COMPAT_NXP_IMX_UART := nxp,imx-uart + +config DT_HAS_NXP_IMX_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_UART)) + +DT_COMPAT_NXP_IMX_USDHC := nxp,imx-usdhc + +config DT_HAS_NXP_IMX_USDHC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_USDHC)) + +DT_COMPAT_NXP_IMX_WDOG := nxp,imx-wdog + +config DT_HAS_NXP_IMX_WDOG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_WDOG)) + +DT_COMPAT_NXP_IMX7D_PINCTRL := nxp,imx7d-pinctrl + +config DT_HAS_NXP_IMX7D_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX7D_PINCTRL)) + +DT_COMPAT_NXP_IMX8_PINCTRL := nxp,imx8-pinctrl + +config DT_HAS_NXP_IMX8_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX8_PINCTRL)) + +DT_COMPAT_NXP_IMX8M_PINCTRL := nxp,imx8m-pinctrl + +config DT_HAS_NXP_IMX8M_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX8M_PINCTRL)) + +DT_COMPAT_NXP_IMX8MP_PINCTRL := nxp,imx8mp-pinctrl + +config DT_HAS_NXP_IMX8MP_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX8MP_PINCTRL)) + +DT_COMPAT_NXP_IMX8ULP_PINCTRL := nxp,imx8ulp-pinctrl + +config DT_HAS_NXP_IMX8ULP_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX8ULP_PINCTRL)) + +DT_COMPAT_NXP_IMX93_PINCTRL := nxp,imx93-pinctrl + +config DT_HAS_NXP_IMX93_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX93_PINCTRL)) + +DT_COMPAT_NXP_IRQSTEER_INTC := nxp,irqsteer-intc + +config DT_HAS_NXP_IRQSTEER_INTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IRQSTEER_INTC)) + +DT_COMPAT_NXP_IRQSTEER_MASTER := nxp,irqsteer-master + +config DT_HAS_NXP_IRQSTEER_MASTER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IRQSTEER_MASTER)) + +DT_COMPAT_NXP_IRTC := nxp,irtc + +config DT_HAS_NXP_IRTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IRTC)) + +DT_COMPAT_NXP_KINETIS_ACMP := nxp,kinetis-acmp + +config DT_HAS_NXP_KINETIS_ACMP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_KINETIS_ACMP)) + +DT_COMPAT_NXP_KINETIS_ADC16 := nxp,kinetis-adc16 + +config DT_HAS_NXP_KINETIS_ADC16_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_KINETIS_ADC16)) + +DT_COMPAT_NXP_KINETIS_DAC := nxp,kinetis-dac + +config DT_HAS_NXP_KINETIS_DAC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_KINETIS_DAC)) + +DT_COMPAT_NXP_KINETIS_DAC32 := nxp,kinetis-dac32 + +config DT_HAS_NXP_KINETIS_DAC32_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_KINETIS_DAC32)) + +DT_COMPAT_NXP_KINETIS_ETHERNET := nxp,kinetis-ethernet + +config DT_HAS_NXP_KINETIS_ETHERNET_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_KINETIS_ETHERNET)) + +DT_COMPAT_NXP_KINETIS_FTFA := nxp,kinetis-ftfa + +config DT_HAS_NXP_KINETIS_FTFA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_KINETIS_FTFA)) + +DT_COMPAT_NXP_KINETIS_FTFE := nxp,kinetis-ftfe + +config DT_HAS_NXP_KINETIS_FTFE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_KINETIS_FTFE)) + +DT_COMPAT_NXP_KINETIS_FTFL := nxp,kinetis-ftfl + +config DT_HAS_NXP_KINETIS_FTFL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_KINETIS_FTFL)) + +DT_COMPAT_NXP_KINETIS_GPIO := nxp,kinetis-gpio + +config DT_HAS_NXP_KINETIS_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_KINETIS_GPIO)) + +DT_COMPAT_NXP_KINETIS_I2C := nxp,kinetis-i2c + +config DT_HAS_NXP_KINETIS_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_KINETIS_I2C)) + +DT_COMPAT_NXP_KINETIS_KE1XF_SIM := nxp,kinetis-ke1xf-sim + +config DT_HAS_NXP_KINETIS_KE1XF_SIM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_KINETIS_KE1XF_SIM)) + +DT_COMPAT_NXP_KINETIS_LPSCI := nxp,kinetis-lpsci + +config DT_HAS_NXP_KINETIS_LPSCI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_KINETIS_LPSCI)) + +DT_COMPAT_NXP_KINETIS_LPTMR := nxp,kinetis-lptmr + +config DT_HAS_NXP_KINETIS_LPTMR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_KINETIS_LPTMR)) + +DT_COMPAT_NXP_KINETIS_MCG := nxp,kinetis-mcg + +config DT_HAS_NXP_KINETIS_MCG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_KINETIS_MCG)) + +DT_COMPAT_NXP_KINETIS_PCC := nxp,kinetis-pcc + +config DT_HAS_NXP_KINETIS_PCC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_KINETIS_PCC)) + +DT_COMPAT_NXP_KINETIS_PTP := nxp,kinetis-ptp + +config DT_HAS_NXP_KINETIS_PTP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_KINETIS_PTP)) + +DT_COMPAT_NXP_KINETIS_PWT := nxp,kinetis-pwt + +config DT_HAS_NXP_KINETIS_PWT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_KINETIS_PWT)) + +DT_COMPAT_NXP_KINETIS_RNGA := nxp,kinetis-rnga + +config DT_HAS_NXP_KINETIS_RNGA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_KINETIS_RNGA)) + +DT_COMPAT_NXP_KINETIS_SCG := nxp,kinetis-scg + +config DT_HAS_NXP_KINETIS_SCG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_KINETIS_SCG)) + +DT_COMPAT_NXP_KINETIS_SIM := nxp,kinetis-sim + +config DT_HAS_NXP_KINETIS_SIM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_KINETIS_SIM)) + +DT_COMPAT_NXP_KINETIS_TEMPERATURE := nxp,kinetis-temperature + +config DT_HAS_NXP_KINETIS_TEMPERATURE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_KINETIS_TEMPERATURE)) + +DT_COMPAT_NXP_KINETIS_TPM := nxp,kinetis-tpm + +config DT_HAS_NXP_KINETIS_TPM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_KINETIS_TPM)) + +DT_COMPAT_NXP_KINETIS_TRNG := nxp,kinetis-trng + +config DT_HAS_NXP_KINETIS_TRNG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_KINETIS_TRNG)) + +DT_COMPAT_NXP_KINETIS_UART := nxp,kinetis-uart + +config DT_HAS_NXP_KINETIS_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_KINETIS_UART)) + +DT_COMPAT_NXP_KINETIS_USBD := nxp,kinetis-usbd + +config DT_HAS_NXP_KINETIS_USBD_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_KINETIS_USBD)) + +DT_COMPAT_NXP_KINETIS_WDOG := nxp,kinetis-wdog + +config DT_HAS_NXP_KINETIS_WDOG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_KINETIS_WDOG)) + +DT_COMPAT_NXP_KW41Z_IEEE802154 := nxp,kw41z-ieee802154 + +config DT_HAS_NXP_KW41Z_IEEE802154_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_KW41Z_IEEE802154)) + +DT_COMPAT_NXP_LCD_8080 := nxp,lcd-8080 + +config DT_HAS_NXP_LCD_8080_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LCD_8080)) + +DT_COMPAT_NXP_LCDIC := nxp,lcdic + +config DT_HAS_NXP_LCDIC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LCDIC)) + +DT_COMPAT_NXP_LP_FLEXCOMM := nxp,lp-flexcomm + +config DT_HAS_NXP_LP_FLEXCOMM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LP_FLEXCOMM)) + +DT_COMPAT_NXP_LPC_CTIMER := nxp,lpc-ctimer + +config DT_HAS_NXP_LPC_CTIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LPC_CTIMER)) + +DT_COMPAT_NXP_LPC_DMA := nxp,lpc-dma + +config DT_HAS_NXP_LPC_DMA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LPC_DMA)) + +DT_COMPAT_NXP_LPC_FLEXCOMM := nxp,lpc-flexcomm + +config DT_HAS_NXP_LPC_FLEXCOMM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LPC_FLEXCOMM)) + +DT_COMPAT_NXP_LPC_GPIO := nxp,lpc-gpio + +config DT_HAS_NXP_LPC_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LPC_GPIO)) + +DT_COMPAT_NXP_LPC_GPIO_PORT := nxp,lpc-gpio-port + +config DT_HAS_NXP_LPC_GPIO_PORT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LPC_GPIO_PORT)) + +DT_COMPAT_NXP_LPC_I2C := nxp,lpc-i2c + +config DT_HAS_NXP_LPC_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LPC_I2C)) + +DT_COMPAT_NXP_LPC_I2S := nxp,lpc-i2s + +config DT_HAS_NXP_LPC_I2S_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LPC_I2S)) + +DT_COMPAT_NXP_LPC_IOCON := nxp,lpc-iocon + +config DT_HAS_NXP_LPC_IOCON_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LPC_IOCON)) + +DT_COMPAT_NXP_LPC_IOCON_PINCTRL := nxp,lpc-iocon-pinctrl + +config DT_HAS_NXP_LPC_IOCON_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LPC_IOCON_PINCTRL)) + +DT_COMPAT_NXP_LPC_IOCON_PIO := nxp,lpc-iocon-pio + +config DT_HAS_NXP_LPC_IOCON_PIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LPC_IOCON_PIO)) + +DT_COMPAT_NXP_LPC_LPADC := nxp,lpc-lpadc + +config DT_HAS_NXP_LPC_LPADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LPC_LPADC)) + +DT_COMPAT_NXP_LPC_MAILBOX := nxp,lpc-mailbox + +config DT_HAS_NXP_LPC_MAILBOX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LPC_MAILBOX)) + +DT_COMPAT_NXP_LPC_MCAN := nxp,lpc-mcan + +config DT_HAS_NXP_LPC_MCAN_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LPC_MCAN)) + +DT_COMPAT_NXP_LPC_RNG := nxp,lpc-rng + +config DT_HAS_NXP_LPC_RNG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LPC_RNG)) + +DT_COMPAT_NXP_LPC_RTC := nxp,lpc-rtc + +config DT_HAS_NXP_LPC_RTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LPC_RTC)) + +DT_COMPAT_NXP_LPC_RTC_HIGHRES := nxp,lpc-rtc-highres + +config DT_HAS_NXP_LPC_RTC_HIGHRES_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LPC_RTC_HIGHRES)) + +DT_COMPAT_NXP_LPC_SDIF := nxp,lpc-sdif + +config DT_HAS_NXP_LPC_SDIF_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LPC_SDIF)) + +DT_COMPAT_NXP_LPC_SPI := nxp,lpc-spi + +config DT_HAS_NXP_LPC_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LPC_SPI)) + +DT_COMPAT_NXP_LPC_SYSCON := nxp,lpc-syscon + +config DT_HAS_NXP_LPC_SYSCON_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LPC_SYSCON)) + +DT_COMPAT_NXP_LPC_SYSCON_RESET := nxp,lpc-syscon-reset + +config DT_HAS_NXP_LPC_SYSCON_RESET_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LPC_SYSCON_RESET)) + +DT_COMPAT_NXP_LPC_UID := nxp,lpc-uid + +config DT_HAS_NXP_LPC_UID_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LPC_UID)) + +DT_COMPAT_NXP_LPC_USART := nxp,lpc-usart + +config DT_HAS_NXP_LPC_USART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LPC_USART)) + +DT_COMPAT_NXP_LPC_WWDT := nxp,lpc-wwdt + +config DT_HAS_NXP_LPC_WWDT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LPC_WWDT)) + +DT_COMPAT_NXP_LPC11U6X_EEPROM := nxp,lpc11u6x-eeprom + +config DT_HAS_NXP_LPC11U6X_EEPROM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LPC11U6X_EEPROM)) + +DT_COMPAT_NXP_LPC11U6X_GPIO := nxp,lpc11u6x-gpio + +config DT_HAS_NXP_LPC11U6X_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LPC11U6X_GPIO)) + +DT_COMPAT_NXP_LPC11U6X_I2C := nxp,lpc11u6x-i2c + +config DT_HAS_NXP_LPC11U6X_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LPC11U6X_I2C)) + +DT_COMPAT_NXP_LPC11U6X_PINCTRL := nxp,lpc11u6x-pinctrl + +config DT_HAS_NXP_LPC11U6X_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LPC11U6X_PINCTRL)) + +DT_COMPAT_NXP_LPC11U6X_SYSCON := nxp,lpc11u6x-syscon + +config DT_HAS_NXP_LPC11U6X_SYSCON_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LPC11U6X_SYSCON)) + +DT_COMPAT_NXP_LPC11U6X_UART := nxp,lpc11u6x-uart + +config DT_HAS_NXP_LPC11U6X_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LPC11U6X_UART)) + +DT_COMPAT_NXP_LPCIP3511 := nxp,lpcip3511 + +config DT_HAS_NXP_LPCIP3511_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LPCIP3511)) + +DT_COMPAT_NXP_LPCMP := nxp,lpcmp + +config DT_HAS_NXP_LPCMP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LPCMP)) + +DT_COMPAT_NXP_LPDAC := nxp,lpdac + +config DT_HAS_NXP_LPDAC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LPDAC)) + +DT_COMPAT_NXP_LPI2C := nxp,lpi2c + +config DT_HAS_NXP_LPI2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LPI2C)) + +DT_COMPAT_NXP_LPSPI := nxp,lpspi + +config DT_HAS_NXP_LPSPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LPSPI)) + +DT_COMPAT_NXP_LPTMR := nxp,lptmr + +config DT_HAS_NXP_LPTMR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LPTMR)) + +DT_COMPAT_NXP_LPUART := nxp,lpuart + +config DT_HAS_NXP_LPUART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LPUART)) + +DT_COMPAT_NXP_MBOX_IMX_MU := nxp,mbox-imx-mu + +config DT_HAS_NXP_MBOX_IMX_MU_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_MBOX_IMX_MU)) + +DT_COMPAT_NXP_MBOX_MAILBOX := nxp,mbox-mailbox + +config DT_HAS_NXP_MBOX_MAILBOX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_MBOX_MAILBOX)) + +DT_COMPAT_NXP_MCI_IO_MUX := nxp,mci-io-mux + +config DT_HAS_NXP_MCI_IO_MUX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_MCI_IO_MUX)) + +DT_COMPAT_NXP_MCR20A := nxp,mcr20a + +config DT_HAS_NXP_MCR20A_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_MCR20A)) + +DT_COMPAT_NXP_MCUX_12B1MSPS_SAR := nxp,mcux-12b1msps-sar + +config DT_HAS_NXP_MCUX_12B1MSPS_SAR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_MCUX_12B1MSPS_SAR)) + +DT_COMPAT_NXP_MCUX_DCP := nxp,mcux-dcp + +config DT_HAS_NXP_MCUX_DCP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_MCUX_DCP)) + +DT_COMPAT_NXP_MCUX_EDMA := nxp,mcux-edma + +config DT_HAS_NXP_MCUX_EDMA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_MCUX_EDMA)) + +DT_COMPAT_NXP_MCUX_I2S := nxp,mcux-i2s + +config DT_HAS_NXP_MCUX_I2S_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_MCUX_I2S)) + +DT_COMPAT_NXP_MCUX_I3C := nxp,mcux-i3c + +config DT_HAS_NXP_MCUX_I3C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_MCUX_I3C)) + +DT_COMPAT_NXP_MCUX_QDEC := nxp,mcux-qdec + +config DT_HAS_NXP_MCUX_QDEC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_MCUX_QDEC)) + +DT_COMPAT_NXP_MCUX_RT_PINCTRL := nxp,mcux-rt-pinctrl + +config DT_HAS_NXP_MCUX_RT_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_MCUX_RT_PINCTRL)) + +DT_COMPAT_NXP_MCUX_RT11XX_PINCTRL := nxp,mcux-rt11xx-pinctrl + +config DT_HAS_NXP_MCUX_RT11XX_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_MCUX_RT11XX_PINCTRL)) + +DT_COMPAT_NXP_MCUX_XBAR := nxp,mcux-xbar + +config DT_HAS_NXP_MCUX_XBAR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_MCUX_XBAR)) + +DT_COMPAT_NXP_MCXC_OSC := nxp,mcxc-osc + +config DT_HAS_NXP_MCXC_OSC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_MCXC_OSC)) + +DT_COMPAT_NXP_MIPI_CSI2RX := nxp,mipi-csi2rx + +config DT_HAS_NXP_MIPI_CSI2RX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_MIPI_CSI2RX)) + +DT_COMPAT_NXP_MIPI_DBI_FLEXIO_LCDIF := nxp,mipi-dbi-flexio-lcdif + +config DT_HAS_NXP_MIPI_DBI_FLEXIO_LCDIF_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_MIPI_DBI_FLEXIO_LCDIF)) + +DT_COMPAT_NXP_MIPI_DSI_2L := nxp,mipi-dsi-2l + +config DT_HAS_NXP_MIPI_DSI_2L_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_MIPI_DSI_2L)) + +DT_COMPAT_NXP_MRT := nxp,mrt + +config DT_HAS_NXP_MRT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_MRT)) + +DT_COMPAT_NXP_MRT_CHANNEL := nxp,mrt-channel + +config DT_HAS_NXP_MRT_CHANNEL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_MRT_CHANNEL)) + +DT_COMPAT_NXP_MSF1 := nxp,msf1 + +config DT_HAS_NXP_MSF1_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_MSF1)) + +DT_COMPAT_NXP_NBU := nxp,nbu + +config DT_HAS_NXP_NBU_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_NBU)) + +DT_COMPAT_NXP_NX20P3483 := nxp,nx20p3483 + +config DT_HAS_NXP_NX20P3483_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_NX20P3483)) + +DT_COMPAT_NXP_OS_TIMER := nxp,os-timer + +config DT_HAS_NXP_OS_TIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_OS_TIMER)) + +DT_COMPAT_NXP_P3T1755 := nxp,p3t1755 + +config DT_HAS_NXP_P3T1755_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_P3T1755)) + +DT_COMPAT_NXP_PARALLEL_LCD_CONNECTOR := nxp,parallel-lcd-connector + +config DT_HAS_NXP_PARALLEL_LCD_CONNECTOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_PARALLEL_LCD_CONNECTOR)) + +DT_COMPAT_NXP_PCA9420 := nxp,pca9420 + +config DT_HAS_NXP_PCA9420_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_PCA9420)) + +DT_COMPAT_NXP_PCA9538 := nxp,pca9538 + +config DT_HAS_NXP_PCA9538_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_PCA9538)) + +DT_COMPAT_NXP_PCA9539 := nxp,pca9539 + +config DT_HAS_NXP_PCA9539_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_PCA9539)) + +DT_COMPAT_NXP_PCA9554 := nxp,pca9554 + +config DT_HAS_NXP_PCA9554_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_PCA9554)) + +DT_COMPAT_NXP_PCA9555 := nxp,pca9555 + +config DT_HAS_NXP_PCA9555_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_PCA9555)) + +DT_COMPAT_NXP_PCA95XX := nxp,pca95xx + +config DT_HAS_NXP_PCA95XX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_PCA95XX)) + +DT_COMPAT_NXP_PCA9633 := nxp,pca9633 + +config DT_HAS_NXP_PCA9633_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_PCA9633)) + +DT_COMPAT_NXP_PCA9685_PWM := nxp,pca9685-pwm + +config DT_HAS_NXP_PCA9685_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_PCA9685_PWM)) + +DT_COMPAT_NXP_PCAL6408A := nxp,pcal6408a + +config DT_HAS_NXP_PCAL6408A_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_PCAL6408A)) + +DT_COMPAT_NXP_PCAL6416A := nxp,pcal6416a + +config DT_HAS_NXP_PCAL6416A_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_PCAL6416A)) + +DT_COMPAT_NXP_PCAL6524 := nxp,pcal6524 + +config DT_HAS_NXP_PCAL6524_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_PCAL6524)) + +DT_COMPAT_NXP_PCAL6534 := nxp,pcal6534 + +config DT_HAS_NXP_PCAL6534_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_PCAL6534)) + +DT_COMPAT_NXP_PCF8523 := nxp,pcf8523 + +config DT_HAS_NXP_PCF8523_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_PCF8523)) + +DT_COMPAT_NXP_PCF8563 := nxp,pcf8563 + +config DT_HAS_NXP_PCF8563_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_PCF8563)) + +DT_COMPAT_NXP_PCF857X := nxp,pcf857x + +config DT_HAS_NXP_PCF857X_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_PCF857X)) + +DT_COMPAT_NXP_PDCFG_POWER := nxp,pdcfg-power + +config DT_HAS_NXP_PDCFG_POWER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_PDCFG_POWER)) + +DT_COMPAT_NXP_PINT := nxp,pint + +config DT_HAS_NXP_PINT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_PINT)) + +DT_COMPAT_NXP_PIT := nxp,pit + +config DT_HAS_NXP_PIT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_PIT)) + +DT_COMPAT_NXP_PIT_CHANNEL := nxp,pit-channel + +config DT_HAS_NXP_PIT_CHANNEL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_PIT_CHANNEL)) + +DT_COMPAT_NXP_PORT_PINCTRL := nxp,port-pinctrl + +config DT_HAS_NXP_PORT_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_PORT_PINCTRL)) + +DT_COMPAT_NXP_PORT_PINMUX := nxp,port-pinmux + +config DT_HAS_NXP_PORT_PINMUX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_PORT_PINMUX)) + +DT_COMPAT_NXP_PXP := nxp,pxp + +config DT_HAS_NXP_PXP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_PXP)) + +DT_COMPAT_NXP_QDEC_S32 := nxp,qdec-s32 + +config DT_HAS_NXP_QDEC_S32_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_QDEC_S32)) + +DT_COMPAT_NXP_QTMR_PWM := nxp,qtmr-pwm + +config DT_HAS_NXP_QTMR_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_QTMR_PWM)) + +DT_COMPAT_NXP_RDC := nxp,rdc + +config DT_HAS_NXP_RDC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_RDC)) + +DT_COMPAT_NXP_RSTCTL := nxp,rstctl + +config DT_HAS_NXP_RSTCTL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_RSTCTL)) + +DT_COMPAT_NXP_RT_IOCON_PINCTRL := nxp,rt-iocon-pinctrl + +config DT_HAS_NXP_RT_IOCON_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_RT_IOCON_PINCTRL)) + +DT_COMPAT_NXP_RTC := nxp,rtc + +config DT_HAS_NXP_RTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_RTC)) + +DT_COMPAT_NXP_RW_PMU := nxp,rw-pmu + +config DT_HAS_NXP_RW_PMU_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_RW_PMU)) + +DT_COMPAT_NXP_RW_SOC_CTRL := nxp,rw-soc-ctrl + +config DT_HAS_NXP_RW_SOC_CTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_RW_SOC_CTRL)) + +DT_COMPAT_NXP_S32_ADC_SAR := nxp,s32-adc-sar + +config DT_HAS_NXP_S32_ADC_SAR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_S32_ADC_SAR)) + +DT_COMPAT_NXP_S32_CANXL := nxp,s32-canxl + +config DT_HAS_NXP_S32_CANXL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_S32_CANXL)) + +DT_COMPAT_NXP_S32_CLOCK := nxp,s32-clock + +config DT_HAS_NXP_S32_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_S32_CLOCK)) + +DT_COMPAT_NXP_S32_EMIOS := nxp,s32-emios + +config DT_HAS_NXP_S32_EMIOS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_S32_EMIOS)) + +DT_COMPAT_NXP_S32_EMIOS_PWM := nxp,s32-emios-pwm + +config DT_HAS_NXP_S32_EMIOS_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_S32_EMIOS_PWM)) + +DT_COMPAT_NXP_S32_GMAC := nxp,s32-gmac + +config DT_HAS_NXP_S32_GMAC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_S32_GMAC)) + +DT_COMPAT_NXP_S32_GMAC_MDIO := nxp,s32-gmac-mdio + +config DT_HAS_NXP_S32_GMAC_MDIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_S32_GMAC_MDIO)) + +DT_COMPAT_NXP_S32_GPIO := nxp,s32-gpio + +config DT_HAS_NXP_S32_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_S32_GPIO)) + +DT_COMPAT_NXP_S32_LCU := nxp,s32-lcu + +config DT_HAS_NXP_S32_LCU_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_S32_LCU)) + +DT_COMPAT_NXP_S32_LINFLEXD := nxp,s32-linflexd + +config DT_HAS_NXP_S32_LINFLEXD_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_S32_LINFLEXD)) + +DT_COMPAT_NXP_S32_MC_ME := nxp,s32-mc-me + +config DT_HAS_NXP_S32_MC_ME_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_S32_MC_ME)) + +DT_COMPAT_NXP_S32_MC_RGM := nxp,s32-mc-rgm + +config DT_HAS_NXP_S32_MC_RGM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_S32_MC_RGM)) + +DT_COMPAT_NXP_S32_MRU := nxp,s32-mru + +config DT_HAS_NXP_S32_MRU_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_S32_MRU)) + +DT_COMPAT_NXP_S32_NETC_EMDIO := nxp,s32-netc-emdio + +config DT_HAS_NXP_S32_NETC_EMDIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_S32_NETC_EMDIO)) + +DT_COMPAT_NXP_S32_NETC_PSI := nxp,s32-netc-psi + +config DT_HAS_NXP_S32_NETC_PSI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_S32_NETC_PSI)) + +DT_COMPAT_NXP_S32_NETC_VSI := nxp,s32-netc-vsi + +config DT_HAS_NXP_S32_NETC_VSI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_S32_NETC_VSI)) + +DT_COMPAT_NXP_S32_QSPI := nxp,s32-qspi + +config DT_HAS_NXP_S32_QSPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_S32_QSPI)) + +DT_COMPAT_NXP_S32_QSPI_DEVICE := nxp,s32-qspi-device + +config DT_HAS_NXP_S32_QSPI_DEVICE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_S32_QSPI_DEVICE)) + +DT_COMPAT_NXP_S32_QSPI_NOR := nxp,s32-qspi-nor + +config DT_HAS_NXP_S32_QSPI_NOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_S32_QSPI_NOR)) + +DT_COMPAT_NXP_S32_SIUL2_EIRQ := nxp,s32-siul2-eirq + +config DT_HAS_NXP_S32_SIUL2_EIRQ_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_S32_SIUL2_EIRQ)) + +DT_COMPAT_NXP_S32_SPI := nxp,s32-spi + +config DT_HAS_NXP_S32_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_S32_SPI)) + +DT_COMPAT_NXP_S32_SWT := nxp,s32-swt + +config DT_HAS_NXP_S32_SWT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_S32_SWT)) + +DT_COMPAT_NXP_S32_SYS_TIMER := nxp,s32-sys-timer + +config DT_HAS_NXP_S32_SYS_TIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_S32_SYS_TIMER)) + +DT_COMPAT_NXP_S32_TRGMUX := nxp,s32-trgmux + +config DT_HAS_NXP_S32_TRGMUX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_S32_TRGMUX)) + +DT_COMPAT_NXP_S32_WKPU := nxp,s32-wkpu + +config DT_HAS_NXP_S32_WKPU_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_S32_WKPU)) + +DT_COMPAT_NXP_S32K3_PINCTRL := nxp,s32k3-pinctrl + +config DT_HAS_NXP_S32K3_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_S32K3_PINCTRL)) + +DT_COMPAT_NXP_S32K3_PMC := nxp,s32k3-pmc + +config DT_HAS_NXP_S32K3_PMC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_S32K3_PMC)) + +DT_COMPAT_NXP_S32ZE_PINCTRL := nxp,s32ze-pinctrl + +config DT_HAS_NXP_S32ZE_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_S32ZE_PINCTRL)) + +DT_COMPAT_NXP_SC18IM704 := nxp,sc18im704 + +config DT_HAS_NXP_SC18IM704_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_SC18IM704)) + +DT_COMPAT_NXP_SC18IM704_GPIO := nxp,sc18im704-gpio + +config DT_HAS_NXP_SC18IM704_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_SC18IM704_GPIO)) + +DT_COMPAT_NXP_SC18IM704_I2C := nxp,sc18im704-i2c + +config DT_HAS_NXP_SC18IM704_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_SC18IM704_I2C)) + +DT_COMPAT_NXP_SCG_K4 := nxp,scg-k4 + +config DT_HAS_NXP_SCG_K4_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_SCG_K4)) + +DT_COMPAT_NXP_SCTIMER_PWM := nxp,sctimer-pwm + +config DT_HAS_NXP_SCTIMER_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_SCTIMER_PWM)) + +DT_COMPAT_NXP_SCU_PD := nxp,scu-pd + +config DT_HAS_NXP_SCU_PD_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_SCU_PD)) + +DT_COMPAT_NXP_SDMA := nxp,sdma + +config DT_HAS_NXP_SDMA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_SDMA)) + +DT_COMPAT_NXP_SMARTDMA := nxp,smartdma + +config DT_HAS_NXP_SMARTDMA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_SMARTDMA)) + +DT_COMPAT_NXP_SOF_HOST_DMA := nxp,sof-host-dma + +config DT_HAS_NXP_SOF_HOST_DMA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_SOF_HOST_DMA)) + +DT_COMPAT_NXP_SYSMPU := nxp,sysmpu + +config DT_HAS_NXP_SYSMPU_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_SYSMPU)) + +DT_COMPAT_NXP_TEMPMON := nxp,tempmon + +config DT_HAS_NXP_TEMPMON_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_TEMPMON)) + +DT_COMPAT_NXP_TJA1103 := nxp,tja1103 + +config DT_HAS_NXP_TJA1103_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_TJA1103)) + +DT_COMPAT_NXP_TPM_TIMER := nxp,tpm-timer + +config DT_HAS_NXP_TPM_TIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_TPM_TIMER)) + +DT_COMPAT_NXP_USBPHY := nxp,usbphy + +config DT_HAS_NXP_USBPHY_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_USBPHY)) + +DT_COMPAT_NXP_VF610_ADC := nxp,vf610-adc + +config DT_HAS_NXP_VF610_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_VF610_ADC)) + +DT_COMPAT_NXP_VIDEO_SMARTDMA := nxp,video-smartdma + +config DT_HAS_NXP_VIDEO_SMARTDMA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_VIDEO_SMARTDMA)) + +DT_COMPAT_NXP_VREF := nxp,vref + +config DT_HAS_NXP_VREF_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_VREF)) + +DT_COMPAT_NXP_WDOG32 := nxp,wdog32 + +config DT_HAS_NXP_WDOG32_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_WDOG32)) + +DT_COMPAT_NXP_WIFI := nxp,wifi + +config DT_HAS_NXP_WIFI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_WIFI)) + +DT_COMPAT_ONNN_NCP5623 := onnn,ncp5623 + +config DT_HAS_ONNN_NCP5623_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ONNN_NCP5623)) + +DT_COMPAT_ONNN_NCT75 := onnn,nct75 + +config DT_HAS_ONNN_NCT75_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ONNN_NCT75)) + +DT_COMPAT_OPENCORES_SPI_SIMPLE := opencores,spi-simple + +config DT_HAS_OPENCORES_SPI_SIMPLE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_OPENCORES_SPI_SIMPLE)) + +DT_COMPAT_OPENISA_RI5CY := openisa,ri5cy + +config DT_HAS_OPENISA_RI5CY_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_OPENISA_RI5CY)) + +DT_COMPAT_OPENISA_RV32M1_EVENT_UNIT := openisa,rv32m1-event-unit + +config DT_HAS_OPENISA_RV32M1_EVENT_UNIT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_OPENISA_RV32M1_EVENT_UNIT)) + +DT_COMPAT_OPENISA_RV32M1_FTFE := openisa,rv32m1-ftfe + +config DT_HAS_OPENISA_RV32M1_FTFE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_OPENISA_RV32M1_FTFE)) + +DT_COMPAT_OPENISA_RV32M1_GENFSK := openisa,rv32m1-genfsk + +config DT_HAS_OPENISA_RV32M1_GENFSK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_OPENISA_RV32M1_GENFSK)) + +DT_COMPAT_OPENISA_RV32M1_GPIO := openisa,rv32m1-gpio + +config DT_HAS_OPENISA_RV32M1_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_OPENISA_RV32M1_GPIO)) + +DT_COMPAT_OPENISA_RV32M1_INTMUX := openisa,rv32m1-intmux + +config DT_HAS_OPENISA_RV32M1_INTMUX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_OPENISA_RV32M1_INTMUX)) + +DT_COMPAT_OPENISA_RV32M1_INTMUX_CH := openisa,rv32m1-intmux-ch + +config DT_HAS_OPENISA_RV32M1_INTMUX_CH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_OPENISA_RV32M1_INTMUX_CH)) + +DT_COMPAT_OPENISA_RV32M1_LPI2C := openisa,rv32m1-lpi2c + +config DT_HAS_OPENISA_RV32M1_LPI2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_OPENISA_RV32M1_LPI2C)) + +DT_COMPAT_OPENISA_RV32M1_LPSPI := openisa,rv32m1-lpspi + +config DT_HAS_OPENISA_RV32M1_LPSPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_OPENISA_RV32M1_LPSPI)) + +DT_COMPAT_OPENISA_RV32M1_LPTMR := openisa,rv32m1-lptmr + +config DT_HAS_OPENISA_RV32M1_LPTMR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_OPENISA_RV32M1_LPTMR)) + +DT_COMPAT_OPENISA_RV32M1_LPUART := openisa,rv32m1-lpuart + +config DT_HAS_OPENISA_RV32M1_LPUART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_OPENISA_RV32M1_LPUART)) + +DT_COMPAT_OPENISA_RV32M1_PCC := openisa,rv32m1-pcc + +config DT_HAS_OPENISA_RV32M1_PCC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_OPENISA_RV32M1_PCC)) + +DT_COMPAT_OPENISA_RV32M1_PINCTRL := openisa,rv32m1-pinctrl + +config DT_HAS_OPENISA_RV32M1_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_OPENISA_RV32M1_PINCTRL)) + +DT_COMPAT_OPENISA_RV32M1_PINMUX := openisa,rv32m1-pinmux + +config DT_HAS_OPENISA_RV32M1_PINMUX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_OPENISA_RV32M1_PINMUX)) + +DT_COMPAT_OPENISA_RV32M1_TPM := openisa,rv32m1-tpm + +config DT_HAS_OPENISA_RV32M1_TPM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_OPENISA_RV32M1_TPM)) + +DT_COMPAT_OPENISA_RV32M1_TRNG := openisa,rv32m1-trng + +config DT_HAS_OPENISA_RV32M1_TRNG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_OPENISA_RV32M1_TRNG)) + +DT_COMPAT_OPENISA_ZERO_RI5CY := openisa,zero-ri5cy + +config DT_HAS_OPENISA_ZERO_RI5CY_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_OPENISA_ZERO_RI5CY)) + +DT_COMPAT_OPENTHREAD_CONFIG := openthread,config + +config DT_HAS_OPENTHREAD_CONFIG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_OPENTHREAD_CONFIG)) + +DT_COMPAT_ORISETECH_OTM8009A := orisetech,otm8009a + +config DT_HAS_ORISETECH_OTM8009A_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ORISETECH_OTM8009A)) + +DT_COMPAT_OVTI_OV2640 := ovti,ov2640 + +config DT_HAS_OVTI_OV2640_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_OVTI_OV2640)) + +DT_COMPAT_OVTI_OV5640 := ovti,ov5640 + +config DT_HAS_OVTI_OV5640_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_OVTI_OV5640)) + +DT_COMPAT_OVTI_OV7670 := ovti,ov7670 + +config DT_HAS_OVTI_OV7670_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_OVTI_OV7670)) + +DT_COMPAT_OVTI_OV7725 := ovti,ov7725 + +config DT_HAS_OVTI_OV7725_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_OVTI_OV7725)) + +DT_COMPAT_PANASONIC_AMG88XX := panasonic,amg88xx + +config DT_HAS_PANASONIC_AMG88XX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_PANASONIC_AMG88XX)) + +DT_COMPAT_PANASONIC_REDUCED_ARDUINO_HEADER := panasonic,reduced-arduino-header + +config DT_HAS_PANASONIC_REDUCED_ARDUINO_HEADER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_PANASONIC_REDUCED_ARDUINO_HEADER)) + +DT_COMPAT_PARADE_PS8XXX := parade,ps8xxx + +config DT_HAS_PARADE_PS8XXX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_PARADE_PS8XXX)) + +DT_COMPAT_PARTICLE_GEN3_HEADER := particle-gen3-header + +config DT_HAS_PARTICLE_GEN3_HEADER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_PARTICLE_GEN3_HEADER)) + +DT_COMPAT_PCI_HOST_ECAM_GENERIC := pci-host-ecam-generic + +config DT_HAS_PCI_HOST_ECAM_GENERIC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_PCI_HOST_ECAM_GENERIC)) + +DT_COMPAT_PCIE_CONTROLLER := pcie-controller + +config DT_HAS_PCIE_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_PCIE_CONTROLLER)) + +DT_COMPAT_PHOSENSE_XBR818 := phosense,xbr818 + +config DT_HAS_PHOSENSE_XBR818_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_PHOSENSE_XBR818)) + +DT_COMPAT_PIXART_PAT912X := pixart,pat912x + +config DT_HAS_PIXART_PAT912X_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_PIXART_PAT912X)) + +DT_COMPAT_PIXART_PAW3212 := pixart,paw3212 + +config DT_HAS_PIXART_PAW3212_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_PIXART_PAW3212)) + +DT_COMPAT_PIXART_PAW32XX := pixart,paw32xx + +config DT_HAS_PIXART_PAW32XX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_PIXART_PAW32XX)) + +DT_COMPAT_PIXART_PMW3360 := pixart,pmw3360 + +config DT_HAS_PIXART_PMW3360_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_PIXART_PMW3360)) + +DT_COMPAT_PIXART_PMW3610 := pixart,pmw3610 + +config DT_HAS_PIXART_PMW3610_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_PIXART_PMW3610)) + +DT_COMPAT_PLANTOWER_PMS7003 := plantower,pms7003 + +config DT_HAS_PLANTOWER_PMS7003_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_PLANTOWER_PMS7003)) + +DT_COMPAT_POWER_DOMAIN := power-domain + +config DT_HAS_POWER_DOMAIN_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_POWER_DOMAIN)) + +DT_COMPAT_POWER_DOMAIN_GPIO := power-domain-gpio + +config DT_HAS_POWER_DOMAIN_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_POWER_DOMAIN_GPIO)) + +DT_COMPAT_POWER_DOMAIN_GPIO_MONITOR := power-domain-gpio-monitor + +config DT_HAS_POWER_DOMAIN_GPIO_MONITOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_POWER_DOMAIN_GPIO_MONITOR)) + +DT_COMPAT_PTC_PT6314 := ptc,pt6314 + +config DT_HAS_PTC_PT6314_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_PTC_PT6314)) + +DT_COMPAT_PWM_CLOCK := pwm-clock + +config DT_HAS_PWM_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_PWM_CLOCK)) + +DT_COMPAT_PWM_LEDS := pwm-leds + +config DT_HAS_PWM_LEDS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_PWM_LEDS)) + +DT_COMPAT_QCA_AR8031 := qca,ar8031 + +config DT_HAS_QCA_AR8031_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_QCA_AR8031)) + +DT_COMPAT_QEMU_IVSHMEM := qemu,ivshmem + +config DT_HAS_QEMU_IVSHMEM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_QEMU_IVSHMEM)) + +DT_COMPAT_QEMU_NIOS2_ZEPHYR := qemu,nios2-zephyr + +config DT_HAS_QEMU_NIOS2_ZEPHYR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_QEMU_NIOS2_ZEPHYR)) + +DT_COMPAT_QEMU_RISCV_VIRT := qemu,riscv-virt + +config DT_HAS_QEMU_RISCV_VIRT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_QEMU_RISCV_VIRT)) + +DT_COMPAT_QUECTEL_BG95 := quectel,bg95 + +config DT_HAS_QUECTEL_BG95_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_QUECTEL_BG95)) + +DT_COMPAT_QUECTEL_BG9X := quectel,bg9x + +config DT_HAS_QUECTEL_BG9X_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_QUECTEL_BG9X)) + +DT_COMPAT_QUECTEL_EG25_G := quectel,eg25-g + +config DT_HAS_QUECTEL_EG25_G_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_QUECTEL_EG25_G)) + +DT_COMPAT_QUECTEL_LC26G := quectel,lc26g + +config DT_HAS_QUECTEL_LC26G_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_QUECTEL_LC26G)) + +DT_COMPAT_QUECTEL_LC76G := quectel,lc76g + +config DT_HAS_QUECTEL_LC76G_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_QUECTEL_LC76G)) + +DT_COMPAT_QUECTEL_LC86G := quectel,lc86g + +config DT_HAS_QUECTEL_LC86G_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_QUECTEL_LC86G)) + +DT_COMPAT_QUICKLOGIC_EOS_S3_GPIO := quicklogic,eos-s3-gpio + +config DT_HAS_QUICKLOGIC_EOS_S3_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_QUICKLOGIC_EOS_S3_GPIO)) + +DT_COMPAT_QUICKLOGIC_EOS_S3_PINCTRL := quicklogic,eos-s3-pinctrl + +config DT_HAS_QUICKLOGIC_EOS_S3_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_QUICKLOGIC_EOS_S3_PINCTRL)) + +DT_COMPAT_QUICKLOGIC_USBSERIALPORT_S3B := quicklogic,usbserialport-s3b + +config DT_HAS_QUICKLOGIC_USBSERIALPORT_S3B_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_QUICKLOGIC_USBSERIALPORT_S3B)) + +DT_COMPAT_RASPBERRYPI_CORE_SUPPLY_REGULATOR := raspberrypi,core-supply-regulator + +config DT_HAS_RASPBERRYPI_CORE_SUPPLY_REGULATOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RASPBERRYPI_CORE_SUPPLY_REGULATOR)) + +DT_COMPAT_RASPBERRYPI_PICO_ADC := raspberrypi,pico-adc + +config DT_HAS_RASPBERRYPI_PICO_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RASPBERRYPI_PICO_ADC)) + +DT_COMPAT_RASPBERRYPI_PICO_CLOCK := raspberrypi,pico-clock + +config DT_HAS_RASPBERRYPI_PICO_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RASPBERRYPI_PICO_CLOCK)) + +DT_COMPAT_RASPBERRYPI_PICO_CLOCK_CONTROLLER := raspberrypi,pico-clock-controller + +config DT_HAS_RASPBERRYPI_PICO_CLOCK_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RASPBERRYPI_PICO_CLOCK_CONTROLLER)) + +DT_COMPAT_RASPBERRYPI_PICO_DMA := raspberrypi,pico-dma + +config DT_HAS_RASPBERRYPI_PICO_DMA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RASPBERRYPI_PICO_DMA)) + +DT_COMPAT_RASPBERRYPI_PICO_FLASH_CONTROLLER := raspberrypi,pico-flash-controller + +config DT_HAS_RASPBERRYPI_PICO_FLASH_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RASPBERRYPI_PICO_FLASH_CONTROLLER)) + +DT_COMPAT_RASPBERRYPI_PICO_GPIO := raspberrypi,pico-gpio + +config DT_HAS_RASPBERRYPI_PICO_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RASPBERRYPI_PICO_GPIO)) + +DT_COMPAT_RASPBERRYPI_PICO_HEADER := raspberrypi,pico-header + +config DT_HAS_RASPBERRYPI_PICO_HEADER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RASPBERRYPI_PICO_HEADER)) + +DT_COMPAT_RASPBERRYPI_PICO_I2C := raspberrypi,pico-i2c + +config DT_HAS_RASPBERRYPI_PICO_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RASPBERRYPI_PICO_I2C)) + +DT_COMPAT_RASPBERRYPI_PICO_PINCTRL := raspberrypi,pico-pinctrl + +config DT_HAS_RASPBERRYPI_PICO_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RASPBERRYPI_PICO_PINCTRL)) + +DT_COMPAT_RASPBERRYPI_PICO_PIO := raspberrypi,pico-pio + +config DT_HAS_RASPBERRYPI_PICO_PIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RASPBERRYPI_PICO_PIO)) + +DT_COMPAT_RASPBERRYPI_PICO_PIO_DEVICE := raspberrypi,pico-pio-device + +config DT_HAS_RASPBERRYPI_PICO_PIO_DEVICE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RASPBERRYPI_PICO_PIO_DEVICE)) + +DT_COMPAT_RASPBERRYPI_PICO_PLL := raspberrypi,pico-pll + +config DT_HAS_RASPBERRYPI_PICO_PLL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RASPBERRYPI_PICO_PLL)) + +DT_COMPAT_RASPBERRYPI_PICO_PWM := raspberrypi,pico-pwm + +config DT_HAS_RASPBERRYPI_PICO_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RASPBERRYPI_PICO_PWM)) + +DT_COMPAT_RASPBERRYPI_PICO_RESET := raspberrypi,pico-reset + +config DT_HAS_RASPBERRYPI_PICO_RESET_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RASPBERRYPI_PICO_RESET)) + +DT_COMPAT_RASPBERRYPI_PICO_ROSC := raspberrypi,pico-rosc + +config DT_HAS_RASPBERRYPI_PICO_ROSC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RASPBERRYPI_PICO_ROSC)) + +DT_COMPAT_RASPBERRYPI_PICO_RTC := raspberrypi,pico-rtc + +config DT_HAS_RASPBERRYPI_PICO_RTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RASPBERRYPI_PICO_RTC)) + +DT_COMPAT_RASPBERRYPI_PICO_SPI := raspberrypi,pico-spi + +config DT_HAS_RASPBERRYPI_PICO_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RASPBERRYPI_PICO_SPI)) + +DT_COMPAT_RASPBERRYPI_PICO_SPI_PIO := raspberrypi,pico-spi-pio + +config DT_HAS_RASPBERRYPI_PICO_SPI_PIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RASPBERRYPI_PICO_SPI_PIO)) + +DT_COMPAT_RASPBERRYPI_PICO_TEMP := raspberrypi,pico-temp + +config DT_HAS_RASPBERRYPI_PICO_TEMP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RASPBERRYPI_PICO_TEMP)) + +DT_COMPAT_RASPBERRYPI_PICO_TIMER := raspberrypi,pico-timer + +config DT_HAS_RASPBERRYPI_PICO_TIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RASPBERRYPI_PICO_TIMER)) + +DT_COMPAT_RASPBERRYPI_PICO_UART := raspberrypi,pico-uart + +config DT_HAS_RASPBERRYPI_PICO_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RASPBERRYPI_PICO_UART)) + +DT_COMPAT_RASPBERRYPI_PICO_UART_PIO := raspberrypi,pico-uart-pio + +config DT_HAS_RASPBERRYPI_PICO_UART_PIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RASPBERRYPI_PICO_UART_PIO)) + +DT_COMPAT_RASPBERRYPI_PICO_USBD := raspberrypi,pico-usbd + +config DT_HAS_RASPBERRYPI_PICO_USBD_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RASPBERRYPI_PICO_USBD)) + +DT_COMPAT_RASPBERRYPI_PICO_WATCHDOG := raspberrypi,pico-watchdog + +config DT_HAS_RASPBERRYPI_PICO_WATCHDOG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RASPBERRYPI_PICO_WATCHDOG)) + +DT_COMPAT_RASPBERRYPI_PICO_XOSC := raspberrypi,pico-xosc + +config DT_HAS_RASPBERRYPI_PICO_XOSC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RASPBERRYPI_PICO_XOSC)) + +DT_COMPAT_RASPBERRYPI_RP1_GPIO := raspberrypi,rp1-gpio + +config DT_HAS_RASPBERRYPI_RP1_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RASPBERRYPI_RP1_GPIO)) + +DT_COMPAT_RASPBERRYPI_40PINS_HEADER := raspberrypi-40pins-header + +config DT_HAS_RASPBERRYPI_40PINS_HEADER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RASPBERRYPI_40PINS_HEADER)) + +DT_COMPAT_RAYDIUM_RM67162 := raydium,rm67162 + +config DT_HAS_RAYDIUM_RM67162_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RAYDIUM_RM67162)) + +DT_COMPAT_RAYDIUM_RM68200 := raydium,rm68200 + +config DT_HAS_RAYDIUM_RM68200_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RAYDIUM_RM68200)) + +DT_COMPAT_REALTEK_RTL8211F := realtek,rtl8211f + +config DT_HAS_REALTEK_RTL8211F_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_REALTEK_RTL8211F)) + +DT_COMPAT_REALTEK_RTS5912_GPIO := realtek,rts5912-gpio + +config DT_HAS_REALTEK_RTS5912_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_REALTEK_RTS5912_GPIO)) + +DT_COMPAT_REALTEK_RTS5912_PINCTRL := realtek,rts5912-pinctrl + +config DT_HAS_REALTEK_RTS5912_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_REALTEK_RTS5912_PINCTRL)) + +DT_COMPAT_REALTEK_RTS5912_RTMR := realtek,rts5912-rtmr + +config DT_HAS_REALTEK_RTS5912_RTMR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_REALTEK_RTS5912_RTMR)) + +DT_COMPAT_REALTEK_RTS5912_SCCON := realtek,rts5912-sccon + +config DT_HAS_REALTEK_RTS5912_SCCON_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_REALTEK_RTS5912_SCCON)) + +DT_COMPAT_REALTEK_RTS5912_SLWTIMER := realtek,rts5912-slwtimer + +config DT_HAS_REALTEK_RTS5912_SLWTIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_REALTEK_RTS5912_SLWTIMER)) + +DT_COMPAT_REALTEK_RTS5912_UART := realtek,rts5912-uart + +config DT_HAS_REALTEK_RTS5912_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_REALTEK_RTS5912_UART)) + +DT_COMPAT_REGULATOR_FIXED := regulator-fixed + +config DT_HAS_REGULATOR_FIXED_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_REGULATOR_FIXED)) + +DT_COMPAT_REGULATOR_GPIO := regulator-gpio + +config DT_HAS_REGULATOR_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_REGULATOR_GPIO)) + +DT_COMPAT_RENESAS_BT_HCI_DA1453X := renesas,bt-hci-da1453x + +config DT_HAS_RENESAS_BT_HCI_DA1453X_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_BT_HCI_DA1453X)) + +DT_COMPAT_RENESAS_BT_HCI_DA1469X := renesas,bt-hci-da1469x + +config DT_HAS_RENESAS_BT_HCI_DA1469X_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_BT_HCI_DA1469X)) + +DT_COMPAT_RENESAS_HS300X := renesas,hs300x + +config DT_HAS_RENESAS_HS300X_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_HS300X)) + +DT_COMPAT_RENESAS_HS400X := renesas,hs400x + +config DT_HAS_RENESAS_HS400X_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_HS400X)) + +DT_COMPAT_RENESAS_PWM_RCAR := renesas,pwm-rcar + +config DT_HAS_RENESAS_PWM_RCAR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_PWM_RCAR)) + +DT_COMPAT_RENESAS_R8A7795_CPG_MSSR := renesas,r8a7795-cpg-mssr + +config DT_HAS_RENESAS_R8A7795_CPG_MSSR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_R8A7795_CPG_MSSR)) + +DT_COMPAT_RENESAS_R8A779F0_CPG_MSSR := renesas,r8a779f0-cpg-mssr + +config DT_HAS_RENESAS_R8A779F0_CPG_MSSR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_R8A779F0_CPG_MSSR)) + +DT_COMPAT_RENESAS_RA_ADC := renesas,ra-adc + +config DT_HAS_RENESAS_RA_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_ADC)) + +DT_COMPAT_RENESAS_RA_AGT := renesas,ra-agt + +config DT_HAS_RENESAS_RA_AGT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_AGT)) + +DT_COMPAT_RENESAS_RA_AGT_COUNTER := renesas,ra-agt-counter + +config DT_HAS_RENESAS_RA_AGT_COUNTER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_AGT_COUNTER)) + +DT_COMPAT_RENESAS_RA_CANFD := renesas,ra-canfd + +config DT_HAS_RENESAS_RA_CANFD_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_CANFD)) + +DT_COMPAT_RENESAS_RA_CANFD_GLOBAL := renesas,ra-canfd-global + +config DT_HAS_RENESAS_RA_CANFD_GLOBAL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_CANFD_GLOBAL)) + +DT_COMPAT_RENESAS_RA_CGC_BUSCLK := renesas,ra-cgc-busclk + +config DT_HAS_RENESAS_RA_CGC_BUSCLK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_CGC_BUSCLK)) + +DT_COMPAT_RENESAS_RA_CGC_EXTERNAL_CLOCK := renesas,ra-cgc-external-clock + +config DT_HAS_RENESAS_RA_CGC_EXTERNAL_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_CGC_EXTERNAL_CLOCK)) + +DT_COMPAT_RENESAS_RA_CGC_PCLK := renesas,ra-cgc-pclk + +config DT_HAS_RENESAS_RA_CGC_PCLK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_CGC_PCLK)) + +DT_COMPAT_RENESAS_RA_CGC_PCLK_BLOCK := renesas,ra-cgc-pclk-block + +config DT_HAS_RENESAS_RA_CGC_PCLK_BLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_CGC_PCLK_BLOCK)) + +DT_COMPAT_RENESAS_RA_CGC_PLL := renesas,ra-cgc-pll + +config DT_HAS_RENESAS_RA_CGC_PLL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_CGC_PLL)) + +DT_COMPAT_RENESAS_RA_CGC_PLL_OUT := renesas,ra-cgc-pll-out + +config DT_HAS_RENESAS_RA_CGC_PLL_OUT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_CGC_PLL_OUT)) + +DT_COMPAT_RENESAS_RA_CGC_SUBCLK := renesas,ra-cgc-subclk + +config DT_HAS_RENESAS_RA_CGC_SUBCLK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_CGC_SUBCLK)) + +DT_COMPAT_RENESAS_RA_ETHERNET := renesas,ra-ethernet + +config DT_HAS_RENESAS_RA_ETHERNET_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_ETHERNET)) + +DT_COMPAT_RENESAS_RA_EXTERNAL_INTERRUPT := renesas,ra-external-interrupt + +config DT_HAS_RENESAS_RA_EXTERNAL_INTERRUPT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_EXTERNAL_INTERRUPT)) + +DT_COMPAT_RENESAS_RA_FLASH_HP_CONTROLLER := renesas,ra-flash-hp-controller + +config DT_HAS_RENESAS_RA_FLASH_HP_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_FLASH_HP_CONTROLLER)) + +DT_COMPAT_RENESAS_RA_GLCDC := renesas,ra-glcdc + +config DT_HAS_RENESAS_RA_GLCDC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_GLCDC)) + +DT_COMPAT_RENESAS_RA_GPIO := renesas,ra-gpio + +config DT_HAS_RENESAS_RA_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_GPIO)) + +DT_COMPAT_RENESAS_RA_GPIO_IOPORT := renesas,ra-gpio-ioport + +config DT_HAS_RENESAS_RA_GPIO_IOPORT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_GPIO_IOPORT)) + +DT_COMPAT_RENESAS_RA_GPIO_MIPI_HEADER := renesas,ra-gpio-mipi-header + +config DT_HAS_RENESAS_RA_GPIO_MIPI_HEADER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_GPIO_MIPI_HEADER)) + +DT_COMPAT_RENESAS_RA_IIC := renesas,ra-iic + +config DT_HAS_RENESAS_RA_IIC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_IIC)) + +DT_COMPAT_RENESAS_RA_INTERRUPT_CONTROLLER_UNIT := renesas,ra-interrupt-controller-unit + +config DT_HAS_RENESAS_RA_INTERRUPT_CONTROLLER_UNIT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_INTERRUPT_CONTROLLER_UNIT)) + +DT_COMPAT_RENESAS_RA_MDIO := renesas,ra-mdio + +config DT_HAS_RENESAS_RA_MDIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_MDIO)) + +DT_COMPAT_RENESAS_RA_MIPI_DSI := renesas,ra-mipi-dsi + +config DT_HAS_RENESAS_RA_MIPI_DSI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_MIPI_DSI)) + +DT_COMPAT_RENESAS_RA_NV_FLASH := renesas,ra-nv-flash + +config DT_HAS_RENESAS_RA_NV_FLASH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_NV_FLASH)) + +DT_COMPAT_RENESAS_RA_PINCTRL_PFS := renesas,ra-pinctrl-pfs + +config DT_HAS_RENESAS_RA_PINCTRL_PFS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_PINCTRL_PFS)) + +DT_COMPAT_RENESAS_RA_PWM := renesas,ra-pwm + +config DT_HAS_RENESAS_RA_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_PWM)) + +DT_COMPAT_RENESAS_RA_RSIP_E51A_TRNG := renesas,ra-rsip-e51a-trng + +config DT_HAS_RENESAS_RA_RSIP_E51A_TRNG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_RSIP_E51A_TRNG)) + +DT_COMPAT_RENESAS_RA_SCE5_RNG := renesas,ra-sce5-rng + +config DT_HAS_RENESAS_RA_SCE5_RNG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_SCE5_RNG)) + +DT_COMPAT_RENESAS_RA_SCE7_RNG := renesas,ra-sce7-rng + +config DT_HAS_RENESAS_RA_SCE7_RNG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_SCE7_RNG)) + +DT_COMPAT_RENESAS_RA_SCI := renesas,ra-sci + +config DT_HAS_RENESAS_RA_SCI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_SCI)) + +DT_COMPAT_RENESAS_RA_SCI_UART := renesas,ra-sci-uart + +config DT_HAS_RENESAS_RA_SCI_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_SCI_UART)) + +DT_COMPAT_RENESAS_RA_SDHC := renesas,ra-sdhc + +config DT_HAS_RENESAS_RA_SDHC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_SDHC)) + +DT_COMPAT_RENESAS_RA_SDRAM := renesas,ra-sdram + +config DT_HAS_RENESAS_RA_SDRAM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_SDRAM)) + +DT_COMPAT_RENESAS_RA_SPI := renesas,ra-spi + +config DT_HAS_RENESAS_RA_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_SPI)) + +DT_COMPAT_RENESAS_RA_TRNG := renesas,ra-trng + +config DT_HAS_RENESAS_RA_TRNG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_TRNG)) + +DT_COMPAT_RENESAS_RA_UART_SCI := renesas,ra-uart-sci + +config DT_HAS_RENESAS_RA_UART_SCI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_UART_SCI)) + +DT_COMPAT_RENESAS_RA_UDC := renesas,ra-udc + +config DT_HAS_RENESAS_RA_UDC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_UDC)) + +DT_COMPAT_RENESAS_RA_USB := renesas,ra-usb + +config DT_HAS_RENESAS_RA_USB_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_USB)) + +DT_COMPAT_RENESAS_RA_USBPHYC := renesas,ra-usbphyc + +config DT_HAS_RENESAS_RA_USBPHYC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_USBPHYC)) + +DT_COMPAT_RENESAS_RA8_SPI_B := renesas,ra8-spi-b + +config DT_HAS_RENESAS_RA8_SPI_B_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA8_SPI_B)) + +DT_COMPAT_RENESAS_RA8_UART_SCI_B := renesas,ra8-uart-sci-b + +config DT_HAS_RENESAS_RA8_UART_SCI_B_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA8_UART_SCI_B)) + +DT_COMPAT_RENESAS_RCAR_CAN := renesas,rcar-can + +config DT_HAS_RENESAS_RCAR_CAN_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RCAR_CAN)) + +DT_COMPAT_RENESAS_RCAR_CMT := renesas,rcar-cmt + +config DT_HAS_RENESAS_RCAR_CMT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RCAR_CMT)) + +DT_COMPAT_RENESAS_RCAR_GPIO := renesas,rcar-gpio + +config DT_HAS_RENESAS_RCAR_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RCAR_GPIO)) + +DT_COMPAT_RENESAS_RCAR_HSCIF := renesas,rcar-hscif + +config DT_HAS_RENESAS_RCAR_HSCIF_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RCAR_HSCIF)) + +DT_COMPAT_RENESAS_RCAR_I2C := renesas,rcar-i2c + +config DT_HAS_RENESAS_RCAR_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RCAR_I2C)) + +DT_COMPAT_RENESAS_RCAR_MMC := renesas,rcar-mmc + +config DT_HAS_RENESAS_RCAR_MMC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RCAR_MMC)) + +DT_COMPAT_RENESAS_RCAR_PFC := renesas,rcar-pfc + +config DT_HAS_RENESAS_RCAR_PFC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RCAR_PFC)) + +DT_COMPAT_RENESAS_RCAR_SCIF := renesas,rcar-scif + +config DT_HAS_RENESAS_RCAR_SCIF_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RCAR_SCIF)) + +DT_COMPAT_RENESAS_RZ_GPIO := renesas,rz-gpio + +config DT_HAS_RENESAS_RZ_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZ_GPIO)) + +DT_COMPAT_RENESAS_RZ_GPIO_INT := renesas,rz-gpio-int + +config DT_HAS_RENESAS_RZ_GPIO_INT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZ_GPIO_INT)) + +DT_COMPAT_RENESAS_RZ_SCIF_UART := renesas,rz-scif-uart + +config DT_HAS_RENESAS_RZ_SCIF_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZ_SCIF_UART)) + +DT_COMPAT_RENESAS_RZG_PINCTRL := renesas,rzg-pinctrl + +config DT_HAS_RENESAS_RZG_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZG_PINCTRL)) + +DT_COMPAT_RENESAS_RZT2M_GPIO := renesas,rzt2m-gpio + +config DT_HAS_RENESAS_RZT2M_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZT2M_GPIO)) + +DT_COMPAT_RENESAS_RZT2M_GPIO_COMMON := renesas,rzt2m-gpio-common + +config DT_HAS_RENESAS_RZT2M_GPIO_COMMON_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZT2M_GPIO_COMMON)) + +DT_COMPAT_RENESAS_RZT2M_PINCTRL := renesas,rzt2m-pinctrl + +config DT_HAS_RENESAS_RZT2M_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZT2M_PINCTRL)) + +DT_COMPAT_RENESAS_RZT2M_UART := renesas,rzt2m-uart + +config DT_HAS_RENESAS_RZT2M_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZT2M_UART)) + +DT_COMPAT_RENESAS_SLG47105 := renesas,slg47105 + +config DT_HAS_RENESAS_SLG47105_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_SLG47105)) + +DT_COMPAT_RENESAS_SLG47115 := renesas,slg47115 + +config DT_HAS_RENESAS_SLG47115_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_SLG47115)) + +DT_COMPAT_RENESAS_SLG471X5 := renesas,slg471x5 + +config DT_HAS_RENESAS_SLG471X5_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_SLG471X5)) + +DT_COMPAT_RENESAS_SMARTBOND_ADC := renesas,smartbond-adc + +config DT_HAS_RENESAS_SMARTBOND_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_SMARTBOND_ADC)) + +DT_COMPAT_RENESAS_SMARTBOND_CRYPTO := renesas,smartbond-crypto + +config DT_HAS_RENESAS_SMARTBOND_CRYPTO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_SMARTBOND_CRYPTO)) + +DT_COMPAT_RENESAS_SMARTBOND_DISPLAY := renesas,smartbond-display + +config DT_HAS_RENESAS_SMARTBOND_DISPLAY_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_SMARTBOND_DISPLAY)) + +DT_COMPAT_RENESAS_SMARTBOND_DMA := renesas,smartbond-dma + +config DT_HAS_RENESAS_SMARTBOND_DMA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_SMARTBOND_DMA)) + +DT_COMPAT_RENESAS_SMARTBOND_FLASH_CONTROLLER := renesas,smartbond-flash-controller + +config DT_HAS_RENESAS_SMARTBOND_FLASH_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_SMARTBOND_FLASH_CONTROLLER)) + +DT_COMPAT_RENESAS_SMARTBOND_GPIO := renesas,smartbond-gpio + +config DT_HAS_RENESAS_SMARTBOND_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_SMARTBOND_GPIO)) + +DT_COMPAT_RENESAS_SMARTBOND_I2C := renesas,smartbond-i2c + +config DT_HAS_RENESAS_SMARTBOND_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_SMARTBOND_I2C)) + +DT_COMPAT_RENESAS_SMARTBOND_LP_CLK := renesas,smartbond-lp-clk + +config DT_HAS_RENESAS_SMARTBOND_LP_CLK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_SMARTBOND_LP_CLK)) + +DT_COMPAT_RENESAS_SMARTBOND_LP_OSC := renesas,smartbond-lp-osc + +config DT_HAS_RENESAS_SMARTBOND_LP_OSC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_SMARTBOND_LP_OSC)) + +DT_COMPAT_RENESAS_SMARTBOND_MIPI_DBI := renesas,smartbond-mipi-dbi + +config DT_HAS_RENESAS_SMARTBOND_MIPI_DBI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_SMARTBOND_MIPI_DBI)) + +DT_COMPAT_RENESAS_SMARTBOND_NOR_PSRAM := renesas,smartbond-nor-psram + +config DT_HAS_RENESAS_SMARTBOND_NOR_PSRAM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_SMARTBOND_NOR_PSRAM)) + +DT_COMPAT_RENESAS_SMARTBOND_PINCTRL := renesas,smartbond-pinctrl + +config DT_HAS_RENESAS_SMARTBOND_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_SMARTBOND_PINCTRL)) + +DT_COMPAT_RENESAS_SMARTBOND_REGULATOR := renesas,smartbond-regulator + +config DT_HAS_RENESAS_SMARTBOND_REGULATOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_SMARTBOND_REGULATOR)) + +DT_COMPAT_RENESAS_SMARTBOND_RTC := renesas,smartbond-rtc + +config DT_HAS_RENESAS_SMARTBOND_RTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_SMARTBOND_RTC)) + +DT_COMPAT_RENESAS_SMARTBOND_SDADC := renesas,smartbond-sdadc + +config DT_HAS_RENESAS_SMARTBOND_SDADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_SMARTBOND_SDADC)) + +DT_COMPAT_RENESAS_SMARTBOND_SPI := renesas,smartbond-spi + +config DT_HAS_RENESAS_SMARTBOND_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_SMARTBOND_SPI)) + +DT_COMPAT_RENESAS_SMARTBOND_SYS_CLK := renesas,smartbond-sys-clk + +config DT_HAS_RENESAS_SMARTBOND_SYS_CLK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_SMARTBOND_SYS_CLK)) + +DT_COMPAT_RENESAS_SMARTBOND_TIMER := renesas,smartbond-timer + +config DT_HAS_RENESAS_SMARTBOND_TIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_SMARTBOND_TIMER)) + +DT_COMPAT_RENESAS_SMARTBOND_TRNG := renesas,smartbond-trng + +config DT_HAS_RENESAS_SMARTBOND_TRNG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_SMARTBOND_TRNG)) + +DT_COMPAT_RENESAS_SMARTBOND_UART := renesas,smartbond-uart + +config DT_HAS_RENESAS_SMARTBOND_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_SMARTBOND_UART)) + +DT_COMPAT_RENESAS_SMARTBOND_USBD := renesas,smartbond-usbd + +config DT_HAS_RENESAS_SMARTBOND_USBD_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_SMARTBOND_USBD)) + +DT_COMPAT_RENESAS_SMARTBOND_WATCHDOG := renesas,smartbond-watchdog + +config DT_HAS_RENESAS_SMARTBOND_WATCHDOG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_SMARTBOND_WATCHDOG)) + +DT_COMPAT_REYAX_RYLRXXX := reyax,rylrxxx + +config DT_HAS_REYAX_RYLRXXX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_REYAX_RYLRXXX)) + +DT_COMPAT_RICHTEK_RT1718S := richtek,rt1718s + +config DT_HAS_RICHTEK_RT1718S_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RICHTEK_RT1718S)) + +DT_COMPAT_RICHTEK_RT1718S_GPIO_PORT := richtek,rt1718s-gpio-port + +config DT_HAS_RICHTEK_RT1718S_GPIO_PORT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RICHTEK_RT1718S_GPIO_PORT)) + +DT_COMPAT_RISCV_CPU_INTC := riscv,cpu-intc + +config DT_HAS_RISCV_CPU_INTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RISCV_CPU_INTC)) + +DT_COMPAT_ROCKTECH_RK043FN02H_CT := rocktech,rk043fn02h-ct + +config DT_HAS_ROCKTECH_RK043FN02H_CT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ROCKTECH_RK043FN02H_CT)) + +DT_COMPAT_ROHM_BD8LB600FS := rohm,bd8lb600fs + +config DT_HAS_ROHM_BD8LB600FS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ROHM_BD8LB600FS)) + +DT_COMPAT_ROHM_BD8LB600FS_DIAGNOSTICS := rohm,bd8lb600fs-diagnostics + +config DT_HAS_ROHM_BD8LB600FS_DIAGNOSTICS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ROHM_BD8LB600FS_DIAGNOSTICS)) + +DT_COMPAT_ROHM_BD8LB600FS_GPIO := rohm,bd8lb600fs-gpio + +config DT_HAS_ROHM_BD8LB600FS_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ROHM_BD8LB600FS_GPIO)) + +DT_COMPAT_ROHM_BH1749 := rohm,bh1749 + +config DT_HAS_ROHM_BH1749_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ROHM_BH1749)) + +DT_COMPAT_ROHM_BH1750 := rohm,bh1750 + +config DT_HAS_ROHM_BH1750_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ROHM_BH1750)) + +DT_COMPAT_SAMPLE_CONTROLLER := sample_controller + +config DT_HAS_SAMPLE_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SAMPLE_CONTROLLER)) + +DT_COMPAT_SBS_DEFAULT_SBS_GAUGE := sbs,default-sbs-gauge + +config DT_HAS_SBS_DEFAULT_SBS_GAUGE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SBS_DEFAULT_SBS_GAUGE)) + +DT_COMPAT_SBS_SBS_CHARGER := sbs,sbs-charger + +config DT_HAS_SBS_SBS_CHARGER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SBS_SBS_CHARGER)) + +DT_COMPAT_SBS_SBS_GAUGE := sbs,sbs-gauge + +config DT_HAS_SBS_SBS_GAUGE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SBS_SBS_GAUGE)) + +DT_COMPAT_SBS_SBS_GAUGE_NEW_API := sbs,sbs-gauge-new-api + +config DT_HAS_SBS_SBS_GAUGE_NEW_API_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SBS_SBS_GAUGE_NEW_API)) + +DT_COMPAT_SCIOSENSE_ENS160 := sciosense,ens160 + +config DT_HAS_SCIOSENSE_ENS160_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SCIOSENSE_ENS160)) + +DT_COMPAT_SDC_RADIO_COEX_ONE_WIRE := sdc-radio-coex-one-wire + +config DT_HAS_SDC_RADIO_COEX_ONE_WIRE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SDC_RADIO_COEX_ONE_WIRE)) + +DT_COMPAT_SEEED_GROVE_LCD_RGB := seeed,grove-lcd-rgb + +config DT_HAS_SEEED_GROVE_LCD_RGB_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SEEED_GROVE_LCD_RGB)) + +DT_COMPAT_SEEED_GROVE_LIGHT := seeed,grove-light + +config DT_HAS_SEEED_GROVE_LIGHT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SEEED_GROVE_LIGHT)) + +DT_COMPAT_SEEED_GROVE_TEMPERATURE := seeed,grove-temperature + +config DT_HAS_SEEED_GROVE_TEMPERATURE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SEEED_GROVE_TEMPERATURE)) + +DT_COMPAT_SEEED_HM330X := seeed,hm330x + +config DT_HAS_SEEED_HM330X_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SEEED_HM330X)) + +DT_COMPAT_SEEED_XIAO_GPIO := seeed,xiao-gpio + +config DT_HAS_SEEED_XIAO_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SEEED_XIAO_GPIO)) + +DT_COMPAT_SEGGER_ETH_RTT := segger,eth-rtt + +config DT_HAS_SEGGER_ETH_RTT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SEGGER_ETH_RTT)) + +DT_COMPAT_SEGGER_RTT_UART := segger,rtt-uart + +config DT_HAS_SEGGER_RTT_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SEGGER_RTT_UART)) + +DT_COMPAT_SEMTECH_SX1261 := semtech,sx1261 + +config DT_HAS_SEMTECH_SX1261_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SEMTECH_SX1261)) + +DT_COMPAT_SEMTECH_SX1262 := semtech,sx1262 + +config DT_HAS_SEMTECH_SX1262_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SEMTECH_SX1262)) + +DT_COMPAT_SEMTECH_SX1272 := semtech,sx1272 + +config DT_HAS_SEMTECH_SX1272_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SEMTECH_SX1272)) + +DT_COMPAT_SEMTECH_SX1276 := semtech,sx1276 + +config DT_HAS_SEMTECH_SX1276_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SEMTECH_SX1276)) + +DT_COMPAT_SEMTECH_SX1509B := semtech,sx1509b + +config DT_HAS_SEMTECH_SX1509B_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SEMTECH_SX1509B)) + +DT_COMPAT_SEMTECH_SX9500 := semtech,sx9500 + +config DT_HAS_SEMTECH_SX9500_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SEMTECH_SX9500)) + +DT_COMPAT_SENSIRION_SCD40 := sensirion,scd40 + +config DT_HAS_SENSIRION_SCD40_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SENSIRION_SCD40)) + +DT_COMPAT_SENSIRION_SCD41 := sensirion,scd41 + +config DT_HAS_SENSIRION_SCD41_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SENSIRION_SCD41)) + +DT_COMPAT_SENSIRION_SGP40 := sensirion,sgp40 + +config DT_HAS_SENSIRION_SGP40_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SENSIRION_SGP40)) + +DT_COMPAT_SENSIRION_SHT21 := sensirion,sht21 + +config DT_HAS_SENSIRION_SHT21_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SENSIRION_SHT21)) + +DT_COMPAT_SENSIRION_SHT3XD := sensirion,sht3xd + +config DT_HAS_SENSIRION_SHT3XD_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SENSIRION_SHT3XD)) + +DT_COMPAT_SENSIRION_SHT4X := sensirion,sht4x + +config DT_HAS_SENSIRION_SHT4X_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SENSIRION_SHT4X)) + +DT_COMPAT_SENSIRION_SHTCX := sensirion,shtcx + +config DT_HAS_SENSIRION_SHTCX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SENSIRION_SHTCX)) + +DT_COMPAT_SENSIRION_STS4X := sensirion,sts4x + +config DT_HAS_SENSIRION_STS4X_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SENSIRION_STS4X)) + +DT_COMPAT_SENSRY_SY1XX := sensry,sy1xx + +config DT_HAS_SENSRY_SY1XX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SENSRY_SY1XX)) + +DT_COMPAT_SENSRY_SY1XX_EVENT_UNIT := sensry,sy1xx-event-unit + +config DT_HAS_SENSRY_SY1XX_EVENT_UNIT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SENSRY_SY1XX_EVENT_UNIT)) + +DT_COMPAT_SENSRY_SY1XX_PINCTRL := sensry,sy1xx-pinctrl + +config DT_HAS_SENSRY_SY1XX_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SENSRY_SY1XX_PINCTRL)) + +DT_COMPAT_SENSRY_SY1XX_SYS_TIMER := sensry,sy1xx-sys-timer + +config DT_HAS_SENSRY_SY1XX_SYS_TIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SENSRY_SY1XX_SYS_TIMER)) + +DT_COMPAT_SENSRY_SY1XX_UART := sensry,sy1xx-uart + +config DT_HAS_SENSRY_SY1XX_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SENSRY_SY1XX_UART)) + +DT_COMPAT_SHARED_IRQ := shared-irq + +config DT_HAS_SHARED_IRQ_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SHARED_IRQ)) + +DT_COMPAT_SHARP_LS0XX := sharp,ls0xx + +config DT_HAS_SHARP_LS0XX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SHARP_LS0XX)) + +DT_COMPAT_SIEMENS_IVSHMEM_ETH := siemens,ivshmem-eth + +config DT_HAS_SIEMENS_IVSHMEM_ETH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SIEMENS_IVSHMEM_ETH)) + +DT_COMPAT_SIFIVE_CLINT0 := sifive,clint0 + +config DT_HAS_SIFIVE_CLINT0_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SIFIVE_CLINT0)) + +DT_COMPAT_SIFIVE_DTIM0 := sifive,dtim0 + +config DT_HAS_SIFIVE_DTIM0_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SIFIVE_DTIM0)) + +DT_COMPAT_SIFIVE_E24 := sifive,e24 + +config DT_HAS_SIFIVE_E24_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SIFIVE_E24)) + +DT_COMPAT_SIFIVE_E31 := sifive,e31 + +config DT_HAS_SIFIVE_E31_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SIFIVE_E31)) + +DT_COMPAT_SIFIVE_E51 := sifive,e51 + +config DT_HAS_SIFIVE_E51_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SIFIVE_E51)) + +DT_COMPAT_SIFIVE_FU740_C000_DDR := sifive,fu740-c000-ddr + +config DT_HAS_SIFIVE_FU740_C000_DDR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SIFIVE_FU740_C000_DDR)) + +DT_COMPAT_SIFIVE_GPIO0 := sifive,gpio0 + +config DT_HAS_SIFIVE_GPIO0_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SIFIVE_GPIO0)) + +DT_COMPAT_SIFIVE_I2C0 := sifive,i2c0 + +config DT_HAS_SIFIVE_I2C0_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SIFIVE_I2C0)) + +DT_COMPAT_SIFIVE_PINCTRL := sifive,pinctrl + +config DT_HAS_SIFIVE_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SIFIVE_PINCTRL)) + +DT_COMPAT_SIFIVE_PLIC_1_0_0 := sifive,plic-1.0.0 + +config DT_HAS_SIFIVE_PLIC_1_0_0_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SIFIVE_PLIC_1_0_0)) + +DT_COMPAT_SIFIVE_PWM0 := sifive,pwm0 + +config DT_HAS_SIFIVE_PWM0_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SIFIVE_PWM0)) + +DT_COMPAT_SIFIVE_S7 := sifive,s7 + +config DT_HAS_SIFIVE_S7_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SIFIVE_S7)) + +DT_COMPAT_SIFIVE_SPI0 := sifive,spi0 + +config DT_HAS_SIFIVE_SPI0_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SIFIVE_SPI0)) + +DT_COMPAT_SIFIVE_U54 := sifive,u54 + +config DT_HAS_SIFIVE_U54_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SIFIVE_U54)) + +DT_COMPAT_SIFIVE_UART0 := sifive,uart0 + +config DT_HAS_SIFIVE_UART0_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SIFIVE_UART0)) + +DT_COMPAT_SIFIVE_WDT := sifive,wdt + +config DT_HAS_SIFIVE_WDT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SIFIVE_WDT)) + +DT_COMPAT_SILABS_BT_HCI_EFR32 := silabs,bt-hci-efr32 + +config DT_HAS_SILABS_BT_HCI_EFR32_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_BT_HCI_EFR32)) + +DT_COMPAT_SILABS_DBUS_PINCTRL := silabs,dbus-pinctrl + +config DT_HAS_SILABS_DBUS_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_DBUS_PINCTRL)) + +DT_COMPAT_SILABS_GECKO_ADC := silabs,gecko-adc + +config DT_HAS_SILABS_GECKO_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_GECKO_ADC)) + +DT_COMPAT_SILABS_GECKO_BURTC := silabs,gecko-burtc + +config DT_HAS_SILABS_GECKO_BURTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_GECKO_BURTC)) + +DT_COMPAT_SILABS_GECKO_ETHERNET := silabs,gecko-ethernet + +config DT_HAS_SILABS_GECKO_ETHERNET_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_GECKO_ETHERNET)) + +DT_COMPAT_SILABS_GECKO_FLASH_CONTROLLER := silabs,gecko-flash-controller + +config DT_HAS_SILABS_GECKO_FLASH_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_GECKO_FLASH_CONTROLLER)) + +DT_COMPAT_SILABS_GECKO_GPIO := silabs,gecko-gpio + +config DT_HAS_SILABS_GECKO_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_GECKO_GPIO)) + +DT_COMPAT_SILABS_GECKO_GPIO_PORT := silabs,gecko-gpio-port + +config DT_HAS_SILABS_GECKO_GPIO_PORT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_GECKO_GPIO_PORT)) + +DT_COMPAT_SILABS_GECKO_I2C := silabs,gecko-i2c + +config DT_HAS_SILABS_GECKO_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_GECKO_I2C)) + +DT_COMPAT_SILABS_GECKO_IADC := silabs,gecko-iadc + +config DT_HAS_SILABS_GECKO_IADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_GECKO_IADC)) + +DT_COMPAT_SILABS_GECKO_LEUART := silabs,gecko-leuart + +config DT_HAS_SILABS_GECKO_LEUART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_GECKO_LEUART)) + +DT_COMPAT_SILABS_GECKO_PINCTRL := silabs,gecko-pinctrl + +config DT_HAS_SILABS_GECKO_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_GECKO_PINCTRL)) + +DT_COMPAT_SILABS_GECKO_PWM := silabs,gecko-pwm + +config DT_HAS_SILABS_GECKO_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_GECKO_PWM)) + +DT_COMPAT_SILABS_GECKO_RTCC := silabs,gecko-rtcc + +config DT_HAS_SILABS_GECKO_RTCC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_GECKO_RTCC)) + +DT_COMPAT_SILABS_GECKO_SEMAILBOX := silabs,gecko-semailbox + +config DT_HAS_SILABS_GECKO_SEMAILBOX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_GECKO_SEMAILBOX)) + +DT_COMPAT_SILABS_GECKO_SPI_EUSART := silabs,gecko-spi-eusart + +config DT_HAS_SILABS_GECKO_SPI_EUSART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_GECKO_SPI_EUSART)) + +DT_COMPAT_SILABS_GECKO_SPI_USART := silabs,gecko-spi-usart + +config DT_HAS_SILABS_GECKO_SPI_USART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_GECKO_SPI_USART)) + +DT_COMPAT_SILABS_GECKO_STIMER := silabs,gecko-stimer + +config DT_HAS_SILABS_GECKO_STIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_GECKO_STIMER)) + +DT_COMPAT_SILABS_GECKO_TIMER := silabs,gecko-timer + +config DT_HAS_SILABS_GECKO_TIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_GECKO_TIMER)) + +DT_COMPAT_SILABS_GECKO_TRNG := silabs,gecko-trng + +config DT_HAS_SILABS_GECKO_TRNG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_GECKO_TRNG)) + +DT_COMPAT_SILABS_GECKO_UART := silabs,gecko-uart + +config DT_HAS_SILABS_GECKO_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_GECKO_UART)) + +DT_COMPAT_SILABS_GECKO_USART := silabs,gecko-usart + +config DT_HAS_SILABS_GECKO_USART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_GECKO_USART)) + +DT_COMPAT_SILABS_GECKO_WDOG := silabs,gecko-wdog + +config DT_HAS_SILABS_GECKO_WDOG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_GECKO_WDOG)) + +DT_COMPAT_SILABS_HFXO := silabs,hfxo + +config DT_HAS_SILABS_HFXO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_HFXO)) + +DT_COMPAT_SILABS_LDMA := silabs,ldma + +config DT_HAS_SILABS_LDMA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_LDMA)) + +DT_COMPAT_SILABS_SERIES_CLOCK := silabs,series-clock + +config DT_HAS_SILABS_SERIES_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_SERIES_CLOCK)) + +DT_COMPAT_SILABS_SERIES2_DCDC := silabs,series2-dcdc + +config DT_HAS_SILABS_SERIES2_DCDC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_SERIES2_DCDC)) + +DT_COMPAT_SILABS_SERIES2_HFRCODPLL := silabs,series2-hfrcodpll + +config DT_HAS_SILABS_SERIES2_HFRCODPLL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_SERIES2_HFRCODPLL)) + +DT_COMPAT_SILABS_SERIES2_HFRCOEM23 := silabs,series2-hfrcoem23 + +config DT_HAS_SILABS_SERIES2_HFRCOEM23_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_SERIES2_HFRCOEM23)) + +DT_COMPAT_SILABS_SERIES2_LFRCO := silabs,series2-lfrco + +config DT_HAS_SILABS_SERIES2_LFRCO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_SERIES2_LFRCO)) + +DT_COMPAT_SILABS_SERIES2_LFXO := silabs,series2-lfxo + +config DT_HAS_SILABS_SERIES2_LFXO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_SERIES2_LFXO)) + +DT_COMPAT_SILABS_SI32_AES := silabs,si32-aes + +config DT_HAS_SILABS_SI32_AES_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_SI32_AES)) + +DT_COMPAT_SILABS_SI32_AHB := silabs,si32-ahb + +config DT_HAS_SILABS_SI32_AHB_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_SI32_AHB)) + +DT_COMPAT_SILABS_SI32_APB := silabs,si32-apb + +config DT_HAS_SILABS_SI32_APB_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_SI32_APB)) + +DT_COMPAT_SILABS_SI32_DMA := silabs,si32-dma + +config DT_HAS_SILABS_SI32_DMA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_SI32_DMA)) + +DT_COMPAT_SILABS_SI32_FLASH_CONTROLLER := silabs,si32-flash-controller + +config DT_HAS_SILABS_SI32_FLASH_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_SI32_FLASH_CONTROLLER)) + +DT_COMPAT_SILABS_SI32_GPIO := silabs,si32-gpio + +config DT_HAS_SILABS_SI32_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_SI32_GPIO)) + +DT_COMPAT_SILABS_SI32_PINCTRL := silabs,si32-pinctrl + +config DT_HAS_SILABS_SI32_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_SI32_PINCTRL)) + +DT_COMPAT_SILABS_SI32_PLL := silabs,si32-pll + +config DT_HAS_SILABS_SI32_PLL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_SI32_PLL)) + +DT_COMPAT_SILABS_SI32_USART := silabs,si32-usart + +config DT_HAS_SILABS_SI32_USART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_SI32_USART)) + +DT_COMPAT_SILABS_SI7006 := silabs,si7006 + +config DT_HAS_SILABS_SI7006_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_SI7006)) + +DT_COMPAT_SILABS_SI7055 := silabs,si7055 + +config DT_HAS_SILABS_SI7055_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_SI7055)) + +DT_COMPAT_SILABS_SI7060 := silabs,si7060 + +config DT_HAS_SILABS_SI7060_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_SI7060)) + +DT_COMPAT_SILABS_SI7210 := silabs,si7210 + +config DT_HAS_SILABS_SI7210_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_SI7210)) + +DT_COMPAT_SIMCOM_SIM7080 := simcom,sim7080 + +config DT_HAS_SIMCOM_SIM7080_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SIMCOM_SIM7080)) + +DT_COMPAT_SINOWEALTH_SH1106 := sinowealth,sh1106 + +config DT_HAS_SINOWEALTH_SH1106_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SINOWEALTH_SH1106)) + +DT_COMPAT_SITRONIX_CF1133 := sitronix,cf1133 + +config DT_HAS_SITRONIX_CF1133_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SITRONIX_CF1133)) + +DT_COMPAT_SITRONIX_ST7735R := sitronix,st7735r + +config DT_HAS_SITRONIX_ST7735R_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SITRONIX_ST7735R)) + +DT_COMPAT_SITRONIX_ST7789V := sitronix,st7789v + +config DT_HAS_SITRONIX_ST7789V_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SITRONIX_ST7789V)) + +DT_COMPAT_SITRONIX_ST7796S := sitronix,st7796s + +config DT_HAS_SITRONIX_ST7796S_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SITRONIX_ST7796S)) + +DT_COMPAT_SKYWORKS_SKY13317 := skyworks,sky13317 + +config DT_HAS_SKYWORKS_SKY13317_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SKYWORKS_SKY13317)) + +DT_COMPAT_SKYWORKS_SKY13351 := skyworks,sky13351 + +config DT_HAS_SKYWORKS_SKY13351_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SKYWORKS_SKY13351)) + +DT_COMPAT_SKYWORKS_SKY66112_11 := skyworks,sky66112-11 + +config DT_HAS_SKYWORKS_SKY66112_11_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SKYWORKS_SKY66112_11)) + +DT_COMPAT_SKYWORKS_SKY66114_11 := skyworks,sky66114-11 + +config DT_HAS_SKYWORKS_SKY66114_11_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SKYWORKS_SKY66114_11)) + +DT_COMPAT_SKYWORKS_SKY66403_11 := skyworks,sky66403-11 + +config DT_HAS_SKYWORKS_SKY66403_11_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SKYWORKS_SKY66403_11)) + +DT_COMPAT_SKYWORKS_SKY66407_11 := skyworks,sky66407-11 + +config DT_HAS_SKYWORKS_SKY66407_11_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SKYWORKS_SKY66407_11)) + +DT_COMPAT_SMSC_LAN91C111 := smsc,lan91c111 + +config DT_HAS_SMSC_LAN91C111_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SMSC_LAN91C111)) + +DT_COMPAT_SMSC_LAN91C111_MDIO := smsc,lan91c111-mdio + +config DT_HAS_SMSC_LAN91C111_MDIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SMSC_LAN91C111_MDIO)) + +DT_COMPAT_SMSC_LAN9220 := smsc,lan9220 + +config DT_HAS_SMSC_LAN9220_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SMSC_LAN9220)) + +DT_COMPAT_SNPS_ARC_IOT_SYSCONF := snps,arc-iot-sysconf + +config DT_HAS_SNPS_ARC_IOT_SYSCONF_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SNPS_ARC_IOT_SYSCONF)) + +DT_COMPAT_SNPS_ARC_TIMER := snps,arc-timer + +config DT_HAS_SNPS_ARC_TIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SNPS_ARC_TIMER)) + +DT_COMPAT_SNPS_ARCEM := snps,arcem + +config DT_HAS_SNPS_ARCEM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SNPS_ARCEM)) + +DT_COMPAT_SNPS_ARCHS_ICI := snps,archs-ici + +config DT_HAS_SNPS_ARCHS_ICI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SNPS_ARCHS_ICI)) + +DT_COMPAT_SNPS_ARCHS_IDU_INTC := snps,archs-idu-intc + +config DT_HAS_SNPS_ARCHS_IDU_INTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SNPS_ARCHS_IDU_INTC)) + +DT_COMPAT_SNPS_ARCV2_INTC := snps,arcv2-intc + +config DT_HAS_SNPS_ARCV2_INTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SNPS_ARCV2_INTC)) + +DT_COMPAT_SNPS_CREG_GPIO := snps,creg-gpio + +config DT_HAS_SNPS_CREG_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SNPS_CREG_GPIO)) + +DT_COMPAT_SNPS_DESIGNWARE_DMA := snps,designware-dma + +config DT_HAS_SNPS_DESIGNWARE_DMA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SNPS_DESIGNWARE_DMA)) + +DT_COMPAT_SNPS_DESIGNWARE_DMA_AXI := snps,designware-dma-axi + +config DT_HAS_SNPS_DESIGNWARE_DMA_AXI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SNPS_DESIGNWARE_DMA_AXI)) + +DT_COMPAT_SNPS_DESIGNWARE_ETHERNET := snps,designware-ethernet + +config DT_HAS_SNPS_DESIGNWARE_ETHERNET_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SNPS_DESIGNWARE_ETHERNET)) + +DT_COMPAT_SNPS_DESIGNWARE_GPIO := snps,designware-gpio + +config DT_HAS_SNPS_DESIGNWARE_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SNPS_DESIGNWARE_GPIO)) + +DT_COMPAT_SNPS_DESIGNWARE_I2C := snps,designware-i2c + +config DT_HAS_SNPS_DESIGNWARE_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SNPS_DESIGNWARE_I2C)) + +DT_COMPAT_SNPS_DESIGNWARE_INTC := snps,designware-intc + +config DT_HAS_SNPS_DESIGNWARE_INTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SNPS_DESIGNWARE_INTC)) + +DT_COMPAT_SNPS_DESIGNWARE_SPI := snps,designware-spi + +config DT_HAS_SNPS_DESIGNWARE_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SNPS_DESIGNWARE_SPI)) + +DT_COMPAT_SNPS_DESIGNWARE_SSI := snps,designware-ssi + +config DT_HAS_SNPS_DESIGNWARE_SSI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SNPS_DESIGNWARE_SSI)) + +DT_COMPAT_SNPS_DESIGNWARE_USB := snps,designware-usb + +config DT_HAS_SNPS_DESIGNWARE_USB_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SNPS_DESIGNWARE_USB)) + +DT_COMPAT_SNPS_DESIGNWARE_WATCHDOG := snps,designware-watchdog + +config DT_HAS_SNPS_DESIGNWARE_WATCHDOG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SNPS_DESIGNWARE_WATCHDOG)) + +DT_COMPAT_SNPS_DW_TIMERS := snps,dw-timers + +config DT_HAS_SNPS_DW_TIMERS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SNPS_DW_TIMERS)) + +DT_COMPAT_SNPS_DWC2 := snps,dwc2 + +config DT_HAS_SNPS_DWC2_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SNPS_DWC2)) + +DT_COMPAT_SNPS_DWCXGMAC := snps,dwcxgmac + +config DT_HAS_SNPS_DWCXGMAC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SNPS_DWCXGMAC)) + +DT_COMPAT_SNPS_DWCXGMAC_MDIO := snps,dwcxgmac-mdio + +config DT_HAS_SNPS_DWCXGMAC_MDIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SNPS_DWCXGMAC_MDIO)) + +DT_COMPAT_SNPS_EMSDP_PINCTRL := snps,emsdp-pinctrl + +config DT_HAS_SNPS_EMSDP_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SNPS_EMSDP_PINCTRL)) + +DT_COMPAT_SNPS_ETHERNET_CYCLONEV := snps,ethernet-cyclonev + +config DT_HAS_SNPS_ETHERNET_CYCLONEV_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SNPS_ETHERNET_CYCLONEV)) + +DT_COMPAT_SNPS_HOSTLINK_UART := snps,hostlink-uart + +config DT_HAS_SNPS_HOSTLINK_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SNPS_HOSTLINK_UART)) + +DT_COMPAT_SNPS_NSIM_UART := snps,nsim-uart + +config DT_HAS_SNPS_NSIM_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SNPS_NSIM_UART)) + +DT_COMPAT_SOC_NV_FLASH := soc-nv-flash + +config DT_HAS_SOC_NV_FLASH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SOC_NV_FLASH)) + +DT_COMPAT_SOLOMON_SSD1306FB := solomon,ssd1306fb + +config DT_HAS_SOLOMON_SSD1306FB_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SOLOMON_SSD1306FB)) + +DT_COMPAT_SOLOMON_SSD1322 := solomon,ssd1322 + +config DT_HAS_SOLOMON_SSD1322_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SOLOMON_SSD1322)) + +DT_COMPAT_SOLOMON_SSD1327FB := solomon,ssd1327fb + +config DT_HAS_SOLOMON_SSD1327FB_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SOLOMON_SSD1327FB)) + +DT_COMPAT_SOLOMON_SSD1608 := solomon,ssd1608 + +config DT_HAS_SOLOMON_SSD1608_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SOLOMON_SSD1608)) + +DT_COMPAT_SOLOMON_SSD1673 := solomon,ssd1673 + +config DT_HAS_SOLOMON_SSD1673_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SOLOMON_SSD1673)) + +DT_COMPAT_SOLOMON_SSD1675A := solomon,ssd1675a + +config DT_HAS_SOLOMON_SSD1675A_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SOLOMON_SSD1675A)) + +DT_COMPAT_SOLOMON_SSD1680 := solomon,ssd1680 + +config DT_HAS_SOLOMON_SSD1680_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SOLOMON_SSD1680)) + +DT_COMPAT_SOLOMON_SSD1681 := solomon,ssd1681 + +config DT_HAS_SOLOMON_SSD1681_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SOLOMON_SSD1681)) + +DT_COMPAT_SPARKFUN_MICROMOD_GPIO := sparkfun,micromod-gpio + +config DT_HAS_SPARKFUN_MICROMOD_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SPARKFUN_MICROMOD_GPIO)) + +DT_COMPAT_SPARKFUN_PRO_MICRO_GPIO := sparkfun,pro-micro-gpio + +config DT_HAS_SPARKFUN_PRO_MICRO_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SPARKFUN_PRO_MICRO_GPIO)) + +DT_COMPAT_SPARKFUN_SERLCD := sparkfun,serlcd + +config DT_HAS_SPARKFUN_SERLCD_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SPARKFUN_SERLCD)) + +DT_COMPAT_SQN_GM02S := sqn,gm02s + +config DT_HAS_SQN_GM02S_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SQN_GM02S)) + +DT_COMPAT_SQN_HWSPINLOCK := sqn,hwspinlock + +config DT_HAS_SQN_HWSPINLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SQN_HWSPINLOCK)) + +DT_COMPAT_ST_DSI_LCD_QSH_030 := st,dsi-lcd-qsh-030 + +config DT_HAS_ST_DSI_LCD_QSH_030_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_DSI_LCD_QSH_030)) + +DT_COMPAT_ST_HCI_SPI_V1 := st,hci-spi-v1 + +config DT_HAS_ST_HCI_SPI_V1_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_HCI_SPI_V1)) + +DT_COMPAT_ST_HCI_SPI_V2 := st,hci-spi-v2 + +config DT_HAS_ST_HCI_SPI_V2_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_HCI_SPI_V2)) + +DT_COMPAT_ST_HCI_STM32WB0 := st,hci-stm32wb0 + +config DT_HAS_ST_HCI_STM32WB0_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_HCI_STM32WB0)) + +DT_COMPAT_ST_HCI_STM32WBA := st,hci-stm32wba + +config DT_HAS_ST_HCI_STM32WBA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_HCI_STM32WBA)) + +DT_COMPAT_ST_HTS221 := st,hts221 + +config DT_HAS_ST_HTS221_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_HTS221)) + +DT_COMPAT_ST_I3G4250D := st,i3g4250d + +config DT_HAS_ST_I3G4250D_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_I3G4250D)) + +DT_COMPAT_ST_IIS2DH := st,iis2dh + +config DT_HAS_ST_IIS2DH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_IIS2DH)) + +DT_COMPAT_ST_IIS2DLPC := st,iis2dlpc + +config DT_HAS_ST_IIS2DLPC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_IIS2DLPC)) + +DT_COMPAT_ST_IIS2ICLX := st,iis2iclx + +config DT_HAS_ST_IIS2ICLX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_IIS2ICLX)) + +DT_COMPAT_ST_IIS2MDC := st,iis2mdc + +config DT_HAS_ST_IIS2MDC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_IIS2MDC)) + +DT_COMPAT_ST_IIS328DQ := st,iis328dq + +config DT_HAS_ST_IIS328DQ_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_IIS328DQ)) + +DT_COMPAT_ST_IIS3DHHC := st,iis3dhhc + +config DT_HAS_ST_IIS3DHHC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_IIS3DHHC)) + +DT_COMPAT_ST_ILPS22QS := st,ilps22qs + +config DT_HAS_ST_ILPS22QS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_ILPS22QS)) + +DT_COMPAT_ST_ISM330DHCX := st,ism330dhcx + +config DT_HAS_ST_ISM330DHCX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_ISM330DHCX)) + +DT_COMPAT_ST_LIS2DE12 := st,lis2de12 + +config DT_HAS_ST_LIS2DE12_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_LIS2DE12)) + +DT_COMPAT_ST_LIS2DH := st,lis2dh + +config DT_HAS_ST_LIS2DH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_LIS2DH)) + +DT_COMPAT_ST_LIS2DH12 := st,lis2dh12 + +config DT_HAS_ST_LIS2DH12_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_LIS2DH12)) + +DT_COMPAT_ST_LIS2DS12 := st,lis2ds12 + +config DT_HAS_ST_LIS2DS12_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_LIS2DS12)) + +DT_COMPAT_ST_LIS2DU12 := st,lis2du12 + +config DT_HAS_ST_LIS2DU12_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_LIS2DU12)) + +DT_COMPAT_ST_LIS2DUX12 := st,lis2dux12 + +config DT_HAS_ST_LIS2DUX12_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_LIS2DUX12)) + +DT_COMPAT_ST_LIS2DUXS12 := st,lis2duxs12 + +config DT_HAS_ST_LIS2DUXS12_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_LIS2DUXS12)) + +DT_COMPAT_ST_LIS2DW12 := st,lis2dw12 + +config DT_HAS_ST_LIS2DW12_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_LIS2DW12)) + +DT_COMPAT_ST_LIS2MDL := st,lis2mdl + +config DT_HAS_ST_LIS2MDL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_LIS2MDL)) + +DT_COMPAT_ST_LIS3DH := st,lis3dh + +config DT_HAS_ST_LIS3DH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_LIS3DH)) + +DT_COMPAT_ST_LIS3MDL_MAGN := st,lis3mdl-magn + +config DT_HAS_ST_LIS3MDL_MAGN_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_LIS3MDL_MAGN)) + +DT_COMPAT_ST_LPS22DF := st,lps22df + +config DT_HAS_ST_LPS22DF_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_LPS22DF)) + +DT_COMPAT_ST_LPS22HB_PRESS := st,lps22hb-press + +config DT_HAS_ST_LPS22HB_PRESS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_LPS22HB_PRESS)) + +DT_COMPAT_ST_LPS22HH := st,lps22hh + +config DT_HAS_ST_LPS22HH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_LPS22HH)) + +DT_COMPAT_ST_LPS25HB_PRESS := st,lps25hb-press + +config DT_HAS_ST_LPS25HB_PRESS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_LPS25HB_PRESS)) + +DT_COMPAT_ST_LPS28DFW := st,lps28dfw + +config DT_HAS_ST_LPS28DFW_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_LPS28DFW)) + +DT_COMPAT_ST_LSM303AGR_ACCEL := st,lsm303agr-accel + +config DT_HAS_ST_LSM303AGR_ACCEL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_LSM303AGR_ACCEL)) + +DT_COMPAT_ST_LSM303DLHC_ACCEL := st,lsm303dlhc-accel + +config DT_HAS_ST_LSM303DLHC_ACCEL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_LSM303DLHC_ACCEL)) + +DT_COMPAT_ST_LSM303DLHC_MAGN := st,lsm303dlhc-magn + +config DT_HAS_ST_LSM303DLHC_MAGN_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_LSM303DLHC_MAGN)) + +DT_COMPAT_ST_LSM6DS0 := st,lsm6ds0 + +config DT_HAS_ST_LSM6DS0_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_LSM6DS0)) + +DT_COMPAT_ST_LSM6DSL := st,lsm6dsl + +config DT_HAS_ST_LSM6DSL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_LSM6DSL)) + +DT_COMPAT_ST_LSM6DSO := st,lsm6dso + +config DT_HAS_ST_LSM6DSO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_LSM6DSO)) + +DT_COMPAT_ST_LSM6DSO16IS := st,lsm6dso16is + +config DT_HAS_ST_LSM6DSO16IS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_LSM6DSO16IS)) + +DT_COMPAT_ST_LSM6DSO32 := st,lsm6dso32 + +config DT_HAS_ST_LSM6DSO32_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_LSM6DSO32)) + +DT_COMPAT_ST_LSM6DSV16X := st,lsm6dsv16x + +config DT_HAS_ST_LSM6DSV16X_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_LSM6DSV16X)) + +DT_COMPAT_ST_LSM9DS0_GYRO := st,lsm9ds0-gyro + +config DT_HAS_ST_LSM9DS0_GYRO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_LSM9DS0_GYRO)) + +DT_COMPAT_ST_LSM9DS0_MFD := st,lsm9ds0-mfd + +config DT_HAS_ST_LSM9DS0_MFD_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_LSM9DS0_MFD)) + +DT_COMPAT_ST_LSM9DS1 := st,lsm9ds1 + +config DT_HAS_ST_LSM9DS1_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_LSM9DS1)) + +DT_COMPAT_ST_MBOX_STM32_HSEM := st,mbox-stm32-hsem + +config DT_HAS_ST_MBOX_STM32_HSEM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_MBOX_STM32_HSEM)) + +DT_COMPAT_ST_MPXXDTYY := st,mpxxdtyy + +config DT_HAS_ST_MPXXDTYY_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_MPXXDTYY)) + +DT_COMPAT_ST_ST25R3911B := st,st25r3911b + +config DT_HAS_ST_ST25R3911B_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_ST25R3911B)) + +DT_COMPAT_ST_STM32_ADC := st,stm32-adc + +config DT_HAS_ST_STM32_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_ADC)) + +DT_COMPAT_ST_STM32_AES := st,stm32-aes + +config DT_HAS_ST_STM32_AES_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_AES)) + +DT_COMPAT_ST_STM32_BACKUP_SRAM := st,stm32-backup-sram + +config DT_HAS_ST_STM32_BACKUP_SRAM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_BACKUP_SRAM)) + +DT_COMPAT_ST_STM32_BBRAM := st,stm32-bbram + +config DT_HAS_ST_STM32_BBRAM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_BBRAM)) + +DT_COMPAT_ST_STM32_BDMA := st,stm32-bdma + +config DT_HAS_ST_STM32_BDMA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_BDMA)) + +DT_COMPAT_ST_STM32_BXCAN := st,stm32-bxcan + +config DT_HAS_ST_STM32_BXCAN_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_BXCAN)) + +DT_COMPAT_ST_STM32_CCM := st,stm32-ccm + +config DT_HAS_ST_STM32_CCM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_CCM)) + +DT_COMPAT_ST_STM32_CLOCK_MCO := st,stm32-clock-mco + +config DT_HAS_ST_STM32_CLOCK_MCO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_CLOCK_MCO)) + +DT_COMPAT_ST_STM32_CLOCK_MUX := st,stm32-clock-mux + +config DT_HAS_ST_STM32_CLOCK_MUX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_CLOCK_MUX)) + +DT_COMPAT_ST_STM32_COUNTER := st,stm32-counter + +config DT_HAS_ST_STM32_COUNTER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_COUNTER)) + +DT_COMPAT_ST_STM32_CRYP := st,stm32-cryp + +config DT_HAS_ST_STM32_CRYP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_CRYP)) + +DT_COMPAT_ST_STM32_DAC := st,stm32-dac + +config DT_HAS_ST_STM32_DAC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_DAC)) + +DT_COMPAT_ST_STM32_DCMI := st,stm32-dcmi + +config DT_HAS_ST_STM32_DCMI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_DCMI)) + +DT_COMPAT_ST_STM32_DIGI_TEMP := st,stm32-digi-temp + +config DT_HAS_ST_STM32_DIGI_TEMP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_DIGI_TEMP)) + +DT_COMPAT_ST_STM32_DMA := st,stm32-dma + +config DT_HAS_ST_STM32_DMA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_DMA)) + +DT_COMPAT_ST_STM32_DMA_V1 := st,stm32-dma-v1 + +config DT_HAS_ST_STM32_DMA_V1_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_DMA_V1)) + +DT_COMPAT_ST_STM32_DMA_V2 := st,stm32-dma-v2 + +config DT_HAS_ST_STM32_DMA_V2_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_DMA_V2)) + +DT_COMPAT_ST_STM32_DMA_V2BIS := st,stm32-dma-v2bis + +config DT_HAS_ST_STM32_DMA_V2BIS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_DMA_V2BIS)) + +DT_COMPAT_ST_STM32_DMAMUX := st,stm32-dmamux + +config DT_HAS_ST_STM32_DMAMUX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_DMAMUX)) + +DT_COMPAT_ST_STM32_EEPROM := st,stm32-eeprom + +config DT_HAS_ST_STM32_EEPROM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_EEPROM)) + +DT_COMPAT_ST_STM32_ETHERNET := st,stm32-ethernet + +config DT_HAS_ST_STM32_ETHERNET_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_ETHERNET)) + +DT_COMPAT_ST_STM32_EXTI := st,stm32-exti + +config DT_HAS_ST_STM32_EXTI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_EXTI)) + +DT_COMPAT_ST_STM32_FDCAN := st,stm32-fdcan + +config DT_HAS_ST_STM32_FDCAN_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_FDCAN)) + +DT_COMPAT_ST_STM32_FLASH_CONTROLLER := st,stm32-flash-controller + +config DT_HAS_ST_STM32_FLASH_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_FLASH_CONTROLLER)) + +DT_COMPAT_ST_STM32_FMC := st,stm32-fmc + +config DT_HAS_ST_STM32_FMC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_FMC)) + +DT_COMPAT_ST_STM32_FMC_MIPI_DBI := st,stm32-fmc-mipi-dbi + +config DT_HAS_ST_STM32_FMC_MIPI_DBI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_FMC_MIPI_DBI)) + +DT_COMPAT_ST_STM32_FMC_NOR_PSRAM := st,stm32-fmc-nor-psram + +config DT_HAS_ST_STM32_FMC_NOR_PSRAM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_FMC_NOR_PSRAM)) + +DT_COMPAT_ST_STM32_FMC_SDRAM := st,stm32-fmc-sdram + +config DT_HAS_ST_STM32_FMC_SDRAM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_FMC_SDRAM)) + +DT_COMPAT_ST_STM32_GPIO := st,stm32-gpio + +config DT_HAS_ST_STM32_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_GPIO)) + +DT_COMPAT_ST_STM32_HSE_CLOCK := st,stm32-hse-clock + +config DT_HAS_ST_STM32_HSE_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_HSE_CLOCK)) + +DT_COMPAT_ST_STM32_HSEM_MAILBOX := st,stm32-hsem-mailbox + +config DT_HAS_ST_STM32_HSEM_MAILBOX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_HSEM_MAILBOX)) + +DT_COMPAT_ST_STM32_HSI48_CLOCK := st,stm32-hsi48-clock + +config DT_HAS_ST_STM32_HSI48_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_HSI48_CLOCK)) + +DT_COMPAT_ST_STM32_I2C_V1 := st,stm32-i2c-v1 + +config DT_HAS_ST_STM32_I2C_V1_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_I2C_V1)) + +DT_COMPAT_ST_STM32_I2C_V2 := st,stm32-i2c-v2 + +config DT_HAS_ST_STM32_I2C_V2_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_I2C_V2)) + +DT_COMPAT_ST_STM32_I2S := st,stm32-i2s + +config DT_HAS_ST_STM32_I2S_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_I2S)) + +DT_COMPAT_ST_STM32_I3C := st,stm32-i3c + +config DT_HAS_ST_STM32_I3C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_I3C)) + +DT_COMPAT_ST_STM32_IPCC_MAILBOX := st,stm32-ipcc-mailbox + +config DT_HAS_ST_STM32_IPCC_MAILBOX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_IPCC_MAILBOX)) + +DT_COMPAT_ST_STM32_LPTIM := st,stm32-lptim + +config DT_HAS_ST_STM32_LPTIM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_LPTIM)) + +DT_COMPAT_ST_STM32_LPUART := st,stm32-lpuart + +config DT_HAS_ST_STM32_LPUART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_LPUART)) + +DT_COMPAT_ST_STM32_LSE_CLOCK := st,stm32-lse-clock + +config DT_HAS_ST_STM32_LSE_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_LSE_CLOCK)) + +DT_COMPAT_ST_STM32_LTDC := st,stm32-ltdc + +config DT_HAS_ST_STM32_LTDC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_LTDC)) + +DT_COMPAT_ST_STM32_MDIO := st,stm32-mdio + +config DT_HAS_ST_STM32_MDIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_MDIO)) + +DT_COMPAT_ST_STM32_MIPI_DSI := st,stm32-mipi-dsi + +config DT_HAS_ST_STM32_MIPI_DSI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_MIPI_DSI)) + +DT_COMPAT_ST_STM32_MSI_CLOCK := st,stm32-msi-clock + +config DT_HAS_ST_STM32_MSI_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_MSI_CLOCK)) + +DT_COMPAT_ST_STM32_NV_FLASH := st,stm32-nv-flash + +config DT_HAS_ST_STM32_NV_FLASH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_NV_FLASH)) + +DT_COMPAT_ST_STM32_OSPI := st,stm32-ospi + +config DT_HAS_ST_STM32_OSPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_OSPI)) + +DT_COMPAT_ST_STM32_OSPI_NOR := st,stm32-ospi-nor + +config DT_HAS_ST_STM32_OSPI_NOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_OSPI_NOR)) + +DT_COMPAT_ST_STM32_OTGFS := st,stm32-otgfs + +config DT_HAS_ST_STM32_OTGFS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_OTGFS)) + +DT_COMPAT_ST_STM32_OTGHS := st,stm32-otghs + +config DT_HAS_ST_STM32_OTGHS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_OTGHS)) + +DT_COMPAT_ST_STM32_PINCTRL := st,stm32-pinctrl + +config DT_HAS_ST_STM32_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_PINCTRL)) + +DT_COMPAT_ST_STM32_PWM := st,stm32-pwm + +config DT_HAS_ST_STM32_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_PWM)) + +DT_COMPAT_ST_STM32_PWR := st,stm32-pwr + +config DT_HAS_ST_STM32_PWR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_PWR)) + +DT_COMPAT_ST_STM32_QDEC := st,stm32-qdec + +config DT_HAS_ST_STM32_QDEC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_QDEC)) + +DT_COMPAT_ST_STM32_QSPI := st,stm32-qspi + +config DT_HAS_ST_STM32_QSPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_QSPI)) + +DT_COMPAT_ST_STM32_QSPI_NOR := st,stm32-qspi-nor + +config DT_HAS_ST_STM32_QSPI_NOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_QSPI_NOR)) + +DT_COMPAT_ST_STM32_RCC := st,stm32-rcc + +config DT_HAS_ST_STM32_RCC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_RCC)) + +DT_COMPAT_ST_STM32_RCC_RCTL := st,stm32-rcc-rctl + +config DT_HAS_ST_STM32_RCC_RCTL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_RCC_RCTL)) + +DT_COMPAT_ST_STM32_RNG := st,stm32-rng + +config DT_HAS_ST_STM32_RNG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_RNG)) + +DT_COMPAT_ST_STM32_RTC := st,stm32-rtc + +config DT_HAS_ST_STM32_RTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_RTC)) + +DT_COMPAT_ST_STM32_SDMMC := st,stm32-sdmmc + +config DT_HAS_ST_STM32_SDMMC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_SDMMC)) + +DT_COMPAT_ST_STM32_SMBUS := st,stm32-smbus + +config DT_HAS_ST_STM32_SMBUS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_SMBUS)) + +DT_COMPAT_ST_STM32_SPI := st,stm32-spi + +config DT_HAS_ST_STM32_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_SPI)) + +DT_COMPAT_ST_STM32_SPI_FIFO := st,stm32-spi-fifo + +config DT_HAS_ST_STM32_SPI_FIFO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_SPI_FIFO)) + +DT_COMPAT_ST_STM32_SPI_HOST_CMD := st,stm32-spi-host-cmd + +config DT_HAS_ST_STM32_SPI_HOST_CMD_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_SPI_HOST_CMD)) + +DT_COMPAT_ST_STM32_SPI_SUBGHZ := st,stm32-spi-subghz + +config DT_HAS_ST_STM32_SPI_SUBGHZ_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_SPI_SUBGHZ)) + +DT_COMPAT_ST_STM32_TEMP := st,stm32-temp + +config DT_HAS_ST_STM32_TEMP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_TEMP)) + +DT_COMPAT_ST_STM32_TEMP_CAL := st,stm32-temp-cal + +config DT_HAS_ST_STM32_TEMP_CAL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_TEMP_CAL)) + +DT_COMPAT_ST_STM32_TIMERS := st,stm32-timers + +config DT_HAS_ST_STM32_TIMERS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_TIMERS)) + +DT_COMPAT_ST_STM32_UART := st,stm32-uart + +config DT_HAS_ST_STM32_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_UART)) + +DT_COMPAT_ST_STM32_UCPD := st,stm32-ucpd + +config DT_HAS_ST_STM32_UCPD_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_UCPD)) + +DT_COMPAT_ST_STM32_USART := st,stm32-usart + +config DT_HAS_ST_STM32_USART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_USART)) + +DT_COMPAT_ST_STM32_USB := st,stm32-usb + +config DT_HAS_ST_STM32_USB_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_USB)) + +DT_COMPAT_ST_STM32_USBPHYC := st,stm32-usbphyc + +config DT_HAS_ST_STM32_USBPHYC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_USBPHYC)) + +DT_COMPAT_ST_STM32_VBAT := st,stm32-vbat + +config DT_HAS_ST_STM32_VBAT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_VBAT)) + +DT_COMPAT_ST_STM32_VREF := st,stm32-vref + +config DT_HAS_ST_STM32_VREF_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_VREF)) + +DT_COMPAT_ST_STM32_WATCHDOG := st,stm32-watchdog + +config DT_HAS_ST_STM32_WATCHDOG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_WATCHDOG)) + +DT_COMPAT_ST_STM32_WINDOW_WATCHDOG := st,stm32-window-watchdog + +config DT_HAS_ST_STM32_WINDOW_WATCHDOG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_WINDOW_WATCHDOG)) + +DT_COMPAT_ST_STM32_XSPI := st,stm32-xspi + +config DT_HAS_ST_STM32_XSPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_XSPI)) + +DT_COMPAT_ST_STM32_XSPI_NOR := st,stm32-xspi-nor + +config DT_HAS_ST_STM32_XSPI_NOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_XSPI_NOR)) + +DT_COMPAT_ST_STM32C0_HSI_CLOCK := st,stm32c0-hsi-clock + +config DT_HAS_ST_STM32C0_HSI_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32C0_HSI_CLOCK)) + +DT_COMPAT_ST_STM32C0_TEMP_CAL := st,stm32c0-temp-cal + +config DT_HAS_ST_STM32C0_TEMP_CAL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32C0_TEMP_CAL)) + +DT_COMPAT_ST_STM32F0_PLL_CLOCK := st,stm32f0-pll-clock + +config DT_HAS_ST_STM32F0_PLL_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32F0_PLL_CLOCK)) + +DT_COMPAT_ST_STM32F0_RCC := st,stm32f0-rcc + +config DT_HAS_ST_STM32F0_RCC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32F0_RCC)) + +DT_COMPAT_ST_STM32F1_ADC := st,stm32f1-adc + +config DT_HAS_ST_STM32F1_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32F1_ADC)) + +DT_COMPAT_ST_STM32F1_CLOCK_MCO := st,stm32f1-clock-mco + +config DT_HAS_ST_STM32F1_CLOCK_MCO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32F1_CLOCK_MCO)) + +DT_COMPAT_ST_STM32F1_FLASH_CONTROLLER := st,stm32f1-flash-controller + +config DT_HAS_ST_STM32F1_FLASH_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32F1_FLASH_CONTROLLER)) + +DT_COMPAT_ST_STM32F1_PINCTRL := st,stm32f1-pinctrl + +config DT_HAS_ST_STM32F1_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32F1_PINCTRL)) + +DT_COMPAT_ST_STM32F1_PLL_CLOCK := st,stm32f1-pll-clock + +config DT_HAS_ST_STM32F1_PLL_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32F1_PLL_CLOCK)) + +DT_COMPAT_ST_STM32F1_RCC := st,stm32f1-rcc + +config DT_HAS_ST_STM32F1_RCC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32F1_RCC)) + +DT_COMPAT_ST_STM32F100_PLL_CLOCK := st,stm32f100-pll-clock + +config DT_HAS_ST_STM32F100_PLL_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32F100_PLL_CLOCK)) + +DT_COMPAT_ST_STM32F105_PLL_CLOCK := st,stm32f105-pll-clock + +config DT_HAS_ST_STM32F105_PLL_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32F105_PLL_CLOCK)) + +DT_COMPAT_ST_STM32F105_PLL2_CLOCK := st,stm32f105-pll2-clock + +config DT_HAS_ST_STM32F105_PLL2_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32F105_PLL2_CLOCK)) + +DT_COMPAT_ST_STM32F2_FLASH_CONTROLLER := st,stm32f2-flash-controller + +config DT_HAS_ST_STM32F2_FLASH_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32F2_FLASH_CONTROLLER)) + +DT_COMPAT_ST_STM32F2_PLL_CLOCK := st,stm32f2-pll-clock + +config DT_HAS_ST_STM32F2_PLL_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32F2_PLL_CLOCK)) + +DT_COMPAT_ST_STM32F3_RCC := st,stm32f3-rcc + +config DT_HAS_ST_STM32F3_RCC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32F3_RCC)) + +DT_COMPAT_ST_STM32F4_ADC := st,stm32f4-adc + +config DT_HAS_ST_STM32F4_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32F4_ADC)) + +DT_COMPAT_ST_STM32F4_FLASH_CONTROLLER := st,stm32f4-flash-controller + +config DT_HAS_ST_STM32F4_FLASH_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32F4_FLASH_CONTROLLER)) + +DT_COMPAT_ST_STM32F4_FSOTG := st,stm32f4-fsotg + +config DT_HAS_ST_STM32F4_FSOTG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32F4_FSOTG)) + +DT_COMPAT_ST_STM32F4_NV_FLASH := st,stm32f4-nv-flash + +config DT_HAS_ST_STM32F4_NV_FLASH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32F4_NV_FLASH)) + +DT_COMPAT_ST_STM32F4_PLL_CLOCK := st,stm32f4-pll-clock + +config DT_HAS_ST_STM32F4_PLL_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32F4_PLL_CLOCK)) + +DT_COMPAT_ST_STM32F4_PLLI2S_CLOCK := st,stm32f4-plli2s-clock + +config DT_HAS_ST_STM32F4_PLLI2S_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32F4_PLLI2S_CLOCK)) + +DT_COMPAT_ST_STM32F411_PLLI2S_CLOCK := st,stm32f411-plli2s-clock + +config DT_HAS_ST_STM32F411_PLLI2S_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32F411_PLLI2S_CLOCK)) + +DT_COMPAT_ST_STM32F7_FLASH_CONTROLLER := st,stm32f7-flash-controller + +config DT_HAS_ST_STM32F7_FLASH_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32F7_FLASH_CONTROLLER)) + +DT_COMPAT_ST_STM32F7_PLL_CLOCK := st,stm32f7-pll-clock + +config DT_HAS_ST_STM32F7_PLL_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32F7_PLL_CLOCK)) + +DT_COMPAT_ST_STM32G0_EXTI := st,stm32g0-exti + +config DT_HAS_ST_STM32G0_EXTI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32G0_EXTI)) + +DT_COMPAT_ST_STM32G0_FLASH_CONTROLLER := st,stm32g0-flash-controller + +config DT_HAS_ST_STM32G0_FLASH_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32G0_FLASH_CONTROLLER)) + +DT_COMPAT_ST_STM32G0_HSI_CLOCK := st,stm32g0-hsi-clock + +config DT_HAS_ST_STM32G0_HSI_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32G0_HSI_CLOCK)) + +DT_COMPAT_ST_STM32G0_PLL_CLOCK := st,stm32g0-pll-clock + +config DT_HAS_ST_STM32G0_PLL_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32G0_PLL_CLOCK)) + +DT_COMPAT_ST_STM32G4_FLASH_CONTROLLER := st,stm32g4-flash-controller + +config DT_HAS_ST_STM32G4_FLASH_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32G4_FLASH_CONTROLLER)) + +DT_COMPAT_ST_STM32G4_PLL_CLOCK := st,stm32g4-pll-clock + +config DT_HAS_ST_STM32G4_PLL_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32G4_PLL_CLOCK)) + +DT_COMPAT_ST_STM32H7_ETHERNET := st,stm32h7-ethernet + +config DT_HAS_ST_STM32H7_ETHERNET_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32H7_ETHERNET)) + +DT_COMPAT_ST_STM32H7_FDCAN := st,stm32h7-fdcan + +config DT_HAS_ST_STM32H7_FDCAN_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32H7_FDCAN)) + +DT_COMPAT_ST_STM32H7_FLASH_CONTROLLER := st,stm32h7-flash-controller + +config DT_HAS_ST_STM32H7_FLASH_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32H7_FLASH_CONTROLLER)) + +DT_COMPAT_ST_STM32H7_FMC := st,stm32h7-fmc + +config DT_HAS_ST_STM32H7_FMC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32H7_FMC)) + +DT_COMPAT_ST_STM32H7_HSI_CLOCK := st,stm32h7-hsi-clock + +config DT_HAS_ST_STM32H7_HSI_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32H7_HSI_CLOCK)) + +DT_COMPAT_ST_STM32H7_I2S := st,stm32h7-i2s + +config DT_HAS_ST_STM32H7_I2S_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32H7_I2S)) + +DT_COMPAT_ST_STM32H7_PLL_CLOCK := st,stm32h7-pll-clock + +config DT_HAS_ST_STM32H7_PLL_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32H7_PLL_CLOCK)) + +DT_COMPAT_ST_STM32H7_RCC := st,stm32h7-rcc + +config DT_HAS_ST_STM32H7_RCC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32H7_RCC)) + +DT_COMPAT_ST_STM32H7_SPI := st,stm32h7-spi + +config DT_HAS_ST_STM32H7_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32H7_SPI)) + +DT_COMPAT_ST_STM32H7RS_EXTI := st,stm32h7rs-exti + +config DT_HAS_ST_STM32H7RS_EXTI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32H7RS_EXTI)) + +DT_COMPAT_ST_STM32H7RS_PLL_CLOCK := st,stm32h7rs-pll-clock + +config DT_HAS_ST_STM32H7RS_PLL_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32H7RS_PLL_CLOCK)) + +DT_COMPAT_ST_STM32H7RS_RCC := st,stm32h7rs-rcc + +config DT_HAS_ST_STM32H7RS_RCC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32H7RS_RCC)) + +DT_COMPAT_ST_STM32L0_MSI_CLOCK := st,stm32l0-msi-clock + +config DT_HAS_ST_STM32L0_MSI_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32L0_MSI_CLOCK)) + +DT_COMPAT_ST_STM32L0_NV_FLASH := st,stm32l0-nv-flash + +config DT_HAS_ST_STM32L0_NV_FLASH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32L0_NV_FLASH)) + +DT_COMPAT_ST_STM32L0_PLL_CLOCK := st,stm32l0-pll-clock + +config DT_HAS_ST_STM32L0_PLL_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32L0_PLL_CLOCK)) + +DT_COMPAT_ST_STM32L4_AES := st,stm32l4-aes + +config DT_HAS_ST_STM32L4_AES_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32L4_AES)) + +DT_COMPAT_ST_STM32L4_FLASH_CONTROLLER := st,stm32l4-flash-controller + +config DT_HAS_ST_STM32L4_FLASH_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32L4_FLASH_CONTROLLER)) + +DT_COMPAT_ST_STM32L4_PLL_CLOCK := st,stm32l4-pll-clock + +config DT_HAS_ST_STM32L4_PLL_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32L4_PLL_CLOCK)) + +DT_COMPAT_ST_STM32L5_FLASH_CONTROLLER := st,stm32l5-flash-controller + +config DT_HAS_ST_STM32L5_FLASH_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32L5_FLASH_CONTROLLER)) + +DT_COMPAT_ST_STM32MP1_RCC := st,stm32mp1-rcc + +config DT_HAS_ST_STM32MP1_RCC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32MP1_RCC)) + +DT_COMPAT_ST_STM32U0_PLL_CLOCK := st,stm32u0-pll-clock + +config DT_HAS_ST_STM32U0_PLL_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32U0_PLL_CLOCK)) + +DT_COMPAT_ST_STM32U5_DMA := st,stm32u5-dma + +config DT_HAS_ST_STM32U5_DMA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32U5_DMA)) + +DT_COMPAT_ST_STM32U5_MSI_CLOCK := st,stm32u5-msi-clock + +config DT_HAS_ST_STM32U5_MSI_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32U5_MSI_CLOCK)) + +DT_COMPAT_ST_STM32U5_OTGHS_PHY := st,stm32u5-otghs-phy + +config DT_HAS_ST_STM32U5_OTGHS_PHY_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32U5_OTGHS_PHY)) + +DT_COMPAT_ST_STM32U5_PLL_CLOCK := st,stm32u5-pll-clock + +config DT_HAS_ST_STM32U5_PLL_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32U5_PLL_CLOCK)) + +DT_COMPAT_ST_STM32U5_RCC := st,stm32u5-rcc + +config DT_HAS_ST_STM32U5_RCC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32U5_RCC)) + +DT_COMPAT_ST_STM32WB_FLASH_CONTROLLER := st,stm32wb-flash-controller + +config DT_HAS_ST_STM32WB_FLASH_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32WB_FLASH_CONTROLLER)) + +DT_COMPAT_ST_STM32WB_PLL_CLOCK := st,stm32wb-pll-clock + +config DT_HAS_ST_STM32WB_PLL_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32WB_PLL_CLOCK)) + +DT_COMPAT_ST_STM32WB_RCC := st,stm32wb-rcc + +config DT_HAS_ST_STM32WB_RCC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32WB_RCC)) + +DT_COMPAT_ST_STM32WB_RF := st,stm32wb-rf + +config DT_HAS_ST_STM32WB_RF_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32WB_RF)) + +DT_COMPAT_ST_STM32WB0_ADC := st,stm32wb0-adc + +config DT_HAS_ST_STM32WB0_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32WB0_ADC)) + +DT_COMPAT_ST_STM32WB0_FLASH_CONTROLLER := st,stm32wb0-flash-controller + +config DT_HAS_ST_STM32WB0_FLASH_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32WB0_FLASH_CONTROLLER)) + +DT_COMPAT_ST_STM32WB0_GPIO_INTC := st,stm32wb0-gpio-intc + +config DT_HAS_ST_STM32WB0_GPIO_INTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32WB0_GPIO_INTC)) + +DT_COMPAT_ST_STM32WB0_LSI_CLOCK := st,stm32wb0-lsi-clock + +config DT_HAS_ST_STM32WB0_LSI_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32WB0_LSI_CLOCK)) + +DT_COMPAT_ST_STM32WB0_PWR := st,stm32wb0-pwr + +config DT_HAS_ST_STM32WB0_PWR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32WB0_PWR)) + +DT_COMPAT_ST_STM32WB0_RCC := st,stm32wb0-rcc + +config DT_HAS_ST_STM32WB0_RCC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32WB0_RCC)) + +DT_COMPAT_ST_STM32WBA_FLASH_CONTROLLER := st,stm32wba-flash-controller + +config DT_HAS_ST_STM32WBA_FLASH_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32WBA_FLASH_CONTROLLER)) + +DT_COMPAT_ST_STM32WBA_HSE_CLOCK := st,stm32wba-hse-clock + +config DT_HAS_ST_STM32WBA_HSE_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32WBA_HSE_CLOCK)) + +DT_COMPAT_ST_STM32WBA_PLL_CLOCK := st,stm32wba-pll-clock + +config DT_HAS_ST_STM32WBA_PLL_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32WBA_PLL_CLOCK)) + +DT_COMPAT_ST_STM32WBA_RCC := st,stm32wba-rcc + +config DT_HAS_ST_STM32WBA_RCC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32WBA_RCC)) + +DT_COMPAT_ST_STM32WL_HSE_CLOCK := st,stm32wl-hse-clock + +config DT_HAS_ST_STM32WL_HSE_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32WL_HSE_CLOCK)) + +DT_COMPAT_ST_STM32WL_RCC := st,stm32wl-rcc + +config DT_HAS_ST_STM32WL_RCC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32WL_RCC)) + +DT_COMPAT_ST_STM32WL_SUBGHZ_RADIO := st,stm32wl-subghz-radio + +config DT_HAS_ST_STM32WL_SUBGHZ_RADIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32WL_SUBGHZ_RADIO)) + +DT_COMPAT_ST_STMPE1600 := st,stmpe1600 + +config DT_HAS_ST_STMPE1600_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STMPE1600)) + +DT_COMPAT_ST_STMPE811 := st,stmpe811 + +config DT_HAS_ST_STMPE811_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STMPE811)) + +DT_COMPAT_ST_STTS22H := st,stts22h + +config DT_HAS_ST_STTS22H_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STTS22H)) + +DT_COMPAT_ST_STTS751 := st,stts751 + +config DT_HAS_ST_STTS751_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STTS751)) + +DT_COMPAT_ST_VL53L0X := st,vl53l0x + +config DT_HAS_ST_VL53L0X_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_VL53L0X)) + +DT_COMPAT_ST_VL53L1X := st,vl53l1x + +config DT_HAS_ST_VL53L1X_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_VL53L1X)) + +DT_COMPAT_ST_MORPHO_HEADER := st-morpho-header + +config DT_HAS_ST_MORPHO_HEADER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_MORPHO_HEADER)) + +DT_COMPAT_STARFIVE_JH7100_CLINT := starfive,jh7100-clint + +config DT_HAS_STARFIVE_JH7100_CLINT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_STARFIVE_JH7100_CLINT)) + +DT_COMPAT_STEMMA_QT_CONNECTOR := stemma-qt-connector + +config DT_HAS_STEMMA_QT_CONNECTOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_STEMMA_QT_CONNECTOR)) + +DT_COMPAT_SWERV_PIC := swerv,pic + +config DT_HAS_SWERV_PIC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SWERV_PIC)) + +DT_COMPAT_SWIR_HL7800 := swir,hl7800 + +config DT_HAS_SWIR_HL7800_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SWIR_HL7800)) + +DT_COMPAT_SWJ_CONNECTOR := swj-connector + +config DT_HAS_SWJ_CONNECTOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SWJ_CONNECTOR)) + +DT_COMPAT_SYSCON := syscon + +config DT_HAS_SYSCON_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SYSCON)) + +DT_COMPAT_TDK_NTCG163JF103FT1 := tdk,ntcg163jf103ft1 + +config DT_HAS_TDK_NTCG163JF103FT1_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TDK_NTCG163JF103FT1)) + +DT_COMPAT_TELINK_B91 := telink,b91 + +config DT_HAS_TELINK_B91_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TELINK_B91)) + +DT_COMPAT_TELINK_B91_ADC := telink,b91-adc + +config DT_HAS_TELINK_B91_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TELINK_B91_ADC)) + +DT_COMPAT_TELINK_B91_FLASH_CONTROLLER := telink,b91-flash-controller + +config DT_HAS_TELINK_B91_FLASH_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TELINK_B91_FLASH_CONTROLLER)) + +DT_COMPAT_TELINK_B91_GPIO := telink,b91-gpio + +config DT_HAS_TELINK_B91_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TELINK_B91_GPIO)) + +DT_COMPAT_TELINK_B91_I2C := telink,b91-i2c + +config DT_HAS_TELINK_B91_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TELINK_B91_I2C)) + +DT_COMPAT_TELINK_B91_PINCTRL := telink,b91-pinctrl + +config DT_HAS_TELINK_B91_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TELINK_B91_PINCTRL)) + +DT_COMPAT_TELINK_B91_POWER := telink,b91-power + +config DT_HAS_TELINK_B91_POWER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TELINK_B91_POWER)) + +DT_COMPAT_TELINK_B91_PWM := telink,b91-pwm + +config DT_HAS_TELINK_B91_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TELINK_B91_PWM)) + +DT_COMPAT_TELINK_B91_SPI := telink,b91-spi + +config DT_HAS_TELINK_B91_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TELINK_B91_SPI)) + +DT_COMPAT_TELINK_B91_TRNG := telink,b91-trng + +config DT_HAS_TELINK_B91_TRNG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TELINK_B91_TRNG)) + +DT_COMPAT_TELINK_B91_UART := telink,b91-uart + +config DT_HAS_TELINK_B91_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TELINK_B91_UART)) + +DT_COMPAT_TELINK_B91_ZB := telink,b91-zb + +config DT_HAS_TELINK_B91_ZB_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TELINK_B91_ZB)) + +DT_COMPAT_TELINK_MACHINE_TIMER := telink,machine-timer + +config DT_HAS_TELINK_MACHINE_TIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TELINK_MACHINE_TIMER)) + +DT_COMPAT_TELIT_ME310G1 := telit,me310g1 + +config DT_HAS_TELIT_ME310G1_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TELIT_ME310G1)) + +DT_COMPAT_TELIT_ME910G1 := telit,me910g1 + +config DT_HAS_TELIT_ME910G1_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TELIT_ME910G1)) + +DT_COMPAT_TEST_GPIO_ENABLE_DISABLE_INTERRUPT := test-gpio-enable-disable-interrupt + +config DT_HAS_TEST_GPIO_ENABLE_DISABLE_INTERRUPT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TEST_GPIO_ENABLE_DISABLE_INTERRUPT)) + +DT_COMPAT_TI_ADS1013 := ti,ads1013 + +config DT_HAS_TI_ADS1013_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_ADS1013)) + +DT_COMPAT_TI_ADS1014 := ti,ads1014 + +config DT_HAS_TI_ADS1014_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_ADS1014)) + +DT_COMPAT_TI_ADS1015 := ti,ads1015 + +config DT_HAS_TI_ADS1015_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_ADS1015)) + +DT_COMPAT_TI_ADS1112 := ti,ads1112 + +config DT_HAS_TI_ADS1112_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_ADS1112)) + +DT_COMPAT_TI_ADS1113 := ti,ads1113 + +config DT_HAS_TI_ADS1113_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_ADS1113)) + +DT_COMPAT_TI_ADS1114 := ti,ads1114 + +config DT_HAS_TI_ADS1114_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_ADS1114)) + +DT_COMPAT_TI_ADS1115 := ti,ads1115 + +config DT_HAS_TI_ADS1115_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_ADS1115)) + +DT_COMPAT_TI_ADS1119 := ti,ads1119 + +config DT_HAS_TI_ADS1119_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_ADS1119)) + +DT_COMPAT_TI_ADS114S08 := ti,ads114s08 + +config DT_HAS_TI_ADS114S08_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_ADS114S08)) + +DT_COMPAT_TI_ADS114S0X_GPIO := ti,ads114s0x-gpio + +config DT_HAS_TI_ADS114S0X_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_ADS114S0X_GPIO)) + +DT_COMPAT_TI_ADS131M02 := ti,ads131m02 + +config DT_HAS_TI_ADS131M02_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_ADS131M02)) + +DT_COMPAT_TI_ADS7052 := ti,ads7052 + +config DT_HAS_TI_ADS7052_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_ADS7052)) + +DT_COMPAT_TI_AM654_TIMER := ti,am654-timer + +config DT_HAS_TI_AM654_TIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_AM654_TIMER)) + +DT_COMPAT_TI_BOOSTERPACK_HEADER := ti,boosterpack-header + +config DT_HAS_TI_BOOSTERPACK_HEADER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_BOOSTERPACK_HEADER)) + +DT_COMPAT_TI_BQ24190 := ti,bq24190 + +config DT_HAS_TI_BQ24190_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_BQ24190)) + +DT_COMPAT_TI_BQ25180 := ti,bq25180 + +config DT_HAS_TI_BQ25180_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_BQ25180)) + +DT_COMPAT_TI_BQ274XX := ti,bq274xx + +config DT_HAS_TI_BQ274XX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_BQ274XX)) + +DT_COMPAT_TI_BQ27Z746 := ti,bq27z746 + +config DT_HAS_TI_BQ27Z746_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_BQ27Z746)) + +DT_COMPAT_TI_CC1200 := ti,cc1200 + +config DT_HAS_TI_CC1200_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_CC1200)) + +DT_COMPAT_TI_CC13XX_CC26XX_ADC := ti,cc13xx-cc26xx-adc + +config DT_HAS_TI_CC13XX_CC26XX_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_CC13XX_CC26XX_ADC)) + +DT_COMPAT_TI_CC13XX_CC26XX_FLASH_CONTROLLER := ti,cc13xx-cc26xx-flash-controller + +config DT_HAS_TI_CC13XX_CC26XX_FLASH_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_CC13XX_CC26XX_FLASH_CONTROLLER)) + +DT_COMPAT_TI_CC13XX_CC26XX_GPIO := ti,cc13xx-cc26xx-gpio + +config DT_HAS_TI_CC13XX_CC26XX_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_CC13XX_CC26XX_GPIO)) + +DT_COMPAT_TI_CC13XX_CC26XX_I2C := ti,cc13xx-cc26xx-i2c + +config DT_HAS_TI_CC13XX_CC26XX_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_CC13XX_CC26XX_I2C)) + +DT_COMPAT_TI_CC13XX_CC26XX_IEEE802154 := ti,cc13xx-cc26xx-ieee802154 + +config DT_HAS_TI_CC13XX_CC26XX_IEEE802154_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_CC13XX_CC26XX_IEEE802154)) + +DT_COMPAT_TI_CC13XX_CC26XX_IEEE802154_SUBGHZ := ti,cc13xx-cc26xx-ieee802154-subghz + +config DT_HAS_TI_CC13XX_CC26XX_IEEE802154_SUBGHZ_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_CC13XX_CC26XX_IEEE802154_SUBGHZ)) + +DT_COMPAT_TI_CC13XX_CC26XX_PINCTRL := ti,cc13xx-cc26xx-pinctrl + +config DT_HAS_TI_CC13XX_CC26XX_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_CC13XX_CC26XX_PINCTRL)) + +DT_COMPAT_TI_CC13XX_CC26XX_RADIO := ti,cc13xx-cc26xx-radio + +config DT_HAS_TI_CC13XX_CC26XX_RADIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_CC13XX_CC26XX_RADIO)) + +DT_COMPAT_TI_CC13XX_CC26XX_RTC_TIMER := ti,cc13xx-cc26xx-rtc-timer + +config DT_HAS_TI_CC13XX_CC26XX_RTC_TIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_CC13XX_CC26XX_RTC_TIMER)) + +DT_COMPAT_TI_CC13XX_CC26XX_SPI := ti,cc13xx-cc26xx-spi + +config DT_HAS_TI_CC13XX_CC26XX_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_CC13XX_CC26XX_SPI)) + +DT_COMPAT_TI_CC13XX_CC26XX_TIMER := ti,cc13xx-cc26xx-timer + +config DT_HAS_TI_CC13XX_CC26XX_TIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_CC13XX_CC26XX_TIMER)) + +DT_COMPAT_TI_CC13XX_CC26XX_TIMER_PWM := ti,cc13xx-cc26xx-timer-pwm + +config DT_HAS_TI_CC13XX_CC26XX_TIMER_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_CC13XX_CC26XX_TIMER_PWM)) + +DT_COMPAT_TI_CC13XX_CC26XX_TRNG := ti,cc13xx-cc26xx-trng + +config DT_HAS_TI_CC13XX_CC26XX_TRNG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_CC13XX_CC26XX_TRNG)) + +DT_COMPAT_TI_CC13XX_CC26XX_UART := ti,cc13xx-cc26xx-uart + +config DT_HAS_TI_CC13XX_CC26XX_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_CC13XX_CC26XX_UART)) + +DT_COMPAT_TI_CC13XX_CC26XX_WATCHDOG := ti,cc13xx-cc26xx-watchdog + +config DT_HAS_TI_CC13XX_CC26XX_WATCHDOG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_CC13XX_CC26XX_WATCHDOG)) + +DT_COMPAT_TI_CC2520 := ti,cc2520 + +config DT_HAS_TI_CC2520_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_CC2520)) + +DT_COMPAT_TI_CC32XX_ADC := ti,cc32xx-adc + +config DT_HAS_TI_CC32XX_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_CC32XX_ADC)) + +DT_COMPAT_TI_CC32XX_GPIO := ti,cc32xx-gpio + +config DT_HAS_TI_CC32XX_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_CC32XX_GPIO)) + +DT_COMPAT_TI_CC32XX_I2C := ti,cc32xx-i2c + +config DT_HAS_TI_CC32XX_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_CC32XX_I2C)) + +DT_COMPAT_TI_CC32XX_PINCTRL := ti,cc32xx-pinctrl + +config DT_HAS_TI_CC32XX_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_CC32XX_PINCTRL)) + +DT_COMPAT_TI_CC32XX_UART := ti,cc32xx-uart + +config DT_HAS_TI_CC32XX_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_CC32XX_UART)) + +DT_COMPAT_TI_CC32XX_WATCHDOG := ti,cc32xx-watchdog + +config DT_HAS_TI_CC32XX_WATCHDOG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_CC32XX_WATCHDOG)) + +DT_COMPAT_TI_DAC43608 := ti,dac43608 + +config DT_HAS_TI_DAC43608_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_DAC43608)) + +DT_COMPAT_TI_DAC53608 := ti,dac53608 + +config DT_HAS_TI_DAC53608_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_DAC53608)) + +DT_COMPAT_TI_DAC60508 := ti,dac60508 + +config DT_HAS_TI_DAC60508_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_DAC60508)) + +DT_COMPAT_TI_DAC70508 := ti,dac70508 + +config DT_HAS_TI_DAC70508_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_DAC70508)) + +DT_COMPAT_TI_DAC80508 := ti,dac80508 + +config DT_HAS_TI_DAC80508_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_DAC80508)) + +DT_COMPAT_TI_DACX0501 := ti,dacx0501 + +config DT_HAS_TI_DACX0501_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_DACX0501)) + +DT_COMPAT_TI_DAVINCI_GPIO := ti,davinci-gpio + +config DT_HAS_TI_DAVINCI_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_DAVINCI_GPIO)) + +DT_COMPAT_TI_DAVINCI_GPIO_NEXUS := ti,davinci-gpio-nexus + +config DT_HAS_TI_DAVINCI_GPIO_NEXUS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_DAVINCI_GPIO_NEXUS)) + +DT_COMPAT_TI_DP83825 := ti,dp83825 + +config DT_HAS_TI_DP83825_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_DP83825)) + +DT_COMPAT_TI_DRV2605 := ti,drv2605 + +config DT_HAS_TI_DRV2605_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_DRV2605)) + +DT_COMPAT_TI_DRV8424 := ti,drv8424 + +config DT_HAS_TI_DRV8424_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_DRV8424)) + +DT_COMPAT_TI_FDC2X1X := ti,fdc2x1x + +config DT_HAS_TI_FDC2X1X_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_FDC2X1X)) + +DT_COMPAT_TI_HDC := ti,hdc + +config DT_HAS_TI_HDC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_HDC)) + +DT_COMPAT_TI_HDC2010 := ti,hdc2010 + +config DT_HAS_TI_HDC2010_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_HDC2010)) + +DT_COMPAT_TI_HDC2021 := ti,hdc2021 + +config DT_HAS_TI_HDC2021_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_HDC2021)) + +DT_COMPAT_TI_HDC2022 := ti,hdc2022 + +config DT_HAS_TI_HDC2022_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_HDC2022)) + +DT_COMPAT_TI_HDC2080 := ti,hdc2080 + +config DT_HAS_TI_HDC2080_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_HDC2080)) + +DT_COMPAT_TI_INA219 := ti,ina219 + +config DT_HAS_TI_INA219_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_INA219)) + +DT_COMPAT_TI_INA226 := ti,ina226 + +config DT_HAS_TI_INA226_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_INA226)) + +DT_COMPAT_TI_INA230 := ti,ina230 + +config DT_HAS_TI_INA230_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_INA230)) + +DT_COMPAT_TI_INA236 := ti,ina236 + +config DT_HAS_TI_INA236_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_INA236)) + +DT_COMPAT_TI_INA237 := ti,ina237 + +config DT_HAS_TI_INA237_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_INA237)) + +DT_COMPAT_TI_INA3221 := ti,ina3221 + +config DT_HAS_TI_INA3221_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_INA3221)) + +DT_COMPAT_TI_K3_PINCTRL := ti,k3-pinctrl + +config DT_HAS_TI_K3_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_K3_PINCTRL)) + +DT_COMPAT_TI_LMP90077 := ti,lmp90077 + +config DT_HAS_TI_LMP90077_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_LMP90077)) + +DT_COMPAT_TI_LMP90078 := ti,lmp90078 + +config DT_HAS_TI_LMP90078_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_LMP90078)) + +DT_COMPAT_TI_LMP90079 := ti,lmp90079 + +config DT_HAS_TI_LMP90079_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_LMP90079)) + +DT_COMPAT_TI_LMP90080 := ti,lmp90080 + +config DT_HAS_TI_LMP90080_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_LMP90080)) + +DT_COMPAT_TI_LMP90097 := ti,lmp90097 + +config DT_HAS_TI_LMP90097_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_LMP90097)) + +DT_COMPAT_TI_LMP90098 := ti,lmp90098 + +config DT_HAS_TI_LMP90098_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_LMP90098)) + +DT_COMPAT_TI_LMP90099 := ti,lmp90099 + +config DT_HAS_TI_LMP90099_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_LMP90099)) + +DT_COMPAT_TI_LMP90100 := ti,lmp90100 + +config DT_HAS_TI_LMP90100_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_LMP90100)) + +DT_COMPAT_TI_LMP90XXX_GPIO := ti,lmp90xxx-gpio + +config DT_HAS_TI_LMP90XXX_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_LMP90XXX_GPIO)) + +DT_COMPAT_TI_LP3943 := ti,lp3943 + +config DT_HAS_TI_LP3943_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_LP3943)) + +DT_COMPAT_TI_LP5009 := ti,lp5009 + +config DT_HAS_TI_LP5009_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_LP5009)) + +DT_COMPAT_TI_LP5012 := ti,lp5012 + +config DT_HAS_TI_LP5012_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_LP5012)) + +DT_COMPAT_TI_LP5018 := ti,lp5018 + +config DT_HAS_TI_LP5018_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_LP5018)) + +DT_COMPAT_TI_LP5024 := ti,lp5024 + +config DT_HAS_TI_LP5024_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_LP5024)) + +DT_COMPAT_TI_LP5030 := ti,lp5030 + +config DT_HAS_TI_LP5030_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_LP5030)) + +DT_COMPAT_TI_LP5036 := ti,lp5036 + +config DT_HAS_TI_LP5036_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_LP5036)) + +DT_COMPAT_TI_LP5562 := ti,lp5562 + +config DT_HAS_TI_LP5562_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_LP5562)) + +DT_COMPAT_TI_LP5569 := ti,lp5569 + +config DT_HAS_TI_LP5569_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_LP5569)) + +DT_COMPAT_TI_MSP432P4XX_UART := ti,msp432p4xx-uart + +config DT_HAS_TI_MSP432P4XX_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_MSP432P4XX_UART)) + +DT_COMPAT_TI_OPT3001 := ti,opt3001 + +config DT_HAS_TI_OPT3001_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_OPT3001)) + +DT_COMPAT_TI_SN74HC595 := ti,sn74hc595 + +config DT_HAS_TI_SN74HC595_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_SN74HC595)) + +DT_COMPAT_TI_STELLARIS_ETHERNET := ti,stellaris-ethernet + +config DT_HAS_TI_STELLARIS_ETHERNET_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_STELLARIS_ETHERNET)) + +DT_COMPAT_TI_STELLARIS_FLASH_CONTROLLER := ti,stellaris-flash-controller + +config DT_HAS_TI_STELLARIS_FLASH_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_STELLARIS_FLASH_CONTROLLER)) + +DT_COMPAT_TI_STELLARIS_GPIO := ti,stellaris-gpio + +config DT_HAS_TI_STELLARIS_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_STELLARIS_GPIO)) + +DT_COMPAT_TI_STELLARIS_UART := ti,stellaris-uart + +config DT_HAS_TI_STELLARIS_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_STELLARIS_UART)) + +DT_COMPAT_TI_TAS6422DAC := ti,tas6422dac + +config DT_HAS_TI_TAS6422DAC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_TAS6422DAC)) + +DT_COMPAT_TI_TCA6424A := ti,tca6424a + +config DT_HAS_TI_TCA6424A_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_TCA6424A)) + +DT_COMPAT_TI_TCA9538 := ti,tca9538 + +config DT_HAS_TI_TCA9538_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_TCA9538)) + +DT_COMPAT_TI_TCA9544A := ti,tca9544a + +config DT_HAS_TI_TCA9544A_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_TCA9544A)) + +DT_COMPAT_TI_TCA9546A := ti,tca9546a + +config DT_HAS_TI_TCA9546A_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_TCA9546A)) + +DT_COMPAT_TI_TCA9548A := ti,tca9548a + +config DT_HAS_TI_TCA9548A_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_TCA9548A)) + +DT_COMPAT_TI_TCAN4X5X := ti,tcan4x5x + +config DT_HAS_TI_TCAN4X5X_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_TCAN4X5X)) + +DT_COMPAT_TI_TLA2021 := ti,tla2021 + +config DT_HAS_TI_TLA2021_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_TLA2021)) + +DT_COMPAT_TI_TLA2022 := ti,tla2022 + +config DT_HAS_TI_TLA2022_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_TLA2022)) + +DT_COMPAT_TI_TLA2024 := ti,tla2024 + +config DT_HAS_TI_TLA2024_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_TLA2024)) + +DT_COMPAT_TI_TLC59108 := ti,tlc59108 + +config DT_HAS_TI_TLC59108_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_TLC59108)) + +DT_COMPAT_TI_TLC5971 := ti,tlc5971 + +config DT_HAS_TI_TLC5971_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_TLC5971)) + +DT_COMPAT_TI_TLC59731 := ti,tlc59731 + +config DT_HAS_TI_TLC59731_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_TLC59731)) + +DT_COMPAT_TI_TLV320DAC := ti,tlv320dac + +config DT_HAS_TI_TLV320DAC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_TLV320DAC)) + +DT_COMPAT_TI_TMAG3001 := ti,tmag3001 + +config DT_HAS_TI_TMAG3001_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_TMAG3001)) + +DT_COMPAT_TI_TMAG5170 := ti,tmag5170 + +config DT_HAS_TI_TMAG5170_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_TMAG5170)) + +DT_COMPAT_TI_TMAG5273 := ti,tmag5273 + +config DT_HAS_TI_TMAG5273_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_TMAG5273)) + +DT_COMPAT_TI_TMP007 := ti,tmp007 + +config DT_HAS_TI_TMP007_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_TMP007)) + +DT_COMPAT_TI_TMP1075 := ti,tmp1075 + +config DT_HAS_TI_TMP1075_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_TMP1075)) + +DT_COMPAT_TI_TMP108 := ti,tmp108 + +config DT_HAS_TI_TMP108_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_TMP108)) + +DT_COMPAT_TI_TMP112 := ti,tmp112 + +config DT_HAS_TI_TMP112_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_TMP112)) + +DT_COMPAT_TI_TMP114 := ti,tmp114 + +config DT_HAS_TI_TMP114_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_TMP114)) + +DT_COMPAT_TI_TMP116 := ti,tmp116 + +config DT_HAS_TI_TMP116_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_TMP116)) + +DT_COMPAT_TI_TMP116_EEPROM := ti,tmp116-eeprom + +config DT_HAS_TI_TMP116_EEPROM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_TMP116_EEPROM)) + +DT_COMPAT_TI_TMP435 := ti,tmp435 + +config DT_HAS_TI_TMP435_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_TMP435)) + +DT_COMPAT_TI_TPS382X := ti,tps382x + +config DT_HAS_TI_TPS382X_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_TPS382X)) + +DT_COMPAT_TI_VIM := ti,vim + +config DT_HAS_TI_VIM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_VIM)) + +DT_COMPAT_U_BLOX_LARA_R6 := u-blox,lara-r6 + +config DT_HAS_U_BLOX_LARA_R6_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_U_BLOX_LARA_R6)) + +DT_COMPAT_U_BLOX_M8 := u-blox,m8 + +config DT_HAS_U_BLOX_M8_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_U_BLOX_M8)) + +DT_COMPAT_U_BLOX_SARA_R4 := u-blox,sara-r4 + +config DT_HAS_U_BLOX_SARA_R4_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_U_BLOX_SARA_R4)) + +DT_COMPAT_U_BLOX_SARA_R5 := u-blox,sara-r5 + +config DT_HAS_U_BLOX_SARA_R5_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_U_BLOX_SARA_R5)) + +DT_COMPAT_UART_HDLC_RCP_IF := uart,hdlc-rcp-if + +config DT_HAS_UART_HDLC_RCP_IF_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_UART_HDLC_RCP_IF)) + +DT_COMPAT_ULTRACHIP_UC8175 := ultrachip,uc8175 + +config DT_HAS_ULTRACHIP_UC8175_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ULTRACHIP_UC8175)) + +DT_COMPAT_ULTRACHIP_UC8176 := ultrachip,uc8176 + +config DT_HAS_ULTRACHIP_UC8176_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ULTRACHIP_UC8176)) + +DT_COMPAT_ULTRACHIP_UC8179 := ultrachip,uc8179 + +config DT_HAS_ULTRACHIP_UC8179_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ULTRACHIP_UC8179)) + +DT_COMPAT_USB_AUDIO := usb-audio + +config DT_HAS_USB_AUDIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_USB_AUDIO)) + +DT_COMPAT_USB_AUDIO_FEATURE_VOLUME := usb-audio-feature-volume + +config DT_HAS_USB_AUDIO_FEATURE_VOLUME_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_USB_AUDIO_FEATURE_VOLUME)) + +DT_COMPAT_USB_AUDIO_HP := usb-audio-hp + +config DT_HAS_USB_AUDIO_HP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_USB_AUDIO_HP)) + +DT_COMPAT_USB_AUDIO_HS := usb-audio-hs + +config DT_HAS_USB_AUDIO_HS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_USB_AUDIO_HS)) + +DT_COMPAT_USB_AUDIO_MIC := usb-audio-mic + +config DT_HAS_USB_AUDIO_MIC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_USB_AUDIO_MIC)) + +DT_COMPAT_USB_C_CONNECTOR := usb-c-connector + +config DT_HAS_USB_C_CONNECTOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_USB_C_CONNECTOR)) + +DT_COMPAT_USB_NOP_XCEIV := usb-nop-xceiv + +config DT_HAS_USB_NOP_XCEIV_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_USB_NOP_XCEIV)) + +DT_COMPAT_USB_ULPI_PHY := usb-ulpi-phy + +config DT_HAS_USB_ULPI_PHY_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_USB_ULPI_PHY)) + +DT_COMPAT_VISHAY_VCNL36825T := vishay,vcnl36825t + +config DT_HAS_VISHAY_VCNL36825T_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VISHAY_VCNL36825T)) + +DT_COMPAT_VISHAY_VCNL4040 := vishay,vcnl4040 + +config DT_HAS_VISHAY_VCNL4040_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VISHAY_VCNL4040)) + +DT_COMPAT_VISHAY_VEML6031 := vishay,veml6031 + +config DT_HAS_VISHAY_VEML6031_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VISHAY_VEML6031)) + +DT_COMPAT_VISHAY_VEML7700 := vishay,veml7700 + +config DT_HAS_VISHAY_VEML7700_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VISHAY_VEML7700)) + +DT_COMPAT_VND_ADC := vnd,adc + +config DT_HAS_VND_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_ADC)) + +DT_COMPAT_VND_ADC_TEMP_SENSOR := vnd,adc-temp-sensor + +config DT_HAS_VND_ADC_TEMP_SENSOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_ADC_TEMP_SENSOR)) + +DT_COMPAT_VND_ARRAY_HOLDER := vnd,array-holder + +config DT_HAS_VND_ARRAY_HOLDER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_ARRAY_HOLDER)) + +DT_COMPAT_VND_BUSY_SIM := vnd,busy-sim + +config DT_HAS_VND_BUSY_SIM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_BUSY_SIM)) + +DT_COMPAT_VND_CAN_CONTROLLER := vnd,can-controller + +config DT_HAS_VND_CAN_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_CAN_CONTROLLER)) + +DT_COMPAT_VND_CAN_TRANSCEIVER := vnd,can-transceiver + +config DT_HAS_VND_CAN_TRANSCEIVER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_CAN_TRANSCEIVER)) + +DT_COMPAT_VND_CHILD_BINDINGS := vnd,child-bindings + +config DT_HAS_VND_CHILD_BINDINGS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_CHILD_BINDINGS)) + +DT_COMPAT_VND_CLOCK := vnd,clock + +config DT_HAS_VND_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_CLOCK)) + +DT_COMPAT_VND_CPU_INTC := vnd,cpu-intc + +config DT_HAS_VND_CPU_INTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_CPU_INTC)) + +DT_COMPAT_VND_DAC := vnd,dac + +config DT_HAS_VND_DAC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_DAC)) + +DT_COMPAT_VND_DEVICE_WITH_PROPS := vnd,device-with-props + +config DT_HAS_VND_DEVICE_WITH_PROPS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_DEVICE_WITH_PROPS)) + +DT_COMPAT_VND_DISABLED_COMPAT := vnd,disabled-compat + +config DT_HAS_VND_DISABLED_COMPAT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_DISABLED_COMPAT)) + +DT_COMPAT_VND_DMA := vnd,dma + +config DT_HAS_VND_DMA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_DMA)) + +DT_COMPAT_VND_EMUL_TESTER := vnd,emul-tester + +config DT_HAS_VND_EMUL_TESTER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_EMUL_TESTER)) + +DT_COMPAT_VND_ENUM_HOLDER := vnd,enum-holder + +config DT_HAS_VND_ENUM_HOLDER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_ENUM_HOLDER)) + +DT_COMPAT_VND_ENUM_HOLDER_INST := vnd,enum-holder-inst + +config DT_HAS_VND_ENUM_HOLDER_INST_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_ENUM_HOLDER_INST)) + +DT_COMPAT_VND_ENUM_INT_ARRAY_HOLDER := vnd,enum-int-array-holder + +config DT_HAS_VND_ENUM_INT_ARRAY_HOLDER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_ENUM_INT_ARRAY_HOLDER)) + +DT_COMPAT_VND_ENUM_INT_REQUIRED_FALSE_HOLDER := vnd,enum-int-required-false-holder + +config DT_HAS_VND_ENUM_INT_REQUIRED_FALSE_HOLDER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_ENUM_INT_REQUIRED_FALSE_HOLDER)) + +DT_COMPAT_VND_ENUM_REQUIRED_FALSE_HOLDER := vnd,enum-required-false-holder + +config DT_HAS_VND_ENUM_REQUIRED_FALSE_HOLDER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_ENUM_REQUIRED_FALSE_HOLDER)) + +DT_COMPAT_VND_ENUM_REQUIRED_FALSE_HOLDER_INST := vnd,enum-required-false-holder-inst + +config DT_HAS_VND_ENUM_REQUIRED_FALSE_HOLDER_INST_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_ENUM_REQUIRED_FALSE_HOLDER_INST)) + +DT_COMPAT_VND_ENUM_STRING_ARRAY_HOLDER := vnd,enum-string-array-holder + +config DT_HAS_VND_ENUM_STRING_ARRAY_HOLDER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_ENUM_STRING_ARRAY_HOLDER)) + +DT_COMPAT_VND_ETHERNET := vnd,ethernet + +config DT_HAS_VND_ETHERNET_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_ETHERNET)) + +DT_COMPAT_VND_GPIO := vnd,gpio + +config DT_HAS_VND_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_GPIO)) + +DT_COMPAT_VND_GPIO_DEVICE := vnd,gpio-device + +config DT_HAS_VND_GPIO_DEVICE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_GPIO_DEVICE)) + +DT_COMPAT_VND_GPIO_EXPANDER := vnd,gpio-expander + +config DT_HAS_VND_GPIO_EXPANDER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_GPIO_EXPANDER)) + +DT_COMPAT_VND_GPIO_INTC_DEVICE := vnd,gpio-intc-device + +config DT_HAS_VND_GPIO_INTC_DEVICE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_GPIO_INTC_DEVICE)) + +DT_COMPAT_VND_GPIO_ONE_CELL := vnd,gpio-one-cell + +config DT_HAS_VND_GPIO_ONE_CELL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_GPIO_ONE_CELL)) + +DT_COMPAT_VND_GREAT_GRANDCHILD_BINDINGS := vnd,great-grandchild-bindings + +config DT_HAS_VND_GREAT_GRANDCHILD_BINDINGS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_GREAT_GRANDCHILD_BINDINGS)) + +DT_COMPAT_VND_I2C := vnd,i2c + +config DT_HAS_VND_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_I2C)) + +DT_COMPAT_VND_I2C_DEVICE := vnd,i2c-device + +config DT_HAS_VND_I2C_DEVICE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_I2C_DEVICE)) + +DT_COMPAT_VND_I2C_MUX := vnd,i2c-mux + +config DT_HAS_VND_I2C_MUX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_I2C_MUX)) + +DT_COMPAT_VND_I2S := vnd,i2s + +config DT_HAS_VND_I2S_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_I2S)) + +DT_COMPAT_VND_I3C := vnd,i3c + +config DT_HAS_VND_I3C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_I3C)) + +DT_COMPAT_VND_I3C_DEVICE := vnd,i3c-device + +config DT_HAS_VND_I3C_DEVICE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_I3C_DEVICE)) + +DT_COMPAT_VND_I3C_I2C_DEVICE := vnd,i3c-i2c-device + +config DT_HAS_VND_I3C_I2C_DEVICE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_I3C_I2C_DEVICE)) + +DT_COMPAT_VND_IEEE802154 := vnd,ieee802154 + +config DT_HAS_VND_IEEE802154_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_IEEE802154)) + +DT_COMPAT_VND_INPUT_DEVICE := vnd,input-device + +config DT_HAS_VND_INPUT_DEVICE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_INPUT_DEVICE)) + +DT_COMPAT_VND_INTC := vnd,intc + +config DT_HAS_VND_INTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_INTC)) + +DT_COMPAT_VND_INTERRUPT_HOLDER := vnd,interrupt-holder + +config DT_HAS_VND_INTERRUPT_HOLDER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_INTERRUPT_HOLDER)) + +DT_COMPAT_VND_INTERRUPT_HOLDER_EXTENDED := vnd,interrupt-holder-extended + +config DT_HAS_VND_INTERRUPT_HOLDER_EXTENDED_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_INTERRUPT_HOLDER_EXTENDED)) + +DT_COMPAT_VND_MBOX := vnd,mbox + +config DT_HAS_VND_MBOX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_MBOX)) + +DT_COMPAT_VND_MBOX_CONSUMER := vnd,mbox-consumer + +config DT_HAS_VND_MBOX_CONSUMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_MBOX_CONSUMER)) + +DT_COMPAT_VND_MBOX_ZERO_CELL := vnd,mbox-zero-cell + +config DT_HAS_VND_MBOX_ZERO_CELL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_MBOX_ZERO_CELL)) + +DT_COMPAT_VND_MEMORY_ATTR := vnd,memory-attr + +config DT_HAS_VND_MEMORY_ATTR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_MEMORY_ATTR)) + +DT_COMPAT_VND_MIPI_DSI := vnd,mipi-dsi + +config DT_HAS_VND_MIPI_DSI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_MIPI_DSI)) + +DT_COMPAT_VND_NON_DEPRECATED_LABEL := vnd,non-deprecated-label + +config DT_HAS_VND_NON_DEPRECATED_LABEL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_NON_DEPRECATED_LABEL)) + +DT_COMPAT_VND_PCIE := vnd,pcie + +config DT_HAS_VND_PCIE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_PCIE)) + +DT_COMPAT_VND_PHANDLE_HOLDER := vnd,phandle-holder + +config DT_HAS_VND_PHANDLE_HOLDER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_PHANDLE_HOLDER)) + +DT_COMPAT_VND_PINCTRL := vnd,pinctrl + +config DT_HAS_VND_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_PINCTRL)) + +DT_COMPAT_VND_PINCTRL_DEVICE := vnd,pinctrl-device + +config DT_HAS_VND_PINCTRL_DEVICE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_PINCTRL_DEVICE)) + +DT_COMPAT_VND_PINCTRL_TEST := vnd,pinctrl-test + +config DT_HAS_VND_PINCTRL_TEST_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_PINCTRL_TEST)) + +DT_COMPAT_VND_PWM := vnd,pwm + +config DT_HAS_VND_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_PWM)) + +DT_COMPAT_VND_REG_HOLDER := vnd,reg-holder + +config DT_HAS_VND_REG_HOLDER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_REG_HOLDER)) + +DT_COMPAT_VND_REG_HOLDER_64 := vnd,reg-holder-64 + +config DT_HAS_VND_REG_HOLDER_64_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_REG_HOLDER_64)) + +DT_COMPAT_VND_RESERVED_COMPAT := vnd,reserved-compat + +config DT_HAS_VND_RESERVED_COMPAT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_RESERVED_COMPAT)) + +DT_COMPAT_VND_RESET := vnd,reset + +config DT_HAS_VND_RESET_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_RESET)) + +DT_COMPAT_VND_SERIAL := vnd,serial + +config DT_HAS_VND_SERIAL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_SERIAL)) + +DT_COMPAT_VND_SPI := vnd,spi + +config DT_HAS_VND_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_SPI)) + +DT_COMPAT_VND_SPI_DEVICE := vnd,spi-device + +config DT_HAS_VND_SPI_DEVICE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_SPI_DEVICE)) + +DT_COMPAT_VND_SPI_DEVICE_2 := vnd,spi-device-2 + +config DT_HAS_VND_SPI_DEVICE_2_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_SPI_DEVICE_2)) + +DT_COMPAT_VND_STRING := vnd,string + +config DT_HAS_VND_STRING_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_STRING)) + +DT_COMPAT_VND_STRING_ARRAY := vnd,string-array + +config DT_HAS_VND_STRING_ARRAY_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_STRING_ARRAY)) + +DT_COMPAT_VND_STRING_ARRAY_TOKEN := vnd,string-array-token + +config DT_HAS_VND_STRING_ARRAY_TOKEN_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_STRING_ARRAY_TOKEN)) + +DT_COMPAT_VND_STRING_ARRAY_UNQUOTED := vnd,string-array-unquoted + +config DT_HAS_VND_STRING_ARRAY_UNQUOTED_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_STRING_ARRAY_UNQUOTED)) + +DT_COMPAT_VND_STRING_TOKEN := vnd,string-token + +config DT_HAS_VND_STRING_TOKEN_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_STRING_TOKEN)) + +DT_COMPAT_VND_STRING_UNQUOTED := vnd,string-unquoted + +config DT_HAS_VND_STRING_UNQUOTED_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_STRING_UNQUOTED)) + +DT_COMPAT_VND_VIDEO_MULTI_PORT := vnd,video-multi-port + +config DT_HAS_VND_VIDEO_MULTI_PORT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_VIDEO_MULTI_PORT)) + +DT_COMPAT_VND_VIDEO_SINGLE_PORT := vnd,video-single-port + +config DT_HAS_VND_VIDEO_SINGLE_PORT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_VIDEO_SINGLE_PORT)) + +DT_COMPAT_VND_W1 := vnd,w1 + +config DT_HAS_VND_W1_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_W1)) + +DT_COMPAT_VOLTAGE_DIVIDER := voltage-divider + +config DT_HAS_VOLTAGE_DIVIDER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VOLTAGE_DIVIDER)) + +DT_COMPAT_WCH_AFIO := wch,afio + +config DT_HAS_WCH_AFIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_WCH_AFIO)) + +DT_COMPAT_WCH_CH32V00X_HSE_CLOCK := wch,ch32v00x-hse-clock + +config DT_HAS_WCH_CH32V00X_HSE_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_WCH_CH32V00X_HSE_CLOCK)) + +DT_COMPAT_WCH_CH32V00X_HSI_CLOCK := wch,ch32v00x-hsi-clock + +config DT_HAS_WCH_CH32V00X_HSI_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_WCH_CH32V00X_HSI_CLOCK)) + +DT_COMPAT_WCH_CH32V00X_PLL_CLOCK := wch,ch32v00x-pll-clock + +config DT_HAS_WCH_CH32V00X_PLL_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_WCH_CH32V00X_PLL_CLOCK)) + +DT_COMPAT_WCH_GPIO := wch,gpio + +config DT_HAS_WCH_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_WCH_GPIO)) + +DT_COMPAT_WCH_PFIC := wch,pfic + +config DT_HAS_WCH_PFIC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_WCH_PFIC)) + +DT_COMPAT_WCH_QINGKE_V2 := wch,qingke-v2 + +config DT_HAS_WCH_QINGKE_V2_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_WCH_QINGKE_V2)) + +DT_COMPAT_WCH_RCC := wch,rcc + +config DT_HAS_WCH_RCC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_WCH_RCC)) + +DT_COMPAT_WCH_SYSTICK := wch,systick + +config DT_HAS_WCH_SYSTICK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_WCH_SYSTICK)) + +DT_COMPAT_WCH_USART := wch,usart + +config DT_HAS_WCH_USART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_WCH_USART)) + +DT_COMPAT_WE_WSEN_HIDS_2525020210002 := we,wsen-hids-2525020210002 + +config DT_HAS_WE_WSEN_HIDS_2525020210002_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_WE_WSEN_HIDS_2525020210002)) + +DT_COMPAT_WEACT_DCMI_CAMERA_CONNECTOR := weact,dcmi-camera-connector + +config DT_HAS_WEACT_DCMI_CAMERA_CONNECTOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_WEACT_DCMI_CAMERA_CONNECTOR)) + +DT_COMPAT_WINSEN_MHZ19B := winsen,mhz19b + +config DT_HAS_WINSEN_MHZ19B_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_WINSEN_MHZ19B)) + +DT_COMPAT_WIZNET_W5500 := wiznet,w5500 + +config DT_HAS_WIZNET_W5500_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_WIZNET_W5500)) + +DT_COMPAT_WNC_M14A2A := wnc,m14a2a + +config DT_HAS_WNC_M14A2A_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_WNC_M14A2A)) + +DT_COMPAT_WOLFSON_WM8904 := wolfson,wm8904 + +config DT_HAS_WOLFSON_WM8904_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_WOLFSON_WM8904)) + +DT_COMPAT_WORLDSEMI_WS2812_GPIO := worldsemi,ws2812-gpio + +config DT_HAS_WORLDSEMI_WS2812_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_WORLDSEMI_WS2812_GPIO)) + +DT_COMPAT_WORLDSEMI_WS2812_I2S := worldsemi,ws2812-i2s + +config DT_HAS_WORLDSEMI_WS2812_I2S_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_WORLDSEMI_WS2812_I2S)) + +DT_COMPAT_WORLDSEMI_WS2812_RPI_PICO_PIO := worldsemi,ws2812-rpi_pico-pio + +config DT_HAS_WORLDSEMI_WS2812_RPI_PICO_PIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_WORLDSEMI_WS2812_RPI_PICO_PIO)) + +DT_COMPAT_WORLDSEMI_WS2812_SPI := worldsemi,ws2812-spi + +config DT_HAS_WORLDSEMI_WS2812_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_WORLDSEMI_WS2812_SPI)) + +DT_COMPAT_X_POWERS_AXP192 := x-powers,axp192 + +config DT_HAS_X_POWERS_AXP192_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_X_POWERS_AXP192)) + +DT_COMPAT_X_POWERS_AXP192_GPIO := x-powers,axp192-gpio + +config DT_HAS_X_POWERS_AXP192_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_X_POWERS_AXP192_GPIO)) + +DT_COMPAT_X_POWERS_AXP192_REGULATOR := x-powers,axp192-regulator + +config DT_HAS_X_POWERS_AXP192_REGULATOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_X_POWERS_AXP192_REGULATOR)) + +DT_COMPAT_XEN_HVC_CONSOLEIO := xen,hvc-consoleio + +config DT_HAS_XEN_HVC_CONSOLEIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_XEN_HVC_CONSOLEIO)) + +DT_COMPAT_XEN_HVC_UART := xen,hvc-uart + +config DT_HAS_XEN_HVC_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_XEN_HVC_UART)) + +DT_COMPAT_XEN_XEN := xen,xen + +config DT_HAS_XEN_XEN_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_XEN_XEN)) + +DT_COMPAT_XLNX_AXI_DMA_1_00_A := xlnx,axi-dma-1.00.a + +config DT_HAS_XLNX_AXI_DMA_1_00_A_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_XLNX_AXI_DMA_1_00_A)) + +DT_COMPAT_XLNX_ETH_DMA := xlnx,eth-dma + +config DT_HAS_XLNX_ETH_DMA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_XLNX_ETH_DMA)) + +DT_COMPAT_XLNX_FPGA := xlnx,fpga + +config DT_HAS_XLNX_FPGA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_XLNX_FPGA)) + +DT_COMPAT_XLNX_GEM := xlnx,gem + +config DT_HAS_XLNX_GEM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_XLNX_GEM)) + +DT_COMPAT_XLNX_PINCTRL_ZYNQ := xlnx,pinctrl-zynq + +config DT_HAS_XLNX_PINCTRL_ZYNQ_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_XLNX_PINCTRL_ZYNQ)) + +DT_COMPAT_XLNX_PINCTRL_ZYNQMP := xlnx,pinctrl-zynqmp + +config DT_HAS_XLNX_PINCTRL_ZYNQMP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_XLNX_PINCTRL_ZYNQMP)) + +DT_COMPAT_XLNX_PS_GPIO := xlnx,ps-gpio + +config DT_HAS_XLNX_PS_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_XLNX_PS_GPIO)) + +DT_COMPAT_XLNX_PS_GPIO_BANK := xlnx,ps-gpio-bank + +config DT_HAS_XLNX_PS_GPIO_BANK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_XLNX_PS_GPIO_BANK)) + +DT_COMPAT_XLNX_TTCPS := xlnx,ttcps + +config DT_HAS_XLNX_TTCPS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_XLNX_TTCPS)) + +DT_COMPAT_XLNX_XPS_GPIO_1_00_A := xlnx,xps-gpio-1.00.a + +config DT_HAS_XLNX_XPS_GPIO_1_00_A_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_XLNX_XPS_GPIO_1_00_A)) + +DT_COMPAT_XLNX_XPS_GPIO_1_00_A_GPIO2 := xlnx,xps-gpio-1.00.a-gpio2 + +config DT_HAS_XLNX_XPS_GPIO_1_00_A_GPIO2_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_XLNX_XPS_GPIO_1_00_A_GPIO2)) + +DT_COMPAT_XLNX_XPS_IIC_2_00_A := xlnx,xps-iic-2.00.a + +config DT_HAS_XLNX_XPS_IIC_2_00_A_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_XLNX_XPS_IIC_2_00_A)) + +DT_COMPAT_XLNX_XPS_IIC_2_1 := xlnx,xps-iic-2.1 + +config DT_HAS_XLNX_XPS_IIC_2_1_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_XLNX_XPS_IIC_2_1)) + +DT_COMPAT_XLNX_XPS_SPI_2_00_A := xlnx,xps-spi-2.00.a + +config DT_HAS_XLNX_XPS_SPI_2_00_A_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_XLNX_XPS_SPI_2_00_A)) + +DT_COMPAT_XLNX_XPS_TIMEBASE_WDT_1_00_A := xlnx,xps-timebase-wdt-1.00.a + +config DT_HAS_XLNX_XPS_TIMEBASE_WDT_1_00_A_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_XLNX_XPS_TIMEBASE_WDT_1_00_A)) + +DT_COMPAT_XLNX_XPS_TIMER_1_00_A := xlnx,xps-timer-1.00.a + +config DT_HAS_XLNX_XPS_TIMER_1_00_A_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_XLNX_XPS_TIMER_1_00_A)) + +DT_COMPAT_XLNX_XPS_TIMER_1_00_A_PWM := xlnx,xps-timer-1.00.a-pwm + +config DT_HAS_XLNX_XPS_TIMER_1_00_A_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_XLNX_XPS_TIMER_1_00_A_PWM)) + +DT_COMPAT_XLNX_XPS_UARTLITE_1_00_A := xlnx,xps-uartlite-1.00.a + +config DT_HAS_XLNX_XPS_UARTLITE_1_00_A_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_XLNX_XPS_UARTLITE_1_00_A)) + +DT_COMPAT_XLNX_XUARTPS := xlnx,xuartps + +config DT_HAS_XLNX_XUARTPS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_XLNX_XUARTPS)) + +DT_COMPAT_XLNX_ZYNQ_OCM := xlnx,zynq-ocm + +config DT_HAS_XLNX_ZYNQ_OCM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_XLNX_ZYNQ_OCM)) + +DT_COMPAT_XLNX_ZYNQMP_IPI_MAILBOX := xlnx,zynqmp-ipi-mailbox + +config DT_HAS_XLNX_ZYNQMP_IPI_MAILBOX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_XLNX_ZYNQMP_IPI_MAILBOX)) + +DT_COMPAT_XPTEK_XPT2046 := xptek,xpt2046 + +config DT_HAS_XPTEK_XPT2046_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_XPTEK_XPT2046)) + +DT_COMPAT_ZEPHYR_ADC_EMUL := zephyr,adc-emul + +config DT_HAS_ZEPHYR_ADC_EMUL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_ADC_EMUL)) + +DT_COMPAT_ZEPHYR_BBRAM_EMUL := zephyr,bbram-emul + +config DT_HAS_ZEPHYR_BBRAM_EMUL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_BBRAM_EMUL)) + +DT_COMPAT_ZEPHYR_BT_HCI_3WIRE_UART := zephyr,bt-hci-3wire-uart + +config DT_HAS_ZEPHYR_BT_HCI_3WIRE_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_BT_HCI_3WIRE_UART)) + +DT_COMPAT_ZEPHYR_BT_HCI_ENTROPY := zephyr,bt-hci-entropy + +config DT_HAS_ZEPHYR_BT_HCI_ENTROPY_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_BT_HCI_ENTROPY)) + +DT_COMPAT_ZEPHYR_BT_HCI_IPC := zephyr,bt-hci-ipc + +config DT_HAS_ZEPHYR_BT_HCI_IPC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_BT_HCI_IPC)) + +DT_COMPAT_ZEPHYR_BT_HCI_LL_SW_SPLIT := zephyr,bt-hci-ll-sw-split + +config DT_HAS_ZEPHYR_BT_HCI_LL_SW_SPLIT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_BT_HCI_LL_SW_SPLIT)) + +DT_COMPAT_ZEPHYR_BT_HCI_SPI := zephyr,bt-hci-spi + +config DT_HAS_ZEPHYR_BT_HCI_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_BT_HCI_SPI)) + +DT_COMPAT_ZEPHYR_BT_HCI_SPI_SLAVE := zephyr,bt-hci-spi-slave + +config DT_HAS_ZEPHYR_BT_HCI_SPI_SLAVE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_BT_HCI_SPI_SLAVE)) + +DT_COMPAT_ZEPHYR_BT_HCI_UART := zephyr,bt-hci-uart + +config DT_HAS_ZEPHYR_BT_HCI_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_BT_HCI_UART)) + +DT_COMPAT_ZEPHYR_BT_HCI_USERCHAN := zephyr,bt-hci-userchan + +config DT_HAS_ZEPHYR_BT_HCI_USERCHAN_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_BT_HCI_USERCHAN)) + +DT_COMPAT_ZEPHYR_CAN_LOOPBACK := zephyr,can-loopback + +config DT_HAS_ZEPHYR_CAN_LOOPBACK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_CAN_LOOPBACK)) + +DT_COMPAT_ZEPHYR_CDC_ACM_UART := zephyr,cdc-acm-uart + +config DT_HAS_ZEPHYR_CDC_ACM_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_CDC_ACM_UART)) + +DT_COMPAT_ZEPHYR_CDC_ECM_ETHERNET := zephyr,cdc-ecm-ethernet + +config DT_HAS_ZEPHYR_CDC_ECM_ETHERNET_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_CDC_ECM_ETHERNET)) + +DT_COMPAT_ZEPHYR_CDC_NCM_ETHERNET := zephyr,cdc-ncm-ethernet + +config DT_HAS_ZEPHYR_CDC_NCM_ETHERNET_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_CDC_NCM_ETHERNET)) + +DT_COMPAT_ZEPHYR_COREDUMP := zephyr,coredump + +config DT_HAS_ZEPHYR_COREDUMP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_COREDUMP)) + +DT_COMPAT_ZEPHYR_COUNTER_WATCHDOG := zephyr,counter-watchdog + +config DT_HAS_ZEPHYR_COUNTER_WATCHDOG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_COUNTER_WATCHDOG)) + +DT_COMPAT_ZEPHYR_DEVMUX := zephyr,devmux + +config DT_HAS_ZEPHYR_DEVMUX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_DEVMUX)) + +DT_COMPAT_ZEPHYR_DMA_EMUL := zephyr,dma-emul + +config DT_HAS_ZEPHYR_DMA_EMUL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_DMA_EMUL)) + +DT_COMPAT_ZEPHYR_DUMMY_DC := zephyr,dummy-dc + +config DT_HAS_ZEPHYR_DUMMY_DC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_DUMMY_DC)) + +DT_COMPAT_ZEPHYR_EMU_EEPROM := zephyr,emu-eeprom + +config DT_HAS_ZEPHYR_EMU_EEPROM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_EMU_EEPROM)) + +DT_COMPAT_ZEPHYR_ESPI_EMUL_CONTROLLER := zephyr,espi-emul-controller + +config DT_HAS_ZEPHYR_ESPI_EMUL_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_ESPI_EMUL_CONTROLLER)) + +DT_COMPAT_ZEPHYR_FAKE_CAN := zephyr,fake-can + +config DT_HAS_ZEPHYR_FAKE_CAN_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_FAKE_CAN)) + +DT_COMPAT_ZEPHYR_FAKE_COMP := zephyr,fake-comp + +config DT_HAS_ZEPHYR_FAKE_COMP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_FAKE_COMP)) + +DT_COMPAT_ZEPHYR_FAKE_EEPROM := zephyr,fake-eeprom + +config DT_HAS_ZEPHYR_FAKE_EEPROM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_FAKE_EEPROM)) + +DT_COMPAT_ZEPHYR_FAKE_PWM := zephyr,fake-pwm + +config DT_HAS_ZEPHYR_FAKE_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_FAKE_PWM)) + +DT_COMPAT_ZEPHYR_FAKE_REGULATOR := zephyr,fake-regulator + +config DT_HAS_ZEPHYR_FAKE_REGULATOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_FAKE_REGULATOR)) + +DT_COMPAT_ZEPHYR_FAKE_RTC := zephyr,fake-rtc + +config DT_HAS_ZEPHYR_FAKE_RTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_FAKE_RTC)) + +DT_COMPAT_ZEPHYR_FAKE_STEPPER := zephyr,fake-stepper + +config DT_HAS_ZEPHYR_FAKE_STEPPER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_FAKE_STEPPER)) + +DT_COMPAT_ZEPHYR_FLASH_DISK := zephyr,flash-disk + +config DT_HAS_ZEPHYR_FLASH_DISK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_FLASH_DISK)) + +DT_COMPAT_ZEPHYR_FSTAB := zephyr,fstab + +config DT_HAS_ZEPHYR_FSTAB_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_FSTAB)) + +DT_COMPAT_ZEPHYR_FSTAB_LITTLEFS := zephyr,fstab,littlefs + +config DT_HAS_ZEPHYR_FSTAB_LITTLEFS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_FSTAB_LITTLEFS)) + +DT_COMPAT_ZEPHYR_FUEL_GAUGE_COMPOSITE := zephyr,fuel-gauge-composite + +config DT_HAS_ZEPHYR_FUEL_GAUGE_COMPOSITE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_FUEL_GAUGE_COMPOSITE)) + +DT_COMPAT_ZEPHYR_GNSS_EMUL := zephyr,gnss-emul + +config DT_HAS_ZEPHYR_GNSS_EMUL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_GNSS_EMUL)) + +DT_COMPAT_ZEPHYR_GPIO_EMUL := zephyr,gpio-emul + +config DT_HAS_ZEPHYR_GPIO_EMUL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_GPIO_EMUL)) + +DT_COMPAT_ZEPHYR_GPIO_EMUL_SDL := zephyr,gpio-emul-sdl + +config DT_HAS_ZEPHYR_GPIO_EMUL_SDL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_GPIO_EMUL_SDL)) + +DT_COMPAT_ZEPHYR_GPIO_STEPPER := zephyr,gpio-stepper + +config DT_HAS_ZEPHYR_GPIO_STEPPER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_GPIO_STEPPER)) + +DT_COMPAT_ZEPHYR_HID_DEVICE := zephyr,hid-device + +config DT_HAS_ZEPHYR_HID_DEVICE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_HID_DEVICE)) + +DT_COMPAT_ZEPHYR_I2C_DUMP_ALLOWLIST := zephyr,i2c-dump-allowlist + +config DT_HAS_ZEPHYR_I2C_DUMP_ALLOWLIST_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_I2C_DUMP_ALLOWLIST)) + +DT_COMPAT_ZEPHYR_I2C_EMUL_CONTROLLER := zephyr,i2c-emul-controller + +config DT_HAS_ZEPHYR_I2C_EMUL_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_I2C_EMUL_CONTROLLER)) + +DT_COMPAT_ZEPHYR_I2C_TARGET_EEPROM := zephyr,i2c-target-eeprom + +config DT_HAS_ZEPHYR_I2C_TARGET_EEPROM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_I2C_TARGET_EEPROM)) + +DT_COMPAT_ZEPHYR_IEEE802154_UART_PIPE := zephyr,ieee802154-uart-pipe + +config DT_HAS_ZEPHYR_IEEE802154_UART_PIPE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_IEEE802154_UART_PIPE)) + +DT_COMPAT_ZEPHYR_INPUT_DOUBLE_TAP := zephyr,input-double-tap + +config DT_HAS_ZEPHYR_INPUT_DOUBLE_TAP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_INPUT_DOUBLE_TAP)) + +DT_COMPAT_ZEPHYR_INPUT_LONGPRESS := zephyr,input-longpress + +config DT_HAS_ZEPHYR_INPUT_LONGPRESS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_INPUT_LONGPRESS)) + +DT_COMPAT_ZEPHYR_INPUT_SDL_TOUCH := zephyr,input-sdl-touch + +config DT_HAS_ZEPHYR_INPUT_SDL_TOUCH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_INPUT_SDL_TOUCH)) + +DT_COMPAT_ZEPHYR_IPC_ICBMSG := zephyr,ipc-icbmsg + +config DT_HAS_ZEPHYR_IPC_ICBMSG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_IPC_ICBMSG)) + +DT_COMPAT_ZEPHYR_IPC_ICMSG := zephyr,ipc-icmsg + +config DT_HAS_ZEPHYR_IPC_ICMSG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_IPC_ICMSG)) + +DT_COMPAT_ZEPHYR_IPC_ICMSG_ME_FOLLOWER := zephyr,ipc-icmsg-me-follower + +config DT_HAS_ZEPHYR_IPC_ICMSG_ME_FOLLOWER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_IPC_ICMSG_ME_FOLLOWER)) + +DT_COMPAT_ZEPHYR_IPC_ICMSG_ME_INITIATOR := zephyr,ipc-icmsg-me-initiator + +config DT_HAS_ZEPHYR_IPC_ICMSG_ME_INITIATOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_IPC_ICMSG_ME_INITIATOR)) + +DT_COMPAT_ZEPHYR_IPC_OPENAMP_STATIC_VRINGS := zephyr,ipc-openamp-static-vrings + +config DT_HAS_ZEPHYR_IPC_OPENAMP_STATIC_VRINGS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_IPC_OPENAMP_STATIC_VRINGS)) + +DT_COMPAT_ZEPHYR_KSCAN_INPUT := zephyr,kscan-input + +config DT_HAS_ZEPHYR_KSCAN_INPUT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_KSCAN_INPUT)) + +DT_COMPAT_ZEPHYR_LOG_UART := zephyr,log-uart + +config DT_HAS_ZEPHYR_LOG_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_LOG_UART)) + +DT_COMPAT_ZEPHYR_LVGL_BUTTON_INPUT := zephyr,lvgl-button-input + +config DT_HAS_ZEPHYR_LVGL_BUTTON_INPUT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_LVGL_BUTTON_INPUT)) + +DT_COMPAT_ZEPHYR_LVGL_ENCODER_INPUT := zephyr,lvgl-encoder-input + +config DT_HAS_ZEPHYR_LVGL_ENCODER_INPUT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_LVGL_ENCODER_INPUT)) + +DT_COMPAT_ZEPHYR_LVGL_KEYPAD_INPUT := zephyr,lvgl-keypad-input + +config DT_HAS_ZEPHYR_LVGL_KEYPAD_INPUT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_LVGL_KEYPAD_INPUT)) + +DT_COMPAT_ZEPHYR_LVGL_POINTER_INPUT := zephyr,lvgl-pointer-input + +config DT_HAS_ZEPHYR_LVGL_POINTER_INPUT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_LVGL_POINTER_INPUT)) + +DT_COMPAT_ZEPHYR_MBOX_IPM := zephyr,mbox-ipm + +config DT_HAS_ZEPHYR_MBOX_IPM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_MBOX_IPM)) + +DT_COMPAT_ZEPHYR_MDIO_GPIO := zephyr,mdio-gpio + +config DT_HAS_ZEPHYR_MDIO_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_MDIO_GPIO)) + +DT_COMPAT_ZEPHYR_MEMORY_REGION := zephyr,memory-region + +config DT_HAS_ZEPHYR_MEMORY_REGION_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_MEMORY_REGION)) + +DT_COMPAT_ZEPHYR_MIPI_DBI_BITBANG := zephyr,mipi-dbi-bitbang + +config DT_HAS_ZEPHYR_MIPI_DBI_BITBANG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_MIPI_DBI_BITBANG)) + +DT_COMPAT_ZEPHYR_MIPI_DBI_SPI := zephyr,mipi-dbi-spi + +config DT_HAS_ZEPHYR_MIPI_DBI_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_MIPI_DBI_SPI)) + +DT_COMPAT_ZEPHYR_MMC_DISK := zephyr,mmc-disk + +config DT_HAS_ZEPHYR_MMC_DISK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_MMC_DISK)) + +DT_COMPAT_ZEPHYR_MODBUS_SERIAL := zephyr,modbus-serial + +config DT_HAS_ZEPHYR_MODBUS_SERIAL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_MODBUS_SERIAL)) + +DT_COMPAT_ZEPHYR_MSPI_EMUL_CONTROLLER := zephyr,mspi-emul-controller + +config DT_HAS_ZEPHYR_MSPI_EMUL_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_MSPI_EMUL_CONTROLLER)) + +DT_COMPAT_ZEPHYR_MSPI_EMUL_DEVICE := zephyr,mspi-emul-device + +config DT_HAS_ZEPHYR_MSPI_EMUL_DEVICE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_MSPI_EMUL_DEVICE)) + +DT_COMPAT_ZEPHYR_MSPI_EMUL_FLASH := zephyr,mspi-emul-flash + +config DT_HAS_ZEPHYR_MSPI_EMUL_FLASH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_MSPI_EMUL_FLASH)) + +DT_COMPAT_ZEPHYR_NATIVE_LINUX_CAN := zephyr,native-linux-can + +config DT_HAS_ZEPHYR_NATIVE_LINUX_CAN_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_NATIVE_LINUX_CAN)) + +DT_COMPAT_ZEPHYR_NATIVE_LINUX_EVDEV := zephyr,native-linux-evdev + +config DT_HAS_ZEPHYR_NATIVE_LINUX_EVDEV_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_NATIVE_LINUX_EVDEV)) + +DT_COMPAT_ZEPHYR_NATIVE_POSIX_COUNTER := zephyr,native-posix-counter + +config DT_HAS_ZEPHYR_NATIVE_POSIX_COUNTER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_NATIVE_POSIX_COUNTER)) + +DT_COMPAT_ZEPHYR_NATIVE_POSIX_CPU := zephyr,native-posix-cpu + +config DT_HAS_ZEPHYR_NATIVE_POSIX_CPU_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_NATIVE_POSIX_CPU)) + +DT_COMPAT_ZEPHYR_NATIVE_POSIX_RNG := zephyr,native-posix-rng + +config DT_HAS_ZEPHYR_NATIVE_POSIX_RNG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_NATIVE_POSIX_RNG)) + +DT_COMPAT_ZEPHYR_NATIVE_POSIX_UART := zephyr,native-posix-uart + +config DT_HAS_ZEPHYR_NATIVE_POSIX_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_NATIVE_POSIX_UART)) + +DT_COMPAT_ZEPHYR_NATIVE_POSIX_UDC := zephyr,native-posix-udc + +config DT_HAS_ZEPHYR_NATIVE_POSIX_UDC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_NATIVE_POSIX_UDC)) + +DT_COMPAT_ZEPHYR_NATIVE_TTY_UART := zephyr,native-tty-uart + +config DT_HAS_ZEPHYR_NATIVE_TTY_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_NATIVE_TTY_UART)) + +DT_COMPAT_ZEPHYR_NUS_UART := zephyr,nus-uart + +config DT_HAS_ZEPHYR_NUS_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_NUS_UART)) + +DT_COMPAT_ZEPHYR_PANEL_TIMING := zephyr,panel-timing + +config DT_HAS_ZEPHYR_PANEL_TIMING_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_PANEL_TIMING)) + +DT_COMPAT_ZEPHYR_POWER_STATE := zephyr,power-state + +config DT_HAS_ZEPHYR_POWER_STATE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_POWER_STATE)) + +DT_COMPAT_ZEPHYR_PSA_CRYPTO_RNG := zephyr,psa-crypto-rng + +config DT_HAS_ZEPHYR_PSA_CRYPTO_RNG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_PSA_CRYPTO_RNG)) + +DT_COMPAT_ZEPHYR_RAM_DISK := zephyr,ram-disk + +config DT_HAS_ZEPHYR_RAM_DISK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_RAM_DISK)) + +DT_COMPAT_ZEPHYR_RETAINED_RAM := zephyr,retained-ram + +config DT_HAS_ZEPHYR_RETAINED_RAM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_RETAINED_RAM)) + +DT_COMPAT_ZEPHYR_RETAINED_REG := zephyr,retained-reg + +config DT_HAS_ZEPHYR_RETAINED_REG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_RETAINED_REG)) + +DT_COMPAT_ZEPHYR_RETENTION := zephyr,retention + +config DT_HAS_ZEPHYR_RETENTION_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_RETENTION)) + +DT_COMPAT_ZEPHYR_RTC_EMUL := zephyr,rtc-emul + +config DT_HAS_ZEPHYR_RTC_EMUL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_RTC_EMUL)) + +DT_COMPAT_ZEPHYR_SDHC_SPI_SLOT := zephyr,sdhc-spi-slot + +config DT_HAS_ZEPHYR_SDHC_SPI_SLOT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_SDHC_SPI_SLOT)) + +DT_COMPAT_ZEPHYR_SDL_DC := zephyr,sdl-dc + +config DT_HAS_ZEPHYR_SDL_DC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_SDL_DC)) + +DT_COMPAT_ZEPHYR_SDMMC_DISK := zephyr,sdmmc-disk + +config DT_HAS_ZEPHYR_SDMMC_DISK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_SDMMC_DISK)) + +DT_COMPAT_ZEPHYR_SENSING := zephyr,sensing + +config DT_HAS_ZEPHYR_SENSING_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_SENSING)) + +DT_COMPAT_ZEPHYR_SENSING_HINGE_ANGLE := zephyr,sensing-hinge-angle + +config DT_HAS_ZEPHYR_SENSING_HINGE_ANGLE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_SENSING_HINGE_ANGLE)) + +DT_COMPAT_ZEPHYR_SENSING_PHY_3D_SENSOR := zephyr,sensing-phy-3d-sensor + +config DT_HAS_ZEPHYR_SENSING_PHY_3D_SENSOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_SENSING_PHY_3D_SENSOR)) + +DT_COMPAT_ZEPHYR_SIM_EEPROM := zephyr,sim-eeprom + +config DT_HAS_ZEPHYR_SIM_EEPROM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_SIM_EEPROM)) + +DT_COMPAT_ZEPHYR_SIM_FLASH := zephyr,sim-flash + +config DT_HAS_ZEPHYR_SIM_FLASH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_SIM_FLASH)) + +DT_COMPAT_ZEPHYR_SPI_BITBANG := zephyr,spi-bitbang + +config DT_HAS_ZEPHYR_SPI_BITBANG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_SPI_BITBANG)) + +DT_COMPAT_ZEPHYR_SPI_EMUL_CONTROLLER := zephyr,spi-emul-controller + +config DT_HAS_ZEPHYR_SPI_EMUL_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_SPI_EMUL_CONTROLLER)) + +DT_COMPAT_ZEPHYR_SWDP_GPIO := zephyr,swdp-gpio + +config DT_HAS_ZEPHYR_SWDP_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_SWDP_GPIO)) + +DT_COMPAT_ZEPHYR_UAC2 := zephyr,uac2 + +config DT_HAS_ZEPHYR_UAC2_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_UAC2)) + +DT_COMPAT_ZEPHYR_UAC2_AUDIO_STREAMING := zephyr,uac2-audio-streaming + +config DT_HAS_ZEPHYR_UAC2_AUDIO_STREAMING_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_UAC2_AUDIO_STREAMING)) + +DT_COMPAT_ZEPHYR_UAC2_CLOCK_SOURCE := zephyr,uac2-clock-source + +config DT_HAS_ZEPHYR_UAC2_CLOCK_SOURCE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_UAC2_CLOCK_SOURCE)) + +DT_COMPAT_ZEPHYR_UAC2_FEATURE_UNIT := zephyr,uac2-feature-unit + +config DT_HAS_ZEPHYR_UAC2_FEATURE_UNIT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_UAC2_FEATURE_UNIT)) + +DT_COMPAT_ZEPHYR_UAC2_INPUT_TERMINAL := zephyr,uac2-input-terminal + +config DT_HAS_ZEPHYR_UAC2_INPUT_TERMINAL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_UAC2_INPUT_TERMINAL)) + +DT_COMPAT_ZEPHYR_UAC2_OUTPUT_TERMINAL := zephyr,uac2-output-terminal + +config DT_HAS_ZEPHYR_UAC2_OUTPUT_TERMINAL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_UAC2_OUTPUT_TERMINAL)) + +DT_COMPAT_ZEPHYR_UART_EMUL := zephyr,uart-emul + +config DT_HAS_ZEPHYR_UART_EMUL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_UART_EMUL)) + +DT_COMPAT_ZEPHYR_UDC_SKELETON := zephyr,udc-skeleton + +config DT_HAS_ZEPHYR_UDC_SKELETON_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_UDC_SKELETON)) + +DT_COMPAT_ZEPHYR_UDC_VIRTUAL := zephyr,udc-virtual + +config DT_HAS_ZEPHYR_UDC_VIRTUAL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_UDC_VIRTUAL)) + +DT_COMPAT_ZEPHYR_UHC_VIRTUAL := zephyr,uhc-virtual + +config DT_HAS_ZEPHYR_UHC_VIRTUAL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_UHC_VIRTUAL)) + +DT_COMPAT_ZEPHYR_USB_C_VBUS_ADC := zephyr,usb-c-vbus-adc + +config DT_HAS_ZEPHYR_USB_C_VBUS_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_USB_C_VBUS_ADC)) + +DT_COMPAT_ZEPHYR_USB_C_VBUS_TCPCI := zephyr,usb-c-vbus-tcpci + +config DT_HAS_ZEPHYR_USB_C_VBUS_TCPCI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_USB_C_VBUS_TCPCI)) + +DT_COMPAT_ZEPHYR_VIDEO_EMUL_IMAGER := zephyr,video-emul-imager + +config DT_HAS_ZEPHYR_VIDEO_EMUL_IMAGER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_VIDEO_EMUL_IMAGER)) + +DT_COMPAT_ZEPHYR_VIDEO_EMUL_RX := zephyr,video-emul-rx + +config DT_HAS_ZEPHYR_VIDEO_EMUL_RX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_VIDEO_EMUL_RX)) + +DT_COMPAT_ZEPHYR_W1_GPIO := zephyr,w1-gpio + +config DT_HAS_ZEPHYR_W1_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_W1_GPIO)) + +DT_COMPAT_ZEPHYR_W1_SERIAL := zephyr,w1-serial + +config DT_HAS_ZEPHYR_W1_SERIAL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_W1_SERIAL)) diff --git a/build/PHF000-Firmware/Kconfig/Kconfig.modules b/build/PHF000-Firmware/Kconfig/Kconfig.modules new file mode 100644 index 0000000..9898052 --- /dev/null +++ b/build/PHF000-Firmware/Kconfig/Kconfig.modules @@ -0,0 +1,258 @@ +menu "nrf (/home/miguel/ncs/v3.0.2/nrf)" +osource "/home/miguel/ncs/v3.0.2/nrf/Kconfig.nrf" +config ZEPHYR_NRF_MODULE + bool + default y +endmenu +menu "hostap (/home/miguel/ncs/v3.0.2/modules/lib/hostap)" +osource "$(ZEPHYR_HOSTAP_KCONFIG)" +config ZEPHYR_HOSTAP_MODULE + bool + default y +endmenu +menu "mcuboot (/home/miguel/ncs/v3.0.2/bootloader/mcuboot)" +osource "$(ZEPHYR_MCUBOOT_KCONFIG)" +config ZEPHYR_MCUBOOT_MODULE + bool + default y +endmenu +menu "mbedtls (/home/miguel/ncs/v3.0.2/modules/crypto/mbedtls)" +osource "$(ZEPHYR_MBEDTLS_KCONFIG)" +config ZEPHYR_MBEDTLS_MODULE + bool + default y +endmenu +menu "oberon-psa-crypto (/home/miguel/ncs/v3.0.2/modules/crypto/oberon-psa-crypto)" +osource "/home/miguel/ncs/v3.0.2/modules/crypto/oberon-psa-crypto/Kconfig.oberon_psa_crypto" +config ZEPHYR_OBERON_PSA_CRYPTO_MODULE + bool + default y +endmenu +menu "trusted-firmware-m (/home/miguel/ncs/v3.0.2/modules/tee/tf-m/trusted-firmware-m)" +osource "$(ZEPHYR_TRUSTED_FIRMWARE_M_KCONFIG)" +config ZEPHYR_TRUSTED_FIRMWARE_M_MODULE + bool + default y +endmenu +config ZEPHYR_PSA_ARCH_TESTS_MODULE + bool + default y +menu "cjson (/home/miguel/ncs/v3.0.2/modules/lib/cjson)" +osource "$(ZEPHYR_CJSON_KCONFIG)" +config ZEPHYR_CJSON_MODULE + bool + default y +endmenu +menu "azure-sdk-for-c (/home/miguel/ncs/v3.0.2/modules/lib/azure-sdk-for-c)" +osource "$(ZEPHYR_AZURE_SDK_FOR_C_KCONFIG)" +config ZEPHYR_AZURE_SDK_FOR_C_MODULE + bool + default y +endmenu +menu "cirrus-logic (/home/miguel/ncs/v3.0.2/modules/hal/cirrus-logic)" +osource "/home/miguel/ncs/v3.0.2/modules/hal/cirrus-logic/Kconfig" +config ZEPHYR_CIRRUS_LOGIC_MODULE + bool + default y +endmenu +menu "openthread (/home/miguel/ncs/v3.0.2/modules/lib/openthread)" +osource "$(ZEPHYR_OPENTHREAD_KCONFIG)" +config ZEPHYR_OPENTHREAD_MODULE + bool + default y +endmenu +menu "suit-generator (/home/miguel/ncs/v3.0.2/modules/lib/suit-generator)" +osource "/home/miguel/ncs/v3.0.2/modules/lib/suit-generator/ncs/Kconfig" +config ZEPHYR_SUIT_GENERATOR_MODULE + bool + default y +endmenu +menu "suit-processor (/home/miguel/ncs/v3.0.2/modules/lib/suit-processor)" +osource "/home/miguel/ncs/v3.0.2/modules/lib/suit-processor/Kconfig" +config ZEPHYR_SUIT_PROCESSOR_MODULE + bool + default y +endmenu +menu "memfault-firmware-sdk (/home/miguel/ncs/v3.0.2/modules/lib/memfault-firmware-sdk)" +osource "/home/miguel/ncs/v3.0.2/modules/lib/memfault-firmware-sdk/ports/zephyr/Kconfig" +config ZEPHYR_MEMFAULT_FIRMWARE_SDK_MODULE + bool + default y +endmenu +menu "coremark (/home/miguel/ncs/v3.0.2/modules/benchmark/coremark)" +osource "$(ZEPHYR_COREMARK_KCONFIG)" +config ZEPHYR_COREMARK_MODULE + bool + default y +endmenu +menu "canopennode (/home/miguel/ncs/v3.0.2/modules/lib/canopennode)" +osource "$(ZEPHYR_CANOPENNODE_KCONFIG)" +config ZEPHYR_CANOPENNODE_MODULE + bool + default y +endmenu +menu "chre (/home/miguel/ncs/v3.0.2/modules/lib/chre)" +osource "/home/miguel/ncs/v3.0.2/modules/lib/chre/platform/zephyr/Kconfig" +config ZEPHYR_CHRE_MODULE + bool + default y +endmenu +menu "lz4 (/home/miguel/ncs/v3.0.2/modules/lib/lz4)" +osource "$(ZEPHYR_LZ4_KCONFIG)" +config ZEPHYR_LZ4_MODULE + bool + default y +endmenu +menu "nanopb (/home/miguel/ncs/v3.0.2/modules/lib/nanopb)" +osource "$(ZEPHYR_NANOPB_KCONFIG)" +config ZEPHYR_NANOPB_MODULE + bool + default y +endmenu +config ZEPHYR_TF_M_TESTS_MODULE + bool + default y +menu "zscilib (/home/miguel/ncs/v3.0.2/modules/lib/zscilib)" +osource "/home/miguel/ncs/v3.0.2/modules/lib/zscilib/Kconfig.zscilib" +config ZEPHYR_ZSCILIB_MODULE + bool + default y +endmenu +menu "cmsis (/home/miguel/ncs/v3.0.2/modules/hal/cmsis)" +osource "$(ZEPHYR_CMSIS_KCONFIG)" +config ZEPHYR_CMSIS_MODULE + bool + default y +endmenu +menu "cmsis-dsp (/home/miguel/ncs/v3.0.2/modules/lib/cmsis-dsp)" +osource "$(ZEPHYR_CMSIS_DSP_KCONFIG)" +config ZEPHYR_CMSIS_DSP_MODULE + bool + default y +endmenu +menu "cmsis-nn (/home/miguel/ncs/v3.0.2/modules/lib/cmsis-nn)" +osource "$(ZEPHYR_CMSIS_NN_KCONFIG)" +config ZEPHYR_CMSIS_NN_MODULE + bool + default y +endmenu +menu "fatfs (/home/miguel/ncs/v3.0.2/modules/fs/fatfs)" +osource "$(ZEPHYR_FATFS_KCONFIG)" +config ZEPHYR_FATFS_MODULE + bool + default y +endmenu +menu "hal_nordic (/home/miguel/ncs/v3.0.2/modules/hal/nordic)" +osource "$(ZEPHYR_HAL_NORDIC_KCONFIG)" +config ZEPHYR_HAL_NORDIC_MODULE + bool + default y + +config ZEPHYR_HAL_NORDIC_MODULE_BLOBS + bool +endmenu +menu "hal_st (/home/miguel/ncs/v3.0.2/modules/hal/st)" +osource "$(ZEPHYR_HAL_ST_KCONFIG)" +config ZEPHYR_HAL_ST_MODULE + bool + default y +endmenu +menu "hal_tdk (/home/miguel/ncs/v3.0.2/modules/hal/tdk)" +osource "$(ZEPHYR_HAL_TDK_KCONFIG)" +config ZEPHYR_HAL_TDK_MODULE + bool + default y +endmenu +config ZEPHYR_HAL_WURTHELEKTRONIK_MODULE + bool + default y +menu "liblc3 (/home/miguel/ncs/v3.0.2/modules/lib/liblc3)" +osource "$(ZEPHYR_LIBLC3_KCONFIG)" +config ZEPHYR_LIBLC3_MODULE + bool + default y +endmenu +config ZEPHYR_LIBMETAL_MODULE + bool + default y +menu "littlefs (/home/miguel/ncs/v3.0.2/modules/fs/littlefs)" +osource "$(ZEPHYR_LITTLEFS_KCONFIG)" +config ZEPHYR_LITTLEFS_MODULE + bool + default y +endmenu +menu "loramac-node (/home/miguel/ncs/v3.0.2/modules/lib/loramac-node)" +osource "$(ZEPHYR_LORAMAC_NODE_KCONFIG)" +config ZEPHYR_LORAMAC_NODE_MODULE + bool + default y +endmenu +menu "lvgl (/home/miguel/ncs/v3.0.2/modules/lib/gui/lvgl)" +osource "/home/miguel/ncs/v3.0.2/modules/lib/gui/lvgl/zephyr/Kconfig" +config ZEPHYR_LVGL_MODULE + bool + default y +endmenu +config ZEPHYR_MIPI_SYS_T_MODULE + bool + default y +menu "nrf_wifi (/home/miguel/ncs/v3.0.2/modules/lib/nrf_wifi)" +osource "$(ZEPHYR_NRF_WIFI_KCONFIG)" +config ZEPHYR_NRF_WIFI_MODULE + bool + default y + +config ZEPHYR_NRF_WIFI_MODULE_BLOBS + bool +endmenu +config ZEPHYR_OPEN_AMP_MODULE + bool + default y +menu "percepio (/home/miguel/ncs/v3.0.2/modules/debug/percepio)" +osource "/home/miguel/ncs/v3.0.2/modules/debug/percepio/zephyr/Kconfig" +config ZEPHYR_PERCEPIO_MODULE + bool + default y +endmenu +menu "picolibc (/home/miguel/ncs/v3.0.2/modules/lib/picolibc)" +osource "/home/miguel/ncs/v3.0.2/modules/lib/picolibc/zephyr/Kconfig" +config ZEPHYR_PICOLIBC_MODULE + bool + default y +endmenu +menu "segger (/home/miguel/ncs/v3.0.2/modules/debug/segger)" +osource "$(ZEPHYR_SEGGER_KCONFIG)" +config ZEPHYR_SEGGER_MODULE + bool + default y +endmenu +config ZEPHYR_TINYCRYPT_MODULE + bool + default y +menu "uoscore-uedhoc (/home/miguel/ncs/v3.0.2/modules/lib/uoscore-uedhoc)" +osource "$(ZEPHYR_UOSCORE_UEDHOC_KCONFIG)" +config ZEPHYR_UOSCORE_UEDHOC_MODULE + bool + default y +endmenu +menu "zcbor (/home/miguel/ncs/v3.0.2/modules/lib/zcbor)" +osource "$(ZEPHYR_ZCBOR_KCONFIG)" +config ZEPHYR_ZCBOR_MODULE + bool + default y +endmenu +menu "nrfxlib (/home/miguel/ncs/v3.0.2/nrfxlib)" +osource "/home/miguel/ncs/v3.0.2/nrfxlib/Kconfig.nrfxlib" +config ZEPHYR_NRFXLIB_MODULE + bool + default y +endmenu +config ZEPHYR_NRF_HW_MODELS_MODULE + bool + default y +menu "connectedhomeip (/home/miguel/ncs/v3.0.2/modules/lib/matter)" +osource "/home/miguel/ncs/v3.0.2/modules/lib/matter/config/nrfconnect/chip-module/Kconfig" +config ZEPHYR_CONNECTEDHOMEIP_MODULE + bool + default y +endmenu diff --git a/build/PHF000-Firmware/Kconfig/Kconfig.shield b/build/PHF000-Firmware/Kconfig/Kconfig.shield new file mode 100644 index 0000000..a12591f --- /dev/null +++ b/build/PHF000-Firmware/Kconfig/Kconfig.shield @@ -0,0 +1,2 @@ +osource "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/boards/shields/*/Kconfig.shield" +osource "/home/miguel/ncs/v3.0.2/nrf/boards/shields/*/Kconfig.shield" diff --git a/build/PHF000-Firmware/Kconfig/Kconfig.shield.defconfig b/build/PHF000-Firmware/Kconfig/Kconfig.shield.defconfig new file mode 100644 index 0000000..69f06ca --- /dev/null +++ b/build/PHF000-Firmware/Kconfig/Kconfig.shield.defconfig @@ -0,0 +1,2 @@ +osource "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/boards/shields/*/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/nrf/boards/shields/*/Kconfig.defconfig" diff --git a/build/PHF000-Firmware/Kconfig/Kconfig.sysbuild.modules b/build/PHF000-Firmware/Kconfig/Kconfig.sysbuild.modules new file mode 100644 index 0000000..6bd5c8e --- /dev/null +++ b/build/PHF000-Firmware/Kconfig/Kconfig.sysbuild.modules @@ -0,0 +1,141 @@ +menu "nrf (/home/miguel/ncs/v3.0.2/nrf)" +osource "/home/miguel/ncs/v3.0.2/nrf/sysbuild/Kconfig.sysbuild" +config ZEPHYR_NRF_MODULE + bool + default y +endmenu +config ZEPHYR_HOSTAP_MODULE + bool + default y +config ZEPHYR_MCUBOOT_MODULE + bool + default y +config ZEPHYR_MBEDTLS_MODULE + bool + default y +config ZEPHYR_OBERON_PSA_CRYPTO_MODULE + bool + default y +config ZEPHYR_TRUSTED_FIRMWARE_M_MODULE + bool + default y +config ZEPHYR_PSA_ARCH_TESTS_MODULE + bool + default y +config ZEPHYR_CJSON_MODULE + bool + default y +config ZEPHYR_AZURE_SDK_FOR_C_MODULE + bool + default y +config ZEPHYR_CIRRUS_LOGIC_MODULE + bool + default y +config ZEPHYR_OPENTHREAD_MODULE + bool + default y +config ZEPHYR_SUIT_GENERATOR_MODULE + bool + default y +config ZEPHYR_SUIT_PROCESSOR_MODULE + bool + default y +config ZEPHYR_MEMFAULT_FIRMWARE_SDK_MODULE + bool + default y +config ZEPHYR_COREMARK_MODULE + bool + default y +config ZEPHYR_CANOPENNODE_MODULE + bool + default y +config ZEPHYR_CHRE_MODULE + bool + default y +config ZEPHYR_LZ4_MODULE + bool + default y +config ZEPHYR_NANOPB_MODULE + bool + default y +config ZEPHYR_TF_M_TESTS_MODULE + bool + default y +config ZEPHYR_ZSCILIB_MODULE + bool + default y +config ZEPHYR_CMSIS_MODULE + bool + default y +config ZEPHYR_CMSIS_DSP_MODULE + bool + default y +config ZEPHYR_CMSIS_NN_MODULE + bool + default y +config ZEPHYR_FATFS_MODULE + bool + default y +config ZEPHYR_HAL_NORDIC_MODULE + bool + default y +config ZEPHYR_HAL_ST_MODULE + bool + default y +config ZEPHYR_HAL_TDK_MODULE + bool + default y +config ZEPHYR_HAL_WURTHELEKTRONIK_MODULE + bool + default y +config ZEPHYR_LIBLC3_MODULE + bool + default y +config ZEPHYR_LIBMETAL_MODULE + bool + default y +config ZEPHYR_LITTLEFS_MODULE + bool + default y +config ZEPHYR_LORAMAC_NODE_MODULE + bool + default y +config ZEPHYR_LVGL_MODULE + bool + default y +config ZEPHYR_MIPI_SYS_T_MODULE + bool + default y +config ZEPHYR_NRF_WIFI_MODULE + bool + default y +config ZEPHYR_OPEN_AMP_MODULE + bool + default y +config ZEPHYR_PERCEPIO_MODULE + bool + default y +config ZEPHYR_PICOLIBC_MODULE + bool + default y +config ZEPHYR_SEGGER_MODULE + bool + default y +config ZEPHYR_TINYCRYPT_MODULE + bool + default y +config ZEPHYR_UOSCORE_UEDHOC_MODULE + bool + default y +config ZEPHYR_ZCBOR_MODULE + bool + default y +config ZEPHYR_NRFXLIB_MODULE + bool + default y +config ZEPHYR_NRF_HW_MODELS_MODULE + bool + default y +config ZEPHYR_CONNECTEDHOMEIP_MODULE + bool + default y diff --git a/build/PHF000-Firmware/Kconfig/arch/Kconfig b/build/PHF000-Firmware/Kconfig/arch/Kconfig new file mode 100644 index 0000000..b8b0839 --- /dev/null +++ b/build/PHF000-Firmware/Kconfig/arch/Kconfig @@ -0,0 +1,11 @@ +# Load Zephyr Arch Kconfig descriptions. +osource "/home/miguel/ncs/v3.0.2/zephyr/arch/x86/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/arch/xtensa/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/arch/sparc/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/arch/riscv/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/arch/posix/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/arch/nios2/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/arch/mips/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/arch/arm64/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/arch/arm/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/arch/arc/Kconfig" diff --git a/build/PHF000-Firmware/Kconfig/boards/Kconfig b/build/PHF000-Firmware/Kconfig/boards/Kconfig new file mode 100644 index 0000000..6593afd --- /dev/null +++ b/build/PHF000-Firmware/Kconfig/boards/Kconfig @@ -0,0 +1,2 @@ +# Load Zephyr board Kconfig descriptions. +osource "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/boards/Mi_labs/phf000_board/Kconfig" diff --git a/build/PHF000-Firmware/Kconfig/boards/Kconfig.defconfig b/build/PHF000-Firmware/Kconfig/boards/Kconfig.defconfig new file mode 100644 index 0000000..c9cf06d --- /dev/null +++ b/build/PHF000-Firmware/Kconfig/boards/Kconfig.defconfig @@ -0,0 +1,2 @@ +# Load Zephyr board defconfig descriptions. +osource "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/boards/Mi_labs/phf000_board/Kconfig.defconfig" diff --git a/build/PHF000-Firmware/Kconfig/boards/Kconfig.phf000_board b/build/PHF000-Firmware/Kconfig/boards/Kconfig.phf000_board new file mode 100644 index 0000000..1c1f7d9 --- /dev/null +++ b/build/PHF000-Firmware/Kconfig/boards/Kconfig.phf000_board @@ -0,0 +1,2 @@ +# Load board Kconfig descriptions. +osource "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/boards/Mi_labs/phf000_board/Kconfig.phf000_board" diff --git a/build/PHF000-Firmware/Kconfig/boards/Kconfig.sysbuild b/build/PHF000-Firmware/Kconfig/boards/Kconfig.sysbuild new file mode 100644 index 0000000..d24c3a1 --- /dev/null +++ b/build/PHF000-Firmware/Kconfig/boards/Kconfig.sysbuild @@ -0,0 +1,2 @@ +# Load Sysbuild board Kconfig descriptions. +osource "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/boards/Mi_labs/phf000_board/Kconfig.sysbuild" diff --git a/build/PHF000-Firmware/Kconfig/soc/Kconfig b/build/PHF000-Firmware/Kconfig/soc/Kconfig new file mode 100644 index 0000000..6934bd0 --- /dev/null +++ b/build/PHF000-Firmware/Kconfig/soc/Kconfig @@ -0,0 +1,95 @@ +# Load Zephyr SoC Kconfig descriptions. +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/xlnx/zynqmp/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/xlnx/zynq7000/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/xen/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/wch/ch32v00x/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/ti/simplelink/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/ti/lm3s6965/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/ti/k3/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/telink/tlsr/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/starfive/jh71xx/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/snps/qemu_arc/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_v/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_classic/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/snps/hsdk4xd/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/snps/hsdk/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/snps/emsk/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/snps/emsdp/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/snps/arc_iot/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/silabs/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/sifive/sifive_freedom/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/sensry/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/rockchip/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/renode/riscv_virtual/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/renode/cortex_r8_virtual/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/smartbond/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/rzt2m/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/rz/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/rcar/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/realtek/ec/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/raspberrypi/rpi_pico/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/quicklogic/eos_s3/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/qemu/virt_riscv/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/qemu/malta/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/openisa/rv32m1/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/s32/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/rw/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/mcx/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/lpc/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/layerscape/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imxrt/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/numicro/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/numaker/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/npcx/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/npcm/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/neorv32/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/native/inf_clock/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/microchip/miv/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/microchip/mec/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/mediatek/mt8xxx/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/lowrisc/opentitan/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/litex/litex_vexriscv/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/ite/ec/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/intel/raptor_lake/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/intel/lakemont/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_socfpga_std/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_socfpga/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_niosv/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_ish/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_adsp/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/intel/elkhart_lake/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/intel/atom/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/intel/apollo_lake/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/intel/alder_lake/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat3/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat1b/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat1a/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/gaisler/leon3/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/gaisler/gr716a/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/espressif/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/ene/kb1200/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/efinix/sapphire/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/cdns/xtensa_sample_controller/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/cdns/sample_controller32/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/cdns/dc233c/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/brcm/bcmvk/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/brcm/bcm2712/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/brcm/bcm2711/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/aspeed/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/arm/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/arm/beetle/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/andestech/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/amd/acp_6_0/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/ambiq/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/altr/zephyr_nios2f/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/altr/qemu_nios2/Kconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/adi/max32/Kconfig" +osource "/home/miguel/ncs/v3.0.2/nrf/soc/nordic/Kconfig" diff --git a/build/PHF000-Firmware/Kconfig/soc/Kconfig.defconfig b/build/PHF000-Firmware/Kconfig/soc/Kconfig.defconfig new file mode 100644 index 0000000..9789fcb --- /dev/null +++ b/build/PHF000-Firmware/Kconfig/soc/Kconfig.defconfig @@ -0,0 +1,95 @@ +# Load Zephyr SoC defconfig descriptions. +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/xlnx/zynqmp/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/xlnx/zynq7000/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/xen/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/wch/ch32v00x/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/ti/simplelink/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/ti/lm3s6965/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/ti/k3/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/telink/tlsr/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/starfive/jh71xx/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/snps/qemu_arc/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_v/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_classic/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/snps/hsdk4xd/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/snps/hsdk/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/snps/emsk/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/snps/emsdp/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/snps/arc_iot/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/silabs/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/sifive/sifive_freedom/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/sensry/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/rockchip/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/renode/riscv_virtual/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/renode/cortex_r8_virtual/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/smartbond/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/rzt2m/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/rz/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/rcar/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/realtek/ec/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/raspberrypi/rpi_pico/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/quicklogic/eos_s3/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/qemu/virt_riscv/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/qemu/malta/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/openisa/rv32m1/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/s32/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/rw/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/mcx/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/lpc/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/layerscape/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imxrt/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/numicro/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/numaker/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/npcx/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/npcm/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/neorv32/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/native/inf_clock/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/microchip/miv/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/microchip/mec/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/mediatek/mt8xxx/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/lowrisc/opentitan/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/litex/litex_vexriscv/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/ite/ec/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/intel/raptor_lake/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/intel/lakemont/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_socfpga_std/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_socfpga/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_niosv/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_ish/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_adsp/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/intel/elkhart_lake/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/intel/atom/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/intel/apollo_lake/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/intel/alder_lake/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat3/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat1b/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat1a/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/gaisler/leon3/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/gaisler/gr716a/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/espressif/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/ene/kb1200/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/efinix/sapphire/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/cdns/xtensa_sample_controller/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/cdns/sample_controller32/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/cdns/dc233c/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/brcm/bcmvk/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/brcm/bcm2712/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/brcm/bcm2711/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/aspeed/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/arm/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/arm/beetle/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/andestech/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/amd/acp_6_0/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/ambiq/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/altr/zephyr_nios2f/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/altr/qemu_nios2/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/adi/max32/Kconfig.defconfig" +osource "/home/miguel/ncs/v3.0.2/nrf/soc/nordic/Kconfig.defconfig" diff --git a/build/PHF000-Firmware/Kconfig/soc/Kconfig.soc b/build/PHF000-Firmware/Kconfig/soc/Kconfig.soc new file mode 100644 index 0000000..440c567 --- /dev/null +++ b/build/PHF000-Firmware/Kconfig/soc/Kconfig.soc @@ -0,0 +1,95 @@ +# Load SoC Kconfig descriptions. +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/xlnx/zynqmp/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/xlnx/zynq7000/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/xen/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/wch/ch32v00x/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/ti/simplelink/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/ti/lm3s6965/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/ti/k3/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/telink/tlsr/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/starfive/jh71xx/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/snps/qemu_arc/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_v/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_classic/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/snps/hsdk4xd/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/snps/hsdk/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/snps/emsk/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/snps/emsdp/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/snps/arc_iot/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/silabs/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/sifive/sifive_freedom/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/sensry/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/rockchip/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/renode/riscv_virtual/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/renode/cortex_r8_virtual/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/smartbond/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/rzt2m/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/rz/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/rcar/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/realtek/ec/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/raspberrypi/rpi_pico/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/quicklogic/eos_s3/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/qemu/virt_riscv/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/qemu/malta/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/openisa/rv32m1/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/s32/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/rw/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/mcx/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/lpc/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/layerscape/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imxrt/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/numicro/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/numaker/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/npcx/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/npcm/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/neorv32/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/native/inf_clock/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/microchip/miv/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/microchip/mec/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/mediatek/mt8xxx/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/lowrisc/opentitan/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/litex/litex_vexriscv/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/ite/ec/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/intel/raptor_lake/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/intel/lakemont/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_socfpga_std/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_socfpga/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_niosv/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_ish/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_adsp/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/intel/elkhart_lake/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/intel/atom/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/intel/apollo_lake/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/intel/alder_lake/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat3/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat1b/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat1a/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/gaisler/leon3/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/gaisler/gr716a/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/espressif/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/ene/kb1200/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/efinix/sapphire/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/cdns/xtensa_sample_controller/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/cdns/sample_controller32/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/cdns/dc233c/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/brcm/bcmvk/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/brcm/bcm2712/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/brcm/bcm2711/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/aspeed/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/arm/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/arm/beetle/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/andestech/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/amd/acp_6_0/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/ambiq/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/altr/zephyr_nios2f/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/altr/qemu_nios2/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/adi/max32/Kconfig.soc" +osource "/home/miguel/ncs/v3.0.2/nrf/soc/nordic/Kconfig.soc" diff --git a/build/PHF000-Firmware/Kconfig/soc/Kconfig.sysbuild b/build/PHF000-Firmware/Kconfig/soc/Kconfig.sysbuild new file mode 100644 index 0000000..2c37192 --- /dev/null +++ b/build/PHF000-Firmware/Kconfig/soc/Kconfig.sysbuild @@ -0,0 +1,95 @@ +# Load Sysbuild SoC Kconfig descriptions. +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/xlnx/zynqmp/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/xlnx/zynq7000/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/xen/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/wch/ch32v00x/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/ti/simplelink/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/ti/lm3s6965/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/ti/k3/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/telink/tlsr/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/starfive/jh71xx/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/snps/qemu_arc/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_v/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_classic/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/snps/hsdk4xd/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/snps/hsdk/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/snps/emsk/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/snps/emsdp/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/snps/arc_iot/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/silabs/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/sifive/sifive_freedom/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/sensry/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/rockchip/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/renode/riscv_virtual/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/renode/cortex_r8_virtual/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/smartbond/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/rzt2m/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/rz/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/rcar/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/realtek/ec/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/raspberrypi/rpi_pico/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/quicklogic/eos_s3/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/qemu/virt_riscv/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/qemu/malta/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/openisa/rv32m1/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/s32/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/rw/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/mcx/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/lpc/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/layerscape/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imxrt/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/numicro/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/numaker/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/npcx/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/npcm/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/neorv32/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/native/inf_clock/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/microchip/miv/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/microchip/mec/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/mediatek/mt8xxx/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/lowrisc/opentitan/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/litex/litex_vexriscv/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/ite/ec/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/intel/raptor_lake/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/intel/lakemont/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_socfpga_std/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_socfpga/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_niosv/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_ish/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_adsp/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/intel/elkhart_lake/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/intel/atom/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/intel/apollo_lake/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/intel/alder_lake/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat3/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat1b/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat1a/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/gaisler/leon3/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/gaisler/gr716a/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/espressif/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/ene/kb1200/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/efinix/sapphire/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/cdns/xtensa_sample_controller/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/cdns/sample_controller32/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/cdns/dc233c/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/brcm/bcmvk/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/brcm/bcm2712/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/brcm/bcm2711/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/aspeed/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/arm/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/arm/beetle/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/andestech/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/amd/acp_6_0/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/ambiq/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/altr/zephyr_nios2f/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/altr/qemu_nios2/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/zephyr/soc/adi/max32/Kconfig.sysbuild" +osource "/home/miguel/ncs/v3.0.2/nrf/soc/nordic/Kconfig.sysbuild" diff --git a/build/PHF000-Firmware/app/libapp.a b/build/PHF000-Firmware/app/libapp.a new file mode 100644 index 0000000..5386c9d Binary files /dev/null and b/build/PHF000-Firmware/app/libapp.a differ diff --git a/build/PHF000-Firmware/build.ninja b/build/PHF000-Firmware/build.ninja new file mode 100644 index 0000000..fa0f76e --- /dev/null +++ b/build/PHF000-Firmware/build.ninja @@ -0,0 +1,9645 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Ninja" Generator, CMake Version 3.21 + +# This file contains all the build statements describing the +# compilation DAG. + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# +# Which is the root file. +# ============================================================================= + +# ============================================================================= +# Project: PHF000-Firmware +# Configurations: +# ============================================================================= + +############################################# +# Minimal version of Ninja required by this file + +ninja_required_version = 1.5 + +# ============================================================================= +# Include auxiliary files. + + +############################################# +# Include rules file. + +include CMakeFiles/rules.ninja + +# ============================================================================= + +############################################# +# Logical path to working directory; prefix for absolute paths. + +cmake_ninja_workdir = /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/ + +############################################# +# Utility command for rebuild_cache + +build CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build rebuild_cache: phony CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build edit_cache: phony CMakeFiles/edit_cache.util + + +############################################# +# Utility command for bintools + +build bintools: phony + + +############################################# +# Utility command for linker + +build linker: phony + + +############################################# +# Utility command for compiler-cpp + +build compiler-cpp: phony + + +############################################# +# Utility command for compiler + +build compiler: phony + + +############################################# +# Utility command for runners_yaml_props_target + +build runners_yaml_props_target: phony + + +############################################# +# Utility command for shields + +build shields: phony CMakeFiles/shields + + +############################################# +# Utility command for snippets + +build snippets: phony CMakeFiles/snippets + + +############################################# +# Utility command for guiconfig + +build guiconfig: phony CMakeFiles/guiconfig + + +############################################# +# Utility command for boards + +build boards: phony CMakeFiles/boards + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target app + + +############################################# +# Order-only phony target for app + +build cmake_object_order_depends_target_app: phony || zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/syscall_list_h_target zephyr/zephyr_generated_headers + +build CMakeFiles/app.dir/src/main.c.obj: C_COMPILER__app_ /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/src/main.c || cmake_object_order_depends_target_app + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = CMakeFiles/app.dir/src/main.c.obj.d + FLAGS = -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/drivers/led -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/drivers/button -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/drivers/actuator -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/drivers/battery_adc -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/drivers/temperature -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/drivers/timer_count -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = CMakeFiles/app.dir + OBJECT_FILE_DIR = CMakeFiles/app.dir/src + +build CMakeFiles/app.dir/drivers/led/led.c.obj: C_COMPILER__app_ /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/drivers/led/led.c || cmake_object_order_depends_target_app + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = CMakeFiles/app.dir/drivers/led/led.c.obj.d + FLAGS = -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/drivers/led -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/drivers/button -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/drivers/actuator -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/drivers/battery_adc -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/drivers/temperature -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/drivers/timer_count -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = CMakeFiles/app.dir + OBJECT_FILE_DIR = CMakeFiles/app.dir/drivers/led + +build CMakeFiles/app.dir/drivers/button/button.c.obj: C_COMPILER__app_ /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/drivers/button/button.c || cmake_object_order_depends_target_app + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = CMakeFiles/app.dir/drivers/button/button.c.obj.d + FLAGS = -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/drivers/led -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/drivers/button -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/drivers/actuator -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/drivers/battery_adc -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/drivers/temperature -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/drivers/timer_count -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = CMakeFiles/app.dir + OBJECT_FILE_DIR = CMakeFiles/app.dir/drivers/button + +build CMakeFiles/app.dir/drivers/actuator/actuator.c.obj: C_COMPILER__app_ /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/drivers/actuator/actuator.c || cmake_object_order_depends_target_app + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = CMakeFiles/app.dir/drivers/actuator/actuator.c.obj.d + FLAGS = -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/drivers/led -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/drivers/button -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/drivers/actuator -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/drivers/battery_adc -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/drivers/temperature -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/drivers/timer_count -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = CMakeFiles/app.dir + OBJECT_FILE_DIR = CMakeFiles/app.dir/drivers/actuator + +build CMakeFiles/app.dir/drivers/battery_adc/battery_adc.c.obj: C_COMPILER__app_ /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/drivers/battery_adc/battery_adc.c || cmake_object_order_depends_target_app + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = CMakeFiles/app.dir/drivers/battery_adc/battery_adc.c.obj.d + FLAGS = -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/drivers/led -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/drivers/button -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/drivers/actuator -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/drivers/battery_adc -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/drivers/temperature -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/drivers/timer_count -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = CMakeFiles/app.dir + OBJECT_FILE_DIR = CMakeFiles/app.dir/drivers/battery_adc + +build CMakeFiles/app.dir/drivers/temperature/temperature.c.obj: C_COMPILER__app_ /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/drivers/temperature/temperature.c || cmake_object_order_depends_target_app + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = CMakeFiles/app.dir/drivers/temperature/temperature.c.obj.d + FLAGS = -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/drivers/led -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/drivers/button -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/drivers/actuator -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/drivers/battery_adc -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/drivers/temperature -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/drivers/timer_count -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = CMakeFiles/app.dir + OBJECT_FILE_DIR = CMakeFiles/app.dir/drivers/temperature + +build CMakeFiles/app.dir/drivers/timer_count/timer_count.c.obj: C_COMPILER__app_ /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/drivers/timer_count/timer_count.c || cmake_object_order_depends_target_app + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = CMakeFiles/app.dir/drivers/timer_count/timer_count.c.obj.d + FLAGS = -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/drivers/led -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/drivers/button -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/drivers/actuator -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/drivers/battery_adc -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/drivers/temperature -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/drivers/timer_count -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = CMakeFiles/app.dir + OBJECT_FILE_DIR = CMakeFiles/app.dir/drivers/timer_count + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target app + + +############################################# +# Link the static library app/libapp.a + +build app/libapp.a: C_STATIC_LIBRARY_LINKER__app_ CMakeFiles/app.dir/src/main.c.obj CMakeFiles/app.dir/drivers/led/led.c.obj CMakeFiles/app.dir/drivers/button/button.c.obj CMakeFiles/app.dir/drivers/actuator/actuator.c.obj CMakeFiles/app.dir/drivers/battery_adc/battery_adc.c.obj CMakeFiles/app.dir/drivers/temperature/temperature.c.obj CMakeFiles/app.dir/drivers/timer_count/timer_count.c.obj || zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/syscall_list_h_target zephyr/zephyr_generated_headers + OBJECT_DIR = CMakeFiles/app.dir + POST_BUILD = : + PRE_LINK = : + TARGET_FILE = app/libapp.a + TARGET_PDB = app.a.dbg + + +############################################# +# Utility command for asm + +build asm: phony + + +############################################# +# Utility command for sysbuild_cache + +build sysbuild_cache: phony + + +############################################# +# Utility command for zephyr_property_target + +build zephyr_property_target: phony + + +############################################# +# Utility command for code_data_relocation_target + +build code_data_relocation_target: phony + + +############################################# +# Utility command for menuconfig + +build menuconfig: phony CMakeFiles/menuconfig + + +############################################# +# Utility command for pristine + +build pristine: phony CMakeFiles/pristine + + +############################################# +# Utility command for devicetree_target + +build devicetree_target: phony + + +############################################# +# Utility command for hardenconfig + +build hardenconfig: phony CMakeFiles/hardenconfig + + +############################################# +# Utility command for config-twister + +build config-twister: phony CMakeFiles/config-twister + + +############################################# +# Custom command for CMakeFiles/shields + +build CMakeFiles/shields | ${cmake_ninja_workdir}CMakeFiles/shields: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo adafruit_2_8_tft_touch_v2 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo adafruit_2_8_tft_touch_v2_nano && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo adafruit_adalogger_featherwing && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo adafruit_aw9523 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo adafruit_can_picowbell && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo adafruit_data_logger && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo adafruit_neopixel_grid_bff && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo adafruit_neopixel_grid_bff_display && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo adafruit_pca9685 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo adafruit_winc1500 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo amg88xx_eval_kit && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo amg88xx_grid_eye_eval_shield && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo arceli_eth_w5500 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo arduino_uno_click && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo atmel_rf2xx && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo atmel_rf2xx_arduino && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo atmel_rf2xx_legacy && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo atmel_rf2xx_mikrobus && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo atmel_rf2xx_xplained && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo atmel_rf2xx_xpro && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo boostxl_ulpsense && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo buydisplay_2_8_tft_touch_arduino && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo buydisplay_3_5_tft_touch_arduino && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo coverage_support && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo dac80508_evm && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo dfrobot_can_bus_v2_0 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo dvp_fpc24_mt9m114 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo esp_8266 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo esp_8266_arduino && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo esp_8266_mikrobus && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo eval_adxl362_ardz && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo eval_adxl372_ardz && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo frdm_cr20a && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo frdm_kw41z && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo frdm_stbc_agm01 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo ftdi_vm800c && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo g1120b0mipi && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo inventek_eswifi && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo inventek_eswifi_arduino_spi && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo inventek_eswifi_arduino_uart && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo keyestudio_can_bus_ks0411 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo lcd_par_s035_8080 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo link_board_eth && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo lmp90100_evb && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo ls013b7dh03 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo m5stack_core2_ext && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo max7219_8x8 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo mikroe_accel13_click && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo mikroe_adc_click && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo mikroe_ble_tiny_click && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo mikroe_eth3_click && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo mikroe_eth_click && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo mikroe_mcp2518fd_click && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo mikroe_weather_click_i2c && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo mikroe_weather_click_spi && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo mikroe_wifi_bt_click && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo mikroe_wifi_bt_click_arduino && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo mikroe_wifi_bt_click_mikrobus && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo npm1100_ek && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo npm1300_ek && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo npm6001_ek && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo nrf21540ek && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo nrf21540ek_fwd && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo nrf2220ek && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo nrf2220ek_fwd && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo nrf2240ek && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo nrf2240ek_fwd && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo nrf7002eb && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo nrf7002eb2 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo nrf7002eb2_coex && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo nrf7002eb2_nrf7000 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo nrf7002eb2_nrf7001 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo nrf7002eb_coex && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo nrf7002eb_interposer_p1 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo nrf7002ek && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo nrf7002ek_coex && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo nrf7002ek_nrf7000 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo nrf7002ek_nrf7001 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo nxp_btb44_ov5640 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo p3t1755dp_ard_i2c && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo p3t1755dp_ard_i3c && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo pca63565 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo pca63566 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo pca63566_fwd && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo pmod_acl && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo pmod_sd && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo renesas_us159_da14531evz && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo reyax_lora && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo rk043fn02h_ct && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo rk043fn66hs_ctg && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo rk055hdmipi4m && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo rk055hdmipi4ma0 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo rpi_pico_uno_flexypin && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo rtkmipilcdb00000be && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo seeed_w5500 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo seeed_xiao_expansion_board && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo seeed_xiao_round_display && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo semtech_sx1262mb2das && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo semtech_sx1272mb2das && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo semtech_sx1276mb1mas && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo sh1106_128x64 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo sparkfun_carrier_asset_tracker && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo sparkfun_max3421e && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo sparkfun_sara_r4 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo ssd1306_128x32 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo ssd1306_128x64 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo ssd1306_128x64_spi && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo st7735r_ada_160x128 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo st7789v_tl019fqv01 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo st7789v_waveshare_240x240 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo st_b_lcd40_dsi1_mb1166 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo st_b_lcd40_dsi1_mb1166_a09 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo tcan4550evm && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo ti_bp_bassensorsmkii && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo v2c_daplink && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo v2c_daplink_cfg && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo waveshare_epaper_gdeh0154a07 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo waveshare_epaper_gdeh0213b1 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo waveshare_epaper_gdeh0213b72 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo waveshare_epaper_gdeh029a1 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo waveshare_epaper_gdew042t2 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo waveshare_epaper_gdew042t2-p && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo waveshare_epaper_gdew075t7 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo waveshare_epaper_gdey0213b74 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo waveshare_pico_ups_b && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo weact_ov2640_cam_module && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo wnc_m14a2a && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo x_nucleo_53l0a1 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo x_nucleo_bnrg2a1 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo x_nucleo_eeprma2 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo x_nucleo_idb05a1 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo x_nucleo_iks01a1 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo x_nucleo_iks01a2 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo x_nucleo_iks01a2_shub && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo x_nucleo_iks01a3 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo x_nucleo_iks01a3_shub && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo x_nucleo_iks02a1 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo x_nucleo_iks02a1_mic && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo x_nucleo_iks02a1_shub && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo x_nucleo_iks4a1 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo x_nucleo_iks4a1_shub1 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo x_nucleo_iks4a1_shub2 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo x_nucleo_wb05kn1_spi && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo x_nucleo_wb05kn1_uart + pool = console + + +############################################# +# Custom command for CMakeFiles/snippets + +build CMakeFiles/snippets | ${cmake_ninja_workdir}CMakeFiles/snippets: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo bt-ll-sw-split && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo cdc-acm-console && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo ci-shell && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo diagnostic-logs && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo hpf-gpio-icbmsg && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo hpf-gpio-icmsg && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo hpf-gpio-mbox && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo hpf-mspi && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo hw-flow-control && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo matter-debug && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo nordic-bt-rpc && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo nordic-flpr && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo nordic-flpr-xip && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo nordic-log-stm && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo nordic-log-stm-dict && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo nordic-ppr && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo nordic-ppr-xip && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo nrf54l09-switch-uart && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo nrf70-driver-debug && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo nrf70-driver-verbose-debug && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo nrf70-fw-patch-ext-flash && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo nrf70-wifi && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo nrf91-modem-trace-ext-flash && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo nrf91-modem-trace-ram && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo nrf91-modem-trace-rtt && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo nrf91-modem-trace-uart && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo nus-console && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo power-consumption-tests && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo ram-console && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo rtt-console && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo rtt-tracing && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo serial-console && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo tfm-enable-share-uart && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo wifi-enterprise && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo wifi-ipv4 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo wpa-supplicant-debug && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo xen_dom0 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo zperf + pool = console + + +############################################# +# Custom command for CMakeFiles/guiconfig + +build CMakeFiles/guiconfig | ${cmake_ninja_workdir}CMakeFiles/guiconfig: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/kconfig && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E env ZEPHYR_BASE=/home/miguel/ncs/v3.0.2/zephyr PYTHON_EXECUTABLE=/home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/python srctree=/home/miguel/ncs/v3.0.2/zephyr KERNELVERSION=0x4006300 APPVERSION= APP_VERSION_EXTENDED_STRING= APP_VERSION_TWEAK_STRING= CONFIG_=CONFIG_ KCONFIG_CONFIG=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/.config KCONFIG_BOARD_DIR=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/Kconfig/boards BOARD=phf000_board BOARD_REVISION= BOARD_QUALIFIERS=/nrf52833 HWM_SCHEME=v2 KCONFIG_BINARY_DIR=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/Kconfig APPLICATION_SOURCE_DIR=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware ZEPHYR_TOOLCHAIN_VARIANT=zephyr TOOLCHAIN_KCONFIG_DIR=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/cmake/zephyr TOOLCHAIN_HAS_NEWLIB=y TOOLCHAIN_HAS_PICOLIBC=y EDT_PICKLE=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/edt.pickle NCS_MEMFAULT_FIRMWARE_SDK_KCONFIG=/home/miguel/ncs/v3.0.2/nrf/modules/memfault-firmware-sdk/Kconfig ZEPHYR_NRF_MODULE_DIR=/home/miguel/ncs/v3.0.2/nrf ZEPHYR_HOSTAP_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/lib/hostap ZEPHYR_HOSTAP_KCONFIG=/home/miguel/ncs/v3.0.2/zephyr/modules/hostap/Kconfig ZEPHYR_MCUBOOT_MODULE_DIR=/home/miguel/ncs/v3.0.2/bootloader/mcuboot ZEPHYR_MCUBOOT_KCONFIG=/home/miguel/ncs/v3.0.2/nrf/modules/mcuboot/Kconfig ZEPHYR_MBEDTLS_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/crypto/mbedtls ZEPHYR_MBEDTLS_KCONFIG=/home/miguel/ncs/v3.0.2/zephyr/modules/mbedtls/Kconfig ZEPHYR_OBERON_PSA_CRYPTO_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/crypto/oberon-psa-crypto ZEPHYR_TRUSTED_FIRMWARE_M_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/tee/tf-m/trusted-firmware-m ZEPHYR_TRUSTED_FIRMWARE_M_KCONFIG=/home/miguel/ncs/v3.0.2/nrf/modules/trusted-firmware-m/Kconfig ZEPHYR_PSA_ARCH_TESTS_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/tee/tf-m/psa-arch-tests ZEPHYR_CJSON_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/lib/cjson ZEPHYR_CJSON_KCONFIG=/home/miguel/ncs/v3.0.2/nrf/modules/cjson/Kconfig ZEPHYR_AZURE_SDK_FOR_C_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/lib/azure-sdk-for-c ZEPHYR_AZURE_SDK_FOR_C_KCONFIG=/home/miguel/ncs/v3.0.2/nrf/modules/azure-sdk-for-c/Kconfig ZEPHYR_CIRRUS_LOGIC_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/hal/cirrus-logic ZEPHYR_OPENTHREAD_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/lib/openthread ZEPHYR_OPENTHREAD_KCONFIG=/home/miguel/ncs/v3.0.2/nrf/modules/openthread/Kconfig ZEPHYR_SUIT_GENERATOR_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/lib/suit-generator ZEPHYR_SUIT_PROCESSOR_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/lib/suit-processor ZEPHYR_MEMFAULT_FIRMWARE_SDK_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/lib/memfault-firmware-sdk ZEPHYR_COREMARK_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/benchmark/coremark ZEPHYR_COREMARK_KCONFIG=/home/miguel/ncs/v3.0.2/nrf/modules/coremark/Kconfig ZEPHYR_CANOPENNODE_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/lib/canopennode ZEPHYR_CANOPENNODE_KCONFIG=/home/miguel/ncs/v3.0.2/zephyr/modules/canopennode/Kconfig ZEPHYR_CHRE_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/lib/chre ZEPHYR_LZ4_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/lib/lz4 ZEPHYR_LZ4_KCONFIG=/home/miguel/ncs/v3.0.2/zephyr/modules/lz4/Kconfig ZEPHYR_NANOPB_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/lib/nanopb ZEPHYR_NANOPB_KCONFIG=/home/miguel/ncs/v3.0.2/zephyr/modules/nanopb/Kconfig ZEPHYR_TF_M_TESTS_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/tee/tf-m/tf-m-tests ZEPHYR_ZSCILIB_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/lib/zscilib ZEPHYR_CMSIS_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/hal/cmsis ZEPHYR_CMSIS_KCONFIG=/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/Kconfig ZEPHYR_CMSIS_DSP_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/lib/cmsis-dsp ZEPHYR_CMSIS_DSP_KCONFIG=/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis-dsp/Kconfig ZEPHYR_CMSIS_NN_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/lib/cmsis-nn ZEPHYR_CMSIS_NN_KCONFIG=/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis-nn/Kconfig ZEPHYR_FATFS_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/fs/fatfs ZEPHYR_FATFS_KCONFIG=/home/miguel/ncs/v3.0.2/zephyr/modules/fatfs/Kconfig ZEPHYR_HAL_NORDIC_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/hal/nordic ZEPHYR_HAL_NORDIC_KCONFIG=/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/Kconfig ZEPHYR_HAL_ST_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/hal/st ZEPHYR_HAL_ST_KCONFIG=/home/miguel/ncs/v3.0.2/zephyr/modules/hal_st/Kconfig ZEPHYR_HAL_TDK_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/hal/tdk ZEPHYR_HAL_TDK_KCONFIG=/home/miguel/ncs/v3.0.2/zephyr/modules/hal_tdk/Kconfig ZEPHYR_HAL_WURTHELEKTRONIK_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/hal/wurthelektronik ZEPHYR_LIBLC3_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/lib/liblc3 ZEPHYR_LIBLC3_KCONFIG=/home/miguel/ncs/v3.0.2/zephyr/modules/liblc3/Kconfig ZEPHYR_LIBMETAL_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/hal/libmetal ZEPHYR_LITTLEFS_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/fs/littlefs ZEPHYR_LITTLEFS_KCONFIG=/home/miguel/ncs/v3.0.2/zephyr/modules/littlefs/Kconfig ZEPHYR_LORAMAC_NODE_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/lib/loramac-node ZEPHYR_LORAMAC_NODE_KCONFIG=/home/miguel/ncs/v3.0.2/zephyr/modules/loramac-node/Kconfig ZEPHYR_LVGL_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/lib/gui/lvgl ZEPHYR_LVGL_KCONFIG=/home/miguel/ncs/v3.0.2/zephyr/modules/lvgl/Kconfig ZEPHYR_MIPI_SYS_T_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/debug/mipi-sys-t ZEPHYR_NRF_WIFI_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/lib/nrf_wifi ZEPHYR_NRF_WIFI_KCONFIG=/home/miguel/ncs/v3.0.2/zephyr/modules/nrf_wifi/Kconfig ZEPHYR_OPEN_AMP_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/lib/open-amp ZEPHYR_PERCEPIO_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/debug/percepio ZEPHYR_PERCEPIO_KCONFIG=/home/miguel/ncs/v3.0.2/zephyr/modules/percepio/Kconfig ZEPHYR_PICOLIBC_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/lib/picolibc ZEPHYR_SEGGER_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/debug/segger ZEPHYR_SEGGER_KCONFIG=/home/miguel/ncs/v3.0.2/zephyr/modules/segger/Kconfig ZEPHYR_TINYCRYPT_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/crypto/tinycrypt ZEPHYR_UOSCORE_UEDHOC_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/lib/uoscore-uedhoc ZEPHYR_UOSCORE_UEDHOC_KCONFIG=/home/miguel/ncs/v3.0.2/zephyr/modules/uoscore-uedhoc/Kconfig ZEPHYR_ZCBOR_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/lib/zcbor ZEPHYR_ZCBOR_KCONFIG=/home/miguel/ncs/v3.0.2/zephyr/modules/zcbor/Kconfig ZEPHYR_NRFXLIB_MODULE_DIR=/home/miguel/ncs/v3.0.2/nrfxlib ZEPHYR_NRF_HW_MODELS_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/bsim_hw_models/nrf_hw_models ZEPHYR_CONNECTEDHOMEIP_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/lib/matter ARCH=* ARCH_DIR=/home/miguel/ncs/v3.0.2/zephyr/arch SHIELD_AS_LIST= DTS_POST_CPP=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/zephyr.dts.pre DTS_ROOT_BINDINGS=/home/miguel/ncs/v3.0.2/nrf/dts/bindings?/home/miguel/ncs/v3.0.2/zephyr/dts/bindings /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/python /home/miguel/ncs/v3.0.2/zephyr/scripts/kconfig/guiconfig.py /home/miguel/ncs/v3.0.2/zephyr/Kconfig + pool = console + + +############################################# +# Custom command for CMakeFiles/boards + +build CMakeFiles/boards | ${cmake_ninja_workdir}CMakeFiles/boards: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/python /home/miguel/ncs/v3.0.2/zephyr/scripts/list_boards.py --board-root=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware --board-root=/home/miguel/ncs/v3.0.2/nrf --board-root=/home/miguel/ncs/v3.0.2/zephyr --arch-root=/home/miguel/ncs/v3.0.2/zephyr --soc-root=/home/miguel/ncs/v3.0.2/nrf --soc-root=/home/miguel/ncs/v3.0.2/zephyr + pool = console + + +############################################# +# Custom command for CMakeFiles/menuconfig + +build CMakeFiles/menuconfig | ${cmake_ninja_workdir}CMakeFiles/menuconfig: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/kconfig && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E env ZEPHYR_BASE=/home/miguel/ncs/v3.0.2/zephyr PYTHON_EXECUTABLE=/home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/python srctree=/home/miguel/ncs/v3.0.2/zephyr KERNELVERSION=0x4006300 APPVERSION= APP_VERSION_EXTENDED_STRING= APP_VERSION_TWEAK_STRING= CONFIG_=CONFIG_ KCONFIG_CONFIG=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/.config KCONFIG_BOARD_DIR=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/Kconfig/boards BOARD=phf000_board BOARD_REVISION= BOARD_QUALIFIERS=/nrf52833 HWM_SCHEME=v2 KCONFIG_BINARY_DIR=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/Kconfig APPLICATION_SOURCE_DIR=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware ZEPHYR_TOOLCHAIN_VARIANT=zephyr TOOLCHAIN_KCONFIG_DIR=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/cmake/zephyr TOOLCHAIN_HAS_NEWLIB=y TOOLCHAIN_HAS_PICOLIBC=y EDT_PICKLE=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/edt.pickle NCS_MEMFAULT_FIRMWARE_SDK_KCONFIG=/home/miguel/ncs/v3.0.2/nrf/modules/memfault-firmware-sdk/Kconfig ZEPHYR_NRF_MODULE_DIR=/home/miguel/ncs/v3.0.2/nrf ZEPHYR_HOSTAP_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/lib/hostap ZEPHYR_HOSTAP_KCONFIG=/home/miguel/ncs/v3.0.2/zephyr/modules/hostap/Kconfig ZEPHYR_MCUBOOT_MODULE_DIR=/home/miguel/ncs/v3.0.2/bootloader/mcuboot ZEPHYR_MCUBOOT_KCONFIG=/home/miguel/ncs/v3.0.2/nrf/modules/mcuboot/Kconfig ZEPHYR_MBEDTLS_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/crypto/mbedtls ZEPHYR_MBEDTLS_KCONFIG=/home/miguel/ncs/v3.0.2/zephyr/modules/mbedtls/Kconfig ZEPHYR_OBERON_PSA_CRYPTO_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/crypto/oberon-psa-crypto ZEPHYR_TRUSTED_FIRMWARE_M_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/tee/tf-m/trusted-firmware-m ZEPHYR_TRUSTED_FIRMWARE_M_KCONFIG=/home/miguel/ncs/v3.0.2/nrf/modules/trusted-firmware-m/Kconfig ZEPHYR_PSA_ARCH_TESTS_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/tee/tf-m/psa-arch-tests ZEPHYR_CJSON_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/lib/cjson ZEPHYR_CJSON_KCONFIG=/home/miguel/ncs/v3.0.2/nrf/modules/cjson/Kconfig ZEPHYR_AZURE_SDK_FOR_C_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/lib/azure-sdk-for-c ZEPHYR_AZURE_SDK_FOR_C_KCONFIG=/home/miguel/ncs/v3.0.2/nrf/modules/azure-sdk-for-c/Kconfig ZEPHYR_CIRRUS_LOGIC_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/hal/cirrus-logic ZEPHYR_OPENTHREAD_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/lib/openthread ZEPHYR_OPENTHREAD_KCONFIG=/home/miguel/ncs/v3.0.2/nrf/modules/openthread/Kconfig ZEPHYR_SUIT_GENERATOR_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/lib/suit-generator ZEPHYR_SUIT_PROCESSOR_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/lib/suit-processor ZEPHYR_MEMFAULT_FIRMWARE_SDK_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/lib/memfault-firmware-sdk ZEPHYR_COREMARK_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/benchmark/coremark ZEPHYR_COREMARK_KCONFIG=/home/miguel/ncs/v3.0.2/nrf/modules/coremark/Kconfig ZEPHYR_CANOPENNODE_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/lib/canopennode ZEPHYR_CANOPENNODE_KCONFIG=/home/miguel/ncs/v3.0.2/zephyr/modules/canopennode/Kconfig ZEPHYR_CHRE_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/lib/chre ZEPHYR_LZ4_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/lib/lz4 ZEPHYR_LZ4_KCONFIG=/home/miguel/ncs/v3.0.2/zephyr/modules/lz4/Kconfig ZEPHYR_NANOPB_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/lib/nanopb ZEPHYR_NANOPB_KCONFIG=/home/miguel/ncs/v3.0.2/zephyr/modules/nanopb/Kconfig ZEPHYR_TF_M_TESTS_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/tee/tf-m/tf-m-tests ZEPHYR_ZSCILIB_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/lib/zscilib ZEPHYR_CMSIS_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/hal/cmsis ZEPHYR_CMSIS_KCONFIG=/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/Kconfig ZEPHYR_CMSIS_DSP_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/lib/cmsis-dsp ZEPHYR_CMSIS_DSP_KCONFIG=/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis-dsp/Kconfig ZEPHYR_CMSIS_NN_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/lib/cmsis-nn ZEPHYR_CMSIS_NN_KCONFIG=/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis-nn/Kconfig ZEPHYR_FATFS_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/fs/fatfs ZEPHYR_FATFS_KCONFIG=/home/miguel/ncs/v3.0.2/zephyr/modules/fatfs/Kconfig ZEPHYR_HAL_NORDIC_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/hal/nordic ZEPHYR_HAL_NORDIC_KCONFIG=/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/Kconfig ZEPHYR_HAL_ST_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/hal/st ZEPHYR_HAL_ST_KCONFIG=/home/miguel/ncs/v3.0.2/zephyr/modules/hal_st/Kconfig ZEPHYR_HAL_TDK_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/hal/tdk ZEPHYR_HAL_TDK_KCONFIG=/home/miguel/ncs/v3.0.2/zephyr/modules/hal_tdk/Kconfig ZEPHYR_HAL_WURTHELEKTRONIK_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/hal/wurthelektronik ZEPHYR_LIBLC3_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/lib/liblc3 ZEPHYR_LIBLC3_KCONFIG=/home/miguel/ncs/v3.0.2/zephyr/modules/liblc3/Kconfig ZEPHYR_LIBMETAL_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/hal/libmetal ZEPHYR_LITTLEFS_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/fs/littlefs ZEPHYR_LITTLEFS_KCONFIG=/home/miguel/ncs/v3.0.2/zephyr/modules/littlefs/Kconfig ZEPHYR_LORAMAC_NODE_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/lib/loramac-node ZEPHYR_LORAMAC_NODE_KCONFIG=/home/miguel/ncs/v3.0.2/zephyr/modules/loramac-node/Kconfig ZEPHYR_LVGL_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/lib/gui/lvgl ZEPHYR_LVGL_KCONFIG=/home/miguel/ncs/v3.0.2/zephyr/modules/lvgl/Kconfig ZEPHYR_MIPI_SYS_T_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/debug/mipi-sys-t ZEPHYR_NRF_WIFI_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/lib/nrf_wifi ZEPHYR_NRF_WIFI_KCONFIG=/home/miguel/ncs/v3.0.2/zephyr/modules/nrf_wifi/Kconfig ZEPHYR_OPEN_AMP_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/lib/open-amp ZEPHYR_PERCEPIO_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/debug/percepio ZEPHYR_PERCEPIO_KCONFIG=/home/miguel/ncs/v3.0.2/zephyr/modules/percepio/Kconfig ZEPHYR_PICOLIBC_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/lib/picolibc ZEPHYR_SEGGER_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/debug/segger ZEPHYR_SEGGER_KCONFIG=/home/miguel/ncs/v3.0.2/zephyr/modules/segger/Kconfig ZEPHYR_TINYCRYPT_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/crypto/tinycrypt ZEPHYR_UOSCORE_UEDHOC_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/lib/uoscore-uedhoc ZEPHYR_UOSCORE_UEDHOC_KCONFIG=/home/miguel/ncs/v3.0.2/zephyr/modules/uoscore-uedhoc/Kconfig ZEPHYR_ZCBOR_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/lib/zcbor ZEPHYR_ZCBOR_KCONFIG=/home/miguel/ncs/v3.0.2/zephyr/modules/zcbor/Kconfig ZEPHYR_NRFXLIB_MODULE_DIR=/home/miguel/ncs/v3.0.2/nrfxlib ZEPHYR_NRF_HW_MODELS_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/bsim_hw_models/nrf_hw_models ZEPHYR_CONNECTEDHOMEIP_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/lib/matter ARCH=* ARCH_DIR=/home/miguel/ncs/v3.0.2/zephyr/arch SHIELD_AS_LIST= DTS_POST_CPP=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/zephyr.dts.pre DTS_ROOT_BINDINGS=/home/miguel/ncs/v3.0.2/nrf/dts/bindings?/home/miguel/ncs/v3.0.2/zephyr/dts/bindings /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/python /home/miguel/ncs/v3.0.2/zephyr/scripts/kconfig/menuconfig.py /home/miguel/ncs/v3.0.2/zephyr/Kconfig + pool = console + + +############################################# +# Custom command for CMakeFiles/pristine + +build CMakeFiles/pristine | ${cmake_ninja_workdir}CMakeFiles/pristine: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -DBINARY_DIR=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware -DSOURCE_DIR=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -P /home/miguel/ncs/v3.0.2/zephyr/cmake/pristine.cmake + + +############################################# +# Custom command for CMakeFiles/hardenconfig + +build CMakeFiles/hardenconfig | ${cmake_ninja_workdir}CMakeFiles/hardenconfig: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/kconfig && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E env ZEPHYR_BASE=/home/miguel/ncs/v3.0.2/zephyr PYTHON_EXECUTABLE=/home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/python srctree=/home/miguel/ncs/v3.0.2/zephyr KERNELVERSION=0x4006300 APPVERSION= APP_VERSION_EXTENDED_STRING= APP_VERSION_TWEAK_STRING= CONFIG_=CONFIG_ KCONFIG_CONFIG=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/.config KCONFIG_BOARD_DIR=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/Kconfig/boards BOARD=phf000_board BOARD_REVISION= BOARD_QUALIFIERS=/nrf52833 HWM_SCHEME=v2 KCONFIG_BINARY_DIR=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/Kconfig APPLICATION_SOURCE_DIR=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware ZEPHYR_TOOLCHAIN_VARIANT=zephyr TOOLCHAIN_KCONFIG_DIR=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/cmake/zephyr TOOLCHAIN_HAS_NEWLIB=y TOOLCHAIN_HAS_PICOLIBC=y EDT_PICKLE=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/edt.pickle NCS_MEMFAULT_FIRMWARE_SDK_KCONFIG=/home/miguel/ncs/v3.0.2/nrf/modules/memfault-firmware-sdk/Kconfig ZEPHYR_NRF_MODULE_DIR=/home/miguel/ncs/v3.0.2/nrf ZEPHYR_HOSTAP_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/lib/hostap ZEPHYR_HOSTAP_KCONFIG=/home/miguel/ncs/v3.0.2/zephyr/modules/hostap/Kconfig ZEPHYR_MCUBOOT_MODULE_DIR=/home/miguel/ncs/v3.0.2/bootloader/mcuboot ZEPHYR_MCUBOOT_KCONFIG=/home/miguel/ncs/v3.0.2/nrf/modules/mcuboot/Kconfig ZEPHYR_MBEDTLS_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/crypto/mbedtls ZEPHYR_MBEDTLS_KCONFIG=/home/miguel/ncs/v3.0.2/zephyr/modules/mbedtls/Kconfig ZEPHYR_OBERON_PSA_CRYPTO_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/crypto/oberon-psa-crypto ZEPHYR_TRUSTED_FIRMWARE_M_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/tee/tf-m/trusted-firmware-m ZEPHYR_TRUSTED_FIRMWARE_M_KCONFIG=/home/miguel/ncs/v3.0.2/nrf/modules/trusted-firmware-m/Kconfig ZEPHYR_PSA_ARCH_TESTS_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/tee/tf-m/psa-arch-tests ZEPHYR_CJSON_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/lib/cjson ZEPHYR_CJSON_KCONFIG=/home/miguel/ncs/v3.0.2/nrf/modules/cjson/Kconfig ZEPHYR_AZURE_SDK_FOR_C_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/lib/azure-sdk-for-c ZEPHYR_AZURE_SDK_FOR_C_KCONFIG=/home/miguel/ncs/v3.0.2/nrf/modules/azure-sdk-for-c/Kconfig ZEPHYR_CIRRUS_LOGIC_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/hal/cirrus-logic ZEPHYR_OPENTHREAD_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/lib/openthread ZEPHYR_OPENTHREAD_KCONFIG=/home/miguel/ncs/v3.0.2/nrf/modules/openthread/Kconfig ZEPHYR_SUIT_GENERATOR_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/lib/suit-generator ZEPHYR_SUIT_PROCESSOR_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/lib/suit-processor ZEPHYR_MEMFAULT_FIRMWARE_SDK_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/lib/memfault-firmware-sdk ZEPHYR_COREMARK_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/benchmark/coremark ZEPHYR_COREMARK_KCONFIG=/home/miguel/ncs/v3.0.2/nrf/modules/coremark/Kconfig ZEPHYR_CANOPENNODE_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/lib/canopennode ZEPHYR_CANOPENNODE_KCONFIG=/home/miguel/ncs/v3.0.2/zephyr/modules/canopennode/Kconfig ZEPHYR_CHRE_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/lib/chre ZEPHYR_LZ4_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/lib/lz4 ZEPHYR_LZ4_KCONFIG=/home/miguel/ncs/v3.0.2/zephyr/modules/lz4/Kconfig ZEPHYR_NANOPB_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/lib/nanopb ZEPHYR_NANOPB_KCONFIG=/home/miguel/ncs/v3.0.2/zephyr/modules/nanopb/Kconfig ZEPHYR_TF_M_TESTS_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/tee/tf-m/tf-m-tests ZEPHYR_ZSCILIB_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/lib/zscilib ZEPHYR_CMSIS_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/hal/cmsis ZEPHYR_CMSIS_KCONFIG=/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/Kconfig ZEPHYR_CMSIS_DSP_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/lib/cmsis-dsp ZEPHYR_CMSIS_DSP_KCONFIG=/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis-dsp/Kconfig ZEPHYR_CMSIS_NN_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/lib/cmsis-nn ZEPHYR_CMSIS_NN_KCONFIG=/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis-nn/Kconfig ZEPHYR_FATFS_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/fs/fatfs ZEPHYR_FATFS_KCONFIG=/home/miguel/ncs/v3.0.2/zephyr/modules/fatfs/Kconfig ZEPHYR_HAL_NORDIC_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/hal/nordic ZEPHYR_HAL_NORDIC_KCONFIG=/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/Kconfig ZEPHYR_HAL_ST_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/hal/st ZEPHYR_HAL_ST_KCONFIG=/home/miguel/ncs/v3.0.2/zephyr/modules/hal_st/Kconfig ZEPHYR_HAL_TDK_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/hal/tdk ZEPHYR_HAL_TDK_KCONFIG=/home/miguel/ncs/v3.0.2/zephyr/modules/hal_tdk/Kconfig ZEPHYR_HAL_WURTHELEKTRONIK_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/hal/wurthelektronik ZEPHYR_LIBLC3_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/lib/liblc3 ZEPHYR_LIBLC3_KCONFIG=/home/miguel/ncs/v3.0.2/zephyr/modules/liblc3/Kconfig ZEPHYR_LIBMETAL_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/hal/libmetal ZEPHYR_LITTLEFS_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/fs/littlefs ZEPHYR_LITTLEFS_KCONFIG=/home/miguel/ncs/v3.0.2/zephyr/modules/littlefs/Kconfig ZEPHYR_LORAMAC_NODE_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/lib/loramac-node ZEPHYR_LORAMAC_NODE_KCONFIG=/home/miguel/ncs/v3.0.2/zephyr/modules/loramac-node/Kconfig ZEPHYR_LVGL_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/lib/gui/lvgl ZEPHYR_LVGL_KCONFIG=/home/miguel/ncs/v3.0.2/zephyr/modules/lvgl/Kconfig ZEPHYR_MIPI_SYS_T_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/debug/mipi-sys-t ZEPHYR_NRF_WIFI_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/lib/nrf_wifi ZEPHYR_NRF_WIFI_KCONFIG=/home/miguel/ncs/v3.0.2/zephyr/modules/nrf_wifi/Kconfig ZEPHYR_OPEN_AMP_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/lib/open-amp ZEPHYR_PERCEPIO_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/debug/percepio ZEPHYR_PERCEPIO_KCONFIG=/home/miguel/ncs/v3.0.2/zephyr/modules/percepio/Kconfig ZEPHYR_PICOLIBC_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/lib/picolibc ZEPHYR_SEGGER_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/debug/segger ZEPHYR_SEGGER_KCONFIG=/home/miguel/ncs/v3.0.2/zephyr/modules/segger/Kconfig ZEPHYR_TINYCRYPT_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/crypto/tinycrypt ZEPHYR_UOSCORE_UEDHOC_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/lib/uoscore-uedhoc ZEPHYR_UOSCORE_UEDHOC_KCONFIG=/home/miguel/ncs/v3.0.2/zephyr/modules/uoscore-uedhoc/Kconfig ZEPHYR_ZCBOR_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/lib/zcbor ZEPHYR_ZCBOR_KCONFIG=/home/miguel/ncs/v3.0.2/zephyr/modules/zcbor/Kconfig ZEPHYR_NRFXLIB_MODULE_DIR=/home/miguel/ncs/v3.0.2/nrfxlib ZEPHYR_NRF_HW_MODELS_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/bsim_hw_models/nrf_hw_models ZEPHYR_CONNECTEDHOMEIP_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/lib/matter ARCH=* ARCH_DIR=/home/miguel/ncs/v3.0.2/zephyr/arch SHIELD_AS_LIST= DTS_POST_CPP=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/zephyr.dts.pre DTS_ROOT_BINDINGS=/home/miguel/ncs/v3.0.2/nrf/dts/bindings?/home/miguel/ncs/v3.0.2/zephyr/dts/bindings /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/python /home/miguel/ncs/v3.0.2/zephyr/scripts/kconfig/hardenconfig.py /home/miguel/ncs/v3.0.2/zephyr/Kconfig + pool = console + + +############################################# +# Phony custom command for CMakeFiles/config-twister + +build CMakeFiles/config-twister | ${cmake_ninja_workdir}CMakeFiles/config-twister: phony zephyr/.config + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/cmake/modules/kernel.cmake +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/edit_cache: phony zephyr/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for build_info_yaml_saved + +build zephyr/build_info_yaml_saved: phony zephyr/CMakeFiles/build_info_yaml_saved + + +############################################# +# Utility command for llext-edk + +build zephyr/llext-edk: phony zephyr/CMakeFiles/llext-edk zephyr/llext-edk.tar.xz zephyr/zephyr.elf + + +############################################# +# Utility command for run + +build zephyr/run: phony zephyr/CMakeFiles/run + + +############################################# +# Utility command for initlevels + +build zephyr/initlevels: phony zephyr/CMakeFiles/initlevels zephyr/zephyr.elf + +# ============================================================================= +# Object build statements for EXECUTABLE target zephyr_final + + +############################################# +# Order-only phony target for zephyr_final + +build cmake_object_order_depends_target_zephyr_final: phony || cmake_object_order_depends_target_app cmake_object_order_depends_target_arch__arm__core cmake_object_order_depends_target_arch__arm__core__cortex_m cmake_object_order_depends_target_arch__arm__core__mpu cmake_object_order_depends_target_arch__common cmake_object_order_depends_target_drivers__adc cmake_object_order_depends_target_drivers__clock_control cmake_object_order_depends_target_drivers__console cmake_object_order_depends_target_drivers__gpio cmake_object_order_depends_target_drivers__hwinfo cmake_object_order_depends_target_drivers__pinctrl cmake_object_order_depends_target_drivers__sensor__nordic__temp cmake_object_order_depends_target_drivers__serial cmake_object_order_depends_target_drivers__timer cmake_object_order_depends_target_drivers__usb__common__nrf_usbd_common cmake_object_order_depends_target_drivers__usb__device cmake_object_order_depends_target_isr_tables cmake_object_order_depends_target_kernel cmake_object_order_depends_target_lib__libc__common cmake_object_order_depends_target_lib__libc__picolibc cmake_object_order_depends_target_modules__hal_nordic__nrfx cmake_object_order_depends_target_modules__segger cmake_object_order_depends_target_offsets cmake_object_order_depends_target_soc__nordic cmake_object_order_depends_target_zephyr zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/isr_tables.c zephyr/isr_tables_swi.ld zephyr/isr_tables_vt.ld zephyr/kobj_types_h_target zephyr/linker_zephyr_final_script_target zephyr/syscall_list_h_target zephyr/zephyr_pre0.elf + +build zephyr/CMakeFiles/zephyr_final.dir/misc/empty_file.c.obj: C_COMPILER__zephyr_final_ /home/miguel/ncs/v3.0.2/zephyr/misc/empty_file.c || cmake_object_order_depends_target_zephyr_final + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = zephyr/CMakeFiles/zephyr_final.dir/misc/empty_file.c.obj.d + FLAGS = -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr_final.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr_final.dir/misc + +build zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj: C_COMPILER__zephyr_final_ /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/isr_tables.c || cmake_object_order_depends_target_zephyr_final + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj.d + FLAGS = -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr_final.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr_final.dir + + +# ============================================================================= +# Link build statements for EXECUTABLE target zephyr_final + + +############################################# +# Link the executable zephyr/zephyr.elf + +build zephyr/zephyr.elf zephyr/zephyr.map zephyr/zephyr.hex zephyr/zephyr.bin zephyr/zephyr.stat | ${cmake_ninja_workdir}zephyr/zephyr.map ${cmake_ninja_workdir}zephyr/zephyr.hex ${cmake_ninja_workdir}zephyr/zephyr.bin ${cmake_ninja_workdir}zephyr/zephyr.stat: C_EXECUTABLE_LINKER__zephyr_final_ zephyr/CMakeFiles/zephyr_final.dir/misc/empty_file.c.obj zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj | zephyr/CMakeFiles/offsets.dir/./arch/arm/core/offsets/offsets.c.obj zephyr/linker.cmd app/libapp.a zephyr/libzephyr.a zephyr/arch/common/libarch__common.a zephyr/arch/arch/arm/core/libarch__arm__core.a zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a zephyr/lib/libc/picolibc/liblib__libc__picolibc.a zephyr/lib/libc/common/liblib__libc__common.a zephyr/soc/soc/nrf52833/libsoc__nordic.a zephyr/drivers/usb/device/libdrivers__usb__device.a zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a zephyr/drivers/adc/libdrivers__adc.a zephyr/drivers/clock_control/libdrivers__clock_control.a zephyr/drivers/console/libdrivers__console.a zephyr/drivers/gpio/libdrivers__gpio.a zephyr/drivers/hwinfo/libdrivers__hwinfo.a zephyr/drivers/pinctrl/libdrivers__pinctrl.a zephyr/drivers/sensor/nordic/temp/libdrivers__sensor__nordic__temp.a zephyr/drivers/serial/libdrivers__serial.a zephyr/drivers/timer/libdrivers__timer.a modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a modules/segger/libmodules__segger.a zephyr/kernel/libkernel.a zephyr/arch/common/libisr_tables.a zephyr/linker.cmd || app/libapp.a modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a modules/segger/libmodules__segger.a zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a zephyr/arch/arch/arm/core/libarch__arm__core.a zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a zephyr/arch/common/libarch__common.a zephyr/arch/common/libisr_tables.a zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/drivers/adc/libdrivers__adc.a zephyr/drivers/clock_control/libdrivers__clock_control.a zephyr/drivers/console/libdrivers__console.a zephyr/drivers/gpio/libdrivers__gpio.a zephyr/drivers/hwinfo/libdrivers__hwinfo.a zephyr/drivers/pinctrl/libdrivers__pinctrl.a zephyr/drivers/sensor/nordic/temp/libdrivers__sensor__nordic__temp.a zephyr/drivers/serial/libdrivers__serial.a zephyr/drivers/timer/libdrivers__timer.a zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a zephyr/drivers/usb/device/libdrivers__usb__device.a zephyr/kernel/libkernel.a zephyr/kobj_types_h_target zephyr/lib/libc/common/liblib__libc__common.a zephyr/lib/libc/picolibc/liblib__libc__picolibc.a zephyr/libzephyr.a zephyr/linker_zephyr_final_script_target zephyr/offsets zephyr/soc/soc/nrf52833/libsoc__nordic.a zephyr/syscall_list_h_target zephyr/zephyr_pre0.elf + LINK_FLAGS = -gdwarf-4 + LINK_LIBRARIES = zephyr/CMakeFiles/offsets.dir/./arch/arm/core/offsets/offsets.c.obj -T zephyr/linker.cmd -Wl,-Map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/zephyr_final.map -Wl,--whole-archive app/libapp.a zephyr/libzephyr.a zephyr/arch/common/libarch__common.a zephyr/arch/arch/arm/core/libarch__arm__core.a zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a zephyr/lib/libc/picolibc/liblib__libc__picolibc.a zephyr/lib/libc/common/liblib__libc__common.a zephyr/soc/soc/nrf52833/libsoc__nordic.a zephyr/drivers/usb/device/libdrivers__usb__device.a zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a zephyr/drivers/adc/libdrivers__adc.a zephyr/drivers/clock_control/libdrivers__clock_control.a zephyr/drivers/console/libdrivers__console.a zephyr/drivers/gpio/libdrivers__gpio.a zephyr/drivers/hwinfo/libdrivers__hwinfo.a zephyr/drivers/pinctrl/libdrivers__pinctrl.a zephyr/drivers/sensor/nordic/temp/libdrivers__sensor__nordic__temp.a zephyr/drivers/serial/libdrivers__serial.a zephyr/drivers/timer/libdrivers__timer.a modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a modules/segger/libmodules__segger.a -Wl,--no-whole-archive zephyr/kernel/libkernel.a -L/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr -Wl,--print-memory-usage zephyr/arch/common/libisr_tables.a -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft -fuse-ld=bfd -Wl,--gc-sections -Wl,--build-id=none -Wl,--sort-common=descending -Wl,--sort-section=alignment -Wl,-u,_OffsetAbsSyms -Wl,-u,_ConfigAbsSyms -nostdlib -static -Wl,-X -Wl,-N -Wl,--orphan-handling=warn -Wl,-no-pie -specs=picolibc.specs -DPICOLIBC_LONG_LONG_PRINTF_SCANF + OBJECT_DIR = zephyr/CMakeFiles/zephyr_final.dir + POST_BUILD = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo Generating\ files\ from\ /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/zephyr.elf\ for\ board:\ phf000_board && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E copy zephyr_final.map zephyr.map && /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objcopy --output-target=ihex --remove-section=.comment --remove-section=COMMON zephyr.elf zephyr.hex && /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objcopy --gap-fill 0xFF --output-target=binary --remove-section=.comment --remove-section=COMMON zephyr.elf zephyr.bin && /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-readelf -e zephyr.elf > zephyr.stat && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/python /home/miguel/ncs/v3.0.2/zephyr/scripts/build/check_init_priorities.py --elf-file=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/zephyr.elf + PRE_LINK = : + RESTAT = 1 + TARGET_FILE = zephyr/zephyr.elf + TARGET_PDB = zephyr.elf.dbg + + +############################################# +# Utility command for linker_zephyr_final_script_target + +build zephyr/linker_zephyr_final_script_target: phony zephyr/CMakeFiles/linker_zephyr_final_script_target zephyr/linker.cmd zephyr/zephyr_generated_headers zephyr/zephyr_pre0.elf + + +############################################# +# Utility command for version_h + +build zephyr/version_h: phony zephyr/CMakeFiles/version_h zephyr/include/generated/zephyr/version.h modules/nrf/ncs_commit_h modules/nrf/ncs_version_h modules/nrf/zephyr_commit_h + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target zephyr + + +############################################# +# Order-only phony target for zephyr + +build cmake_object_order_depends_target_zephyr: phony || zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/syscall_list_h_target zephyr/zephyr_generated_headers + +build zephyr/CMakeFiles/zephyr.dir/lib/heap/heap.c.obj: C_COMPILER__zephyr_ /home/miguel/ncs/v3.0.2/zephyr/lib/heap/heap.c || cmake_object_order_depends_target_zephyr + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/lib/heap/heap.c.obj.d + FLAGS = -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/lib/heap + +build zephyr/CMakeFiles/zephyr.dir/lib/os/cbprintf_packaged.c.obj: C_COMPILER__zephyr_ /home/miguel/ncs/v3.0.2/zephyr/lib/os/cbprintf_packaged.c || cmake_object_order_depends_target_zephyr + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/lib/os/cbprintf_packaged.c.obj.d + FLAGS = -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/lib/os + +build zephyr/CMakeFiles/zephyr.dir/lib/os/printk.c.obj: C_COMPILER__zephyr_ /home/miguel/ncs/v3.0.2/zephyr/lib/os/printk.c || cmake_object_order_depends_target_zephyr + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/lib/os/printk.c.obj.d + FLAGS = -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/lib/os + +build zephyr/CMakeFiles/zephyr.dir/lib/os/sem.c.obj: C_COMPILER__zephyr_ /home/miguel/ncs/v3.0.2/zephyr/lib/os/sem.c || cmake_object_order_depends_target_zephyr + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/lib/os/sem.c.obj.d + FLAGS = -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/lib/os + +build zephyr/CMakeFiles/zephyr.dir/lib/os/thread_entry.c.obj: C_COMPILER__zephyr_ /home/miguel/ncs/v3.0.2/zephyr/lib/os/thread_entry.c || cmake_object_order_depends_target_zephyr + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/lib/os/thread_entry.c.obj.d + FLAGS = -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/lib/os + +build zephyr/CMakeFiles/zephyr.dir/lib/os/cbprintf_complete.c.obj: C_COMPILER__zephyr_ /home/miguel/ncs/v3.0.2/zephyr/lib/os/cbprintf_complete.c || cmake_object_order_depends_target_zephyr + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/lib/os/cbprintf_complete.c.obj.d + FLAGS = -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/lib/os + +build zephyr/CMakeFiles/zephyr.dir/lib/os/assert.c.obj: C_COMPILER__zephyr_ /home/miguel/ncs/v3.0.2/zephyr/lib/os/assert.c || cmake_object_order_depends_target_zephyr + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/lib/os/assert.c.obj.d + FLAGS = -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/lib/os + +build zephyr/CMakeFiles/zephyr.dir/lib/utils/dec.c.obj: C_COMPILER__zephyr_ /home/miguel/ncs/v3.0.2/zephyr/lib/utils/dec.c || cmake_object_order_depends_target_zephyr + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/lib/utils/dec.c.obj.d + FLAGS = -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/lib/utils + +build zephyr/CMakeFiles/zephyr.dir/lib/utils/hex.c.obj: C_COMPILER__zephyr_ /home/miguel/ncs/v3.0.2/zephyr/lib/utils/hex.c || cmake_object_order_depends_target_zephyr + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/lib/utils/hex.c.obj.d + FLAGS = -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/lib/utils + +build zephyr/CMakeFiles/zephyr.dir/lib/utils/rb.c.obj: C_COMPILER__zephyr_ /home/miguel/ncs/v3.0.2/zephyr/lib/utils/rb.c || cmake_object_order_depends_target_zephyr + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/lib/utils/rb.c.obj.d + FLAGS = -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/lib/utils + +build zephyr/CMakeFiles/zephyr.dir/lib/utils/timeutil.c.obj: C_COMPILER__zephyr_ /home/miguel/ncs/v3.0.2/zephyr/lib/utils/timeutil.c || cmake_object_order_depends_target_zephyr + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/lib/utils/timeutil.c.obj.d + FLAGS = -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/lib/utils + +build zephyr/CMakeFiles/zephyr.dir/lib/utils/bitarray.c.obj: C_COMPILER__zephyr_ /home/miguel/ncs/v3.0.2/zephyr/lib/utils/bitarray.c || cmake_object_order_depends_target_zephyr + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/lib/utils/bitarray.c.obj.d + FLAGS = -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/lib/utils + +build zephyr/CMakeFiles/zephyr.dir/lib/utils/onoff.c.obj: C_COMPILER__zephyr_ /home/miguel/ncs/v3.0.2/zephyr/lib/utils/onoff.c || cmake_object_order_depends_target_zephyr + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/lib/utils/onoff.c.obj.d + FLAGS = -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/lib/utils + +build zephyr/CMakeFiles/zephyr.dir/lib/utils/notify.c.obj: C_COMPILER__zephyr_ /home/miguel/ncs/v3.0.2/zephyr/lib/utils/notify.c || cmake_object_order_depends_target_zephyr + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/lib/utils/notify.c.obj.d + FLAGS = -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/lib/utils + +build zephyr/CMakeFiles/zephyr.dir/lib/utils/ring_buffer.c.obj: C_COMPILER__zephyr_ /home/miguel/ncs/v3.0.2/zephyr/lib/utils/ring_buffer.c || cmake_object_order_depends_target_zephyr + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/lib/utils/ring_buffer.c.obj.d + FLAGS = -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/lib/utils + +build zephyr/CMakeFiles/zephyr.dir/lib/utils/last_section_id.c.obj: C_COMPILER__zephyr_ /home/miguel/ncs/v3.0.2/zephyr/lib/utils/last_section_id.c || cmake_object_order_depends_target_zephyr + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/lib/utils/last_section_id.c.obj.d + FLAGS = -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/lib/utils + +build zephyr/CMakeFiles/zephyr.dir/misc/generated/configs.c.obj: C_COMPILER__zephyr_ /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/configs.c || cmake_object_order_depends_target_zephyr + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/misc/generated/configs.c.obj.d + FLAGS = -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/misc/generated + +build zephyr/CMakeFiles/zephyr.dir/subsys/mem_mgmt/mem_attr.c.obj: C_COMPILER__zephyr_ /home/miguel/ncs/v3.0.2/zephyr/subsys/mem_mgmt/mem_attr.c || cmake_object_order_depends_target_zephyr + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/subsys/mem_mgmt/mem_attr.c.obj.d + FLAGS = -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/subsys/mem_mgmt + +build zephyr/CMakeFiles/zephyr.dir/subsys/tracing/tracing_none.c.obj: C_COMPILER__zephyr_ /home/miguel/ncs/v3.0.2/zephyr/subsys/tracing/tracing_none.c || cmake_object_order_depends_target_zephyr + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/subsys/tracing/tracing_none.c.obj.d + FLAGS = -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/subsys/tracing + +build zephyr/CMakeFiles/zephyr.dir/subsys/usb/device/usb_device.c.obj: C_COMPILER__zephyr_ /home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device/usb_device.c || cmake_object_order_depends_target_zephyr + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/subsys/usb/device/usb_device.c.obj.d + FLAGS = -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/subsys/usb/device + +build zephyr/CMakeFiles/zephyr.dir/subsys/usb/device/usb_descriptor.c.obj: C_COMPILER__zephyr_ /home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device/usb_descriptor.c || cmake_object_order_depends_target_zephyr + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/subsys/usb/device/usb_descriptor.c.obj.d + FLAGS = -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/subsys/usb/device + +build zephyr/CMakeFiles/zephyr.dir/subsys/usb/device/usb_transfer.c.obj: C_COMPILER__zephyr_ /home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device/usb_transfer.c || cmake_object_order_depends_target_zephyr + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/subsys/usb/device/usb_transfer.c.obj.d + FLAGS = -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/subsys/usb/device + +build zephyr/CMakeFiles/zephyr.dir/subsys/usb/device/class/cdc_acm.c.obj: C_COMPILER__zephyr_ /home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device/class/cdc_acm.c || cmake_object_order_depends_target_zephyr + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/subsys/usb/device/class/cdc_acm.c.obj.d + FLAGS = -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/subsys/usb/device/class + +build zephyr/CMakeFiles/zephyr.dir/subsys/usb/device/usb_work_q.c.obj: C_COMPILER__zephyr_ /home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device/usb_work_q.c || cmake_object_order_depends_target_zephyr + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/subsys/usb/device/usb_work_q.c.obj.d + FLAGS = -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/subsys/usb/device + +build zephyr/CMakeFiles/zephyr.dir/home/miguel/ncs/v3.0.2/nrf/lib/boot_banner/banner.c.obj: C_COMPILER__zephyr_ /home/miguel/ncs/v3.0.2/nrf/lib/boot_banner/banner.c || cmake_object_order_depends_target_zephyr + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/home/miguel/ncs/v3.0.2/nrf/lib/boot_banner/banner.c.obj.d + FLAGS = -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/home/miguel/ncs/v3.0.2/nrf/lib/boot_banner + +build zephyr/CMakeFiles/zephyr.dir/home/miguel/ncs/v3.0.2/nrf/subsys/partition_manager/flash_map_partition_manager.c.obj: C_COMPILER__zephyr_ /home/miguel/ncs/v3.0.2/nrf/subsys/partition_manager/flash_map_partition_manager.c || cmake_object_order_depends_target_zephyr + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/home/miguel/ncs/v3.0.2/nrf/subsys/partition_manager/flash_map_partition_manager.c.obj.d + FLAGS = -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/home/miguel/ncs/v3.0.2/nrf/subsys/partition_manager + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target zephyr + + +############################################# +# Link the static library zephyr/libzephyr.a + +build zephyr/libzephyr.a: C_STATIC_LIBRARY_LINKER__zephyr_ zephyr/CMakeFiles/zephyr.dir/lib/heap/heap.c.obj zephyr/CMakeFiles/zephyr.dir/lib/os/cbprintf_packaged.c.obj zephyr/CMakeFiles/zephyr.dir/lib/os/printk.c.obj zephyr/CMakeFiles/zephyr.dir/lib/os/sem.c.obj zephyr/CMakeFiles/zephyr.dir/lib/os/thread_entry.c.obj zephyr/CMakeFiles/zephyr.dir/lib/os/cbprintf_complete.c.obj zephyr/CMakeFiles/zephyr.dir/lib/os/assert.c.obj zephyr/CMakeFiles/zephyr.dir/lib/utils/dec.c.obj zephyr/CMakeFiles/zephyr.dir/lib/utils/hex.c.obj zephyr/CMakeFiles/zephyr.dir/lib/utils/rb.c.obj zephyr/CMakeFiles/zephyr.dir/lib/utils/timeutil.c.obj zephyr/CMakeFiles/zephyr.dir/lib/utils/bitarray.c.obj zephyr/CMakeFiles/zephyr.dir/lib/utils/onoff.c.obj zephyr/CMakeFiles/zephyr.dir/lib/utils/notify.c.obj zephyr/CMakeFiles/zephyr.dir/lib/utils/ring_buffer.c.obj zephyr/CMakeFiles/zephyr.dir/lib/utils/last_section_id.c.obj zephyr/CMakeFiles/zephyr.dir/misc/generated/configs.c.obj zephyr/CMakeFiles/zephyr.dir/subsys/mem_mgmt/mem_attr.c.obj zephyr/CMakeFiles/zephyr.dir/subsys/tracing/tracing_none.c.obj zephyr/CMakeFiles/zephyr.dir/subsys/usb/device/usb_device.c.obj zephyr/CMakeFiles/zephyr.dir/subsys/usb/device/usb_descriptor.c.obj zephyr/CMakeFiles/zephyr.dir/subsys/usb/device/usb_transfer.c.obj zephyr/CMakeFiles/zephyr.dir/subsys/usb/device/class/cdc_acm.c.obj zephyr/CMakeFiles/zephyr.dir/subsys/usb/device/usb_work_q.c.obj zephyr/CMakeFiles/zephyr.dir/home/miguel/ncs/v3.0.2/nrf/lib/boot_banner/banner.c.obj zephyr/CMakeFiles/zephyr.dir/home/miguel/ncs/v3.0.2/nrf/subsys/partition_manager/flash_map_partition_manager.c.obj || zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/syscall_list_h_target zephyr/zephyr_generated_headers + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + POST_BUILD = : + PRE_LINK = : + TARGET_FILE = zephyr/libzephyr.a + TARGET_PDB = zephyr.a.dbg + + +############################################# +# Utility command for offsets_h + +build zephyr/offsets_h: phony zephyr/CMakeFiles/offsets_h zephyr/include/generated/zephyr/offsets.h zephyr/offsets + + +############################################# +# Utility command for device_api_ld_target + +build zephyr/device_api_ld_target: phony zephyr/CMakeFiles/device_api_ld_target zephyr/include/generated/device-api-sections.ld zephyr/include/generated/device-api-sections.cmake zephyr/misc/generated/syscalls.json zephyr/misc/generated/struct_tags.json zephyr/misc/generated/syscalls_subdirs.trigger zephyr/misc/generated/syscalls_links/include zephyr/misc/generated/syscalls_links/include_zephyr zephyr/misc/generated/syscalls_links/include_zephyr_acpi zephyr/misc/generated/syscalls_links/include_zephyr_app_memory zephyr/misc/generated/syscalls_links/include_zephyr_arch zephyr/misc/generated/syscalls_links/include_zephyr_audio zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth zephyr/misc/generated/syscalls_links/include_zephyr_canbus zephyr/misc/generated/syscalls_links/include_zephyr_console zephyr/misc/generated/syscalls_links/include_zephyr_crypto zephyr/misc/generated/syscalls_links/include_zephyr_data zephyr/misc/generated/syscalls_links/include_zephyr_debug zephyr/misc/generated/syscalls_links/include_zephyr_devicetree zephyr/misc/generated/syscalls_links/include_zephyr_dfu zephyr/misc/generated/syscalls_links/include_zephyr_display zephyr/misc/generated/syscalls_links/include_zephyr_drivers zephyr/misc/generated/syscalls_links/include_zephyr_dsp zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings zephyr/misc/generated/syscalls_links/include_zephyr_fs zephyr/misc/generated/syscalls_links/include_zephyr_input zephyr/misc/generated/syscalls_links/include_zephyr_internal zephyr/misc/generated/syscalls_links/include_zephyr_ipc zephyr/misc/generated/syscalls_links/include_zephyr_kernel zephyr/misc/generated/syscalls_links/include_zephyr_linker zephyr/misc/generated/syscalls_links/include_zephyr_llext zephyr/misc/generated/syscalls_links/include_zephyr_logging zephyr/misc/generated/syscalls_links/include_zephyr_lorawan zephyr/misc/generated/syscalls_links/include_zephyr_math zephyr/misc/generated/syscalls_links/include_zephyr_mem_mgmt zephyr/misc/generated/syscalls_links/include_zephyr_mgmt zephyr/misc/generated/syscalls_links/include_zephyr_misc zephyr/misc/generated/syscalls_links/include_zephyr_modbus zephyr/misc/generated/syscalls_links/include_zephyr_modem zephyr/misc/generated/syscalls_links/include_zephyr_multi_heap zephyr/misc/generated/syscalls_links/include_zephyr_net zephyr/misc/generated/syscalls_links/include_zephyr_platform zephyr/misc/generated/syscalls_links/include_zephyr_pm zephyr/misc/generated/syscalls_links/include_zephyr_portability zephyr/misc/generated/syscalls_links/include_zephyr_posix zephyr/misc/generated/syscalls_links/include_zephyr_psa zephyr/misc/generated/syscalls_links/include_zephyr_random zephyr/misc/generated/syscalls_links/include_zephyr_retention zephyr/misc/generated/syscalls_links/include_zephyr_rtio zephyr/misc/generated/syscalls_links/include_zephyr_sd zephyr/misc/generated/syscalls_links/include_zephyr_sensing zephyr/misc/generated/syscalls_links/include_zephyr_settings zephyr/misc/generated/syscalls_links/include_zephyr_shell zephyr/misc/generated/syscalls_links/include_zephyr_sip_svc zephyr/misc/generated/syscalls_links/include_zephyr_stats zephyr/misc/generated/syscalls_links/include_zephyr_storage zephyr/misc/generated/syscalls_links/include_zephyr_sys zephyr/misc/generated/syscalls_links/include_zephyr_task_wdt zephyr/misc/generated/syscalls_links/include_zephyr_timing zephyr/misc/generated/syscalls_links/include_zephyr_toolchain zephyr/misc/generated/syscalls_links/include_zephyr_tracing zephyr/misc/generated/syscalls_links/include_zephyr_usb zephyr/misc/generated/syscalls_links/include_zephyr_usb_c zephyr/misc/generated/syscalls_links/include_zephyr_xen zephyr/misc/generated/syscalls_links/include_zephyr_zbus zephyr/misc/generated/syscalls_links/include_zephyr_zvfs zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm64 zephyr/misc/generated/syscalls_links/include_zephyr_arch_common zephyr/misc/generated/syscalls_links/include_zephyr_arch_mips zephyr/misc/generated/syscalls_links/include_zephyr_arch_nios2 zephyr/misc/generated/syscalls_links/include_zephyr_arch_posix zephyr/misc/generated/syscalls_links/include_zephyr_arch_riscv zephyr/misc/generated/syscalls_links/include_zephyr_arch_sparc zephyr/misc/generated/syscalls_links/include_zephyr_arch_x86 zephyr/misc/generated/syscalls_links/include_zephyr_arch_xtensa zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_asm-compat zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2 zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2_dsp zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2_mpu zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2_secureshield zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2_vpx zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_a_r zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_m zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_r zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_mmu zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_mpu zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_a_r_scripts zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_m_scripts zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_r_scripts zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm64_cortex_r zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm64_scripts zephyr/misc/generated/syscalls_links/include_zephyr_arch_riscv_common zephyr/misc/generated/syscalls_links/include_zephyr_arch_riscv_riscv-privileged zephyr/misc/generated/syscalls_links/include_zephyr_arch_x86_ia32 zephyr/misc/generated/syscalls_links/include_zephyr_arch_x86_intel64 zephyr/misc/generated/syscalls_links/include_zephyr_arch_x86_ia32_scripts zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_audio zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_classic zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_mesh zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_services zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_services_nus zephyr/misc/generated/syscalls_links/include_zephyr_debug_coresight zephyr/misc/generated/syscalls_links/include_zephyr_drivers_adc zephyr/misc/generated/syscalls_links/include_zephyr_drivers_bluetooth zephyr/misc/generated/syscalls_links/include_zephyr_drivers_can zephyr/misc/generated/syscalls_links/include_zephyr_drivers_clock_control zephyr/misc/generated/syscalls_links/include_zephyr_drivers_comparator zephyr/misc/generated/syscalls_links/include_zephyr_drivers_console zephyr/misc/generated/syscalls_links/include_zephyr_drivers_dma zephyr/misc/generated/syscalls_links/include_zephyr_drivers_eeprom zephyr/misc/generated/syscalls_links/include_zephyr_drivers_ethernet zephyr/misc/generated/syscalls_links/include_zephyr_drivers_firmware zephyr/misc/generated/syscalls_links/include_zephyr_drivers_flash zephyr/misc/generated/syscalls_links/include_zephyr_drivers_gnss zephyr/misc/generated/syscalls_links/include_zephyr_drivers_gpio zephyr/misc/generated/syscalls_links/include_zephyr_drivers_haptics zephyr/misc/generated/syscalls_links/include_zephyr_drivers_i2c zephyr/misc/generated/syscalls_links/include_zephyr_drivers_i3c zephyr/misc/generated/syscalls_links/include_zephyr_drivers_ieee802154 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_interrupt_controller zephyr/misc/generated/syscalls_links/include_zephyr_drivers_led zephyr/misc/generated/syscalls_links/include_zephyr_drivers_led_strip zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mfd zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mipi_dsi zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mm zephyr/misc/generated/syscalls_links/include_zephyr_drivers_modem zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mspi zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pcie zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pinctrl zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pm_cpu_ops zephyr/misc/generated/syscalls_links/include_zephyr_drivers_power zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pwm zephyr/misc/generated/syscalls_links/include_zephyr_drivers_regulator zephyr/misc/generated/syscalls_links/include_zephyr_drivers_retained_mem zephyr/misc/generated/syscalls_links/include_zephyr_drivers_rtc zephyr/misc/generated/syscalls_links/include_zephyr_drivers_sensor zephyr/misc/generated/syscalls_links/include_zephyr_drivers_serial zephyr/misc/generated/syscalls_links/include_zephyr_drivers_sip_svc zephyr/misc/generated/syscalls_links/include_zephyr_drivers_spi zephyr/misc/generated/syscalls_links/include_zephyr_drivers_stepper zephyr/misc/generated/syscalls_links/include_zephyr_drivers_timer zephyr/misc/generated/syscalls_links/include_zephyr_drivers_uart zephyr/misc/generated/syscalls_links/include_zephyr_drivers_usb zephyr/misc/generated/syscalls_links/include_zephyr_drivers_usb_c zephyr/misc/generated/syscalls_links/include_zephyr_drivers_virtualization zephyr/misc/generated/syscalls_links/include_zephyr_drivers_wifi zephyr/misc/generated/syscalls_links/include_zephyr_drivers_firmware_scmi zephyr/misc/generated/syscalls_links/include_zephyr_drivers_i2c_target zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_coresight zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_devmux zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_ft8xx zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_grove_lcd zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_nxp_flexio zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_pio_rpi_pico zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_renesas_ra_external_interrupt zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_stm32_wkup_pins zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_timeaware_gpio zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pcie_endpoint zephyr/misc/generated/syscalls_links/include_zephyr_drivers_wifi_nrf_wifi zephyr/misc/generated/syscalls_links/include_zephyr_drivers_wifi_nrf_wifi_bus zephyr/misc/generated/syscalls_links/include_zephyr_drivers_wifi_nrf_wifi_off_raw_tx zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_acpi zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_adc zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_battery zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_clock zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_dac zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_dai zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_display zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_dma zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_espi zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_ethernet zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_flash_controller zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_gnss zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_gpio zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_i2c zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_input zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_inputmux zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_interrupt-controller zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_ipc_service zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_led zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_lora zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_lvgl zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_memory-attr zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_memory-controller zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_mfd zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_mipi_dbi zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_mipi_dsi zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_misc zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pcie zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pinctrl zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_power zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pwm zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_rdc zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_regulator zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_reserved-memory zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_reset zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_sensor zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_spi zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_timer zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_usb zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_usb-c zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_video zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_clock_silabs zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pinctrl_renesas zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pinctrl_silabs zephyr/misc/generated/syscalls_links/include_zephyr_kernel_internal zephyr/misc/generated/syscalls_links/include_zephyr_kernel_mm zephyr/misc/generated/syscalls_links/include_zephyr_linker_common-rom zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_ec_host_cmd zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_hawkbit zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_mgmt zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_smp zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_transport zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_enum_mgmt zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_fs_mgmt zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_img_mgmt zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_os_mgmt zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_settings_mgmt zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_shell_mgmt zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_stat_mgmt zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_zephyr zephyr/misc/generated/syscalls_links/include_zephyr_modem_backend zephyr/misc/generated/syscalls_links/include_zephyr_net_conn_mgr zephyr/misc/generated/syscalls_links/include_zephyr_net_hdlc_rcp_if zephyr/misc/generated/syscalls_links/include_zephyr_net_http zephyr/misc/generated/syscalls_links/include_zephyr_net_prometheus zephyr/misc/generated/syscalls_links/include_zephyr_posix_arpa zephyr/misc/generated/syscalls_links/include_zephyr_posix_net zephyr/misc/generated/syscalls_links/include_zephyr_posix_netinet zephyr/misc/generated/syscalls_links/include_zephyr_posix_sys zephyr/misc/generated/syscalls_links/include_zephyr_sys_internal zephyr/misc/generated/syscalls_links/include_zephyr_usb_class zephyr/misc/generated/syscalls_links/include_zephyr_xen_dom0 zephyr/misc/generated/syscalls_links/include_zephyr_xen_public zephyr/misc/generated/syscalls_links/include_zephyr_xen_public_hvm zephyr/misc/generated/syscalls_links/include_zephyr_xen_public_io + + +############################################# +# Utility command for rebuild_cache + +build zephyr/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/rebuild_cache: phony zephyr/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for syscall_list_h_target + +build zephyr/syscall_list_h_target: phony zephyr/CMakeFiles/syscall_list_h_target zephyr/include/generated/zephyr/syscall_dispatch.c zephyr/include/generated/zephyr/syscall_exports_llext.c zephyr/syscall_weakdefs_llext.c zephyr/include/generated/zephyr/syscall_list.h zephyr/parse_syscalls_target + +# ============================================================================= +# Object build statements for EXECUTABLE target zephyr_pre0 + + +############################################# +# Order-only phony target for zephyr_pre0 + +build cmake_object_order_depends_target_zephyr_pre0: phony || cmake_object_order_depends_target_app cmake_object_order_depends_target_arch__arm__core cmake_object_order_depends_target_arch__arm__core__cortex_m cmake_object_order_depends_target_arch__arm__core__mpu cmake_object_order_depends_target_arch__common cmake_object_order_depends_target_drivers__adc cmake_object_order_depends_target_drivers__clock_control cmake_object_order_depends_target_drivers__console cmake_object_order_depends_target_drivers__gpio cmake_object_order_depends_target_drivers__hwinfo cmake_object_order_depends_target_drivers__pinctrl cmake_object_order_depends_target_drivers__sensor__nordic__temp cmake_object_order_depends_target_drivers__serial cmake_object_order_depends_target_drivers__timer cmake_object_order_depends_target_drivers__usb__common__nrf_usbd_common cmake_object_order_depends_target_drivers__usb__device cmake_object_order_depends_target_isr_tables cmake_object_order_depends_target_kernel cmake_object_order_depends_target_lib__libc__common cmake_object_order_depends_target_lib__libc__picolibc cmake_object_order_depends_target_modules__hal_nordic__nrfx cmake_object_order_depends_target_modules__segger cmake_object_order_depends_target_offsets cmake_object_order_depends_target_soc__nordic cmake_object_order_depends_target_zephyr zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/linker_zephyr_prebuilt_script_target zephyr/syscall_list_h_target + +build zephyr/CMakeFiles/zephyr_pre0.dir/misc/empty_file.c.obj: C_COMPILER__zephyr_pre0_ /home/miguel/ncs/v3.0.2/zephyr/misc/empty_file.c || cmake_object_order_depends_target_zephyr_pre0 + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = zephyr/CMakeFiles/zephyr_pre0.dir/misc/empty_file.c.obj.d + FLAGS = -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr_pre0.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr_pre0.dir/misc + + +# ============================================================================= +# Link build statements for EXECUTABLE target zephyr_pre0 + + +############################################# +# Link the executable zephyr/zephyr_pre0.elf + +build zephyr/zephyr_pre0.elf zephyr/zephyr_pre0.map | ${cmake_ninja_workdir}zephyr/zephyr_pre0.map: C_EXECUTABLE_LINKER__zephyr_pre0_ zephyr/CMakeFiles/zephyr_pre0.dir/misc/empty_file.c.obj | zephyr/CMakeFiles/offsets.dir/./arch/arm/core/offsets/offsets.c.obj zephyr/linker_zephyr_pre0.cmd app/libapp.a zephyr/libzephyr.a zephyr/arch/common/libarch__common.a zephyr/arch/arch/arm/core/libarch__arm__core.a zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a zephyr/lib/libc/picolibc/liblib__libc__picolibc.a zephyr/lib/libc/common/liblib__libc__common.a zephyr/soc/soc/nrf52833/libsoc__nordic.a zephyr/drivers/usb/device/libdrivers__usb__device.a zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a zephyr/drivers/adc/libdrivers__adc.a zephyr/drivers/clock_control/libdrivers__clock_control.a zephyr/drivers/console/libdrivers__console.a zephyr/drivers/gpio/libdrivers__gpio.a zephyr/drivers/hwinfo/libdrivers__hwinfo.a zephyr/drivers/pinctrl/libdrivers__pinctrl.a zephyr/drivers/sensor/nordic/temp/libdrivers__sensor__nordic__temp.a zephyr/drivers/serial/libdrivers__serial.a zephyr/drivers/timer/libdrivers__timer.a modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a modules/segger/libmodules__segger.a zephyr/kernel/libkernel.a zephyr/arch/common/libisr_tables.a zephyr/linker_zephyr_pre0.cmd || app/libapp.a modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a modules/segger/libmodules__segger.a zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a zephyr/arch/arch/arm/core/libarch__arm__core.a zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a zephyr/arch/common/libarch__common.a zephyr/arch/common/libisr_tables.a zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/drivers/adc/libdrivers__adc.a zephyr/drivers/clock_control/libdrivers__clock_control.a zephyr/drivers/console/libdrivers__console.a zephyr/drivers/gpio/libdrivers__gpio.a zephyr/drivers/hwinfo/libdrivers__hwinfo.a zephyr/drivers/pinctrl/libdrivers__pinctrl.a zephyr/drivers/sensor/nordic/temp/libdrivers__sensor__nordic__temp.a zephyr/drivers/serial/libdrivers__serial.a zephyr/drivers/timer/libdrivers__timer.a zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a zephyr/drivers/usb/device/libdrivers__usb__device.a zephyr/kernel/libkernel.a zephyr/kobj_types_h_target zephyr/lib/libc/common/liblib__libc__common.a zephyr/lib/libc/picolibc/liblib__libc__picolibc.a zephyr/libzephyr.a zephyr/linker_zephyr_prebuilt_script_target zephyr/offsets zephyr/soc/soc/nrf52833/libsoc__nordic.a zephyr/syscall_list_h_target + LINK_FLAGS = -gdwarf-4 + LINK_LIBRARIES = zephyr/CMakeFiles/offsets.dir/./arch/arm/core/offsets/offsets.c.obj -T zephyr/linker_zephyr_pre0.cmd -Wl,-Map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/zephyr_pre0.map -Wl,--whole-archive app/libapp.a zephyr/libzephyr.a zephyr/arch/common/libarch__common.a zephyr/arch/arch/arm/core/libarch__arm__core.a zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a zephyr/lib/libc/picolibc/liblib__libc__picolibc.a zephyr/lib/libc/common/liblib__libc__common.a zephyr/soc/soc/nrf52833/libsoc__nordic.a zephyr/drivers/usb/device/libdrivers__usb__device.a zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a zephyr/drivers/adc/libdrivers__adc.a zephyr/drivers/clock_control/libdrivers__clock_control.a zephyr/drivers/console/libdrivers__console.a zephyr/drivers/gpio/libdrivers__gpio.a zephyr/drivers/hwinfo/libdrivers__hwinfo.a zephyr/drivers/pinctrl/libdrivers__pinctrl.a zephyr/drivers/sensor/nordic/temp/libdrivers__sensor__nordic__temp.a zephyr/drivers/serial/libdrivers__serial.a zephyr/drivers/timer/libdrivers__timer.a modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a modules/segger/libmodules__segger.a -Wl,--no-whole-archive zephyr/kernel/libkernel.a -L/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr zephyr/arch/common/libisr_tables.a -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft -fuse-ld=bfd -Wl,--gc-sections -Wl,--build-id=none -Wl,--sort-common=descending -Wl,--sort-section=alignment -Wl,-u,_OffsetAbsSyms -Wl,-u,_ConfigAbsSyms -nostdlib -static -Wl,-X -Wl,-N -Wl,--orphan-handling=warn -Wl,-no-pie -specs=picolibc.specs -DPICOLIBC_LONG_LONG_PRINTF_SCANF + OBJECT_DIR = zephyr/CMakeFiles/zephyr_pre0.dir + POST_BUILD = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E true + PRE_LINK = : + RESTAT = 1 + TARGET_FILE = zephyr/zephyr_pre0.elf + TARGET_PDB = zephyr_pre0.elf.dbg + + +############################################# +# Utility command for driver_validation_h_target + +build zephyr/driver_validation_h_target: phony zephyr/CMakeFiles/driver_validation_h_target zephyr/include/generated/zephyr/driver-validation.h zephyr/parse_syscalls_target + +# ============================================================================= +# Object build statements for OBJECT_LIBRARY target offsets + + +############################################# +# Order-only phony target for offsets + +build cmake_object_order_depends_target_offsets: phony || zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/syscall_list_h_target + +build zephyr/CMakeFiles/offsets.dir/arch/arm/core/offsets/offsets.c.obj: C_COMPILER__offsets_ /home/miguel/ncs/v3.0.2/zephyr/arch/arm/core/offsets/offsets.c || cmake_object_order_depends_target_offsets + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = zephyr/CMakeFiles/offsets.dir/arch/arm/core/offsets/offsets.c.obj.d + FLAGS = -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -fno-lto + INCLUDES = -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/offsets.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/offsets.dir/arch/arm/core/offsets + + + +############################################# +# Object library offsets + +build zephyr/offsets: phony zephyr/CMakeFiles/offsets.dir/arch/arm/core/offsets/offsets.c.obj + + +############################################# +# Utility command for parse_syscalls_target + +build zephyr/parse_syscalls_target: phony zephyr/CMakeFiles/parse_syscalls_target zephyr/misc/generated/syscalls.json zephyr/misc/generated/struct_tags.json zephyr/misc/generated/syscalls_subdirs.trigger zephyr/misc/generated/syscalls_links/include zephyr/misc/generated/syscalls_links/include_zephyr zephyr/misc/generated/syscalls_links/include_zephyr_acpi zephyr/misc/generated/syscalls_links/include_zephyr_app_memory zephyr/misc/generated/syscalls_links/include_zephyr_arch zephyr/misc/generated/syscalls_links/include_zephyr_audio zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth zephyr/misc/generated/syscalls_links/include_zephyr_canbus zephyr/misc/generated/syscalls_links/include_zephyr_console zephyr/misc/generated/syscalls_links/include_zephyr_crypto zephyr/misc/generated/syscalls_links/include_zephyr_data zephyr/misc/generated/syscalls_links/include_zephyr_debug zephyr/misc/generated/syscalls_links/include_zephyr_devicetree zephyr/misc/generated/syscalls_links/include_zephyr_dfu zephyr/misc/generated/syscalls_links/include_zephyr_display zephyr/misc/generated/syscalls_links/include_zephyr_drivers zephyr/misc/generated/syscalls_links/include_zephyr_dsp zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings zephyr/misc/generated/syscalls_links/include_zephyr_fs zephyr/misc/generated/syscalls_links/include_zephyr_input zephyr/misc/generated/syscalls_links/include_zephyr_internal zephyr/misc/generated/syscalls_links/include_zephyr_ipc zephyr/misc/generated/syscalls_links/include_zephyr_kernel zephyr/misc/generated/syscalls_links/include_zephyr_linker zephyr/misc/generated/syscalls_links/include_zephyr_llext zephyr/misc/generated/syscalls_links/include_zephyr_logging zephyr/misc/generated/syscalls_links/include_zephyr_lorawan zephyr/misc/generated/syscalls_links/include_zephyr_math zephyr/misc/generated/syscalls_links/include_zephyr_mem_mgmt zephyr/misc/generated/syscalls_links/include_zephyr_mgmt zephyr/misc/generated/syscalls_links/include_zephyr_misc zephyr/misc/generated/syscalls_links/include_zephyr_modbus zephyr/misc/generated/syscalls_links/include_zephyr_modem zephyr/misc/generated/syscalls_links/include_zephyr_multi_heap zephyr/misc/generated/syscalls_links/include_zephyr_net zephyr/misc/generated/syscalls_links/include_zephyr_platform zephyr/misc/generated/syscalls_links/include_zephyr_pm zephyr/misc/generated/syscalls_links/include_zephyr_portability zephyr/misc/generated/syscalls_links/include_zephyr_posix zephyr/misc/generated/syscalls_links/include_zephyr_psa zephyr/misc/generated/syscalls_links/include_zephyr_random zephyr/misc/generated/syscalls_links/include_zephyr_retention zephyr/misc/generated/syscalls_links/include_zephyr_rtio zephyr/misc/generated/syscalls_links/include_zephyr_sd zephyr/misc/generated/syscalls_links/include_zephyr_sensing zephyr/misc/generated/syscalls_links/include_zephyr_settings zephyr/misc/generated/syscalls_links/include_zephyr_shell zephyr/misc/generated/syscalls_links/include_zephyr_sip_svc zephyr/misc/generated/syscalls_links/include_zephyr_stats zephyr/misc/generated/syscalls_links/include_zephyr_storage zephyr/misc/generated/syscalls_links/include_zephyr_sys zephyr/misc/generated/syscalls_links/include_zephyr_task_wdt zephyr/misc/generated/syscalls_links/include_zephyr_timing zephyr/misc/generated/syscalls_links/include_zephyr_toolchain zephyr/misc/generated/syscalls_links/include_zephyr_tracing zephyr/misc/generated/syscalls_links/include_zephyr_usb zephyr/misc/generated/syscalls_links/include_zephyr_usb_c zephyr/misc/generated/syscalls_links/include_zephyr_xen zephyr/misc/generated/syscalls_links/include_zephyr_zbus zephyr/misc/generated/syscalls_links/include_zephyr_zvfs zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm64 zephyr/misc/generated/syscalls_links/include_zephyr_arch_common zephyr/misc/generated/syscalls_links/include_zephyr_arch_mips zephyr/misc/generated/syscalls_links/include_zephyr_arch_nios2 zephyr/misc/generated/syscalls_links/include_zephyr_arch_posix zephyr/misc/generated/syscalls_links/include_zephyr_arch_riscv zephyr/misc/generated/syscalls_links/include_zephyr_arch_sparc zephyr/misc/generated/syscalls_links/include_zephyr_arch_x86 zephyr/misc/generated/syscalls_links/include_zephyr_arch_xtensa zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_asm-compat zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2 zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2_dsp zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2_mpu zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2_secureshield zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2_vpx zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_a_r zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_m zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_r zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_mmu zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_mpu zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_a_r_scripts zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_m_scripts zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_r_scripts zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm64_cortex_r zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm64_scripts zephyr/misc/generated/syscalls_links/include_zephyr_arch_riscv_common zephyr/misc/generated/syscalls_links/include_zephyr_arch_riscv_riscv-privileged zephyr/misc/generated/syscalls_links/include_zephyr_arch_x86_ia32 zephyr/misc/generated/syscalls_links/include_zephyr_arch_x86_intel64 zephyr/misc/generated/syscalls_links/include_zephyr_arch_x86_ia32_scripts zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_audio zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_classic zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_mesh zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_services zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_services_nus zephyr/misc/generated/syscalls_links/include_zephyr_debug_coresight zephyr/misc/generated/syscalls_links/include_zephyr_drivers_adc zephyr/misc/generated/syscalls_links/include_zephyr_drivers_bluetooth zephyr/misc/generated/syscalls_links/include_zephyr_drivers_can zephyr/misc/generated/syscalls_links/include_zephyr_drivers_clock_control zephyr/misc/generated/syscalls_links/include_zephyr_drivers_comparator zephyr/misc/generated/syscalls_links/include_zephyr_drivers_console zephyr/misc/generated/syscalls_links/include_zephyr_drivers_dma zephyr/misc/generated/syscalls_links/include_zephyr_drivers_eeprom zephyr/misc/generated/syscalls_links/include_zephyr_drivers_ethernet zephyr/misc/generated/syscalls_links/include_zephyr_drivers_firmware zephyr/misc/generated/syscalls_links/include_zephyr_drivers_flash zephyr/misc/generated/syscalls_links/include_zephyr_drivers_gnss zephyr/misc/generated/syscalls_links/include_zephyr_drivers_gpio zephyr/misc/generated/syscalls_links/include_zephyr_drivers_haptics zephyr/misc/generated/syscalls_links/include_zephyr_drivers_i2c zephyr/misc/generated/syscalls_links/include_zephyr_drivers_i3c zephyr/misc/generated/syscalls_links/include_zephyr_drivers_ieee802154 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_interrupt_controller zephyr/misc/generated/syscalls_links/include_zephyr_drivers_led zephyr/misc/generated/syscalls_links/include_zephyr_drivers_led_strip zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mfd zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mipi_dsi zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mm zephyr/misc/generated/syscalls_links/include_zephyr_drivers_modem zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mspi zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pcie zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pinctrl zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pm_cpu_ops zephyr/misc/generated/syscalls_links/include_zephyr_drivers_power zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pwm zephyr/misc/generated/syscalls_links/include_zephyr_drivers_regulator zephyr/misc/generated/syscalls_links/include_zephyr_drivers_retained_mem zephyr/misc/generated/syscalls_links/include_zephyr_drivers_rtc zephyr/misc/generated/syscalls_links/include_zephyr_drivers_sensor zephyr/misc/generated/syscalls_links/include_zephyr_drivers_serial zephyr/misc/generated/syscalls_links/include_zephyr_drivers_sip_svc zephyr/misc/generated/syscalls_links/include_zephyr_drivers_spi zephyr/misc/generated/syscalls_links/include_zephyr_drivers_stepper zephyr/misc/generated/syscalls_links/include_zephyr_drivers_timer zephyr/misc/generated/syscalls_links/include_zephyr_drivers_uart zephyr/misc/generated/syscalls_links/include_zephyr_drivers_usb zephyr/misc/generated/syscalls_links/include_zephyr_drivers_usb_c zephyr/misc/generated/syscalls_links/include_zephyr_drivers_virtualization zephyr/misc/generated/syscalls_links/include_zephyr_drivers_wifi zephyr/misc/generated/syscalls_links/include_zephyr_drivers_firmware_scmi zephyr/misc/generated/syscalls_links/include_zephyr_drivers_i2c_target zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_coresight zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_devmux zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_ft8xx zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_grove_lcd zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_nxp_flexio zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_pio_rpi_pico zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_renesas_ra_external_interrupt zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_stm32_wkup_pins zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_timeaware_gpio zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pcie_endpoint zephyr/misc/generated/syscalls_links/include_zephyr_drivers_wifi_nrf_wifi zephyr/misc/generated/syscalls_links/include_zephyr_drivers_wifi_nrf_wifi_bus zephyr/misc/generated/syscalls_links/include_zephyr_drivers_wifi_nrf_wifi_off_raw_tx zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_acpi zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_adc zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_battery zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_clock zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_dac zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_dai zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_display zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_dma zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_espi zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_ethernet zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_flash_controller zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_gnss zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_gpio zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_i2c zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_input zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_inputmux zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_interrupt-controller zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_ipc_service zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_led zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_lora zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_lvgl zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_memory-attr zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_memory-controller zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_mfd zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_mipi_dbi zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_mipi_dsi zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_misc zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pcie zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pinctrl zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_power zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pwm zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_rdc zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_regulator zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_reserved-memory zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_reset zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_sensor zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_spi zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_timer zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_usb zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_usb-c zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_video zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_clock_silabs zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pinctrl_renesas zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pinctrl_silabs zephyr/misc/generated/syscalls_links/include_zephyr_kernel_internal zephyr/misc/generated/syscalls_links/include_zephyr_kernel_mm zephyr/misc/generated/syscalls_links/include_zephyr_linker_common-rom zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_ec_host_cmd zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_hawkbit zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_mgmt zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_smp zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_transport zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_enum_mgmt zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_fs_mgmt zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_img_mgmt zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_os_mgmt zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_settings_mgmt zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_shell_mgmt zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_stat_mgmt zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_zephyr zephyr/misc/generated/syscalls_links/include_zephyr_modem_backend zephyr/misc/generated/syscalls_links/include_zephyr_net_conn_mgr zephyr/misc/generated/syscalls_links/include_zephyr_net_hdlc_rcp_if zephyr/misc/generated/syscalls_links/include_zephyr_net_http zephyr/misc/generated/syscalls_links/include_zephyr_net_prometheus zephyr/misc/generated/syscalls_links/include_zephyr_posix_arpa zephyr/misc/generated/syscalls_links/include_zephyr_posix_net zephyr/misc/generated/syscalls_links/include_zephyr_posix_netinet zephyr/misc/generated/syscalls_links/include_zephyr_posix_sys zephyr/misc/generated/syscalls_links/include_zephyr_sys_internal zephyr/misc/generated/syscalls_links/include_zephyr_usb_class zephyr/misc/generated/syscalls_links/include_zephyr_xen_dom0 zephyr/misc/generated/syscalls_links/include_zephyr_xen_public zephyr/misc/generated/syscalls_links/include_zephyr_xen_public_hvm zephyr/misc/generated/syscalls_links/include_zephyr_xen_public_io + + +############################################# +# Utility command for kobj_types_h_target + +build zephyr/kobj_types_h_target: phony zephyr/CMakeFiles/kobj_types_h_target zephyr/include/generated/zephyr/kobj-types-enum.h zephyr/include/generated/zephyr/otype-to-str.h zephyr/include/generated/zephyr/otype-to-size.h zephyr/parse_syscalls_target + + +############################################# +# Utility command for linker_zephyr_prebuilt_script_target + +build zephyr/linker_zephyr_prebuilt_script_target: phony zephyr/CMakeFiles/linker_zephyr_prebuilt_script_target zephyr/linker_zephyr_pre0.cmd zephyr/zephyr_generated_headers + + +############################################# +# Utility command for zephyr_generated_headers + +build zephyr/zephyr_generated_headers: phony zephyr/offsets_h zephyr/version_h + + +############################################# +# Phony custom command for zephyr/CMakeFiles/build_info_yaml_saved + +build zephyr/CMakeFiles/build_info_yaml_saved | ${cmake_ninja_workdir}zephyr/CMakeFiles/build_info_yaml_saved: phony build_info.yml + + +############################################# +# Phony custom command for zephyr/CMakeFiles/llext-edk + +build zephyr/CMakeFiles/llext-edk | ${cmake_ninja_workdir}zephyr/CMakeFiles/llext-edk: phony zephyr/llext-edk.tar.xz || app/libapp.a modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a modules/nrf/ncs_commit_h modules/nrf/ncs_version_h modules/nrf/zephyr_commit_h modules/segger/libmodules__segger.a zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a zephyr/arch/arch/arm/core/libarch__arm__core.a zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a zephyr/arch/common/libarch__common.a zephyr/arch/common/libisr_tables.a zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/drivers/adc/libdrivers__adc.a zephyr/drivers/clock_control/libdrivers__clock_control.a zephyr/drivers/console/libdrivers__console.a zephyr/drivers/gpio/libdrivers__gpio.a zephyr/drivers/hwinfo/libdrivers__hwinfo.a zephyr/drivers/pinctrl/libdrivers__pinctrl.a zephyr/drivers/sensor/nordic/temp/libdrivers__sensor__nordic__temp.a zephyr/drivers/serial/libdrivers__serial.a zephyr/drivers/timer/libdrivers__timer.a zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a zephyr/drivers/usb/device/libdrivers__usb__device.a zephyr/kernel/libkernel.a zephyr/kobj_types_h_target zephyr/lib/libc/common/liblib__libc__common.a zephyr/lib/libc/picolibc/liblib__libc__picolibc.a zephyr/libzephyr.a zephyr/linker_zephyr_final_script_target zephyr/linker_zephyr_prebuilt_script_target zephyr/offsets zephyr/offsets_h zephyr/parse_syscalls_target zephyr/soc/soc/nrf52833/libsoc__nordic.a zephyr/syscall_list_h_target zephyr/version_h zephyr/zephyr.elf zephyr/zephyr_generated_headers zephyr/zephyr_pre0.elf + + +############################################# +# Custom command for zephyr/llext-edk.tar.xz + +build zephyr/llext-edk.tar.xz | ${cmake_ninja_workdir}zephyr/llext-edk.tar.xz: CUSTOM_COMMAND zephyr/zephyr.elf || app/libapp.a modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a modules/nrf/ncs_commit_h modules/nrf/ncs_version_h modules/nrf/zephyr_commit_h modules/segger/libmodules__segger.a zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a zephyr/arch/arch/arm/core/libarch__arm__core.a zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a zephyr/arch/common/libarch__common.a zephyr/arch/common/libisr_tables.a zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/drivers/adc/libdrivers__adc.a zephyr/drivers/clock_control/libdrivers__clock_control.a zephyr/drivers/console/libdrivers__console.a zephyr/drivers/gpio/libdrivers__gpio.a zephyr/drivers/hwinfo/libdrivers__hwinfo.a zephyr/drivers/pinctrl/libdrivers__pinctrl.a zephyr/drivers/sensor/nordic/temp/libdrivers__sensor__nordic__temp.a zephyr/drivers/serial/libdrivers__serial.a zephyr/drivers/timer/libdrivers__timer.a zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a zephyr/drivers/usb/device/libdrivers__usb__device.a zephyr/kernel/libkernel.a zephyr/kobj_types_h_target zephyr/lib/libc/common/liblib__libc__common.a zephyr/lib/libc/picolibc/liblib__libc__picolibc.a zephyr/libzephyr.a zephyr/linker_zephyr_final_script_target zephyr/linker_zephyr_prebuilt_script_target zephyr/offsets zephyr/offsets_h zephyr/parse_syscalls_target zephyr/soc/soc/nrf52833/libsoc__nordic.a zephyr/syscall_list_h_target zephyr/version_h zephyr/zephyr.elf zephyr/zephyr_generated_headers zephyr/zephyr_pre0.elf + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E make_directory edk/include/generated/zephyr && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/python /home/miguel/ncs/v3.0.2/zephyr/scripts/build/gen_syscalls.py --json-file /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls.json --base-output edk/include/generated/zephyr/syscalls --syscall-dispatch edk/include/generated/zephyr/syscall_dispatch.c --syscall-list /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/edk/include/generated/zephyr/syscall_list.h --split-type k_timeout_t --split-type k_ticks_t && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -DPROJECT_BINARY_DIR=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr -DAPPLICATION_SOURCE_DIR=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -DINTERFACE_INCLUDE_DIRECTORIES="/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr /home/miguel/ncs/v3.0.2/zephyr/include /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated /home/miguel/ncs/v3.0.2/zephyr/soc/nordic /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. /home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device /home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. /home/miguel/ncs/v3.0.2/nrf/include /home/miguel/ncs/v3.0.2/nrf/tests/include /home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include /home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. /home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. /home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx /home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include /home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk /home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. /home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER /home/miguel/ncs/v3.0.2/modules/debug/segger/Config" -Dllext_edk_file=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/llext-edk.tar.xz -Dllext_edk_cflags="-DKERNEL -D__ZEPHYR__=1 -D__LINUX_ERRNO_EXTENSIONS__ -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__PROGRAM_START -DNRF52833_XXAA -DNRF52833_XXAA -DK_HEAP_MEM_POOL_SIZE=0 -DLL_EXTENSION_BUILD -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wformat -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -specs=picolibc.specs -std=c99 -mlong-calls -mthumb -nodefaultlibs" -Dllext_edk_name=llext-edk -DWEST_TOPDIR=/home/miguel/ncs/v3.0.2 -DZEPHYR_BASE=/home/miguel/ncs/v3.0.2/zephyr -DCONFIG_LLEXT_EDK_USERSPACE_ONLY= -P /home/miguel/ncs/v3.0.2/zephyr/cmake/llext-edk.cmake + DESC = Generating llext-edk.tar.xz + restat = 1 + + +############################################# +# Custom command for zephyr/CMakeFiles/run + +build zephyr/CMakeFiles/run | ${cmake_ninja_workdir}zephyr/CMakeFiles/run: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo =================================================== Emulation/Simulation\ not\ supported\ with\ this\ board. =================================================== + + +############################################# +# Custom command for zephyr/CMakeFiles/initlevels + +build zephyr/CMakeFiles/initlevels | ${cmake_ninja_workdir}zephyr/CMakeFiles/initlevels: CUSTOM_COMMAND zephyr/zephyr.elf || app/libapp.a modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a modules/nrf/ncs_commit_h modules/nrf/ncs_version_h modules/nrf/zephyr_commit_h modules/segger/libmodules__segger.a zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a zephyr/arch/arch/arm/core/libarch__arm__core.a zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a zephyr/arch/common/libarch__common.a zephyr/arch/common/libisr_tables.a zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/drivers/adc/libdrivers__adc.a zephyr/drivers/clock_control/libdrivers__clock_control.a zephyr/drivers/console/libdrivers__console.a zephyr/drivers/gpio/libdrivers__gpio.a zephyr/drivers/hwinfo/libdrivers__hwinfo.a zephyr/drivers/pinctrl/libdrivers__pinctrl.a zephyr/drivers/sensor/nordic/temp/libdrivers__sensor__nordic__temp.a zephyr/drivers/serial/libdrivers__serial.a zephyr/drivers/timer/libdrivers__timer.a zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a zephyr/drivers/usb/device/libdrivers__usb__device.a zephyr/kernel/libkernel.a zephyr/kobj_types_h_target zephyr/lib/libc/common/liblib__libc__common.a zephyr/lib/libc/picolibc/liblib__libc__picolibc.a zephyr/libzephyr.a zephyr/linker_zephyr_final_script_target zephyr/linker_zephyr_prebuilt_script_target zephyr/offsets zephyr/offsets_h zephyr/parse_syscalls_target zephyr/soc/soc/nrf52833/libsoc__nordic.a zephyr/syscall_list_h_target zephyr/version_h zephyr/zephyr.elf zephyr/zephyr_generated_headers zephyr/zephyr_pre0.elf + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/python /home/miguel/ncs/v3.0.2/zephyr/scripts/build/check_init_priorities.py --elf-file=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/zephyr.elf --initlevels + pool = console + + +############################################# +# Custom command for zephyr/isr_tables.c + +build zephyr/isr_tables.c zephyr/isr_tables_vt.ld zephyr/isr_tables_swi.ld | ${cmake_ninja_workdir}zephyr/isr_tables.c ${cmake_ninja_workdir}zephyr/isr_tables_vt.ld ${cmake_ninja_workdir}zephyr/isr_tables_swi.ld: CUSTOM_COMMAND zephyr/zephyr_pre0.elf || app/libapp.a modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a modules/nrf/ncs_commit_h modules/nrf/ncs_version_h modules/nrf/zephyr_commit_h modules/segger/libmodules__segger.a zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a zephyr/arch/arch/arm/core/libarch__arm__core.a zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a zephyr/arch/common/libarch__common.a zephyr/arch/common/libisr_tables.a zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/drivers/adc/libdrivers__adc.a zephyr/drivers/clock_control/libdrivers__clock_control.a zephyr/drivers/console/libdrivers__console.a zephyr/drivers/gpio/libdrivers__gpio.a zephyr/drivers/hwinfo/libdrivers__hwinfo.a zephyr/drivers/pinctrl/libdrivers__pinctrl.a zephyr/drivers/sensor/nordic/temp/libdrivers__sensor__nordic__temp.a zephyr/drivers/serial/libdrivers__serial.a zephyr/drivers/timer/libdrivers__timer.a zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a zephyr/drivers/usb/device/libdrivers__usb__device.a zephyr/kernel/libkernel.a zephyr/kobj_types_h_target zephyr/lib/libc/common/liblib__libc__common.a zephyr/lib/libc/picolibc/liblib__libc__picolibc.a zephyr/libzephyr.a zephyr/linker_zephyr_final_script_target zephyr/linker_zephyr_prebuilt_script_target zephyr/offsets zephyr/offsets_h zephyr/parse_syscalls_target zephyr/soc/soc/nrf52833/libsoc__nordic.a zephyr/syscall_list_h_target zephyr/version_h zephyr/zephyr_generated_headers zephyr/zephyr_pre0.elf + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/python /home/miguel/ncs/v3.0.2/zephyr/scripts/build/gen_isr_tables.py --output-source isr_tables.c --linker-output-files isr_tables_vt.ld isr_tables_swi.ld --kernel /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/zephyr_pre0.elf --intlist-section .intList --intlist-section intList --sw-isr-table --vector-table + DESC = Generating isr_tables.c, isr_tables_vt.ld, isr_tables_swi.ld + restat = 1 + + +############################################# +# Phony custom command for zephyr/CMakeFiles/linker_zephyr_final_script_target + +build zephyr/CMakeFiles/linker_zephyr_final_script_target | ${cmake_ninja_workdir}zephyr/CMakeFiles/linker_zephyr_final_script_target: phony zephyr/linker.cmd || app/libapp.a modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a modules/nrf/ncs_commit_h modules/nrf/ncs_version_h modules/nrf/zephyr_commit_h modules/segger/libmodules__segger.a zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a zephyr/arch/arch/arm/core/libarch__arm__core.a zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a zephyr/arch/common/libarch__common.a zephyr/arch/common/libisr_tables.a zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/drivers/adc/libdrivers__adc.a zephyr/drivers/clock_control/libdrivers__clock_control.a zephyr/drivers/console/libdrivers__console.a zephyr/drivers/gpio/libdrivers__gpio.a zephyr/drivers/hwinfo/libdrivers__hwinfo.a zephyr/drivers/pinctrl/libdrivers__pinctrl.a zephyr/drivers/sensor/nordic/temp/libdrivers__sensor__nordic__temp.a zephyr/drivers/serial/libdrivers__serial.a zephyr/drivers/timer/libdrivers__timer.a zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a zephyr/drivers/usb/device/libdrivers__usb__device.a zephyr/kernel/libkernel.a zephyr/kobj_types_h_target zephyr/lib/libc/common/liblib__libc__common.a zephyr/lib/libc/picolibc/liblib__libc__picolibc.a zephyr/libzephyr.a zephyr/linker_zephyr_prebuilt_script_target zephyr/offsets zephyr/offsets_h zephyr/parse_syscalls_target zephyr/soc/soc/nrf52833/libsoc__nordic.a zephyr/syscall_list_h_target zephyr/version_h zephyr/zephyr_generated_headers zephyr/zephyr_pre0.elf + + +############################################# +# Custom command for zephyr/linker.cmd + +build zephyr/linker.cmd | ${cmake_ninja_workdir}zephyr/linker.cmd: CUSTOM_COMMAND /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/arch/arm/cortex_m/scripts/linker.ld zephyr/include/generated/zephyr/autoconf.h zephyr/zephyr_pre0.elf || app/libapp.a modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a modules/nrf/ncs_commit_h modules/nrf/ncs_version_h modules/nrf/zephyr_commit_h modules/segger/libmodules__segger.a zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a zephyr/arch/arch/arm/core/libarch__arm__core.a zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a zephyr/arch/common/libarch__common.a zephyr/arch/common/libisr_tables.a zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/drivers/adc/libdrivers__adc.a zephyr/drivers/clock_control/libdrivers__clock_control.a zephyr/drivers/console/libdrivers__console.a zephyr/drivers/gpio/libdrivers__gpio.a zephyr/drivers/hwinfo/libdrivers__hwinfo.a zephyr/drivers/pinctrl/libdrivers__pinctrl.a zephyr/drivers/sensor/nordic/temp/libdrivers__sensor__nordic__temp.a zephyr/drivers/serial/libdrivers__serial.a zephyr/drivers/timer/libdrivers__timer.a zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a zephyr/drivers/usb/device/libdrivers__usb__device.a zephyr/kernel/libkernel.a zephyr/kobj_types_h_target zephyr/lib/libc/common/liblib__libc__common.a zephyr/lib/libc/picolibc/liblib__libc__picolibc.a zephyr/libzephyr.a zephyr/linker_zephyr_prebuilt_script_target zephyr/offsets zephyr/offsets_h zephyr/parse_syscalls_target zephyr/soc/soc/nrf52833/libsoc__nordic.a zephyr/syscall_list_h_target zephyr/version_h zephyr/zephyr_generated_headers zephyr/zephyr_pre0.elf + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr && /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -x assembler-with-cpp -undef -MD -MF linker.cmd.dep -MT linker.cmd -D_LINKER -D_ASMLANGUAGE -D__GCC_LINKER_CMD__ -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -I/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/arch/arm/cortex_m/scripts -DLINKER_ZEPHYR_FINAL -DUSE_PARTITION_MANAGER=1 -E /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/arch/arm/cortex_m/scripts/linker.ld -P -o linker.cmd && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E cmake_transform_depfile Ninja gccdepfile /home/miguel/Documents/GardenProject/Software/PHF000-Firmware /home/miguel/ncs/v3.0.2/zephyr /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/linker.cmd.dep /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/CMakeFiles/d/d3f51782b78ce6c377ffe1fec2e2a49cf9bc2dba4690bea8ce5efe200077f5a6.d + DESC = Generating linker.cmd + depfile = /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/CMakeFiles/d/d3f51782b78ce6c377ffe1fec2e2a49cf9bc2dba4690bea8ce5efe200077f5a6.d + restat = 1 + + +############################################# +# Phony custom command for zephyr/CMakeFiles/version_h + +build zephyr/CMakeFiles/version_h | ${cmake_ninja_workdir}zephyr/CMakeFiles/version_h: phony zephyr/include/generated/zephyr/version.h || modules/nrf/ncs_commit_h modules/nrf/ncs_version_h modules/nrf/zephyr_commit_h + + +############################################# +# Custom command for zephyr/include/generated/zephyr/version.h + +build zephyr/include/generated/zephyr/version.h | ${cmake_ninja_workdir}zephyr/include/generated/zephyr/version.h: CUSTOM_COMMAND /home/miguel/ncs/v3.0.2/zephyr/VERSION /home/miguel/ncs/v3.0.2/zephyr/.git/index || modules/nrf/ncs_commit_h modules/nrf/ncs_version_h modules/nrf/zephyr_commit_h + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -DZEPHYR_BASE=/home/miguel/ncs/v3.0.2/zephyr -DOUT_FILE=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/version.h -DVERSION_TYPE=KERNEL -DVERSION_FILE=/home/miguel/ncs/v3.0.2/zephyr/VERSION -DKERNEL_VERSION_CUSTOMIZATION="" -P /home/miguel/ncs/v3.0.2/zephyr/cmake/gen_version_h.cmake + DESC = Generating include/generated/zephyr/version.h + restat = 1 + + +############################################# +# Phony custom command for zephyr/CMakeFiles/offsets_h + +build zephyr/CMakeFiles/offsets_h | ${cmake_ninja_workdir}zephyr/CMakeFiles/offsets_h: phony zephyr/include/generated/zephyr/offsets.h || zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/offsets zephyr/parse_syscalls_target zephyr/syscall_list_h_target + + +############################################# +# Custom command for zephyr/include/generated/zephyr/offsets.h + +build zephyr/include/generated/zephyr/offsets.h | ${cmake_ninja_workdir}zephyr/include/generated/zephyr/offsets.h: CUSTOM_COMMAND zephyr/CMakeFiles/offsets.dir/arch/arm/core/offsets/offsets.c.obj || zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/offsets zephyr/parse_syscalls_target zephyr/syscall_list_h_target + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/python /home/miguel/ncs/v3.0.2/zephyr/scripts/build/gen_offset_header.py -i /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/CMakeFiles/offsets.dir/./arch/arm/core/offsets/offsets.c.obj -o /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/offsets.h + DESC = Generating include/generated/zephyr/offsets.h + restat = 1 + + +############################################# +# Phony custom command for zephyr/CMakeFiles/device_api_ld_target + +build zephyr/CMakeFiles/device_api_ld_target | ${cmake_ninja_workdir}zephyr/CMakeFiles/device_api_ld_target: phony zephyr/include/generated/device-api-sections.ld zephyr/include/generated/device-api-sections.cmake + + +############################################# +# Custom command for zephyr/include/generated/device-api-sections.ld + +build zephyr/include/generated/device-api-sections.ld zephyr/include/generated/device-api-sections.cmake | ${cmake_ninja_workdir}zephyr/include/generated/device-api-sections.ld ${cmake_ninja_workdir}zephyr/include/generated/device-api-sections.cmake: CUSTOM_COMMAND /home/miguel/ncs/v3.0.2/zephyr/scripts/build/gen_iter_sections.py zephyr/misc/generated/struct_tags.json + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/python /home/miguel/ncs/v3.0.2/zephyr/scripts/build/gen_iter_sections.py --alignment 4 --input /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/struct_tags.json --tag __subsystem --ld-output /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/device-api-sections.ld --cmake-output /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/device-api-sections.cmake + DESC = Generating include/generated/device-api-sections.ld, include/generated/device-api-sections.cmake + restat = 1 + + +############################################# +# Custom command for zephyr/misc/generated/syscalls.json + +build zephyr/misc/generated/syscalls.json zephyr/misc/generated/struct_tags.json | ${cmake_ninja_workdir}zephyr/misc/generated/syscalls.json ${cmake_ninja_workdir}zephyr/misc/generated/struct_tags.json: CUSTOM_COMMAND zephyr/misc/generated/syscalls_subdirs.trigger zephyr/misc/generated/syscalls_file_list.txt + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/python /home/miguel/ncs/v3.0.2/zephyr/scripts/build/parse_syscalls.py --scan /home/miguel/ncs/v3.0.2/zephyr/include --scan /home/miguel/ncs/v3.0.2/zephyr/drivers --scan /home/miguel/ncs/v3.0.2/zephyr/subsys/net --json-file /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls.json --tag-struct-file /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/struct_tags.json --file-list /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_file_list.txt + DESC = Generating misc/generated/syscalls.json, misc/generated/struct_tags.json + restat = 1 + + +############################################# +# Custom command for zephyr/misc/generated/syscalls_subdirs.trigger + +build zephyr/misc/generated/syscalls_subdirs.trigger | ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_subdirs.trigger: CUSTOM_COMMAND zephyr/misc/generated/syscalls_links/include zephyr/misc/generated/syscalls_links/include_zephyr zephyr/misc/generated/syscalls_links/include_zephyr_acpi zephyr/misc/generated/syscalls_links/include_zephyr_app_memory zephyr/misc/generated/syscalls_links/include_zephyr_arch zephyr/misc/generated/syscalls_links/include_zephyr_audio zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth zephyr/misc/generated/syscalls_links/include_zephyr_canbus zephyr/misc/generated/syscalls_links/include_zephyr_console zephyr/misc/generated/syscalls_links/include_zephyr_crypto zephyr/misc/generated/syscalls_links/include_zephyr_data zephyr/misc/generated/syscalls_links/include_zephyr_debug zephyr/misc/generated/syscalls_links/include_zephyr_devicetree zephyr/misc/generated/syscalls_links/include_zephyr_dfu zephyr/misc/generated/syscalls_links/include_zephyr_display zephyr/misc/generated/syscalls_links/include_zephyr_drivers zephyr/misc/generated/syscalls_links/include_zephyr_dsp zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings zephyr/misc/generated/syscalls_links/include_zephyr_fs zephyr/misc/generated/syscalls_links/include_zephyr_input zephyr/misc/generated/syscalls_links/include_zephyr_internal zephyr/misc/generated/syscalls_links/include_zephyr_ipc zephyr/misc/generated/syscalls_links/include_zephyr_kernel zephyr/misc/generated/syscalls_links/include_zephyr_linker zephyr/misc/generated/syscalls_links/include_zephyr_llext zephyr/misc/generated/syscalls_links/include_zephyr_logging zephyr/misc/generated/syscalls_links/include_zephyr_lorawan zephyr/misc/generated/syscalls_links/include_zephyr_math zephyr/misc/generated/syscalls_links/include_zephyr_mem_mgmt zephyr/misc/generated/syscalls_links/include_zephyr_mgmt zephyr/misc/generated/syscalls_links/include_zephyr_misc zephyr/misc/generated/syscalls_links/include_zephyr_modbus zephyr/misc/generated/syscalls_links/include_zephyr_modem zephyr/misc/generated/syscalls_links/include_zephyr_multi_heap zephyr/misc/generated/syscalls_links/include_zephyr_net zephyr/misc/generated/syscalls_links/include_zephyr_platform zephyr/misc/generated/syscalls_links/include_zephyr_pm zephyr/misc/generated/syscalls_links/include_zephyr_portability zephyr/misc/generated/syscalls_links/include_zephyr_posix zephyr/misc/generated/syscalls_links/include_zephyr_psa zephyr/misc/generated/syscalls_links/include_zephyr_random zephyr/misc/generated/syscalls_links/include_zephyr_retention zephyr/misc/generated/syscalls_links/include_zephyr_rtio zephyr/misc/generated/syscalls_links/include_zephyr_sd zephyr/misc/generated/syscalls_links/include_zephyr_sensing zephyr/misc/generated/syscalls_links/include_zephyr_settings zephyr/misc/generated/syscalls_links/include_zephyr_shell zephyr/misc/generated/syscalls_links/include_zephyr_sip_svc zephyr/misc/generated/syscalls_links/include_zephyr_stats zephyr/misc/generated/syscalls_links/include_zephyr_storage zephyr/misc/generated/syscalls_links/include_zephyr_sys zephyr/misc/generated/syscalls_links/include_zephyr_task_wdt zephyr/misc/generated/syscalls_links/include_zephyr_timing zephyr/misc/generated/syscalls_links/include_zephyr_toolchain zephyr/misc/generated/syscalls_links/include_zephyr_tracing zephyr/misc/generated/syscalls_links/include_zephyr_usb zephyr/misc/generated/syscalls_links/include_zephyr_usb_c zephyr/misc/generated/syscalls_links/include_zephyr_xen zephyr/misc/generated/syscalls_links/include_zephyr_zbus zephyr/misc/generated/syscalls_links/include_zephyr_zvfs zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm64 zephyr/misc/generated/syscalls_links/include_zephyr_arch_common zephyr/misc/generated/syscalls_links/include_zephyr_arch_mips zephyr/misc/generated/syscalls_links/include_zephyr_arch_nios2 zephyr/misc/generated/syscalls_links/include_zephyr_arch_posix zephyr/misc/generated/syscalls_links/include_zephyr_arch_riscv zephyr/misc/generated/syscalls_links/include_zephyr_arch_sparc zephyr/misc/generated/syscalls_links/include_zephyr_arch_x86 zephyr/misc/generated/syscalls_links/include_zephyr_arch_xtensa zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_asm-compat zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2 zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2_dsp zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2_mpu zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2_secureshield zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2_vpx zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_a_r zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_m zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_r zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_mmu zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_mpu zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_a_r_scripts zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_m_scripts zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_r_scripts zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm64_cortex_r zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm64_scripts zephyr/misc/generated/syscalls_links/include_zephyr_arch_riscv_common zephyr/misc/generated/syscalls_links/include_zephyr_arch_riscv_riscv-privileged zephyr/misc/generated/syscalls_links/include_zephyr_arch_x86_ia32 zephyr/misc/generated/syscalls_links/include_zephyr_arch_x86_intel64 zephyr/misc/generated/syscalls_links/include_zephyr_arch_x86_ia32_scripts zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_audio zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_classic zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_mesh zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_services zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_services_nus zephyr/misc/generated/syscalls_links/include_zephyr_debug_coresight zephyr/misc/generated/syscalls_links/include_zephyr_drivers_adc zephyr/misc/generated/syscalls_links/include_zephyr_drivers_bluetooth zephyr/misc/generated/syscalls_links/include_zephyr_drivers_can zephyr/misc/generated/syscalls_links/include_zephyr_drivers_clock_control zephyr/misc/generated/syscalls_links/include_zephyr_drivers_comparator zephyr/misc/generated/syscalls_links/include_zephyr_drivers_console zephyr/misc/generated/syscalls_links/include_zephyr_drivers_dma zephyr/misc/generated/syscalls_links/include_zephyr_drivers_eeprom zephyr/misc/generated/syscalls_links/include_zephyr_drivers_ethernet zephyr/misc/generated/syscalls_links/include_zephyr_drivers_firmware zephyr/misc/generated/syscalls_links/include_zephyr_drivers_flash zephyr/misc/generated/syscalls_links/include_zephyr_drivers_gnss zephyr/misc/generated/syscalls_links/include_zephyr_drivers_gpio zephyr/misc/generated/syscalls_links/include_zephyr_drivers_haptics zephyr/misc/generated/syscalls_links/include_zephyr_drivers_i2c zephyr/misc/generated/syscalls_links/include_zephyr_drivers_i3c zephyr/misc/generated/syscalls_links/include_zephyr_drivers_ieee802154 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_interrupt_controller zephyr/misc/generated/syscalls_links/include_zephyr_drivers_led zephyr/misc/generated/syscalls_links/include_zephyr_drivers_led_strip zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mfd zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mipi_dsi zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mm zephyr/misc/generated/syscalls_links/include_zephyr_drivers_modem zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mspi zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pcie zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pinctrl zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pm_cpu_ops zephyr/misc/generated/syscalls_links/include_zephyr_drivers_power zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pwm zephyr/misc/generated/syscalls_links/include_zephyr_drivers_regulator zephyr/misc/generated/syscalls_links/include_zephyr_drivers_retained_mem zephyr/misc/generated/syscalls_links/include_zephyr_drivers_rtc zephyr/misc/generated/syscalls_links/include_zephyr_drivers_sensor zephyr/misc/generated/syscalls_links/include_zephyr_drivers_serial zephyr/misc/generated/syscalls_links/include_zephyr_drivers_sip_svc zephyr/misc/generated/syscalls_links/include_zephyr_drivers_spi zephyr/misc/generated/syscalls_links/include_zephyr_drivers_stepper zephyr/misc/generated/syscalls_links/include_zephyr_drivers_timer zephyr/misc/generated/syscalls_links/include_zephyr_drivers_uart zephyr/misc/generated/syscalls_links/include_zephyr_drivers_usb zephyr/misc/generated/syscalls_links/include_zephyr_drivers_usb_c zephyr/misc/generated/syscalls_links/include_zephyr_drivers_virtualization zephyr/misc/generated/syscalls_links/include_zephyr_drivers_wifi zephyr/misc/generated/syscalls_links/include_zephyr_drivers_firmware_scmi zephyr/misc/generated/syscalls_links/include_zephyr_drivers_i2c_target zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_coresight zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_devmux zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_ft8xx zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_grove_lcd zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_nxp_flexio zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_pio_rpi_pico zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_renesas_ra_external_interrupt zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_stm32_wkup_pins zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_timeaware_gpio zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pcie_endpoint zephyr/misc/generated/syscalls_links/include_zephyr_drivers_wifi_nrf_wifi zephyr/misc/generated/syscalls_links/include_zephyr_drivers_wifi_nrf_wifi_bus zephyr/misc/generated/syscalls_links/include_zephyr_drivers_wifi_nrf_wifi_off_raw_tx zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_acpi zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_adc zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_battery zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_clock zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_dac zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_dai zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_display zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_dma zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_espi zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_ethernet zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_flash_controller zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_gnss zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_gpio zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_i2c zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_input zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_inputmux zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_interrupt-controller zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_ipc_service zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_led zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_lora zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_lvgl zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_memory-attr zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_memory-controller zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_mfd zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_mipi_dbi zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_mipi_dsi zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_misc zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pcie zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pinctrl zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_power zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pwm zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_rdc zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_regulator zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_reserved-memory zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_reset zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_sensor zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_spi zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_timer zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_usb zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_usb-c zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_video zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_clock_silabs zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pinctrl_renesas zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pinctrl_silabs zephyr/misc/generated/syscalls_links/include_zephyr_kernel_internal zephyr/misc/generated/syscalls_links/include_zephyr_kernel_mm zephyr/misc/generated/syscalls_links/include_zephyr_linker_common-rom zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_ec_host_cmd zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_hawkbit zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_mgmt zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_smp zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_transport zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_enum_mgmt zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_fs_mgmt zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_img_mgmt zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_os_mgmt zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_settings_mgmt zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_shell_mgmt zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_stat_mgmt zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_zephyr zephyr/misc/generated/syscalls_links/include_zephyr_modem_backend zephyr/misc/generated/syscalls_links/include_zephyr_net_conn_mgr zephyr/misc/generated/syscalls_links/include_zephyr_net_hdlc_rcp_if zephyr/misc/generated/syscalls_links/include_zephyr_net_http zephyr/misc/generated/syscalls_links/include_zephyr_net_prometheus zephyr/misc/generated/syscalls_links/include_zephyr_posix_arpa zephyr/misc/generated/syscalls_links/include_zephyr_posix_net zephyr/misc/generated/syscalls_links/include_zephyr_posix_netinet zephyr/misc/generated/syscalls_links/include_zephyr_posix_sys zephyr/misc/generated/syscalls_links/include_zephyr_sys_internal zephyr/misc/generated/syscalls_links/include_zephyr_usb_class zephyr/misc/generated/syscalls_links/include_zephyr_xen_dom0 zephyr/misc/generated/syscalls_links/include_zephyr_xen_public zephyr/misc/generated/syscalls_links/include_zephyr_xen_public_hvm zephyr/misc/generated/syscalls_links/include_zephyr_xen_public_io + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/python /home/miguel/ncs/v3.0.2/zephyr/scripts/build/subfolder_list.py --directory /home/miguel/ncs/v3.0.2/zephyr/include --out-file /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_subdirs.txt --trigger-file /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_subdirs.trigger --create-links /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links + DESC = Generating misc/generated/syscalls_subdirs.trigger + restat = 1 + + +############################################# +# Custom command for zephyr/misc/generated/syscalls_links/include + +build zephyr/misc/generated/syscalls_links/include zephyr/misc/generated/syscalls_links/include_zephyr zephyr/misc/generated/syscalls_links/include_zephyr_acpi zephyr/misc/generated/syscalls_links/include_zephyr_app_memory zephyr/misc/generated/syscalls_links/include_zephyr_arch zephyr/misc/generated/syscalls_links/include_zephyr_audio zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth zephyr/misc/generated/syscalls_links/include_zephyr_canbus zephyr/misc/generated/syscalls_links/include_zephyr_console zephyr/misc/generated/syscalls_links/include_zephyr_crypto zephyr/misc/generated/syscalls_links/include_zephyr_data zephyr/misc/generated/syscalls_links/include_zephyr_debug zephyr/misc/generated/syscalls_links/include_zephyr_devicetree zephyr/misc/generated/syscalls_links/include_zephyr_dfu zephyr/misc/generated/syscalls_links/include_zephyr_display zephyr/misc/generated/syscalls_links/include_zephyr_drivers zephyr/misc/generated/syscalls_links/include_zephyr_dsp zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings zephyr/misc/generated/syscalls_links/include_zephyr_fs zephyr/misc/generated/syscalls_links/include_zephyr_input zephyr/misc/generated/syscalls_links/include_zephyr_internal zephyr/misc/generated/syscalls_links/include_zephyr_ipc zephyr/misc/generated/syscalls_links/include_zephyr_kernel zephyr/misc/generated/syscalls_links/include_zephyr_linker zephyr/misc/generated/syscalls_links/include_zephyr_llext zephyr/misc/generated/syscalls_links/include_zephyr_logging zephyr/misc/generated/syscalls_links/include_zephyr_lorawan zephyr/misc/generated/syscalls_links/include_zephyr_math zephyr/misc/generated/syscalls_links/include_zephyr_mem_mgmt zephyr/misc/generated/syscalls_links/include_zephyr_mgmt zephyr/misc/generated/syscalls_links/include_zephyr_misc zephyr/misc/generated/syscalls_links/include_zephyr_modbus zephyr/misc/generated/syscalls_links/include_zephyr_modem zephyr/misc/generated/syscalls_links/include_zephyr_multi_heap zephyr/misc/generated/syscalls_links/include_zephyr_net zephyr/misc/generated/syscalls_links/include_zephyr_platform zephyr/misc/generated/syscalls_links/include_zephyr_pm zephyr/misc/generated/syscalls_links/include_zephyr_portability zephyr/misc/generated/syscalls_links/include_zephyr_posix zephyr/misc/generated/syscalls_links/include_zephyr_psa zephyr/misc/generated/syscalls_links/include_zephyr_random zephyr/misc/generated/syscalls_links/include_zephyr_retention zephyr/misc/generated/syscalls_links/include_zephyr_rtio zephyr/misc/generated/syscalls_links/include_zephyr_sd zephyr/misc/generated/syscalls_links/include_zephyr_sensing zephyr/misc/generated/syscalls_links/include_zephyr_settings zephyr/misc/generated/syscalls_links/include_zephyr_shell zephyr/misc/generated/syscalls_links/include_zephyr_sip_svc zephyr/misc/generated/syscalls_links/include_zephyr_stats zephyr/misc/generated/syscalls_links/include_zephyr_storage zephyr/misc/generated/syscalls_links/include_zephyr_sys zephyr/misc/generated/syscalls_links/include_zephyr_task_wdt zephyr/misc/generated/syscalls_links/include_zephyr_timing zephyr/misc/generated/syscalls_links/include_zephyr_toolchain zephyr/misc/generated/syscalls_links/include_zephyr_tracing zephyr/misc/generated/syscalls_links/include_zephyr_usb zephyr/misc/generated/syscalls_links/include_zephyr_usb_c zephyr/misc/generated/syscalls_links/include_zephyr_xen zephyr/misc/generated/syscalls_links/include_zephyr_zbus zephyr/misc/generated/syscalls_links/include_zephyr_zvfs zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm64 zephyr/misc/generated/syscalls_links/include_zephyr_arch_common zephyr/misc/generated/syscalls_links/include_zephyr_arch_mips zephyr/misc/generated/syscalls_links/include_zephyr_arch_nios2 zephyr/misc/generated/syscalls_links/include_zephyr_arch_posix zephyr/misc/generated/syscalls_links/include_zephyr_arch_riscv zephyr/misc/generated/syscalls_links/include_zephyr_arch_sparc zephyr/misc/generated/syscalls_links/include_zephyr_arch_x86 zephyr/misc/generated/syscalls_links/include_zephyr_arch_xtensa zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_asm-compat zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2 zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2_dsp zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2_mpu zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2_secureshield zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2_vpx zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_a_r zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_m zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_r zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_mmu zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_mpu zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_a_r_scripts zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_m_scripts zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_r_scripts zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm64_cortex_r zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm64_scripts zephyr/misc/generated/syscalls_links/include_zephyr_arch_riscv_common zephyr/misc/generated/syscalls_links/include_zephyr_arch_riscv_riscv-privileged zephyr/misc/generated/syscalls_links/include_zephyr_arch_x86_ia32 zephyr/misc/generated/syscalls_links/include_zephyr_arch_x86_intel64 zephyr/misc/generated/syscalls_links/include_zephyr_arch_x86_ia32_scripts zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_audio zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_classic zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_mesh zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_services zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_services_nus zephyr/misc/generated/syscalls_links/include_zephyr_debug_coresight zephyr/misc/generated/syscalls_links/include_zephyr_drivers_adc zephyr/misc/generated/syscalls_links/include_zephyr_drivers_bluetooth zephyr/misc/generated/syscalls_links/include_zephyr_drivers_can zephyr/misc/generated/syscalls_links/include_zephyr_drivers_clock_control zephyr/misc/generated/syscalls_links/include_zephyr_drivers_comparator zephyr/misc/generated/syscalls_links/include_zephyr_drivers_console zephyr/misc/generated/syscalls_links/include_zephyr_drivers_dma zephyr/misc/generated/syscalls_links/include_zephyr_drivers_eeprom zephyr/misc/generated/syscalls_links/include_zephyr_drivers_ethernet zephyr/misc/generated/syscalls_links/include_zephyr_drivers_firmware zephyr/misc/generated/syscalls_links/include_zephyr_drivers_flash zephyr/misc/generated/syscalls_links/include_zephyr_drivers_gnss zephyr/misc/generated/syscalls_links/include_zephyr_drivers_gpio zephyr/misc/generated/syscalls_links/include_zephyr_drivers_haptics zephyr/misc/generated/syscalls_links/include_zephyr_drivers_i2c zephyr/misc/generated/syscalls_links/include_zephyr_drivers_i3c zephyr/misc/generated/syscalls_links/include_zephyr_drivers_ieee802154 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_interrupt_controller zephyr/misc/generated/syscalls_links/include_zephyr_drivers_led zephyr/misc/generated/syscalls_links/include_zephyr_drivers_led_strip zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mfd zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mipi_dsi zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mm zephyr/misc/generated/syscalls_links/include_zephyr_drivers_modem zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mspi zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pcie zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pinctrl zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pm_cpu_ops zephyr/misc/generated/syscalls_links/include_zephyr_drivers_power zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pwm zephyr/misc/generated/syscalls_links/include_zephyr_drivers_regulator zephyr/misc/generated/syscalls_links/include_zephyr_drivers_retained_mem zephyr/misc/generated/syscalls_links/include_zephyr_drivers_rtc zephyr/misc/generated/syscalls_links/include_zephyr_drivers_sensor zephyr/misc/generated/syscalls_links/include_zephyr_drivers_serial zephyr/misc/generated/syscalls_links/include_zephyr_drivers_sip_svc zephyr/misc/generated/syscalls_links/include_zephyr_drivers_spi zephyr/misc/generated/syscalls_links/include_zephyr_drivers_stepper zephyr/misc/generated/syscalls_links/include_zephyr_drivers_timer zephyr/misc/generated/syscalls_links/include_zephyr_drivers_uart zephyr/misc/generated/syscalls_links/include_zephyr_drivers_usb zephyr/misc/generated/syscalls_links/include_zephyr_drivers_usb_c zephyr/misc/generated/syscalls_links/include_zephyr_drivers_virtualization zephyr/misc/generated/syscalls_links/include_zephyr_drivers_wifi zephyr/misc/generated/syscalls_links/include_zephyr_drivers_firmware_scmi zephyr/misc/generated/syscalls_links/include_zephyr_drivers_i2c_target zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_coresight zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_devmux zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_ft8xx zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_grove_lcd zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_nxp_flexio zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_pio_rpi_pico zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_renesas_ra_external_interrupt zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_stm32_wkup_pins zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_timeaware_gpio zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pcie_endpoint zephyr/misc/generated/syscalls_links/include_zephyr_drivers_wifi_nrf_wifi zephyr/misc/generated/syscalls_links/include_zephyr_drivers_wifi_nrf_wifi_bus zephyr/misc/generated/syscalls_links/include_zephyr_drivers_wifi_nrf_wifi_off_raw_tx zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_acpi zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_adc zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_battery zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_clock zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_dac zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_dai zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_display zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_dma zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_espi zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_ethernet zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_flash_controller zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_gnss zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_gpio zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_i2c zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_input zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_inputmux zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_interrupt-controller zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_ipc_service zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_led zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_lora zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_lvgl zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_memory-attr zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_memory-controller zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_mfd zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_mipi_dbi zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_mipi_dsi zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_misc zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pcie zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pinctrl zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_power zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pwm zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_rdc zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_regulator zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_reserved-memory zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_reset zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_sensor zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_spi zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_timer zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_usb zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_usb-c zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_video zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_clock_silabs zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pinctrl_renesas zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pinctrl_silabs zephyr/misc/generated/syscalls_links/include_zephyr_kernel_internal zephyr/misc/generated/syscalls_links/include_zephyr_kernel_mm zephyr/misc/generated/syscalls_links/include_zephyr_linker_common-rom zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_ec_host_cmd zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_hawkbit zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_mgmt zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_smp zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_transport zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_enum_mgmt zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_fs_mgmt zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_img_mgmt zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_os_mgmt zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_settings_mgmt zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_shell_mgmt zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_stat_mgmt zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_zephyr zephyr/misc/generated/syscalls_links/include_zephyr_modem_backend zephyr/misc/generated/syscalls_links/include_zephyr_net_conn_mgr zephyr/misc/generated/syscalls_links/include_zephyr_net_hdlc_rcp_if zephyr/misc/generated/syscalls_links/include_zephyr_net_http zephyr/misc/generated/syscalls_links/include_zephyr_net_prometheus zephyr/misc/generated/syscalls_links/include_zephyr_posix_arpa zephyr/misc/generated/syscalls_links/include_zephyr_posix_net zephyr/misc/generated/syscalls_links/include_zephyr_posix_netinet zephyr/misc/generated/syscalls_links/include_zephyr_posix_sys zephyr/misc/generated/syscalls_links/include_zephyr_sys_internal zephyr/misc/generated/syscalls_links/include_zephyr_usb_class zephyr/misc/generated/syscalls_links/include_zephyr_xen_dom0 zephyr/misc/generated/syscalls_links/include_zephyr_xen_public zephyr/misc/generated/syscalls_links/include_zephyr_xen_public_hvm zephyr/misc/generated/syscalls_links/include_zephyr_xen_public_io | ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_acpi ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_app_memory ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_arch ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_audio ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_canbus ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_console ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_crypto ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_data ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_debug ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_devicetree ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_dfu ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_display ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_dsp ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_fs ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_input ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_internal ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_ipc ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_kernel ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_linker ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_llext ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_logging ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_lorawan ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_math ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_mem_mgmt ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_mgmt ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_misc ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_modbus ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_modem ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_multi_heap ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_net ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_platform ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_pm ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_portability ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_posix ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_psa ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_random ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_retention ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_rtio ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_sd ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_sensing ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_settings ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_shell ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_sip_svc ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_stats ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_storage ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_sys ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_task_wdt ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_timing ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_toolchain ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_tracing ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_usb ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_usb_c ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_xen ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_zbus ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_zvfs ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm64 ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_arch_common ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_arch_mips ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_arch_nios2 ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_arch_posix ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_arch_riscv ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_arch_sparc ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_arch_x86 ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_arch_xtensa ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_asm-compat ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2 ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2_dsp ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2_mpu ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2_secureshield ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2_vpx ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_a_r ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_m ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_r ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_mmu ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_mpu ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_a_r_scripts ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_m_scripts ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_r_scripts ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm64_cortex_r ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm64_scripts ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_arch_riscv_common ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_arch_riscv_riscv-privileged ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_arch_x86_ia32 ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_arch_x86_intel64 ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_arch_x86_ia32_scripts ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_audio ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_classic ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_mesh ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_services ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_services_nus ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_debug_coresight ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_adc ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_bluetooth ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_can ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_clock_control ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_comparator ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_console ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_dma ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_eeprom ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_ethernet ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_firmware ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_flash ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_gnss ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_gpio ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_haptics ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_i2c ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_i3c ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_ieee802154 ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_interrupt_controller ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_led ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_led_strip ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mfd ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mipi_dsi ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mm ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_modem ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mspi ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pcie ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pinctrl ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pm_cpu_ops ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_power ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pwm ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_regulator ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_retained_mem ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_rtc ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_sensor ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_serial ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_sip_svc ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_spi ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_stepper ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_timer ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_uart ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_usb ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_usb_c ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_virtualization ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_wifi ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_firmware_scmi ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_i2c_target ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_coresight ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_devmux ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_ft8xx ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_grove_lcd ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_nxp_flexio ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_pio_rpi_pico ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_renesas_ra_external_interrupt ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_stm32_wkup_pins ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_timeaware_gpio ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pcie_endpoint ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_wifi_nrf_wifi ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_wifi_nrf_wifi_bus ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_wifi_nrf_wifi_off_raw_tx ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_acpi ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_adc ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_battery ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_clock ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_dac ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_dai ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_display ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_dma ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_espi ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_ethernet ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_flash_controller ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_gnss ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_gpio ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_i2c ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_input ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_inputmux ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_interrupt-controller ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_ipc_service ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_led ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_lora ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_lvgl ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_memory-attr ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_memory-controller ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_mfd ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_mipi_dbi ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_mipi_dsi ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_misc ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pcie ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pinctrl ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_power ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pwm ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_rdc ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_regulator ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_reserved-memory ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_reset ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_sensor ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_spi ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_timer ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_usb ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_usb-c ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_video ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_clock_silabs ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pinctrl_renesas ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pinctrl_silabs ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_kernel_internal ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_kernel_mm ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_linker_common-rom ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_ec_host_cmd ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_hawkbit ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_mgmt ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_smp ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_transport ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_enum_mgmt ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_fs_mgmt ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_img_mgmt ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_os_mgmt ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_settings_mgmt ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_shell_mgmt ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_stat_mgmt ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_zephyr ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_modem_backend ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_net_conn_mgr ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_net_hdlc_rcp_if ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_net_http ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_net_prometheus ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_posix_arpa ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_posix_net ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_posix_netinet ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_posix_sys ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_sys_internal ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_usb_class ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_xen_dom0 ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_xen_public ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_xen_public_hvm ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_xen_public_io: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo + DESC = Preparing syscall dependency handling + restat = 1 + + +############################################# +# Phony custom command for zephyr/CMakeFiles/syscall_list_h_target + +build zephyr/CMakeFiles/syscall_list_h_target | ${cmake_ninja_workdir}zephyr/CMakeFiles/syscall_list_h_target: phony zephyr/include/generated/zephyr/syscall_list.h || zephyr/parse_syscalls_target + + +############################################# +# Custom command for zephyr/include/generated/zephyr/syscall_dispatch.c + +build zephyr/include/generated/zephyr/syscall_dispatch.c zephyr/include/generated/zephyr/syscall_exports_llext.c zephyr/syscall_weakdefs_llext.c zephyr/include/generated/zephyr/syscall_list.h | ${cmake_ninja_workdir}zephyr/include/generated/zephyr/syscall_dispatch.c ${cmake_ninja_workdir}zephyr/include/generated/zephyr/syscall_exports_llext.c ${cmake_ninja_workdir}zephyr/syscall_weakdefs_llext.c ${cmake_ninja_workdir}zephyr/include/generated/zephyr/syscall_list.h: CUSTOM_COMMAND || zephyr/parse_syscalls_target + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/python /home/miguel/ncs/v3.0.2/zephyr/scripts/build/gen_syscalls.py --json-file /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls.json --base-output include/generated/zephyr/syscalls --syscall-dispatch include/generated/zephyr/syscall_dispatch.c --syscall-exports-llext include/generated/zephyr/syscall_exports_llext.c --syscall-weakdefs-llext syscall_weakdefs_llext.c --syscall-list /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscall_list.h --split-type k_timeout_t --split-type k_ticks_t && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E copy /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscall_list.h /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/syscall_list.h + DESC = Generating include/generated/zephyr/syscall_dispatch.c, include/generated/zephyr/syscall_exports_llext.c, syscall_weakdefs_llext.c, include/generated/zephyr/syscall_list.h + restat = 1 + + +############################################# +# Phony custom command for zephyr/CMakeFiles/driver_validation_h_target + +build zephyr/CMakeFiles/driver_validation_h_target | ${cmake_ninja_workdir}zephyr/CMakeFiles/driver_validation_h_target: phony zephyr/include/generated/zephyr/driver-validation.h || zephyr/parse_syscalls_target + + +############################################# +# Custom command for zephyr/include/generated/zephyr/driver-validation.h + +build zephyr/include/generated/zephyr/driver-validation.h | ${cmake_ninja_workdir}zephyr/include/generated/zephyr/driver-validation.h: CUSTOM_COMMAND /home/miguel/ncs/v3.0.2/zephyr/scripts/build/gen_kobject_list.py || zephyr/parse_syscalls_target + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/python /home/miguel/ncs/v3.0.2/zephyr/scripts/build/gen_kobject_list.py --validation-output /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/driver-validation.h --include-subsystem-list /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/struct_tags.json + DESC = Generating include/generated/zephyr/driver-validation.h + restat = 1 + + +############################################# +# Phony custom command for zephyr/CMakeFiles/parse_syscalls_target + +build zephyr/CMakeFiles/parse_syscalls_target | ${cmake_ninja_workdir}zephyr/CMakeFiles/parse_syscalls_target: phony zephyr/misc/generated/syscalls.json zephyr/misc/generated/struct_tags.json + + +############################################# +# Phony custom command for zephyr/CMakeFiles/kobj_types_h_target + +build zephyr/CMakeFiles/kobj_types_h_target | ${cmake_ninja_workdir}zephyr/CMakeFiles/kobj_types_h_target: phony zephyr/include/generated/zephyr/kobj-types-enum.h zephyr/include/generated/zephyr/otype-to-str.h || zephyr/parse_syscalls_target + + +############################################# +# Custom command for zephyr/include/generated/zephyr/kobj-types-enum.h + +build zephyr/include/generated/zephyr/kobj-types-enum.h zephyr/include/generated/zephyr/otype-to-str.h zephyr/include/generated/zephyr/otype-to-size.h | ${cmake_ninja_workdir}zephyr/include/generated/zephyr/kobj-types-enum.h ${cmake_ninja_workdir}zephyr/include/generated/zephyr/otype-to-str.h ${cmake_ninja_workdir}zephyr/include/generated/zephyr/otype-to-size.h: CUSTOM_COMMAND /home/miguel/ncs/v3.0.2/zephyr/scripts/build/gen_kobject_list.py || zephyr/parse_syscalls_target + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/python /home/miguel/ncs/v3.0.2/zephyr/scripts/build/gen_kobject_list.py --kobj-types-output /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/kobj-types-enum.h --kobj-otype-output /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/otype-to-str.h --kobj-size-output /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/otype-to-size.h --include-subsystem-list /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/struct_tags.json + DESC = Generating include/generated/zephyr/kobj-types-enum.h, include/generated/zephyr/otype-to-str.h, include/generated/zephyr/otype-to-size.h + restat = 1 + + +############################################# +# Phony custom command for zephyr/CMakeFiles/linker_zephyr_prebuilt_script_target + +build zephyr/CMakeFiles/linker_zephyr_prebuilt_script_target | ${cmake_ninja_workdir}zephyr/CMakeFiles/linker_zephyr_prebuilt_script_target: phony zephyr/linker_zephyr_pre0.cmd || modules/nrf/ncs_commit_h modules/nrf/ncs_version_h modules/nrf/zephyr_commit_h zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/offsets zephyr/offsets_h zephyr/parse_syscalls_target zephyr/syscall_list_h_target zephyr/version_h zephyr/zephyr_generated_headers + + +############################################# +# Custom command for zephyr/linker_zephyr_pre0.cmd + +build zephyr/linker_zephyr_pre0.cmd | ${cmake_ninja_workdir}zephyr/linker_zephyr_pre0.cmd: CUSTOM_COMMAND /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/arch/arm/cortex_m/scripts/linker.ld zephyr/include/generated/zephyr/autoconf.h || modules/nrf/ncs_commit_h modules/nrf/ncs_version_h modules/nrf/zephyr_commit_h zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/offsets zephyr/offsets_h zephyr/parse_syscalls_target zephyr/syscall_list_h_target zephyr/version_h zephyr/zephyr_generated_headers + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr && /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -x assembler-with-cpp -undef -MD -MF linker_zephyr_pre0.cmd.dep -MT linker_zephyr_pre0.cmd -D_LINKER -D_ASMLANGUAGE -D__GCC_LINKER_CMD__ -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -I/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/arch/arm/cortex_m/scripts -DLINKER_ZEPHYR_PREBUILT -DUSE_PARTITION_MANAGER=1 -E /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/arch/arm/cortex_m/scripts/linker.ld -P -o linker_zephyr_pre0.cmd && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E cmake_transform_depfile Ninja gccdepfile /home/miguel/Documents/GardenProject/Software/PHF000-Firmware /home/miguel/ncs/v3.0.2/zephyr /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/linker_zephyr_pre0.cmd.dep /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/CMakeFiles/d/1a4c9f18d2250843b7410779831b04ccc3715fda6cff75c907a4f0325e2ed54c.d + DESC = Generating linker_zephyr_pre0.cmd + depfile = /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/CMakeFiles/d/1a4c9f18d2250843b7410779831b04ccc3715fda6cff75c907a4f0325e2ed54c.d + restat = 1 + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build zephyr/arch/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/arch && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/arch/rebuild_cache: phony zephyr/arch/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build zephyr/arch/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/arch && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/arch/edit_cache: phony zephyr/arch/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/arch/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build zephyr/arch/common/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/arch/common && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/arch/common/rebuild_cache: phony zephyr/arch/common/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build zephyr/arch/common/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/arch/common && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/arch/common/edit_cache: phony zephyr/arch/common/CMakeFiles/edit_cache.util + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target isr_tables + + +############################################# +# Order-only phony target for isr_tables + +build cmake_object_order_depends_target_isr_tables: phony || zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/syscall_list_h_target zephyr/zephyr_generated_headers + +build zephyr/arch/common/CMakeFiles/isr_tables.dir/isr_tables.c.obj: C_COMPILER__isr_tables_ /home/miguel/ncs/v3.0.2/zephyr/arch/common/isr_tables.c || cmake_object_order_depends_target_isr_tables + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr/arch/common/CMakeFiles/isr_tables.dir/isr_tables.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/arch/common/CMakeFiles/isr_tables.dir + OBJECT_FILE_DIR = zephyr/arch/common/CMakeFiles/isr_tables.dir + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target isr_tables + + +############################################# +# Link the static library zephyr/arch/common/libisr_tables.a + +build zephyr/arch/common/libisr_tables.a: C_STATIC_LIBRARY_LINKER__isr_tables_ zephyr/arch/common/CMakeFiles/isr_tables.dir/isr_tables.c.obj || zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/syscall_list_h_target zephyr/zephyr_generated_headers + OBJECT_DIR = zephyr/arch/common/CMakeFiles/isr_tables.dir + POST_BUILD = : + PRE_LINK = : + TARGET_FILE = zephyr/arch/common/libisr_tables.a + TARGET_PDB = isr_tables.a.dbg + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target arch__common + + +############################################# +# Order-only phony target for arch__common + +build cmake_object_order_depends_target_arch__common: phony || cmake_object_order_depends_target_isr_tables zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/syscall_list_h_target zephyr/zephyr_generated_headers + +build zephyr/arch/common/CMakeFiles/arch__common.dir/sw_isr_common.c.obj: C_COMPILER__arch__common_ /home/miguel/ncs/v3.0.2/zephyr/arch/common/sw_isr_common.c || cmake_object_order_depends_target_arch__common + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr/arch/common/CMakeFiles/arch__common.dir/sw_isr_common.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/common/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/arch/common/CMakeFiles/arch__common.dir + OBJECT_FILE_DIR = zephyr/arch/common/CMakeFiles/arch__common.dir + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target arch__common + + +############################################# +# Link the static library zephyr/arch/common/libarch__common.a + +build zephyr/arch/common/libarch__common.a: C_STATIC_LIBRARY_LINKER__arch__common_ zephyr/arch/common/CMakeFiles/arch__common.dir/sw_isr_common.c.obj || zephyr/arch/common/libisr_tables.a zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/syscall_list_h_target zephyr/zephyr_generated_headers + OBJECT_DIR = zephyr/arch/common/CMakeFiles/arch__common.dir + POST_BUILD = : + PRE_LINK = : + TARGET_FILE = zephyr/arch/common/libarch__common.a + TARGET_PDB = arch__common.a.dbg + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/arch/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build zephyr/arch/arch/arm/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/arch/arch/arm && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/arch/arch/arm/rebuild_cache: phony zephyr/arch/arch/arm/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build zephyr/arch/arch/arm/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/arch/arch/arm && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/arch/arch/arm/edit_cache: phony zephyr/arch/arch/arm/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/arch/arm/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build zephyr/arch/arch/arm/core/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/arch/arch/arm/core && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/arch/arch/arm/core/rebuild_cache: phony zephyr/arch/arch/arm/core/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build zephyr/arch/arch/arm/core/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/arch/arch/arm/core && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/arch/arch/arm/core/edit_cache: phony zephyr/arch/arch/arm/core/CMakeFiles/edit_cache.util + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target arch__arm__core + + +############################################# +# Order-only phony target for arch__arm__core + +build cmake_object_order_depends_target_arch__arm__core: phony || zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/syscall_list_h_target zephyr/zephyr_generated_headers + +build zephyr/arch/arch/arm/core/CMakeFiles/arch__arm__core.dir/fatal.c.obj: C_COMPILER__arch__arm__core_ /home/miguel/ncs/v3.0.2/zephyr/arch/arm/core/fatal.c || cmake_object_order_depends_target_arch__arm__core + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr/arch/arch/arm/core/CMakeFiles/arch__arm__core.dir/fatal.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/arch/arch/arm/core/CMakeFiles/arch__arm__core.dir + OBJECT_FILE_DIR = zephyr/arch/arch/arm/core/CMakeFiles/arch__arm__core.dir + +build zephyr/arch/arch/arm/core/CMakeFiles/arch__arm__core.dir/nmi.c.obj: C_COMPILER__arch__arm__core_ /home/miguel/ncs/v3.0.2/zephyr/arch/arm/core/nmi.c || cmake_object_order_depends_target_arch__arm__core + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr/arch/arch/arm/core/CMakeFiles/arch__arm__core.dir/nmi.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/arch/arch/arm/core/CMakeFiles/arch__arm__core.dir + OBJECT_FILE_DIR = zephyr/arch/arch/arm/core/CMakeFiles/arch__arm__core.dir + +build zephyr/arch/arch/arm/core/CMakeFiles/arch__arm__core.dir/nmi_on_reset.S.obj: ASM_COMPILER__arch__arm__core_ /home/miguel/ncs/v3.0.2/zephyr/arch/arm/core/nmi_on_reset.S || cmake_object_order_depends_target_arch__arm__core + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr/arch/arch/arm/core/CMakeFiles/arch__arm__core.dir/nmi_on_reset.S.obj.d + FLAGS = -Wshadow -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -xassembler-with-cpp -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -D_ASMLANGUAGE -Wno-unused-but-set-variable -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs + INCLUDES = -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/arch/arch/arm/core/CMakeFiles/arch__arm__core.dir + OBJECT_FILE_DIR = zephyr/arch/arch/arm/core/CMakeFiles/arch__arm__core.dir + +build zephyr/arch/arch/arm/core/CMakeFiles/arch__arm__core.dir/tls.c.obj: C_COMPILER__arch__arm__core_ /home/miguel/ncs/v3.0.2/zephyr/arch/arm/core/tls.c || cmake_object_order_depends_target_arch__arm__core + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr/arch/arch/arm/core/CMakeFiles/arch__arm__core.dir/tls.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/arch/arch/arm/core/CMakeFiles/arch__arm__core.dir + OBJECT_FILE_DIR = zephyr/arch/arch/arm/core/CMakeFiles/arch__arm__core.dir + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target arch__arm__core + + +############################################# +# Link the static library zephyr/arch/arch/arm/core/libarch__arm__core.a + +build zephyr/arch/arch/arm/core/libarch__arm__core.a: C_STATIC_LIBRARY_LINKER__arch__arm__core_ zephyr/arch/arch/arm/core/CMakeFiles/arch__arm__core.dir/fatal.c.obj zephyr/arch/arch/arm/core/CMakeFiles/arch__arm__core.dir/nmi.c.obj zephyr/arch/arch/arm/core/CMakeFiles/arch__arm__core.dir/nmi_on_reset.S.obj zephyr/arch/arch/arm/core/CMakeFiles/arch__arm__core.dir/tls.c.obj || zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/syscall_list_h_target zephyr/zephyr_generated_headers + OBJECT_DIR = zephyr/arch/arch/arm/core/CMakeFiles/arch__arm__core.dir + POST_BUILD = : + PRE_LINK = : + TARGET_FILE = zephyr/arch/arch/arm/core/libarch__arm__core.a + TARGET_PDB = arch__arm__core.a.dbg + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/arch/arm/core/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/arch/arch/arm/core/cortex_m && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/arch/arch/arm/core/cortex_m/edit_cache: phony zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/arch/arch/arm/core/cortex_m && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/arch/arch/arm/core/cortex_m/rebuild_cache: phony zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target arch__arm__core__cortex_m + + +############################################# +# Order-only phony target for arch__arm__core__cortex_m + +build cmake_object_order_depends_target_arch__arm__core__cortex_m: phony || zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/syscall_list_h_target zephyr/zephyr_generated_headers + +build zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/exc_exit.c.obj: C_COMPILER__arch__arm__core__cortex_m_ /home/miguel/ncs/v3.0.2/zephyr/arch/arm/core/cortex_m/exc_exit.c || cmake_object_order_depends_target_arch__arm__core__cortex_m + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/exc_exit.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir + OBJECT_FILE_DIR = zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir + +build zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/fault.c.obj: C_COMPILER__arch__arm__core__cortex_m_ /home/miguel/ncs/v3.0.2/zephyr/arch/arm/core/cortex_m/fault.c || cmake_object_order_depends_target_arch__arm__core__cortex_m + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/fault.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir + OBJECT_FILE_DIR = zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir + +build zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/fault_s.S.obj: ASM_COMPILER__arch__arm__core__cortex_m_ /home/miguel/ncs/v3.0.2/zephyr/arch/arm/core/cortex_m/fault_s.S || cmake_object_order_depends_target_arch__arm__core__cortex_m + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/fault_s.S.obj.d + FLAGS = -Wshadow -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -xassembler-with-cpp -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -D_ASMLANGUAGE -Wno-unused-but-set-variable -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs + INCLUDES = -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir + OBJECT_FILE_DIR = zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir + +build zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/fpu.c.obj: C_COMPILER__arch__arm__core__cortex_m_ /home/miguel/ncs/v3.0.2/zephyr/arch/arm/core/cortex_m/fpu.c || cmake_object_order_depends_target_arch__arm__core__cortex_m + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/fpu.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir + OBJECT_FILE_DIR = zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir + +build zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/reset.S.obj: ASM_COMPILER__arch__arm__core__cortex_m_ /home/miguel/ncs/v3.0.2/zephyr/arch/arm/core/cortex_m/reset.S || cmake_object_order_depends_target_arch__arm__core__cortex_m + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/reset.S.obj.d + FLAGS = -Wshadow -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -xassembler-with-cpp -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -D_ASMLANGUAGE -Wno-unused-but-set-variable -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs + INCLUDES = -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir + OBJECT_FILE_DIR = zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir + +build zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/scb.c.obj: C_COMPILER__arch__arm__core__cortex_m_ /home/miguel/ncs/v3.0.2/zephyr/arch/arm/core/cortex_m/scb.c || cmake_object_order_depends_target_arch__arm__core__cortex_m + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/scb.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir + OBJECT_FILE_DIR = zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir + +build zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/thread_abort.c.obj: C_COMPILER__arch__arm__core__cortex_m_ /home/miguel/ncs/v3.0.2/zephyr/arch/arm/core/cortex_m/thread_abort.c || cmake_object_order_depends_target_arch__arm__core__cortex_m + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/thread_abort.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir + OBJECT_FILE_DIR = zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir + +build zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/vector_table.S.obj: ASM_COMPILER__arch__arm__core__cortex_m_ /home/miguel/ncs/v3.0.2/zephyr/arch/arm/core/cortex_m/vector_table.S || cmake_object_order_depends_target_arch__arm__core__cortex_m + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/vector_table.S.obj.d + FLAGS = -Wshadow -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -xassembler-with-cpp -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -D_ASMLANGUAGE -Wno-unused-but-set-variable -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs + INCLUDES = -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir + OBJECT_FILE_DIR = zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir + +build zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/swap_helper.S.obj: ASM_COMPILER__arch__arm__core__cortex_m_ /home/miguel/ncs/v3.0.2/zephyr/arch/arm/core/cortex_m/swap_helper.S || cmake_object_order_depends_target_arch__arm__core__cortex_m + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/swap_helper.S.obj.d + FLAGS = -Wshadow -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -xassembler-with-cpp -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -D_ASMLANGUAGE -Wno-unused-but-set-variable -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs + INCLUDES = -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir + OBJECT_FILE_DIR = zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir + +build zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/irq_manage.c.obj: C_COMPILER__arch__arm__core__cortex_m_ /home/miguel/ncs/v3.0.2/zephyr/arch/arm/core/cortex_m/irq_manage.c || cmake_object_order_depends_target_arch__arm__core__cortex_m + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/irq_manage.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir + OBJECT_FILE_DIR = zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir + +build zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/prep_c.c.obj: C_COMPILER__arch__arm__core__cortex_m_ /home/miguel/ncs/v3.0.2/zephyr/arch/arm/core/cortex_m/prep_c.c || cmake_object_order_depends_target_arch__arm__core__cortex_m + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/prep_c.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir + OBJECT_FILE_DIR = zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir + +build zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/thread.c.obj: C_COMPILER__arch__arm__core__cortex_m_ /home/miguel/ncs/v3.0.2/zephyr/arch/arm/core/cortex_m/thread.c || cmake_object_order_depends_target_arch__arm__core__cortex_m + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/thread.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir + OBJECT_FILE_DIR = zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir + +build zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/cpu_idle.c.obj: C_COMPILER__arch__arm__core__cortex_m_ /home/miguel/ncs/v3.0.2/zephyr/arch/arm/core/cortex_m/cpu_idle.c || cmake_object_order_depends_target_arch__arm__core__cortex_m + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/cpu_idle.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir + OBJECT_FILE_DIR = zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir + +build zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/irq_init.c.obj: C_COMPILER__arch__arm__core__cortex_m_ /home/miguel/ncs/v3.0.2/zephyr/arch/arm/core/cortex_m/irq_init.c || cmake_object_order_depends_target_arch__arm__core__cortex_m + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/irq_init.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir + OBJECT_FILE_DIR = zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir + +build zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/isr_wrapper.c.obj: C_COMPILER__arch__arm__core__cortex_m_ /home/miguel/ncs/v3.0.2/zephyr/arch/arm/core/cortex_m/isr_wrapper.c || cmake_object_order_depends_target_arch__arm__core__cortex_m + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/isr_wrapper.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir + OBJECT_FILE_DIR = zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir + +build zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/__aeabi_read_tp.S.obj: ASM_COMPILER__arch__arm__core__cortex_m_ /home/miguel/ncs/v3.0.2/zephyr/arch/arm/core/cortex_m/__aeabi_read_tp.S || cmake_object_order_depends_target_arch__arm__core__cortex_m + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/__aeabi_read_tp.S.obj.d + FLAGS = -Wshadow -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -xassembler-with-cpp -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -D_ASMLANGUAGE -Wno-unused-but-set-variable -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs + INCLUDES = -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir + OBJECT_FILE_DIR = zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target arch__arm__core__cortex_m + + +############################################# +# Link the static library zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a + +build zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a: C_STATIC_LIBRARY_LINKER__arch__arm__core__cortex_m_ zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/exc_exit.c.obj zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/fault.c.obj zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/fault_s.S.obj zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/fpu.c.obj zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/reset.S.obj zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/scb.c.obj zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/thread_abort.c.obj zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/vector_table.S.obj zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/swap_helper.S.obj zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/irq_manage.c.obj zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/prep_c.c.obj zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/thread.c.obj zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/cpu_idle.c.obj zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/irq_init.c.obj zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/isr_wrapper.c.obj zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/__aeabi_read_tp.S.obj || zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/syscall_list_h_target zephyr/zephyr_generated_headers + OBJECT_DIR = zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir + POST_BUILD = : + PRE_LINK = : + TARGET_FILE = zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a + TARGET_PDB = arch__arm__core__cortex_m.a.dbg + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/arch/arm/core/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build zephyr/arch/arch/arm/core/mpu/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/arch/arch/arm/core/mpu && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/arch/arch/arm/core/mpu/rebuild_cache: phony zephyr/arch/arch/arm/core/mpu/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build zephyr/arch/arch/arm/core/mpu/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/arch/arch/arm/core/mpu && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/arch/arch/arm/core/mpu/edit_cache: phony zephyr/arch/arch/arm/core/mpu/CMakeFiles/edit_cache.util + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target arch__arm__core__mpu + + +############################################# +# Order-only phony target for arch__arm__core__mpu + +build cmake_object_order_depends_target_arch__arm__core__mpu: phony || zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/syscall_list_h_target zephyr/zephyr_generated_headers + +build zephyr/arch/arch/arm/core/mpu/CMakeFiles/arch__arm__core__mpu.dir/arm_core_mpu.c.obj: C_COMPILER__arch__arm__core__mpu_ /home/miguel/ncs/v3.0.2/zephyr/arch/arm/core/mpu/arm_core_mpu.c || cmake_object_order_depends_target_arch__arm__core__mpu + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr/arch/arch/arm/core/mpu/CMakeFiles/arch__arm__core__mpu.dir/arm_core_mpu.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/core/mpu/cortex_m -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/arch/arch/arm/core/mpu/CMakeFiles/arch__arm__core__mpu.dir + OBJECT_FILE_DIR = zephyr/arch/arch/arm/core/mpu/CMakeFiles/arch__arm__core__mpu.dir + +build zephyr/arch/arch/arm/core/mpu/CMakeFiles/arch__arm__core__mpu.dir/arm_mpu.c.obj: C_COMPILER__arch__arm__core__mpu_ /home/miguel/ncs/v3.0.2/zephyr/arch/arm/core/mpu/arm_mpu.c || cmake_object_order_depends_target_arch__arm__core__mpu + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr/arch/arch/arm/core/mpu/CMakeFiles/arch__arm__core__mpu.dir/arm_mpu.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/core/mpu/cortex_m -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/arch/arch/arm/core/mpu/CMakeFiles/arch__arm__core__mpu.dir + OBJECT_FILE_DIR = zephyr/arch/arch/arm/core/mpu/CMakeFiles/arch__arm__core__mpu.dir + +build zephyr/arch/arch/arm/core/mpu/CMakeFiles/arch__arm__core__mpu.dir/arm_mpu_regions.c.obj: C_COMPILER__arch__arm__core__mpu_ /home/miguel/ncs/v3.0.2/zephyr/arch/arm/core/mpu/arm_mpu_regions.c || cmake_object_order_depends_target_arch__arm__core__mpu + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr/arch/arch/arm/core/mpu/CMakeFiles/arch__arm__core__mpu.dir/arm_mpu_regions.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/core/mpu/cortex_m -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/arch/arch/arm/core/mpu/CMakeFiles/arch__arm__core__mpu.dir + OBJECT_FILE_DIR = zephyr/arch/arch/arm/core/mpu/CMakeFiles/arch__arm__core__mpu.dir + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target arch__arm__core__mpu + + +############################################# +# Link the static library zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a + +build zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a: C_STATIC_LIBRARY_LINKER__arch__arm__core__mpu_ zephyr/arch/arch/arm/core/mpu/CMakeFiles/arch__arm__core__mpu.dir/arm_core_mpu.c.obj zephyr/arch/arch/arm/core/mpu/CMakeFiles/arch__arm__core__mpu.dir/arm_mpu.c.obj zephyr/arch/arch/arm/core/mpu/CMakeFiles/arch__arm__core__mpu.dir/arm_mpu_regions.c.obj || zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/syscall_list_h_target zephyr/zephyr_generated_headers + OBJECT_DIR = zephyr/arch/arch/arm/core/mpu/CMakeFiles/arch__arm__core__mpu.dir + POST_BUILD = : + PRE_LINK = : + TARGET_FILE = zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a + TARGET_PDB = arch__arm__core__mpu.a.dbg + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build zephyr/lib/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/lib && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/lib/rebuild_cache: phony zephyr/lib/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build zephyr/lib/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/lib && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/lib/edit_cache: phony zephyr/lib/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/lib/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build zephyr/lib/crc/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/lib/crc && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/lib/crc/rebuild_cache: phony zephyr/lib/crc/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build zephyr/lib/crc/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/lib/crc && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/lib/crc/edit_cache: phony zephyr/lib/crc/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/lib/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build zephyr/lib/libc/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/lib/libc && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/lib/libc/rebuild_cache: phony zephyr/lib/libc/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build zephyr/lib/libc/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/lib/libc && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/lib/libc/edit_cache: phony zephyr/lib/libc/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/lib/libc/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build zephyr/lib/libc/picolibc/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/lib/libc/picolibc && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/lib/libc/picolibc/rebuild_cache: phony zephyr/lib/libc/picolibc/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build zephyr/lib/libc/picolibc/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/lib/libc/picolibc && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/lib/libc/picolibc/edit_cache: phony zephyr/lib/libc/picolibc/CMakeFiles/edit_cache.util + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target lib__libc__picolibc + + +############################################# +# Order-only phony target for lib__libc__picolibc + +build cmake_object_order_depends_target_lib__libc__picolibc: phony || zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/syscall_list_h_target zephyr/zephyr_generated_headers + +build zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/assert.c.obj: C_COMPILER__lib__libc__picolibc_ /home/miguel/ncs/v3.0.2/zephyr/lib/libc/picolibc/assert.c || cmake_object_order_depends_target_lib__libc__picolibc + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/assert.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -fno-lto + INCLUDES = -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir + OBJECT_FILE_DIR = zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir + +build zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/cbprintf.c.obj: C_COMPILER__lib__libc__picolibc_ /home/miguel/ncs/v3.0.2/zephyr/lib/libc/picolibc/cbprintf.c || cmake_object_order_depends_target_lib__libc__picolibc + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/cbprintf.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -fno-lto + INCLUDES = -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir + OBJECT_FILE_DIR = zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir + +build zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/chk_fail.c.obj: C_COMPILER__lib__libc__picolibc_ /home/miguel/ncs/v3.0.2/zephyr/lib/libc/picolibc/chk_fail.c || cmake_object_order_depends_target_lib__libc__picolibc + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/chk_fail.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -fno-lto + INCLUDES = -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir + OBJECT_FILE_DIR = zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir + +build zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/errno_wrap.c.obj: C_COMPILER__lib__libc__picolibc_ /home/miguel/ncs/v3.0.2/zephyr/lib/libc/picolibc/errno_wrap.c || cmake_object_order_depends_target_lib__libc__picolibc + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/errno_wrap.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -fno-lto + INCLUDES = -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir + OBJECT_FILE_DIR = zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir + +build zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/exit.c.obj: C_COMPILER__lib__libc__picolibc_ /home/miguel/ncs/v3.0.2/zephyr/lib/libc/picolibc/exit.c || cmake_object_order_depends_target_lib__libc__picolibc + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/exit.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -fno-lto + INCLUDES = -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir + OBJECT_FILE_DIR = zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir + +build zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/locks.c.obj: C_COMPILER__lib__libc__picolibc_ /home/miguel/ncs/v3.0.2/zephyr/lib/libc/picolibc/locks.c || cmake_object_order_depends_target_lib__libc__picolibc + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/locks.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -fno-lto + INCLUDES = -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir + OBJECT_FILE_DIR = zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir + +build zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/stdio.c.obj: C_COMPILER__lib__libc__picolibc_ /home/miguel/ncs/v3.0.2/zephyr/lib/libc/picolibc/stdio.c || cmake_object_order_depends_target_lib__libc__picolibc + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/stdio.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -fno-lto + INCLUDES = -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir + OBJECT_FILE_DIR = zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target lib__libc__picolibc + + +############################################# +# Link the static library zephyr/lib/libc/picolibc/liblib__libc__picolibc.a + +build zephyr/lib/libc/picolibc/liblib__libc__picolibc.a: C_STATIC_LIBRARY_LINKER__lib__libc__picolibc_ zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/assert.c.obj zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/cbprintf.c.obj zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/chk_fail.c.obj zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/errno_wrap.c.obj zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/exit.c.obj zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/locks.c.obj zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/stdio.c.obj || zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/syscall_list_h_target zephyr/zephyr_generated_headers + OBJECT_DIR = zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir + POST_BUILD = : + PRE_LINK = : + TARGET_FILE = zephyr/lib/libc/picolibc/liblib__libc__picolibc.a + TARGET_PDB = lib__libc__picolibc.a.dbg + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/lib/libc/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/lib/libc/common/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/lib/libc/common && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/lib/libc/common/edit_cache: phony zephyr/lib/libc/common/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/lib/libc/common/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/lib/libc/common && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/lib/libc/common/rebuild_cache: phony zephyr/lib/libc/common/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target lib__libc__common + + +############################################# +# Order-only phony target for lib__libc__common + +build cmake_object_order_depends_target_lib__libc__common: phony || zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/syscall_list_h_target zephyr/zephyr_generated_headers + +build zephyr/lib/libc/common/CMakeFiles/lib__libc__common.dir/source/stdlib/abort.c.obj: C_COMPILER__lib__libc__common_ /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/source/stdlib/abort.c || cmake_object_order_depends_target_lib__libc__common + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = zephyr/lib/libc/common/CMakeFiles/lib__libc__common.dir/source/stdlib/abort.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -fno-builtin-malloc + INCLUDES = -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/lib/libc/common/CMakeFiles/lib__libc__common.dir + OBJECT_FILE_DIR = zephyr/lib/libc/common/CMakeFiles/lib__libc__common.dir/source/stdlib + +build zephyr/lib/libc/common/CMakeFiles/lib__libc__common.dir/source/stdlib/malloc.c.obj: C_COMPILER__lib__libc__common_ /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/source/stdlib/malloc.c || cmake_object_order_depends_target_lib__libc__common + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = zephyr/lib/libc/common/CMakeFiles/lib__libc__common.dir/source/stdlib/malloc.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -fno-builtin-malloc + INCLUDES = -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/lib/libc/common/CMakeFiles/lib__libc__common.dir + OBJECT_FILE_DIR = zephyr/lib/libc/common/CMakeFiles/lib__libc__common.dir/source/stdlib + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target lib__libc__common + + +############################################# +# Link the static library zephyr/lib/libc/common/liblib__libc__common.a + +build zephyr/lib/libc/common/liblib__libc__common.a: C_STATIC_LIBRARY_LINKER__lib__libc__common_ zephyr/lib/libc/common/CMakeFiles/lib__libc__common.dir/source/stdlib/abort.c.obj zephyr/lib/libc/common/CMakeFiles/lib__libc__common.dir/source/stdlib/malloc.c.obj || zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/syscall_list_h_target zephyr/zephyr_generated_headers + OBJECT_DIR = zephyr/lib/libc/common/CMakeFiles/lib__libc__common.dir + POST_BUILD = : + PRE_LINK = : + TARGET_FILE = zephyr/lib/libc/common/liblib__libc__common.a + TARGET_PDB = lib__libc__common.a.dbg + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/lib/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build zephyr/lib/posix/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/lib/posix && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/lib/posix/rebuild_cache: phony zephyr/lib/posix/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build zephyr/lib/posix/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/lib/posix && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/lib/posix/edit_cache: phony zephyr/lib/posix/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/lib/posix/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build zephyr/lib/posix/options/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/lib/posix/options && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/lib/posix/options/rebuild_cache: phony zephyr/lib/posix/options/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build zephyr/lib/posix/options/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/lib/posix/options && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/lib/posix/options/edit_cache: phony zephyr/lib/posix/options/CMakeFiles/edit_cache.util + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target lib__posix__options + + +############################################# +# Order-only phony target for lib__posix__options + +build cmake_object_order_depends_target_lib__posix__options: phony || zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/syscall_list_h_target + +build zephyr/lib/posix/options/CMakeFiles/lib__posix__options.dir/home/miguel/ncs/v3.0.2/zephyr/misc/empty_file.c.obj: C_COMPILER__lib__posix__options_ /home/miguel/ncs/v3.0.2/zephyr/misc/empty_file.c || cmake_object_order_depends_target_lib__posix__options + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = zephyr/lib/posix/options/CMakeFiles/lib__posix__options.dir/home/miguel/ncs/v3.0.2/zephyr/misc/empty_file.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -U_POSIX_C_SOURCE -D_POSIX_C_SOURCE=200809L + INCLUDES = -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/lib/posix/options/CMakeFiles/lib__posix__options.dir + OBJECT_FILE_DIR = zephyr/lib/posix/options/CMakeFiles/lib__posix__options.dir/home/miguel/ncs/v3.0.2/zephyr/misc + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target lib__posix__options + + +############################################# +# Link the static library zephyr/lib/posix/options/liblib__posix__options.a + +build zephyr/lib/posix/options/liblib__posix__options.a: C_STATIC_LIBRARY_LINKER__lib__posix__options_ zephyr/lib/posix/options/CMakeFiles/lib__posix__options.dir/home/miguel/ncs/v3.0.2/zephyr/misc/empty_file.c.obj || zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/syscall_list_h_target + OBJECT_DIR = zephyr/lib/posix/options/CMakeFiles/lib__posix__options.dir + POST_BUILD = : + PRE_LINK = : + TARGET_FILE = zephyr/lib/posix/options/liblib__posix__options.a + TARGET_PDB = lib__posix__options.a.dbg + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/lib/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build zephyr/lib/hash/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/lib/hash && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/lib/hash/rebuild_cache: phony zephyr/lib/hash/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build zephyr/lib/hash/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/lib/hash && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/lib/hash/edit_cache: phony zephyr/lib/hash/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/lib/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build zephyr/lib/heap/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/lib/heap && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/lib/heap/rebuild_cache: phony zephyr/lib/heap/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build zephyr/lib/heap/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/lib/heap && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/lib/heap/edit_cache: phony zephyr/lib/heap/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/lib/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build zephyr/lib/mem_blocks/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/lib/mem_blocks && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/lib/mem_blocks/rebuild_cache: phony zephyr/lib/mem_blocks/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build zephyr/lib/mem_blocks/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/lib/mem_blocks && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/lib/mem_blocks/edit_cache: phony zephyr/lib/mem_blocks/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/lib/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build zephyr/lib/os/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/lib/os && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/lib/os/rebuild_cache: phony zephyr/lib/os/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build zephyr/lib/os/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/lib/os && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/lib/os/edit_cache: phony zephyr/lib/os/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/lib/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build zephyr/lib/utils/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/lib/utils && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/lib/utils/rebuild_cache: phony zephyr/lib/utils/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build zephyr/lib/utils/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/lib/utils && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/lib/utils/edit_cache: phony zephyr/lib/utils/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build zephyr/soc/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/soc && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/soc/rebuild_cache: phony zephyr/soc/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build zephyr/soc/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/soc && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/soc/edit_cache: phony zephyr/soc/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/soc/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build zephyr/soc/common/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/soc/common && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/soc/common/rebuild_cache: phony zephyr/soc/common/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build zephyr/soc/common/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/soc/common && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/soc/common/edit_cache: phony zephyr/soc/common/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/soc/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build zephyr/soc/soc/nrf52833/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/soc/soc/nrf52833 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/soc/soc/nrf52833/rebuild_cache: phony zephyr/soc/soc/nrf52833/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build zephyr/soc/soc/nrf52833/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/soc/soc/nrf52833 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/soc/soc/nrf52833/edit_cache: phony zephyr/soc/soc/nrf52833/CMakeFiles/edit_cache.util + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target soc__nordic + + +############################################# +# Order-only phony target for soc__nordic + +build cmake_object_order_depends_target_soc__nordic: phony || zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/syscall_list_h_target zephyr/zephyr_generated_headers + +build zephyr/soc/soc/nrf52833/CMakeFiles/soc__nordic.dir/validate_base_addresses.c.obj: C_COMPILER__soc__nordic_ /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/validate_base_addresses.c || cmake_object_order_depends_target_soc__nordic + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = zephyr/soc/soc/nrf52833/CMakeFiles/soc__nordic.dir/validate_base_addresses.c.obj.d + FLAGS = -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/soc/soc/nrf52833/CMakeFiles/soc__nordic.dir + OBJECT_FILE_DIR = zephyr/soc/soc/nrf52833/CMakeFiles/soc__nordic.dir + +build zephyr/soc/soc/nrf52833/CMakeFiles/soc__nordic.dir/validate_binding_headers.c.obj: C_COMPILER__soc__nordic_ /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/validate_binding_headers.c || cmake_object_order_depends_target_soc__nordic + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = zephyr/soc/soc/nrf52833/CMakeFiles/soc__nordic.dir/validate_binding_headers.c.obj.d + FLAGS = -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -include /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/adc/adc.h -include /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/dt-util.h -include /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/gpio/gpio.h -include /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/i2c/i2c.h -include /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/input/input-event-codes.h -include /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/pinctrl/nrf-pinctrl.h -include /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/pwm/pwm.h -include /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/adc/nrf-saadc-v3.h -include /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/adc/nrf-saadc-v2.h -include /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/adc/nrf-saadc.h -include /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/regulator/nrf5x.h + INCLUDES = -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/soc/soc/nrf52833/CMakeFiles/soc__nordic.dir + OBJECT_FILE_DIR = zephyr/soc/soc/nrf52833/CMakeFiles/soc__nordic.dir + +build zephyr/soc/soc/nrf52833/CMakeFiles/soc__nordic.dir/validate_enabled_instances.c.obj: C_COMPILER__soc__nordic_ /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/validate_enabled_instances.c || cmake_object_order_depends_target_soc__nordic + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = zephyr/soc/soc/nrf52833/CMakeFiles/soc__nordic.dir/validate_enabled_instances.c.obj.d + FLAGS = -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/soc/soc/nrf52833/CMakeFiles/soc__nordic.dir + OBJECT_FILE_DIR = zephyr/soc/soc/nrf52833/CMakeFiles/soc__nordic.dir + +build zephyr/soc/soc/nrf52833/CMakeFiles/soc__nordic.dir/nrf52/soc.c.obj: C_COMPILER__soc__nordic_ /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/soc.c || cmake_object_order_depends_target_soc__nordic + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = zephyr/soc/soc/nrf52833/CMakeFiles/soc__nordic.dir/nrf52/soc.c.obj.d + FLAGS = -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/soc/soc/nrf52833/CMakeFiles/soc__nordic.dir + OBJECT_FILE_DIR = zephyr/soc/soc/nrf52833/CMakeFiles/soc__nordic.dir/nrf52 + +build zephyr/soc/soc/nrf52833/CMakeFiles/soc__nordic.dir/common/reboot.c.obj: C_COMPILER__soc__nordic_ /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/reboot.c || cmake_object_order_depends_target_soc__nordic + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = zephyr/soc/soc/nrf52833/CMakeFiles/soc__nordic.dir/common/reboot.c.obj.d + FLAGS = -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/soc/soc/nrf52833/CMakeFiles/soc__nordic.dir + OBJECT_FILE_DIR = zephyr/soc/soc/nrf52833/CMakeFiles/soc__nordic.dir/common + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target soc__nordic + + +############################################# +# Link the static library zephyr/soc/soc/nrf52833/libsoc__nordic.a + +build zephyr/soc/soc/nrf52833/libsoc__nordic.a: C_STATIC_LIBRARY_LINKER__soc__nordic_ zephyr/soc/soc/nrf52833/CMakeFiles/soc__nordic.dir/validate_base_addresses.c.obj zephyr/soc/soc/nrf52833/CMakeFiles/soc__nordic.dir/validate_binding_headers.c.obj zephyr/soc/soc/nrf52833/CMakeFiles/soc__nordic.dir/validate_enabled_instances.c.obj zephyr/soc/soc/nrf52833/CMakeFiles/soc__nordic.dir/nrf52/soc.c.obj zephyr/soc/soc/nrf52833/CMakeFiles/soc__nordic.dir/common/reboot.c.obj || zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/syscall_list_h_target zephyr/zephyr_generated_headers + OBJECT_DIR = zephyr/soc/soc/nrf52833/CMakeFiles/soc__nordic.dir + POST_BUILD = : + PRE_LINK = : + TARGET_FILE = zephyr/soc/soc/nrf52833/libsoc__nordic.a + TARGET_PDB = soc__nordic.a.dbg + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build zephyr/soc/soc/nrf52833/nrf52/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/soc/soc/nrf52833/nrf52 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/soc/soc/nrf52833/nrf52/rebuild_cache: phony zephyr/soc/soc/nrf52833/nrf52/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build zephyr/soc/soc/nrf52833/nrf52/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/soc/soc/nrf52833/nrf52 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/soc/soc/nrf52833/nrf52/edit_cache: phony zephyr/soc/soc/nrf52833/nrf52/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build zephyr/soc/soc/nrf52833/common/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/soc/soc/nrf52833/common && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/soc/soc/nrf52833/common/rebuild_cache: phony zephyr/soc/soc/nrf52833/common/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build zephyr/soc/soc/nrf52833/common/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/soc/soc/nrf52833/common && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/soc/soc/nrf52833/common/edit_cache: phony zephyr/soc/soc/nrf52833/common/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build zephyr/boards/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/boards && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/boards/rebuild_cache: phony zephyr/boards/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build zephyr/boards/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/boards && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/boards/edit_cache: phony zephyr/boards/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/boards/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build zephyr/boards/shields/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/boards/shields && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/boards/shields/rebuild_cache: phony zephyr/boards/shields/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build zephyr/boards/shields/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/boards/shields && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/boards/shields/edit_cache: phony zephyr/boards/shields/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build zephyr/subsys/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/subsys/rebuild_cache: phony zephyr/subsys/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build zephyr/subsys/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/subsys/edit_cache: phony zephyr/subsys/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/subsys/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build zephyr/subsys/canbus/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/canbus && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/subsys/canbus/rebuild_cache: phony zephyr/subsys/canbus/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build zephyr/subsys/canbus/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/canbus && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/subsys/canbus/edit_cache: phony zephyr/subsys/canbus/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/subsys/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build zephyr/subsys/debug/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/debug && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/subsys/debug/rebuild_cache: phony zephyr/subsys/debug/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build zephyr/subsys/debug/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/debug && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/subsys/debug/edit_cache: phony zephyr/subsys/debug/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/subsys/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build zephyr/subsys/fb/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/fb && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/subsys/fb/rebuild_cache: phony zephyr/subsys/fb/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build zephyr/subsys/fb/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/fb && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/subsys/fb/edit_cache: phony zephyr/subsys/fb/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/subsys/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build zephyr/subsys/fs/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/fs && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/subsys/fs/rebuild_cache: phony zephyr/subsys/fs/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build zephyr/subsys/fs/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/fs && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/subsys/fs/edit_cache: phony zephyr/subsys/fs/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/subsys/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build zephyr/subsys/ipc/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/ipc && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/subsys/ipc/rebuild_cache: phony zephyr/subsys/ipc/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build zephyr/subsys/ipc/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/ipc && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/subsys/ipc/edit_cache: phony zephyr/subsys/ipc/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/subsys/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build zephyr/subsys/logging/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/logging && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/subsys/logging/rebuild_cache: phony zephyr/subsys/logging/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build zephyr/subsys/logging/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/logging && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/subsys/logging/edit_cache: phony zephyr/subsys/logging/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/subsys/logging/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build zephyr/subsys/logging/backends/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/logging/backends && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/subsys/logging/backends/rebuild_cache: phony zephyr/subsys/logging/backends/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build zephyr/subsys/logging/backends/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/logging/backends && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/subsys/logging/backends/edit_cache: phony zephyr/subsys/logging/backends/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/subsys/logging/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build zephyr/subsys/logging/frontends/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/logging/frontends && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/subsys/logging/frontends/rebuild_cache: phony zephyr/subsys/logging/frontends/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build zephyr/subsys/logging/frontends/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/logging/frontends && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/subsys/logging/frontends/edit_cache: phony zephyr/subsys/logging/frontends/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/subsys/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build zephyr/subsys/mem_mgmt/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/mem_mgmt && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/subsys/mem_mgmt/rebuild_cache: phony zephyr/subsys/mem_mgmt/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build zephyr/subsys/mem_mgmt/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/mem_mgmt && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/subsys/mem_mgmt/edit_cache: phony zephyr/subsys/mem_mgmt/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/subsys/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build zephyr/subsys/mgmt/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/mgmt && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/subsys/mgmt/rebuild_cache: phony zephyr/subsys/mgmt/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build zephyr/subsys/mgmt/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/mgmt && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/subsys/mgmt/edit_cache: phony zephyr/subsys/mgmt/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/subsys/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build zephyr/subsys/modbus/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/modbus && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/subsys/modbus/rebuild_cache: phony zephyr/subsys/modbus/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build zephyr/subsys/modbus/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/modbus && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/subsys/modbus/edit_cache: phony zephyr/subsys/modbus/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/subsys/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build zephyr/subsys/pm/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/pm && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/subsys/pm/rebuild_cache: phony zephyr/subsys/pm/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build zephyr/subsys/pm/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/pm && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/subsys/pm/edit_cache: phony zephyr/subsys/pm/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/subsys/pm/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build zephyr/subsys/pm/policy/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/pm/policy && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/subsys/pm/policy/rebuild_cache: phony zephyr/subsys/pm/policy/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build zephyr/subsys/pm/policy/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/pm/policy && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/subsys/pm/policy/edit_cache: phony zephyr/subsys/pm/policy/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/subsys/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build zephyr/subsys/portability/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/portability && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/subsys/portability/rebuild_cache: phony zephyr/subsys/portability/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build zephyr/subsys/portability/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/portability && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/subsys/portability/edit_cache: phony zephyr/subsys/portability/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/subsys/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build zephyr/subsys/random/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/random && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/subsys/random/rebuild_cache: phony zephyr/subsys/random/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build zephyr/subsys/random/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/random && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/subsys/random/edit_cache: phony zephyr/subsys/random/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/subsys/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build zephyr/subsys/rtio/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/rtio && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/subsys/rtio/rebuild_cache: phony zephyr/subsys/rtio/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build zephyr/subsys/rtio/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/rtio && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/subsys/rtio/edit_cache: phony zephyr/subsys/rtio/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/subsys/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build zephyr/subsys/sd/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/sd && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/subsys/sd/rebuild_cache: phony zephyr/subsys/sd/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build zephyr/subsys/sd/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/sd && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/subsys/sd/edit_cache: phony zephyr/subsys/sd/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/subsys/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build zephyr/subsys/stats/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/stats && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/subsys/stats/rebuild_cache: phony zephyr/subsys/stats/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build zephyr/subsys/stats/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/stats && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/subsys/stats/edit_cache: phony zephyr/subsys/stats/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/subsys/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build zephyr/subsys/storage/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/storage && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/subsys/storage/rebuild_cache: phony zephyr/subsys/storage/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build zephyr/subsys/storage/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/storage && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/subsys/storage/edit_cache: phony zephyr/subsys/storage/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/subsys/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build zephyr/subsys/task_wdt/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/task_wdt && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/subsys/task_wdt/rebuild_cache: phony zephyr/subsys/task_wdt/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build zephyr/subsys/task_wdt/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/task_wdt && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/subsys/task_wdt/edit_cache: phony zephyr/subsys/task_wdt/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/subsys/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build zephyr/subsys/testsuite/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/testsuite && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/subsys/testsuite/rebuild_cache: phony zephyr/subsys/testsuite/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build zephyr/subsys/testsuite/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/testsuite && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/subsys/testsuite/edit_cache: phony zephyr/subsys/testsuite/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/subsys/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build zephyr/subsys/tracing/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/tracing && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/subsys/tracing/rebuild_cache: phony zephyr/subsys/tracing/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build zephyr/subsys/tracing/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/tracing && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/subsys/tracing/edit_cache: phony zephyr/subsys/tracing/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/subsys/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build zephyr/subsys/usb/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/usb && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/subsys/usb/rebuild_cache: phony zephyr/subsys/usb/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build zephyr/subsys/usb/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/usb && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/subsys/usb/edit_cache: phony zephyr/subsys/usb/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/subsys/usb/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build zephyr/subsys/usb/device/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/usb/device && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/subsys/usb/device/rebuild_cache: phony zephyr/subsys/usb/device/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build zephyr/subsys/usb/device/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/usb/device && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/subsys/usb/device/edit_cache: phony zephyr/subsys/usb/device/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build zephyr/subsys/usb/device/class/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/usb/device/class && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/subsys/usb/device/class/rebuild_cache: phony zephyr/subsys/usb/device/class/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build zephyr/subsys/usb/device/class/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/usb/device/class && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/subsys/usb/device/class/edit_cache: phony zephyr/subsys/usb/device/class/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build zephyr/drivers/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/drivers/rebuild_cache: phony zephyr/drivers/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build zephyr/drivers/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/drivers/edit_cache: phony zephyr/drivers/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/drivers/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build zephyr/drivers/disk/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/disk && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/drivers/disk/rebuild_cache: phony zephyr/drivers/disk/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build zephyr/drivers/disk/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/disk && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/drivers/disk/edit_cache: phony zephyr/drivers/disk/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/drivers/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build zephyr/drivers/firmware/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/firmware && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/drivers/firmware/rebuild_cache: phony zephyr/drivers/firmware/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build zephyr/drivers/firmware/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/firmware && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/drivers/firmware/edit_cache: phony zephyr/drivers/firmware/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/drivers/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/drivers/interrupt_controller/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/interrupt_controller && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/drivers/interrupt_controller/edit_cache: phony zephyr/drivers/interrupt_controller/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/drivers/interrupt_controller/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/interrupt_controller && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/drivers/interrupt_controller/rebuild_cache: phony zephyr/drivers/interrupt_controller/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target drivers__interrupt_controller + + +############################################# +# Order-only phony target for drivers__interrupt_controller + +build cmake_object_order_depends_target_drivers__interrupt_controller: phony || zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/syscall_list_h_target + +build zephyr/drivers/interrupt_controller/CMakeFiles/drivers__interrupt_controller.dir/home/miguel/ncs/v3.0.2/zephyr/misc/empty_file.c.obj: C_COMPILER__drivers__interrupt_controller_ /home/miguel/ncs/v3.0.2/zephyr/misc/empty_file.c || cmake_object_order_depends_target_drivers__interrupt_controller + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr/drivers/interrupt_controller/CMakeFiles/drivers__interrupt_controller.dir/home/miguel/ncs/v3.0.2/zephyr/misc/empty_file.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/ncs/v3.0.2/zephyr/arch/common/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/drivers/interrupt_controller/CMakeFiles/drivers__interrupt_controller.dir + OBJECT_FILE_DIR = zephyr/drivers/interrupt_controller/CMakeFiles/drivers__interrupt_controller.dir/home/miguel/ncs/v3.0.2/zephyr/misc + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target drivers__interrupt_controller + + +############################################# +# Link the static library zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a + +build zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a: C_STATIC_LIBRARY_LINKER__drivers__interrupt_controller_ zephyr/drivers/interrupt_controller/CMakeFiles/drivers__interrupt_controller.dir/home/miguel/ncs/v3.0.2/zephyr/misc/empty_file.c.obj || zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/syscall_list_h_target + OBJECT_DIR = zephyr/drivers/interrupt_controller/CMakeFiles/drivers__interrupt_controller.dir + POST_BUILD = : + PRE_LINK = : + TARGET_FILE = zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a + TARGET_PDB = drivers__interrupt_controller.a.dbg + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/drivers/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build zephyr/drivers/misc/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/misc && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/drivers/misc/rebuild_cache: phony zephyr/drivers/misc/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build zephyr/drivers/misc/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/misc && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/drivers/misc/edit_cache: phony zephyr/drivers/misc/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/drivers/misc/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build zephyr/drivers/misc/coresight/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/misc/coresight && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/drivers/misc/coresight/rebuild_cache: phony zephyr/drivers/misc/coresight/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build zephyr/drivers/misc/coresight/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/misc/coresight && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/drivers/misc/coresight/edit_cache: phony zephyr/drivers/misc/coresight/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/drivers/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build zephyr/drivers/pcie/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/pcie && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/drivers/pcie/rebuild_cache: phony zephyr/drivers/pcie/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build zephyr/drivers/pcie/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/pcie && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/drivers/pcie/edit_cache: phony zephyr/drivers/pcie/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/drivers/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build zephyr/drivers/usb/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/usb && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/drivers/usb/rebuild_cache: phony zephyr/drivers/usb/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build zephyr/drivers/usb/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/usb && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/drivers/usb/edit_cache: phony zephyr/drivers/usb/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/drivers/usb/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build zephyr/drivers/usb/device/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/usb/device && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/drivers/usb/device/rebuild_cache: phony zephyr/drivers/usb/device/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build zephyr/drivers/usb/device/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/usb/device && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/drivers/usb/device/edit_cache: phony zephyr/drivers/usb/device/CMakeFiles/edit_cache.util + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target drivers__usb__device + + +############################################# +# Order-only phony target for drivers__usb__device + +build cmake_object_order_depends_target_drivers__usb__device: phony || zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/syscall_list_h_target zephyr/zephyr_generated_headers + +build zephyr/drivers/usb/device/CMakeFiles/drivers__usb__device.dir/usb_dc_nrfx.c.obj: C_COMPILER__drivers__usb__device_ /home/miguel/ncs/v3.0.2/zephyr/drivers/usb/device/usb_dc_nrfx.c || cmake_object_order_depends_target_drivers__usb__device + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr/drivers/usb/device/CMakeFiles/drivers__usb__device.dir/usb_dc_nrfx.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/drivers/usb/device/CMakeFiles/drivers__usb__device.dir + OBJECT_FILE_DIR = zephyr/drivers/usb/device/CMakeFiles/drivers__usb__device.dir + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target drivers__usb__device + + +############################################# +# Link the static library zephyr/drivers/usb/device/libdrivers__usb__device.a + +build zephyr/drivers/usb/device/libdrivers__usb__device.a: C_STATIC_LIBRARY_LINKER__drivers__usb__device_ zephyr/drivers/usb/device/CMakeFiles/drivers__usb__device.dir/usb_dc_nrfx.c.obj || zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/syscall_list_h_target zephyr/zephyr_generated_headers + OBJECT_DIR = zephyr/drivers/usb/device/CMakeFiles/drivers__usb__device.dir + POST_BUILD = : + PRE_LINK = : + TARGET_FILE = zephyr/drivers/usb/device/libdrivers__usb__device.a + TARGET_PDB = drivers__usb__device.a.dbg + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/drivers/usb/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build zephyr/drivers/usb/common/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/usb/common && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/drivers/usb/common/rebuild_cache: phony zephyr/drivers/usb/common/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build zephyr/drivers/usb/common/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/usb/common && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/drivers/usb/common/edit_cache: phony zephyr/drivers/usb/common/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build zephyr/drivers/usb/common/nrf_usbd_common/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/usb/common/nrf_usbd_common && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/drivers/usb/common/nrf_usbd_common/rebuild_cache: phony zephyr/drivers/usb/common/nrf_usbd_common/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build zephyr/drivers/usb/common/nrf_usbd_common/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/usb/common/nrf_usbd_common && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/drivers/usb/common/nrf_usbd_common/edit_cache: phony zephyr/drivers/usb/common/nrf_usbd_common/CMakeFiles/edit_cache.util + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target drivers__usb__common__nrf_usbd_common + + +############################################# +# Order-only phony target for drivers__usb__common__nrf_usbd_common + +build cmake_object_order_depends_target_drivers__usb__common__nrf_usbd_common: phony || zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/syscall_list_h_target zephyr/zephyr_generated_headers + +build zephyr/drivers/usb/common/nrf_usbd_common/CMakeFiles/drivers__usb__common__nrf_usbd_common.dir/nrf_usbd_common.c.obj: C_COMPILER__drivers__usb__common__nrf_usbd_common_ /home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/nrf_usbd_common.c || cmake_object_order_depends_target_drivers__usb__common__nrf_usbd_common + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr/drivers/usb/common/nrf_usbd_common/CMakeFiles/drivers__usb__common__nrf_usbd_common.dir/nrf_usbd_common.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/drivers/usb/common/nrf_usbd_common/CMakeFiles/drivers__usb__common__nrf_usbd_common.dir + OBJECT_FILE_DIR = zephyr/drivers/usb/common/nrf_usbd_common/CMakeFiles/drivers__usb__common__nrf_usbd_common.dir + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target drivers__usb__common__nrf_usbd_common + + +############################################# +# Link the static library zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a + +build zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a: C_STATIC_LIBRARY_LINKER__drivers__usb__common__nrf_usbd_common_ zephyr/drivers/usb/common/nrf_usbd_common/CMakeFiles/drivers__usb__common__nrf_usbd_common.dir/nrf_usbd_common.c.obj || zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/syscall_list_h_target zephyr/zephyr_generated_headers + OBJECT_DIR = zephyr/drivers/usb/common/nrf_usbd_common/CMakeFiles/drivers__usb__common__nrf_usbd_common.dir + POST_BUILD = : + PRE_LINK = : + TARGET_FILE = zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a + TARGET_PDB = drivers__usb__common__nrf_usbd_common.a.dbg + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/drivers/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build zephyr/drivers/usb_c/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/usb_c && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/drivers/usb_c/rebuild_cache: phony zephyr/drivers/usb_c/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build zephyr/drivers/usb_c/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/usb_c && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/drivers/usb_c/edit_cache: phony zephyr/drivers/usb_c/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/drivers/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build zephyr/drivers/adc/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/adc && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/drivers/adc/rebuild_cache: phony zephyr/drivers/adc/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build zephyr/drivers/adc/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/adc && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/drivers/adc/edit_cache: phony zephyr/drivers/adc/CMakeFiles/edit_cache.util + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target drivers__adc + + +############################################# +# Order-only phony target for drivers__adc + +build cmake_object_order_depends_target_drivers__adc: phony || zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/syscall_list_h_target zephyr/zephyr_generated_headers + +build zephyr/drivers/adc/CMakeFiles/drivers__adc.dir/adc_common.c.obj: C_COMPILER__drivers__adc_ /home/miguel/ncs/v3.0.2/zephyr/drivers/adc/adc_common.c || cmake_object_order_depends_target_drivers__adc + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr/drivers/adc/CMakeFiles/drivers__adc.dir/adc_common.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/drivers/adc/CMakeFiles/drivers__adc.dir + OBJECT_FILE_DIR = zephyr/drivers/adc/CMakeFiles/drivers__adc.dir + +build zephyr/drivers/adc/CMakeFiles/drivers__adc.dir/adc_nrfx_saadc.c.obj: C_COMPILER__drivers__adc_ /home/miguel/ncs/v3.0.2/zephyr/drivers/adc/adc_nrfx_saadc.c || cmake_object_order_depends_target_drivers__adc + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr/drivers/adc/CMakeFiles/drivers__adc.dir/adc_nrfx_saadc.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/drivers/adc/CMakeFiles/drivers__adc.dir + OBJECT_FILE_DIR = zephyr/drivers/adc/CMakeFiles/drivers__adc.dir + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target drivers__adc + + +############################################# +# Link the static library zephyr/drivers/adc/libdrivers__adc.a + +build zephyr/drivers/adc/libdrivers__adc.a: C_STATIC_LIBRARY_LINKER__drivers__adc_ zephyr/drivers/adc/CMakeFiles/drivers__adc.dir/adc_common.c.obj zephyr/drivers/adc/CMakeFiles/drivers__adc.dir/adc_nrfx_saadc.c.obj || zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/syscall_list_h_target zephyr/zephyr_generated_headers + OBJECT_DIR = zephyr/drivers/adc/CMakeFiles/drivers__adc.dir + POST_BUILD = : + PRE_LINK = : + TARGET_FILE = zephyr/drivers/adc/libdrivers__adc.a + TARGET_PDB = drivers__adc.a.dbg + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/drivers/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build zephyr/drivers/clock_control/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/clock_control && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/drivers/clock_control/rebuild_cache: phony zephyr/drivers/clock_control/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build zephyr/drivers/clock_control/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/clock_control && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/drivers/clock_control/edit_cache: phony zephyr/drivers/clock_control/CMakeFiles/edit_cache.util + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target drivers__clock_control + + +############################################# +# Order-only phony target for drivers__clock_control + +build cmake_object_order_depends_target_drivers__clock_control: phony || zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/syscall_list_h_target zephyr/zephyr_generated_headers + +build zephyr/drivers/clock_control/CMakeFiles/drivers__clock_control.dir/clock_control_nrf.c.obj: C_COMPILER__drivers__clock_control_ /home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/clock_control_nrf.c || cmake_object_order_depends_target_drivers__clock_control + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr/drivers/clock_control/CMakeFiles/drivers__clock_control.dir/clock_control_nrf.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/drivers/clock_control/CMakeFiles/drivers__clock_control.dir + OBJECT_FILE_DIR = zephyr/drivers/clock_control/CMakeFiles/drivers__clock_control.dir + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target drivers__clock_control + + +############################################# +# Link the static library zephyr/drivers/clock_control/libdrivers__clock_control.a + +build zephyr/drivers/clock_control/libdrivers__clock_control.a: C_STATIC_LIBRARY_LINKER__drivers__clock_control_ zephyr/drivers/clock_control/CMakeFiles/drivers__clock_control.dir/clock_control_nrf.c.obj || zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/syscall_list_h_target zephyr/zephyr_generated_headers + OBJECT_DIR = zephyr/drivers/clock_control/CMakeFiles/drivers__clock_control.dir + POST_BUILD = : + PRE_LINK = : + TARGET_FILE = zephyr/drivers/clock_control/libdrivers__clock_control.a + TARGET_PDB = drivers__clock_control.a.dbg + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/drivers/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build zephyr/drivers/console/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/console && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/drivers/console/rebuild_cache: phony zephyr/drivers/console/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build zephyr/drivers/console/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/console && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/drivers/console/edit_cache: phony zephyr/drivers/console/CMakeFiles/edit_cache.util + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target drivers__console + + +############################################# +# Order-only phony target for drivers__console + +build cmake_object_order_depends_target_drivers__console: phony || zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/syscall_list_h_target zephyr/zephyr_generated_headers + +build zephyr/drivers/console/CMakeFiles/drivers__console.dir/uart_console.c.obj: C_COMPILER__drivers__console_ /home/miguel/ncs/v3.0.2/zephyr/drivers/console/uart_console.c || cmake_object_order_depends_target_drivers__console + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr/drivers/console/CMakeFiles/drivers__console.dir/uart_console.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/drivers/console/CMakeFiles/drivers__console.dir + OBJECT_FILE_DIR = zephyr/drivers/console/CMakeFiles/drivers__console.dir + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target drivers__console + + +############################################# +# Link the static library zephyr/drivers/console/libdrivers__console.a + +build zephyr/drivers/console/libdrivers__console.a: C_STATIC_LIBRARY_LINKER__drivers__console_ zephyr/drivers/console/CMakeFiles/drivers__console.dir/uart_console.c.obj || zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/syscall_list_h_target zephyr/zephyr_generated_headers + OBJECT_DIR = zephyr/drivers/console/CMakeFiles/drivers__console.dir + POST_BUILD = : + PRE_LINK = : + TARGET_FILE = zephyr/drivers/console/libdrivers__console.a + TARGET_PDB = drivers__console.a.dbg + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/drivers/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build zephyr/drivers/gpio/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/gpio && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/drivers/gpio/rebuild_cache: phony zephyr/drivers/gpio/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build zephyr/drivers/gpio/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/gpio && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/drivers/gpio/edit_cache: phony zephyr/drivers/gpio/CMakeFiles/edit_cache.util + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target drivers__gpio + + +############################################# +# Order-only phony target for drivers__gpio + +build cmake_object_order_depends_target_drivers__gpio: phony || zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/syscall_list_h_target zephyr/zephyr_generated_headers + +build zephyr/drivers/gpio/CMakeFiles/drivers__gpio.dir/gpio_nrfx.c.obj: C_COMPILER__drivers__gpio_ /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/gpio_nrfx.c || cmake_object_order_depends_target_drivers__gpio + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr/drivers/gpio/CMakeFiles/drivers__gpio.dir/gpio_nrfx.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/drivers/gpio/CMakeFiles/drivers__gpio.dir + OBJECT_FILE_DIR = zephyr/drivers/gpio/CMakeFiles/drivers__gpio.dir + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target drivers__gpio + + +############################################# +# Link the static library zephyr/drivers/gpio/libdrivers__gpio.a + +build zephyr/drivers/gpio/libdrivers__gpio.a: C_STATIC_LIBRARY_LINKER__drivers__gpio_ zephyr/drivers/gpio/CMakeFiles/drivers__gpio.dir/gpio_nrfx.c.obj || zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/syscall_list_h_target zephyr/zephyr_generated_headers + OBJECT_DIR = zephyr/drivers/gpio/CMakeFiles/drivers__gpio.dir + POST_BUILD = : + PRE_LINK = : + TARGET_FILE = zephyr/drivers/gpio/libdrivers__gpio.a + TARGET_PDB = drivers__gpio.a.dbg + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/drivers/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build zephyr/drivers/hwinfo/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/hwinfo && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/drivers/hwinfo/rebuild_cache: phony zephyr/drivers/hwinfo/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build zephyr/drivers/hwinfo/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/hwinfo && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/drivers/hwinfo/edit_cache: phony zephyr/drivers/hwinfo/CMakeFiles/edit_cache.util + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target drivers__hwinfo + + +############################################# +# Order-only phony target for drivers__hwinfo + +build cmake_object_order_depends_target_drivers__hwinfo: phony || zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/syscall_list_h_target zephyr/zephyr_generated_headers + +build zephyr/drivers/hwinfo/CMakeFiles/drivers__hwinfo.dir/hwinfo_weak_impl.c.obj: C_COMPILER__drivers__hwinfo_ /home/miguel/ncs/v3.0.2/zephyr/drivers/hwinfo/hwinfo_weak_impl.c || cmake_object_order_depends_target_drivers__hwinfo + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr/drivers/hwinfo/CMakeFiles/drivers__hwinfo.dir/hwinfo_weak_impl.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/drivers/hwinfo/CMakeFiles/drivers__hwinfo.dir + OBJECT_FILE_DIR = zephyr/drivers/hwinfo/CMakeFiles/drivers__hwinfo.dir + +build zephyr/drivers/hwinfo/CMakeFiles/drivers__hwinfo.dir/hwinfo_nrf.c.obj: C_COMPILER__drivers__hwinfo_ /home/miguel/ncs/v3.0.2/zephyr/drivers/hwinfo/hwinfo_nrf.c || cmake_object_order_depends_target_drivers__hwinfo + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr/drivers/hwinfo/CMakeFiles/drivers__hwinfo.dir/hwinfo_nrf.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/drivers/hwinfo/CMakeFiles/drivers__hwinfo.dir + OBJECT_FILE_DIR = zephyr/drivers/hwinfo/CMakeFiles/drivers__hwinfo.dir + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target drivers__hwinfo + + +############################################# +# Link the static library zephyr/drivers/hwinfo/libdrivers__hwinfo.a + +build zephyr/drivers/hwinfo/libdrivers__hwinfo.a: C_STATIC_LIBRARY_LINKER__drivers__hwinfo_ zephyr/drivers/hwinfo/CMakeFiles/drivers__hwinfo.dir/hwinfo_weak_impl.c.obj zephyr/drivers/hwinfo/CMakeFiles/drivers__hwinfo.dir/hwinfo_nrf.c.obj || zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/syscall_list_h_target zephyr/zephyr_generated_headers + OBJECT_DIR = zephyr/drivers/hwinfo/CMakeFiles/drivers__hwinfo.dir + POST_BUILD = : + PRE_LINK = : + TARGET_FILE = zephyr/drivers/hwinfo/libdrivers__hwinfo.a + TARGET_PDB = drivers__hwinfo.a.dbg + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/drivers/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build zephyr/drivers/pinctrl/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/pinctrl && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/drivers/pinctrl/rebuild_cache: phony zephyr/drivers/pinctrl/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build zephyr/drivers/pinctrl/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/pinctrl && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/drivers/pinctrl/edit_cache: phony zephyr/drivers/pinctrl/CMakeFiles/edit_cache.util + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target drivers__pinctrl + + +############################################# +# Order-only phony target for drivers__pinctrl + +build cmake_object_order_depends_target_drivers__pinctrl: phony || zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/syscall_list_h_target zephyr/zephyr_generated_headers + +build zephyr/drivers/pinctrl/CMakeFiles/drivers__pinctrl.dir/common.c.obj: C_COMPILER__drivers__pinctrl_ /home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/common.c || cmake_object_order_depends_target_drivers__pinctrl + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr/drivers/pinctrl/CMakeFiles/drivers__pinctrl.dir/common.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/drivers/pinctrl/CMakeFiles/drivers__pinctrl.dir + OBJECT_FILE_DIR = zephyr/drivers/pinctrl/CMakeFiles/drivers__pinctrl.dir + +build zephyr/drivers/pinctrl/CMakeFiles/drivers__pinctrl.dir/pinctrl_nrf.c.obj: C_COMPILER__drivers__pinctrl_ /home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/pinctrl_nrf.c || cmake_object_order_depends_target_drivers__pinctrl + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr/drivers/pinctrl/CMakeFiles/drivers__pinctrl.dir/pinctrl_nrf.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/drivers/pinctrl/CMakeFiles/drivers__pinctrl.dir + OBJECT_FILE_DIR = zephyr/drivers/pinctrl/CMakeFiles/drivers__pinctrl.dir + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target drivers__pinctrl + + +############################################# +# Link the static library zephyr/drivers/pinctrl/libdrivers__pinctrl.a + +build zephyr/drivers/pinctrl/libdrivers__pinctrl.a: C_STATIC_LIBRARY_LINKER__drivers__pinctrl_ zephyr/drivers/pinctrl/CMakeFiles/drivers__pinctrl.dir/common.c.obj zephyr/drivers/pinctrl/CMakeFiles/drivers__pinctrl.dir/pinctrl_nrf.c.obj || zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/syscall_list_h_target zephyr/zephyr_generated_headers + OBJECT_DIR = zephyr/drivers/pinctrl/CMakeFiles/drivers__pinctrl.dir + POST_BUILD = : + PRE_LINK = : + TARGET_FILE = zephyr/drivers/pinctrl/libdrivers__pinctrl.a + TARGET_PDB = drivers__pinctrl.a.dbg + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build zephyr/drivers/pinctrl/renesas/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/pinctrl/renesas && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/drivers/pinctrl/renesas/rebuild_cache: phony zephyr/drivers/pinctrl/renesas/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build zephyr/drivers/pinctrl/renesas/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/pinctrl/renesas && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/drivers/pinctrl/renesas/edit_cache: phony zephyr/drivers/pinctrl/renesas/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/drivers/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/drivers/sensor/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/drivers/sensor/edit_cache: phony zephyr/drivers/sensor/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/drivers/sensor/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/drivers/sensor/rebuild_cache: phony zephyr/drivers/sensor/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target drivers__sensor + + +############################################# +# Order-only phony target for drivers__sensor + +build cmake_object_order_depends_target_drivers__sensor: phony || zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/syscall_list_h_target + +build zephyr/drivers/sensor/CMakeFiles/drivers__sensor.dir/home/miguel/ncs/v3.0.2/zephyr/misc/empty_file.c.obj: C_COMPILER__drivers__sensor_ /home/miguel/ncs/v3.0.2/zephyr/misc/empty_file.c || cmake_object_order_depends_target_drivers__sensor + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr/drivers/sensor/CMakeFiles/drivers__sensor.dir/home/miguel/ncs/v3.0.2/zephyr/misc/empty_file.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/drivers/sensor/CMakeFiles/drivers__sensor.dir + OBJECT_FILE_DIR = zephyr/drivers/sensor/CMakeFiles/drivers__sensor.dir/home/miguel/ncs/v3.0.2/zephyr/misc + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target drivers__sensor + + +############################################# +# Link the static library zephyr/drivers/sensor/libdrivers__sensor.a + +build zephyr/drivers/sensor/libdrivers__sensor.a: C_STATIC_LIBRARY_LINKER__drivers__sensor_ zephyr/drivers/sensor/CMakeFiles/drivers__sensor.dir/home/miguel/ncs/v3.0.2/zephyr/misc/empty_file.c.obj || zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/syscall_list_h_target + OBJECT_DIR = zephyr/drivers/sensor/CMakeFiles/drivers__sensor.dir + POST_BUILD = : + PRE_LINK = : + TARGET_FILE = zephyr/drivers/sensor/libdrivers__sensor.a + TARGET_PDB = drivers__sensor.a.dbg + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build zephyr/drivers/sensor/adi/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/adi && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/drivers/sensor/adi/rebuild_cache: phony zephyr/drivers/sensor/adi/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build zephyr/drivers/sensor/adi/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/adi && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/drivers/sensor/adi/edit_cache: phony zephyr/drivers/sensor/adi/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build zephyr/drivers/sensor/ams/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/ams && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/drivers/sensor/ams/rebuild_cache: phony zephyr/drivers/sensor/ams/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build zephyr/drivers/sensor/ams/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/ams && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/drivers/sensor/ams/edit_cache: phony zephyr/drivers/sensor/ams/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build zephyr/drivers/sensor/aosong/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/aosong && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/drivers/sensor/aosong/rebuild_cache: phony zephyr/drivers/sensor/aosong/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build zephyr/drivers/sensor/aosong/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/aosong && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/drivers/sensor/aosong/edit_cache: phony zephyr/drivers/sensor/aosong/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build zephyr/drivers/sensor/asahi_kasei/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/asahi_kasei && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/drivers/sensor/asahi_kasei/rebuild_cache: phony zephyr/drivers/sensor/asahi_kasei/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build zephyr/drivers/sensor/asahi_kasei/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/asahi_kasei && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/drivers/sensor/asahi_kasei/edit_cache: phony zephyr/drivers/sensor/asahi_kasei/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build zephyr/drivers/sensor/bosch/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/bosch && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/drivers/sensor/bosch/rebuild_cache: phony zephyr/drivers/sensor/bosch/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build zephyr/drivers/sensor/bosch/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/bosch && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/drivers/sensor/bosch/edit_cache: phony zephyr/drivers/sensor/bosch/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build zephyr/drivers/sensor/espressif/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/espressif && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/drivers/sensor/espressif/rebuild_cache: phony zephyr/drivers/sensor/espressif/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build zephyr/drivers/sensor/espressif/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/espressif && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/drivers/sensor/espressif/edit_cache: phony zephyr/drivers/sensor/espressif/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build zephyr/drivers/sensor/honeywell/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/honeywell && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/drivers/sensor/honeywell/rebuild_cache: phony zephyr/drivers/sensor/honeywell/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build zephyr/drivers/sensor/honeywell/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/honeywell && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/drivers/sensor/honeywell/edit_cache: phony zephyr/drivers/sensor/honeywell/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build zephyr/drivers/sensor/infineon/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/infineon && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/drivers/sensor/infineon/rebuild_cache: phony zephyr/drivers/sensor/infineon/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build zephyr/drivers/sensor/infineon/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/infineon && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/drivers/sensor/infineon/edit_cache: phony zephyr/drivers/sensor/infineon/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build zephyr/drivers/sensor/ite/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/ite && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/drivers/sensor/ite/rebuild_cache: phony zephyr/drivers/sensor/ite/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build zephyr/drivers/sensor/ite/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/ite && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/drivers/sensor/ite/edit_cache: phony zephyr/drivers/sensor/ite/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build zephyr/drivers/sensor/jedec/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/jedec && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/drivers/sensor/jedec/rebuild_cache: phony zephyr/drivers/sensor/jedec/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build zephyr/drivers/sensor/jedec/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/jedec && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/drivers/sensor/jedec/edit_cache: phony zephyr/drivers/sensor/jedec/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build zephyr/drivers/sensor/maxim/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/maxim && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/drivers/sensor/maxim/rebuild_cache: phony zephyr/drivers/sensor/maxim/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build zephyr/drivers/sensor/maxim/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/maxim && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/drivers/sensor/maxim/edit_cache: phony zephyr/drivers/sensor/maxim/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build zephyr/drivers/sensor/meas/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/meas && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/drivers/sensor/meas/rebuild_cache: phony zephyr/drivers/sensor/meas/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build zephyr/drivers/sensor/meas/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/meas && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/drivers/sensor/meas/edit_cache: phony zephyr/drivers/sensor/meas/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build zephyr/drivers/sensor/memsic/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/memsic && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/drivers/sensor/memsic/rebuild_cache: phony zephyr/drivers/sensor/memsic/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build zephyr/drivers/sensor/memsic/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/memsic && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/drivers/sensor/memsic/edit_cache: phony zephyr/drivers/sensor/memsic/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build zephyr/drivers/sensor/microchip/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/microchip && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/drivers/sensor/microchip/rebuild_cache: phony zephyr/drivers/sensor/microchip/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build zephyr/drivers/sensor/microchip/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/microchip && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/drivers/sensor/microchip/edit_cache: phony zephyr/drivers/sensor/microchip/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build zephyr/drivers/sensor/nordic/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/nordic && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/drivers/sensor/nordic/rebuild_cache: phony zephyr/drivers/sensor/nordic/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build zephyr/drivers/sensor/nordic/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/nordic && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/drivers/sensor/nordic/edit_cache: phony zephyr/drivers/sensor/nordic/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/nordic/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/drivers/sensor/nordic/temp/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/nordic/temp && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/drivers/sensor/nordic/temp/edit_cache: phony zephyr/drivers/sensor/nordic/temp/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/drivers/sensor/nordic/temp/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/nordic/temp && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/drivers/sensor/nordic/temp/rebuild_cache: phony zephyr/drivers/sensor/nordic/temp/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target drivers__sensor__nordic__temp + + +############################################# +# Order-only phony target for drivers__sensor__nordic__temp + +build cmake_object_order_depends_target_drivers__sensor__nordic__temp: phony || zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/syscall_list_h_target zephyr/zephyr_generated_headers + +build zephyr/drivers/sensor/nordic/temp/CMakeFiles/drivers__sensor__nordic__temp.dir/temp_nrf5.c.obj: C_COMPILER__drivers__sensor__nordic__temp_ /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/nordic/temp/temp_nrf5.c || cmake_object_order_depends_target_drivers__sensor__nordic__temp + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr/drivers/sensor/nordic/temp/CMakeFiles/drivers__sensor__nordic__temp.dir/temp_nrf5.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/drivers/sensor/nordic/temp/CMakeFiles/drivers__sensor__nordic__temp.dir + OBJECT_FILE_DIR = zephyr/drivers/sensor/nordic/temp/CMakeFiles/drivers__sensor__nordic__temp.dir + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target drivers__sensor__nordic__temp + + +############################################# +# Link the static library zephyr/drivers/sensor/nordic/temp/libdrivers__sensor__nordic__temp.a + +build zephyr/drivers/sensor/nordic/temp/libdrivers__sensor__nordic__temp.a: C_STATIC_LIBRARY_LINKER__drivers__sensor__nordic__temp_ zephyr/drivers/sensor/nordic/temp/CMakeFiles/drivers__sensor__nordic__temp.dir/temp_nrf5.c.obj || zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/syscall_list_h_target zephyr/zephyr_generated_headers + OBJECT_DIR = zephyr/drivers/sensor/nordic/temp/CMakeFiles/drivers__sensor__nordic__temp.dir + POST_BUILD = : + PRE_LINK = : + TARGET_FILE = zephyr/drivers/sensor/nordic/temp/libdrivers__sensor__nordic__temp.a + TARGET_PDB = drivers__sensor__nordic__temp.a.dbg + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build zephyr/drivers/sensor/nuvoton/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/nuvoton && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/drivers/sensor/nuvoton/rebuild_cache: phony zephyr/drivers/sensor/nuvoton/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build zephyr/drivers/sensor/nuvoton/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/nuvoton && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/drivers/sensor/nuvoton/edit_cache: phony zephyr/drivers/sensor/nuvoton/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build zephyr/drivers/sensor/nxp/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/nxp && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/drivers/sensor/nxp/rebuild_cache: phony zephyr/drivers/sensor/nxp/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build zephyr/drivers/sensor/nxp/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/nxp && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/drivers/sensor/nxp/edit_cache: phony zephyr/drivers/sensor/nxp/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build zephyr/drivers/sensor/renesas/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/renesas && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/drivers/sensor/renesas/rebuild_cache: phony zephyr/drivers/sensor/renesas/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build zephyr/drivers/sensor/renesas/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/renesas && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/drivers/sensor/renesas/edit_cache: phony zephyr/drivers/sensor/renesas/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build zephyr/drivers/sensor/rohm/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/rohm && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/drivers/sensor/rohm/rebuild_cache: phony zephyr/drivers/sensor/rohm/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build zephyr/drivers/sensor/rohm/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/rohm && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/drivers/sensor/rohm/edit_cache: phony zephyr/drivers/sensor/rohm/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build zephyr/drivers/sensor/seeed/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/seeed && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/drivers/sensor/seeed/rebuild_cache: phony zephyr/drivers/sensor/seeed/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build zephyr/drivers/sensor/seeed/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/seeed && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/drivers/sensor/seeed/edit_cache: phony zephyr/drivers/sensor/seeed/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build zephyr/drivers/sensor/sensirion/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/sensirion && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/drivers/sensor/sensirion/rebuild_cache: phony zephyr/drivers/sensor/sensirion/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build zephyr/drivers/sensor/sensirion/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/sensirion && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/drivers/sensor/sensirion/edit_cache: phony zephyr/drivers/sensor/sensirion/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build zephyr/drivers/sensor/silabs/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/silabs && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/drivers/sensor/silabs/rebuild_cache: phony zephyr/drivers/sensor/silabs/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build zephyr/drivers/sensor/silabs/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/silabs && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/drivers/sensor/silabs/edit_cache: phony zephyr/drivers/sensor/silabs/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build zephyr/drivers/sensor/st/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/st && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/drivers/sensor/st/rebuild_cache: phony zephyr/drivers/sensor/st/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build zephyr/drivers/sensor/st/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/st && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/drivers/sensor/st/edit_cache: phony zephyr/drivers/sensor/st/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build zephyr/drivers/sensor/tdk/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/tdk && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/drivers/sensor/tdk/rebuild_cache: phony zephyr/drivers/sensor/tdk/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build zephyr/drivers/sensor/tdk/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/tdk && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/drivers/sensor/tdk/edit_cache: phony zephyr/drivers/sensor/tdk/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build zephyr/drivers/sensor/ti/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/ti && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/drivers/sensor/ti/rebuild_cache: phony zephyr/drivers/sensor/ti/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build zephyr/drivers/sensor/ti/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/ti && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/drivers/sensor/ti/edit_cache: phony zephyr/drivers/sensor/ti/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build zephyr/drivers/sensor/vishay/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/vishay && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/drivers/sensor/vishay/rebuild_cache: phony zephyr/drivers/sensor/vishay/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build zephyr/drivers/sensor/vishay/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/vishay && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/drivers/sensor/vishay/edit_cache: phony zephyr/drivers/sensor/vishay/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build zephyr/drivers/sensor/wsen/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/wsen && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/drivers/sensor/wsen/rebuild_cache: phony zephyr/drivers/sensor/wsen/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build zephyr/drivers/sensor/wsen/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/wsen && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/drivers/sensor/wsen/edit_cache: phony zephyr/drivers/sensor/wsen/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/drivers/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build zephyr/drivers/serial/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/serial && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/drivers/serial/rebuild_cache: phony zephyr/drivers/serial/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build zephyr/drivers/serial/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/serial && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/drivers/serial/edit_cache: phony zephyr/drivers/serial/CMakeFiles/edit_cache.util + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target drivers__serial + + +############################################# +# Order-only phony target for drivers__serial + +build cmake_object_order_depends_target_drivers__serial: phony || zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/syscall_list_h_target zephyr/zephyr_generated_headers + +build zephyr/drivers/serial/CMakeFiles/drivers__serial.dir/home/miguel/ncs/v3.0.2/zephyr/misc/empty_file.c.obj: C_COMPILER__drivers__serial_ /home/miguel/ncs/v3.0.2/zephyr/misc/empty_file.c || cmake_object_order_depends_target_drivers__serial + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr/drivers/serial/CMakeFiles/drivers__serial.dir/home/miguel/ncs/v3.0.2/zephyr/misc/empty_file.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/drivers/serial/CMakeFiles/drivers__serial.dir + OBJECT_FILE_DIR = zephyr/drivers/serial/CMakeFiles/drivers__serial.dir/home/miguel/ncs/v3.0.2/zephyr/misc + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target drivers__serial + + +############################################# +# Link the static library zephyr/drivers/serial/libdrivers__serial.a + +build zephyr/drivers/serial/libdrivers__serial.a: C_STATIC_LIBRARY_LINKER__drivers__serial_ zephyr/drivers/serial/CMakeFiles/drivers__serial.dir/home/miguel/ncs/v3.0.2/zephyr/misc/empty_file.c.obj || zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/syscall_list_h_target zephyr/zephyr_generated_headers + OBJECT_DIR = zephyr/drivers/serial/CMakeFiles/drivers__serial.dir + POST_BUILD = : + PRE_LINK = : + TARGET_FILE = zephyr/drivers/serial/libdrivers__serial.a + TARGET_PDB = drivers__serial.a.dbg + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/drivers/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build zephyr/drivers/timer/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/timer && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/drivers/timer/rebuild_cache: phony zephyr/drivers/timer/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build zephyr/drivers/timer/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/timer && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/drivers/timer/edit_cache: phony zephyr/drivers/timer/CMakeFiles/edit_cache.util + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target drivers__timer + + +############################################# +# Order-only phony target for drivers__timer + +build cmake_object_order_depends_target_drivers__timer: phony || zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/syscall_list_h_target zephyr/zephyr_generated_headers + +build zephyr/drivers/timer/CMakeFiles/drivers__timer.dir/sys_clock_init.c.obj: C_COMPILER__drivers__timer_ /home/miguel/ncs/v3.0.2/zephyr/drivers/timer/sys_clock_init.c || cmake_object_order_depends_target_drivers__timer + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr/drivers/timer/CMakeFiles/drivers__timer.dir/sys_clock_init.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/drivers/timer/CMakeFiles/drivers__timer.dir + OBJECT_FILE_DIR = zephyr/drivers/timer/CMakeFiles/drivers__timer.dir + +build zephyr/drivers/timer/CMakeFiles/drivers__timer.dir/nrf_rtc_timer.c.obj: C_COMPILER__drivers__timer_ /home/miguel/ncs/v3.0.2/zephyr/drivers/timer/nrf_rtc_timer.c || cmake_object_order_depends_target_drivers__timer + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr/drivers/timer/CMakeFiles/drivers__timer.dir/nrf_rtc_timer.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/drivers/timer/CMakeFiles/drivers__timer.dir + OBJECT_FILE_DIR = zephyr/drivers/timer/CMakeFiles/drivers__timer.dir + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target drivers__timer + + +############################################# +# Link the static library zephyr/drivers/timer/libdrivers__timer.a + +build zephyr/drivers/timer/libdrivers__timer.a: C_STATIC_LIBRARY_LINKER__drivers__timer_ zephyr/drivers/timer/CMakeFiles/drivers__timer.dir/sys_clock_init.c.obj zephyr/drivers/timer/CMakeFiles/drivers__timer.dir/nrf_rtc_timer.c.obj || zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/syscall_list_h_target zephyr/zephyr_generated_headers + OBJECT_DIR = zephyr/drivers/timer/CMakeFiles/drivers__timer.dir + POST_BUILD = : + PRE_LINK = : + TARGET_FILE = zephyr/drivers/timer/libdrivers__timer.a + TARGET_PDB = drivers__timer.a.dbg + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for ncs_version_h + +build modules/nrf/ncs_version_h: phony modules/nrf/CMakeFiles/ncs_version_h zephyr/include/generated/ncs_version.h + + +############################################# +# Utility command for edit_cache + +build modules/nrf/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/nrf/edit_cache: phony modules/nrf/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/nrf/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/nrf/rebuild_cache: phony modules/nrf/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for ncs_commit_h + +build modules/nrf/ncs_commit_h: phony modules/nrf/CMakeFiles/ncs_commit_h zephyr/include/generated/ncs_commit.h + + +############################################# +# Utility command for zephyr_commit_h + +build modules/nrf/zephyr_commit_h: phony modules/nrf/CMakeFiles/zephyr_commit_h zephyr/include/generated/zephyr_commit.h + + +############################################# +# Phony custom command for modules/nrf/CMakeFiles/ncs_version_h + +build modules/nrf/CMakeFiles/ncs_version_h | ${cmake_ninja_workdir}modules/nrf/CMakeFiles/ncs_version_h: phony zephyr/include/generated/ncs_version.h + + +############################################# +# Custom command for zephyr/include/generated/ncs_version.h + +build zephyr/include/generated/ncs_version.h | ${cmake_ninja_workdir}zephyr/include/generated/ncs_version.h: CUSTOM_COMMAND /home/miguel/ncs/v3.0.2/nrf/VERSION /home/miguel/ncs/v3.0.2/zephyr/.git/index + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -DZEPHYR_BASE=/home/miguel/ncs/v3.0.2/zephyr -DOUT_FILE=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/ncs_version.h -DVERSION_TYPE=NCS -DVERSION_FILE=/home/miguel/ncs/v3.0.2/nrf/VERSIONFILEDUMMY -DNCS_VERSION_CODE=196610 -DNCS_VERSION_NUMBER=0x30002 -DNCS_VERSION_MAJOR=3 -DNCS_VERSION_MINOR=0 -DNCS_PATCHLEVEL=2 -DNCS_VERSION_STRING=3.0.2 -P /home/miguel/ncs/v3.0.2/zephyr/cmake/gen_version_h.cmake + DESC = Generating ../../zephyr/include/generated/ncs_version.h + restat = 1 + + +############################################# +# Phony custom command for modules/nrf/CMakeFiles/ncs_commit_h + +build modules/nrf/CMakeFiles/ncs_commit_h | ${cmake_ninja_workdir}modules/nrf/CMakeFiles/ncs_commit_h: phony zephyr/include/generated/ncs_commit.h + + +############################################# +# Custom command for zephyr/include/generated/ncs_commit.h + +build zephyr/include/generated/ncs_commit.h | ${cmake_ninja_workdir}zephyr/include/generated/ncs_commit.h: CUSTOM_COMMAND /home/miguel/ncs/v3.0.2/nrf/VERSION /home/miguel/ncs/v3.0.2/nrf/.git /home/miguel/ncs/v3.0.2/nrf/.git/index + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -DZEPHYR_BASE=/home/miguel/ncs/v3.0.2/zephyr -DNRF_DIR=/home/miguel/ncs/v3.0.2/nrf -DOUT_FILE=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/ncs_commit.h -DCOMMIT_TYPE=NCS -DCOMMIT_PATH=/home/miguel/ncs/v3.0.2/nrf -P /home/miguel/ncs/v3.0.2/nrf/cmake/gen_commit_h.cmake + DESC = Generating ../../zephyr/include/generated/ncs_commit.h + restat = 1 + + +############################################# +# Phony custom command for modules/nrf/CMakeFiles/zephyr_commit_h + +build modules/nrf/CMakeFiles/zephyr_commit_h | ${cmake_ninja_workdir}modules/nrf/CMakeFiles/zephyr_commit_h: phony zephyr/include/generated/zephyr_commit.h + + +############################################# +# Custom command for zephyr/include/generated/zephyr_commit.h + +build zephyr/include/generated/zephyr_commit.h | ${cmake_ninja_workdir}zephyr/include/generated/zephyr_commit.h: CUSTOM_COMMAND /home/miguel/ncs/v3.0.2/zephyr/VERSION /home/miguel/ncs/v3.0.2/zephyr/.git /home/miguel/ncs/v3.0.2/zephyr/.git/index + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -DZEPHYR_BASE=/home/miguel/ncs/v3.0.2/zephyr -DNRF_DIR=/home/miguel/ncs/v3.0.2/nrf -DOUT_FILE=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr_commit.h -DCOMMIT_TYPE=ZEPHYR -DCOMMIT_PATH=/home/miguel/ncs/v3.0.2/zephyr -P /home/miguel/ncs/v3.0.2/nrf/cmake/gen_commit_h.cmake + DESC = Generating ../../zephyr/include/generated/zephyr_commit.h + restat = 1 + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/nrf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build modules/nrf/ext/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/ext && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/nrf/ext/rebuild_cache: phony modules/nrf/ext/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build modules/nrf/ext/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/ext && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/nrf/ext/edit_cache: phony modules/nrf/ext/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/nrf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build modules/nrf/lib/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/lib && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/nrf/lib/rebuild_cache: phony modules/nrf/lib/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build modules/nrf/lib/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/lib && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/nrf/lib/edit_cache: phony modules/nrf/lib/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/nrf/lib/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build modules/nrf/lib/bin/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/lib/bin && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/nrf/lib/bin/rebuild_cache: phony modules/nrf/lib/bin/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build modules/nrf/lib/bin/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/lib/bin && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/nrf/lib/bin/edit_cache: phony modules/nrf/lib/bin/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/nrf/lib/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build modules/nrf/lib/flash_patch/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/lib/flash_patch && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/nrf/lib/flash_patch/rebuild_cache: phony modules/nrf/lib/flash_patch/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build modules/nrf/lib/flash_patch/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/lib/flash_patch && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/nrf/lib/flash_patch/edit_cache: phony modules/nrf/lib/flash_patch/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/nrf/lib/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build modules/nrf/lib/fatal_error/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/lib/fatal_error && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/nrf/lib/fatal_error/rebuild_cache: phony modules/nrf/lib/fatal_error/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build modules/nrf/lib/fatal_error/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/lib/fatal_error && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/nrf/lib/fatal_error/edit_cache: phony modules/nrf/lib/fatal_error/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/nrf/lib/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build modules/nrf/lib/boot_banner/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/lib/boot_banner && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/nrf/lib/boot_banner/rebuild_cache: phony modules/nrf/lib/boot_banner/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build modules/nrf/lib/boot_banner/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/lib/boot_banner && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/nrf/lib/boot_banner/edit_cache: phony modules/nrf/lib/boot_banner/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/nrf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build modules/nrf/samples/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/samples && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/nrf/samples/rebuild_cache: phony modules/nrf/samples/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build modules/nrf/samples/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/samples && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/nrf/samples/edit_cache: phony modules/nrf/samples/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/nrf/samples/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build modules/nrf/samples/common/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/samples/common && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/nrf/samples/common/rebuild_cache: phony modules/nrf/samples/common/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build modules/nrf/samples/common/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/samples/common && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/nrf/samples/common/edit_cache: phony modules/nrf/samples/common/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/nrf/samples/common/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build modules/nrf/samples/common/mcumgr_bt_ota_dfu/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/samples/common/mcumgr_bt_ota_dfu && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/nrf/samples/common/mcumgr_bt_ota_dfu/rebuild_cache: phony modules/nrf/samples/common/mcumgr_bt_ota_dfu/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build modules/nrf/samples/common/mcumgr_bt_ota_dfu/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/samples/common/mcumgr_bt_ota_dfu && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/nrf/samples/common/mcumgr_bt_ota_dfu/edit_cache: phony modules/nrf/samples/common/mcumgr_bt_ota_dfu/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/nrf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build modules/nrf/subsys/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/subsys && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/nrf/subsys/rebuild_cache: phony modules/nrf/subsys/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build modules/nrf/subsys/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/subsys && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/nrf/subsys/edit_cache: phony modules/nrf/subsys/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/nrf/subsys/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build modules/nrf/subsys/net/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/subsys/net && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/nrf/subsys/net/rebuild_cache: phony modules/nrf/subsys/net/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build modules/nrf/subsys/net/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/subsys/net && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/nrf/subsys/net/edit_cache: phony modules/nrf/subsys/net/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/nrf/subsys/net/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build modules/nrf/subsys/net/lib/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/subsys/net/lib && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/nrf/subsys/net/lib/rebuild_cache: phony modules/nrf/subsys/net/lib/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build modules/nrf/subsys/net/lib/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/subsys/net/lib && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/nrf/subsys/net/lib/edit_cache: phony modules/nrf/subsys/net/lib/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/nrf/subsys/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build modules/nrf/subsys/dfu/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/subsys/dfu && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/nrf/subsys/dfu/rebuild_cache: phony modules/nrf/subsys/dfu/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build modules/nrf/subsys/dfu/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/subsys/dfu && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/nrf/subsys/dfu/edit_cache: phony modules/nrf/subsys/dfu/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/nrf/subsys/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build modules/nrf/subsys/mpsl/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/subsys/mpsl && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/nrf/subsys/mpsl/rebuild_cache: phony modules/nrf/subsys/mpsl/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build modules/nrf/subsys/mpsl/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/subsys/mpsl && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/nrf/subsys/mpsl/edit_cache: phony modules/nrf/subsys/mpsl/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/nrf/subsys/mpsl/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build modules/nrf/subsys/mpsl/cx/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/subsys/mpsl/cx && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/nrf/subsys/mpsl/cx/rebuild_cache: phony modules/nrf/subsys/mpsl/cx/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build modules/nrf/subsys/mpsl/cx/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/subsys/mpsl/cx && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/nrf/subsys/mpsl/cx/edit_cache: phony modules/nrf/subsys/mpsl/cx/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/nrf/subsys/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build modules/nrf/subsys/logging/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/subsys/logging && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/nrf/subsys/logging/rebuild_cache: phony modules/nrf/subsys/logging/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build modules/nrf/subsys/logging/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/subsys/logging && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/nrf/subsys/logging/edit_cache: phony modules/nrf/subsys/logging/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/nrf/subsys/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build modules/nrf/subsys/shell/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/subsys/shell && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/nrf/subsys/shell/rebuild_cache: phony modules/nrf/subsys/shell/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build modules/nrf/subsys/shell/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/subsys/shell && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/nrf/subsys/shell/edit_cache: phony modules/nrf/subsys/shell/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/nrf/subsys/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build modules/nrf/subsys/debug/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/subsys/debug && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/nrf/subsys/debug/rebuild_cache: phony modules/nrf/subsys/debug/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build modules/nrf/subsys/debug/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/subsys/debug && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/nrf/subsys/debug/edit_cache: phony modules/nrf/subsys/debug/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/nrf/subsys/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build modules/nrf/subsys/partition_manager/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/subsys/partition_manager && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/nrf/subsys/partition_manager/rebuild_cache: phony modules/nrf/subsys/partition_manager/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build modules/nrf/subsys/partition_manager/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/subsys/partition_manager && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/nrf/subsys/partition_manager/edit_cache: phony modules/nrf/subsys/partition_manager/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/nrf/subsys/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build modules/nrf/subsys/suit/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/subsys/suit && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/nrf/subsys/suit/rebuild_cache: phony modules/nrf/subsys/suit/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build modules/nrf/subsys/suit/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/subsys/suit && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/nrf/subsys/suit/edit_cache: phony modules/nrf/subsys/suit/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/nrf/subsys/suit/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build modules/nrf/subsys/suit/app_tools/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/subsys/suit/app_tools && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/nrf/subsys/suit/app_tools/rebuild_cache: phony modules/nrf/subsys/suit/app_tools/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build modules/nrf/subsys/suit/app_tools/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/subsys/suit/app_tools && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/nrf/subsys/suit/app_tools/edit_cache: phony modules/nrf/subsys/suit/app_tools/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/nrf/subsys/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build modules/nrf/subsys/mgmt/mcumgr/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/subsys/mgmt/mcumgr && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/nrf/subsys/mgmt/mcumgr/rebuild_cache: phony modules/nrf/subsys/mgmt/mcumgr/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build modules/nrf/subsys/mgmt/mcumgr/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/subsys/mgmt/mcumgr && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/nrf/subsys/mgmt/mcumgr/edit_cache: phony modules/nrf/subsys/mgmt/mcumgr/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/nrf/subsys/mgmt/mcumgr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build modules/nrf/subsys/mgmt/mcumgr/grp/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/subsys/mgmt/mcumgr/grp && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/nrf/subsys/mgmt/mcumgr/grp/rebuild_cache: phony modules/nrf/subsys/mgmt/mcumgr/grp/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build modules/nrf/subsys/mgmt/mcumgr/grp/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/subsys/mgmt/mcumgr/grp && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/nrf/subsys/mgmt/mcumgr/grp/edit_cache: phony modules/nrf/subsys/mgmt/mcumgr/grp/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/nrf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build modules/nrf/modules/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/modules && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/nrf/modules/rebuild_cache: phony modules/nrf/modules/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build modules/nrf/modules/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/modules && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/nrf/modules/edit_cache: phony modules/nrf/modules/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/nrf/modules/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build modules/nrf/modules/wfa-qt/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/modules/wfa-qt && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/nrf/modules/wfa-qt/rebuild_cache: phony modules/nrf/modules/wfa-qt/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build modules/nrf/modules/wfa-qt/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/modules/wfa-qt && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/nrf/modules/wfa-qt/edit_cache: phony modules/nrf/modules/wfa-qt/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/nrf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build modules/nrf/drivers/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/drivers && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/nrf/drivers/rebuild_cache: phony modules/nrf/drivers/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build modules/nrf/drivers/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/drivers && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/nrf/drivers/edit_cache: phony modules/nrf/drivers/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/nrf/drivers/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build modules/nrf/drivers/entropy/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/drivers/entropy && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/nrf/drivers/entropy/rebuild_cache: phony modules/nrf/drivers/entropy/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build modules/nrf/drivers/entropy/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/drivers/entropy && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/nrf/drivers/entropy/edit_cache: phony modules/nrf/drivers/entropy/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/nrf/drivers/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build modules/nrf/drivers/flash/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/drivers/flash && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/nrf/drivers/flash/rebuild_cache: phony modules/nrf/drivers/flash/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build modules/nrf/drivers/flash/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/drivers/flash && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/nrf/drivers/flash/edit_cache: phony modules/nrf/drivers/flash/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/nrf/drivers/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build modules/nrf/drivers/gpio/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/drivers/gpio && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/nrf/drivers/gpio/rebuild_cache: phony modules/nrf/drivers/gpio/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build modules/nrf/drivers/gpio/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/drivers/gpio && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/nrf/drivers/gpio/edit_cache: phony modules/nrf/drivers/gpio/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/nrf/drivers/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build modules/nrf/drivers/hw_cc3xx/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/drivers/hw_cc3xx && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/nrf/drivers/hw_cc3xx/rebuild_cache: phony modules/nrf/drivers/hw_cc3xx/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build modules/nrf/drivers/hw_cc3xx/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/drivers/hw_cc3xx && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/nrf/drivers/hw_cc3xx/edit_cache: phony modules/nrf/drivers/hw_cc3xx/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/nrf/drivers/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build modules/nrf/drivers/mpsl/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/drivers/mpsl && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/nrf/drivers/mpsl/rebuild_cache: phony modules/nrf/drivers/mpsl/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build modules/nrf/drivers/mpsl/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/drivers/mpsl && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/nrf/drivers/mpsl/edit_cache: phony modules/nrf/drivers/mpsl/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/nrf/drivers/mpsl/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build modules/nrf/drivers/mpsl/flash_sync/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/drivers/mpsl/flash_sync && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/nrf/drivers/mpsl/flash_sync/rebuild_cache: phony modules/nrf/drivers/mpsl/flash_sync/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build modules/nrf/drivers/mpsl/flash_sync/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/drivers/mpsl/flash_sync && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/nrf/drivers/mpsl/flash_sync/edit_cache: phony modules/nrf/drivers/mpsl/flash_sync/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/nrf/drivers/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build modules/nrf/drivers/sensor/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/drivers/sensor && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/nrf/drivers/sensor/rebuild_cache: phony modules/nrf/drivers/sensor/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build modules/nrf/drivers/sensor/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/drivers/sensor && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/nrf/drivers/sensor/edit_cache: phony modules/nrf/drivers/sensor/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/nrf/drivers/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build modules/nrf/drivers/serial/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/drivers/serial && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/nrf/drivers/serial/rebuild_cache: phony modules/nrf/drivers/serial/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build modules/nrf/drivers/serial/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/drivers/serial && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/nrf/drivers/serial/edit_cache: phony modules/nrf/drivers/serial/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/nrf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build modules/nrf/tests/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/tests && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/nrf/tests/rebuild_cache: phony modules/nrf/tests/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build modules/nrf/tests/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/tests && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/nrf/tests/edit_cache: phony modules/nrf/tests/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/nrf/tests/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build modules/nrf/tests/mocks/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/tests/mocks && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/nrf/tests/mocks/rebuild_cache: phony modules/nrf/tests/mocks/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build modules/nrf/tests/mocks/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/tests/mocks && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/nrf/tests/mocks/edit_cache: phony modules/nrf/tests/mocks/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build modules/hostap/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/hostap && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/hostap/rebuild_cache: phony modules/hostap/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build modules/hostap/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/hostap && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/hostap/edit_cache: phony modules/hostap/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build modules/mcuboot/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/mcuboot && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/mcuboot/rebuild_cache: phony modules/mcuboot/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build modules/mcuboot/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/mcuboot && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/mcuboot/edit_cache: phony modules/mcuboot/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/nrf/modules/mcuboot/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build modules/mcuboot/boot/bootutil/zephyr/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/mcuboot/boot/bootutil/zephyr && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/mcuboot/boot/bootutil/zephyr/rebuild_cache: phony modules/mcuboot/boot/bootutil/zephyr/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build modules/mcuboot/boot/bootutil/zephyr/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/mcuboot/boot/bootutil/zephyr && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/mcuboot/boot/bootutil/zephyr/edit_cache: phony modules/mcuboot/boot/bootutil/zephyr/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build modules/mbedtls/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/mbedtls && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/mbedtls/rebuild_cache: phony modules/mbedtls/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build modules/mbedtls/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/mbedtls && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/mbedtls/edit_cache: phony modules/mbedtls/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build modules/trusted-firmware-m/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/trusted-firmware-m && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/trusted-firmware-m/rebuild_cache: phony modules/trusted-firmware-m/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build modules/trusted-firmware-m/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/trusted-firmware-m && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/trusted-firmware-m/edit_cache: phony modules/trusted-firmware-m/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build modules/cjson/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/cjson && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/cjson/rebuild_cache: phony modules/cjson/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build modules/cjson/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/cjson && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/cjson/edit_cache: phony modules/cjson/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build modules/azure-sdk-for-c/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/azure-sdk-for-c && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/azure-sdk-for-c/rebuild_cache: phony modules/azure-sdk-for-c/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build modules/azure-sdk-for-c/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/azure-sdk-for-c && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/azure-sdk-for-c/edit_cache: phony modules/azure-sdk-for-c/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build modules/cirrus-logic/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/cirrus-logic && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/cirrus-logic/rebuild_cache: phony modules/cirrus-logic/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build modules/cirrus-logic/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/cirrus-logic && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/cirrus-logic/edit_cache: phony modules/cirrus-logic/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build modules/openthread/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/openthread && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/openthread/rebuild_cache: phony modules/openthread/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build modules/openthread/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/openthread && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/openthread/edit_cache: phony modules/openthread/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build modules/suit-processor/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/suit-processor && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/suit-processor/rebuild_cache: phony modules/suit-processor/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build modules/suit-processor/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/suit-processor && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/suit-processor/edit_cache: phony modules/suit-processor/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build modules/memfault-firmware-sdk/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/memfault-firmware-sdk && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/memfault-firmware-sdk/rebuild_cache: phony modules/memfault-firmware-sdk/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build modules/memfault-firmware-sdk/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/memfault-firmware-sdk && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/memfault-firmware-sdk/edit_cache: phony modules/memfault-firmware-sdk/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build modules/canopennode/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/canopennode && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/canopennode/rebuild_cache: phony modules/canopennode/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build modules/canopennode/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/canopennode && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/canopennode/edit_cache: phony modules/canopennode/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build modules/chre/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/chre && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/chre/rebuild_cache: phony modules/chre/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build modules/chre/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/chre && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/chre/edit_cache: phony modules/chre/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build modules/lz4/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/lz4 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/lz4/rebuild_cache: phony modules/lz4/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build modules/lz4/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/lz4 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/lz4/edit_cache: phony modules/lz4/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build modules/nanopb/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nanopb && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/nanopb/rebuild_cache: phony modules/nanopb/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build modules/nanopb/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nanopb && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/nanopb/edit_cache: phony modules/nanopb/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build modules/zscilib/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/zscilib && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/zscilib/rebuild_cache: phony modules/zscilib/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build modules/zscilib/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/zscilib && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/zscilib/edit_cache: phony modules/zscilib/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build modules/cmsis/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/cmsis && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/cmsis/rebuild_cache: phony modules/cmsis/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build modules/cmsis/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/cmsis && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/cmsis/edit_cache: phony modules/cmsis/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build modules/cmsis/cmsis/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/cmsis/cmsis && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/cmsis/cmsis/rebuild_cache: phony modules/cmsis/cmsis/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build modules/cmsis/cmsis/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/cmsis/cmsis && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/cmsis/cmsis/edit_cache: phony modules/cmsis/cmsis/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build modules/cmsis/cmsis/CMSIS/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/cmsis/cmsis/CMSIS && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/cmsis/cmsis/CMSIS/rebuild_cache: phony modules/cmsis/cmsis/CMSIS/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build modules/cmsis/cmsis/CMSIS/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/cmsis/cmsis/CMSIS && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/cmsis/cmsis/CMSIS/edit_cache: phony modules/cmsis/cmsis/CMSIS/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build modules/cmsis/cmsis/CMSIS/Core/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/cmsis/cmsis/CMSIS/Core && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/cmsis/cmsis/CMSIS/Core/rebuild_cache: phony modules/cmsis/cmsis/CMSIS/Core/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build modules/cmsis/cmsis/CMSIS/Core/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/cmsis/cmsis/CMSIS/Core && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/cmsis/cmsis/CMSIS/Core/edit_cache: phony modules/cmsis/cmsis/CMSIS/Core/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build modules/cmsis-dsp/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/cmsis-dsp && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/cmsis-dsp/rebuild_cache: phony modules/cmsis-dsp/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build modules/cmsis-dsp/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/cmsis-dsp && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/cmsis-dsp/edit_cache: phony modules/cmsis-dsp/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build modules/cmsis-nn/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/cmsis-nn && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/cmsis-nn/rebuild_cache: phony modules/cmsis-nn/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build modules/cmsis-nn/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/cmsis-nn && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/cmsis-nn/edit_cache: phony modules/cmsis-nn/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build modules/fatfs/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/fatfs && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/fatfs/rebuild_cache: phony modules/fatfs/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build modules/fatfs/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/fatfs && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/fatfs/edit_cache: phony modules/fatfs/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build modules/hal_nordic/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/hal_nordic && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/hal_nordic/rebuild_cache: phony modules/hal_nordic/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build modules/hal_nordic/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/hal_nordic && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/hal_nordic/edit_cache: phony modules/hal_nordic/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build modules/hal_nordic/modules/hal_nordic/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/hal_nordic/modules/hal_nordic && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/hal_nordic/modules/hal_nordic/rebuild_cache: phony modules/hal_nordic/modules/hal_nordic/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build modules/hal_nordic/modules/hal_nordic/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/hal_nordic/modules/hal_nordic && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/hal_nordic/modules/hal_nordic/edit_cache: phony modules/hal_nordic/modules/hal_nordic/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build modules/hal_nordic/modules/hal_nordic/nrfx/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/hal_nordic/modules/hal_nordic/nrfx && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/hal_nordic/modules/hal_nordic/nrfx/rebuild_cache: phony modules/hal_nordic/modules/hal_nordic/nrfx/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build modules/hal_nordic/modules/hal_nordic/nrfx/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/hal_nordic/modules/hal_nordic/nrfx && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/hal_nordic/modules/hal_nordic/nrfx/edit_cache: phony modules/hal_nordic/modules/hal_nordic/nrfx/CMakeFiles/edit_cache.util + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target modules__hal_nordic__nrfx + + +############################################# +# Order-only phony target for modules__hal_nordic__nrfx + +build cmake_object_order_depends_target_modules__hal_nordic__nrfx: phony || zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/syscall_list_h_target zephyr/zephyr_generated_headers + +build modules/hal_nordic/modules/hal_nordic/nrfx/CMakeFiles/modules__hal_nordic__nrfx.dir/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk/system_nrf52833.c.obj: C_COMPILER__modules__hal_nordic__nrfx_ /home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk/system_nrf52833.c || cmake_object_order_depends_target_modules__hal_nordic__nrfx + DEFINES = -DCONFIG_GPIO_AS_PINRESET -DCONFIG_NFCT_PINS_AS_GPIOS -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DNRF_CONFIG_NFCT_PINS_AS_GPIOS -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = modules/hal_nordic/modules/hal_nordic/nrfx/CMakeFiles/modules__hal_nordic__nrfx.dir/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk/system_nrf52833.c.obj.d + FLAGS = -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = modules/hal_nordic/modules/hal_nordic/nrfx/CMakeFiles/modules__hal_nordic__nrfx.dir + OBJECT_FILE_DIR = modules/hal_nordic/modules/hal_nordic/nrfx/CMakeFiles/modules__hal_nordic__nrfx.dir/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk + +build modules/hal_nordic/modules/hal_nordic/nrfx/CMakeFiles/modules__hal_nordic__nrfx.dir/nrfx_glue.c.obj: C_COMPILER__modules__hal_nordic__nrfx_ /home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/nrfx_glue.c || cmake_object_order_depends_target_modules__hal_nordic__nrfx + DEFINES = -DCONFIG_GPIO_AS_PINRESET -DCONFIG_NFCT_PINS_AS_GPIOS -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DNRF_CONFIG_NFCT_PINS_AS_GPIOS -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = modules/hal_nordic/modules/hal_nordic/nrfx/CMakeFiles/modules__hal_nordic__nrfx.dir/nrfx_glue.c.obj.d + FLAGS = -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = modules/hal_nordic/modules/hal_nordic/nrfx/CMakeFiles/modules__hal_nordic__nrfx.dir + OBJECT_FILE_DIR = modules/hal_nordic/modules/hal_nordic/nrfx/CMakeFiles/modules__hal_nordic__nrfx.dir + +build modules/hal_nordic/modules/hal_nordic/nrfx/CMakeFiles/modules__hal_nordic__nrfx.dir/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/helpers/nrfx_flag32_allocator.c.obj: C_COMPILER__modules__hal_nordic__nrfx_ /home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/helpers/nrfx_flag32_allocator.c || cmake_object_order_depends_target_modules__hal_nordic__nrfx + DEFINES = -DCONFIG_GPIO_AS_PINRESET -DCONFIG_NFCT_PINS_AS_GPIOS -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DNRF_CONFIG_NFCT_PINS_AS_GPIOS -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = modules/hal_nordic/modules/hal_nordic/nrfx/CMakeFiles/modules__hal_nordic__nrfx.dir/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/helpers/nrfx_flag32_allocator.c.obj.d + FLAGS = -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = modules/hal_nordic/modules/hal_nordic/nrfx/CMakeFiles/modules__hal_nordic__nrfx.dir + OBJECT_FILE_DIR = modules/hal_nordic/modules/hal_nordic/nrfx/CMakeFiles/modules__hal_nordic__nrfx.dir/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/helpers + +build modules/hal_nordic/modules/hal_nordic/nrfx/CMakeFiles/modules__hal_nordic__nrfx.dir/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/helpers/nrfx_ram_ctrl.c.obj: C_COMPILER__modules__hal_nordic__nrfx_ /home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/helpers/nrfx_ram_ctrl.c || cmake_object_order_depends_target_modules__hal_nordic__nrfx + DEFINES = -DCONFIG_GPIO_AS_PINRESET -DCONFIG_NFCT_PINS_AS_GPIOS -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DNRF_CONFIG_NFCT_PINS_AS_GPIOS -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = modules/hal_nordic/modules/hal_nordic/nrfx/CMakeFiles/modules__hal_nordic__nrfx.dir/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/helpers/nrfx_ram_ctrl.c.obj.d + FLAGS = -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = modules/hal_nordic/modules/hal_nordic/nrfx/CMakeFiles/modules__hal_nordic__nrfx.dir + OBJECT_FILE_DIR = modules/hal_nordic/modules/hal_nordic/nrfx/CMakeFiles/modules__hal_nordic__nrfx.dir/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/helpers + +build modules/hal_nordic/modules/hal_nordic/nrfx/CMakeFiles/modules__hal_nordic__nrfx.dir/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/src/nrfx_clock.c.obj: C_COMPILER__modules__hal_nordic__nrfx_ /home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/src/nrfx_clock.c || cmake_object_order_depends_target_modules__hal_nordic__nrfx + DEFINES = -DCONFIG_GPIO_AS_PINRESET -DCONFIG_NFCT_PINS_AS_GPIOS -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DNRF_CONFIG_NFCT_PINS_AS_GPIOS -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = modules/hal_nordic/modules/hal_nordic/nrfx/CMakeFiles/modules__hal_nordic__nrfx.dir/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/src/nrfx_clock.c.obj.d + FLAGS = -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = modules/hal_nordic/modules/hal_nordic/nrfx/CMakeFiles/modules__hal_nordic__nrfx.dir + OBJECT_FILE_DIR = modules/hal_nordic/modules/hal_nordic/nrfx/CMakeFiles/modules__hal_nordic__nrfx.dir/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/src + +build modules/hal_nordic/modules/hal_nordic/nrfx/CMakeFiles/modules__hal_nordic__nrfx.dir/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/src/nrfx_gpiote.c.obj: C_COMPILER__modules__hal_nordic__nrfx_ /home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/src/nrfx_gpiote.c || cmake_object_order_depends_target_modules__hal_nordic__nrfx + DEFINES = -DCONFIG_GPIO_AS_PINRESET -DCONFIG_NFCT_PINS_AS_GPIOS -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DNRF_CONFIG_NFCT_PINS_AS_GPIOS -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = modules/hal_nordic/modules/hal_nordic/nrfx/CMakeFiles/modules__hal_nordic__nrfx.dir/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/src/nrfx_gpiote.c.obj.d + FLAGS = -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = modules/hal_nordic/modules/hal_nordic/nrfx/CMakeFiles/modules__hal_nordic__nrfx.dir + OBJECT_FILE_DIR = modules/hal_nordic/modules/hal_nordic/nrfx/CMakeFiles/modules__hal_nordic__nrfx.dir/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/src + +build modules/hal_nordic/modules/hal_nordic/nrfx/CMakeFiles/modules__hal_nordic__nrfx.dir/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/src/nrfx_power.c.obj: C_COMPILER__modules__hal_nordic__nrfx_ /home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/src/nrfx_power.c || cmake_object_order_depends_target_modules__hal_nordic__nrfx + DEFINES = -DCONFIG_GPIO_AS_PINRESET -DCONFIG_NFCT_PINS_AS_GPIOS -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DNRF_CONFIG_NFCT_PINS_AS_GPIOS -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = modules/hal_nordic/modules/hal_nordic/nrfx/CMakeFiles/modules__hal_nordic__nrfx.dir/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/src/nrfx_power.c.obj.d + FLAGS = -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = modules/hal_nordic/modules/hal_nordic/nrfx/CMakeFiles/modules__hal_nordic__nrfx.dir + OBJECT_FILE_DIR = modules/hal_nordic/modules/hal_nordic/nrfx/CMakeFiles/modules__hal_nordic__nrfx.dir/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/src + +build modules/hal_nordic/modules/hal_nordic/nrfx/CMakeFiles/modules__hal_nordic__nrfx.dir/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/src/nrfx_temp.c.obj: C_COMPILER__modules__hal_nordic__nrfx_ /home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/src/nrfx_temp.c || cmake_object_order_depends_target_modules__hal_nordic__nrfx + DEFINES = -DCONFIG_GPIO_AS_PINRESET -DCONFIG_NFCT_PINS_AS_GPIOS -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DNRF_CONFIG_NFCT_PINS_AS_GPIOS -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = modules/hal_nordic/modules/hal_nordic/nrfx/CMakeFiles/modules__hal_nordic__nrfx.dir/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/src/nrfx_temp.c.obj.d + FLAGS = -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = modules/hal_nordic/modules/hal_nordic/nrfx/CMakeFiles/modules__hal_nordic__nrfx.dir + OBJECT_FILE_DIR = modules/hal_nordic/modules/hal_nordic/nrfx/CMakeFiles/modules__hal_nordic__nrfx.dir/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/src + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target modules__hal_nordic__nrfx + + +############################################# +# Link the static library modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a + +build modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a: C_STATIC_LIBRARY_LINKER__modules__hal_nordic__nrfx_ modules/hal_nordic/modules/hal_nordic/nrfx/CMakeFiles/modules__hal_nordic__nrfx.dir/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk/system_nrf52833.c.obj modules/hal_nordic/modules/hal_nordic/nrfx/CMakeFiles/modules__hal_nordic__nrfx.dir/nrfx_glue.c.obj modules/hal_nordic/modules/hal_nordic/nrfx/CMakeFiles/modules__hal_nordic__nrfx.dir/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/helpers/nrfx_flag32_allocator.c.obj modules/hal_nordic/modules/hal_nordic/nrfx/CMakeFiles/modules__hal_nordic__nrfx.dir/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/helpers/nrfx_ram_ctrl.c.obj modules/hal_nordic/modules/hal_nordic/nrfx/CMakeFiles/modules__hal_nordic__nrfx.dir/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/src/nrfx_clock.c.obj modules/hal_nordic/modules/hal_nordic/nrfx/CMakeFiles/modules__hal_nordic__nrfx.dir/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/src/nrfx_gpiote.c.obj modules/hal_nordic/modules/hal_nordic/nrfx/CMakeFiles/modules__hal_nordic__nrfx.dir/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/src/nrfx_power.c.obj modules/hal_nordic/modules/hal_nordic/nrfx/CMakeFiles/modules__hal_nordic__nrfx.dir/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/src/nrfx_temp.c.obj || zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/syscall_list_h_target zephyr/zephyr_generated_headers + OBJECT_DIR = modules/hal_nordic/modules/hal_nordic/nrfx/CMakeFiles/modules__hal_nordic__nrfx.dir + POST_BUILD = : + PRE_LINK = : + TARGET_FILE = modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a + TARGET_PDB = modules__hal_nordic__nrfx.a.dbg + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build modules/hal_nordic/nrfx/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/hal_nordic/nrfx && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/hal_nordic/nrfx/rebuild_cache: phony modules/hal_nordic/nrfx/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build modules/hal_nordic/nrfx/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/hal_nordic/nrfx && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/hal_nordic/nrfx/edit_cache: phony modules/hal_nordic/nrfx/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build modules/hal_st/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/hal_st && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/hal_st/rebuild_cache: phony modules/hal_st/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build modules/hal_st/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/hal_st && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/hal_st/edit_cache: phony modules/hal_st/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build modules/hal_tdk/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/hal_tdk && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/hal_tdk/rebuild_cache: phony modules/hal_tdk/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build modules/hal_tdk/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/hal_tdk && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/hal_tdk/edit_cache: phony modules/hal_tdk/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build modules/hal_wurthelektronik/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/hal_wurthelektronik && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/hal_wurthelektronik/rebuild_cache: phony modules/hal_wurthelektronik/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build modules/hal_wurthelektronik/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/hal_wurthelektronik && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/hal_wurthelektronik/edit_cache: phony modules/hal_wurthelektronik/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build modules/liblc3/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/liblc3 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/liblc3/rebuild_cache: phony modules/liblc3/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build modules/liblc3/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/liblc3 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/liblc3/edit_cache: phony modules/liblc3/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build modules/libmetal/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/libmetal && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/libmetal/rebuild_cache: phony modules/libmetal/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build modules/libmetal/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/libmetal && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/libmetal/edit_cache: phony modules/libmetal/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build modules/littlefs/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/littlefs && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/littlefs/rebuild_cache: phony modules/littlefs/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build modules/littlefs/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/littlefs && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/littlefs/edit_cache: phony modules/littlefs/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build modules/loramac-node/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/loramac-node && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/loramac-node/rebuild_cache: phony modules/loramac-node/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build modules/loramac-node/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/loramac-node && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/loramac-node/edit_cache: phony modules/loramac-node/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build modules/lvgl/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/lvgl && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/lvgl/rebuild_cache: phony modules/lvgl/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build modules/lvgl/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/lvgl && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/lvgl/edit_cache: phony modules/lvgl/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build modules/mipi-sys-t/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/mipi-sys-t && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/mipi-sys-t/rebuild_cache: phony modules/mipi-sys-t/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build modules/mipi-sys-t/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/mipi-sys-t && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/mipi-sys-t/edit_cache: phony modules/mipi-sys-t/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build modules/nrf_wifi/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf_wifi && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/nrf_wifi/rebuild_cache: phony modules/nrf_wifi/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build modules/nrf_wifi/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf_wifi && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/nrf_wifi/edit_cache: phony modules/nrf_wifi/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build modules/open-amp/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/open-amp && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/open-amp/rebuild_cache: phony modules/open-amp/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build modules/open-amp/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/open-amp && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/open-amp/edit_cache: phony modules/open-amp/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build modules/percepio/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/percepio && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/percepio/rebuild_cache: phony modules/percepio/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build modules/percepio/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/percepio && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/percepio/edit_cache: phony modules/percepio/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build modules/picolibc/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/picolibc && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/picolibc/rebuild_cache: phony modules/picolibc/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build modules/picolibc/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/picolibc && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/picolibc/edit_cache: phony modules/picolibc/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build modules/segger/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/segger && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/segger/rebuild_cache: phony modules/segger/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build modules/segger/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/segger && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/segger/edit_cache: phony modules/segger/CMakeFiles/edit_cache.util + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target modules__segger + + +############################################# +# Order-only phony target for modules__segger + +build cmake_object_order_depends_target_modules__segger: phony || zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/syscall_list_h_target zephyr/zephyr_generated_headers + +build modules/segger/CMakeFiles/modules__segger.dir/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER/SEGGER_RTT.c.obj: C_COMPILER__modules__segger_ /home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER/SEGGER_RTT.c || cmake_object_order_depends_target_modules__segger + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = modules/segger/CMakeFiles/modules__segger.dir/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER/SEGGER_RTT.c.obj.d + FLAGS = -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = modules/segger/CMakeFiles/modules__segger.dir + OBJECT_FILE_DIR = modules/segger/CMakeFiles/modules__segger.dir/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER + +build modules/segger/CMakeFiles/modules__segger.dir/SEGGER_RTT_zephyr.c.obj: C_COMPILER__modules__segger_ /home/miguel/ncs/v3.0.2/zephyr/modules/segger/SEGGER_RTT_zephyr.c || cmake_object_order_depends_target_modules__segger + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = modules/segger/CMakeFiles/modules__segger.dir/SEGGER_RTT_zephyr.c.obj.d + FLAGS = -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = modules/segger/CMakeFiles/modules__segger.dir + OBJECT_FILE_DIR = modules/segger/CMakeFiles/modules__segger.dir + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target modules__segger + + +############################################# +# Link the static library modules/segger/libmodules__segger.a + +build modules/segger/libmodules__segger.a: C_STATIC_LIBRARY_LINKER__modules__segger_ modules/segger/CMakeFiles/modules__segger.dir/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER/SEGGER_RTT.c.obj modules/segger/CMakeFiles/modules__segger.dir/SEGGER_RTT_zephyr.c.obj || zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/syscall_list_h_target zephyr/zephyr_generated_headers + OBJECT_DIR = modules/segger/CMakeFiles/modules__segger.dir + POST_BUILD = : + PRE_LINK = : + TARGET_FILE = modules/segger/libmodules__segger.a + TARGET_PDB = modules__segger.a.dbg + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build modules/tinycrypt/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/tinycrypt && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/tinycrypt/rebuild_cache: phony modules/tinycrypt/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build modules/tinycrypt/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/tinycrypt && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/tinycrypt/edit_cache: phony modules/tinycrypt/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build modules/uoscore-uedhoc/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/uoscore-uedhoc && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/uoscore-uedhoc/rebuild_cache: phony modules/uoscore-uedhoc/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build modules/uoscore-uedhoc/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/uoscore-uedhoc && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/uoscore-uedhoc/edit_cache: phony modules/uoscore-uedhoc/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build modules/zcbor/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/zcbor && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/zcbor/rebuild_cache: phony modules/zcbor/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build modules/zcbor/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/zcbor && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/zcbor/edit_cache: phony modules/zcbor/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build modules/nrfxlib/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrfxlib && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/nrfxlib/rebuild_cache: phony modules/nrfxlib/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build modules/nrfxlib/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrfxlib && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/nrfxlib/edit_cache: phony modules/nrfxlib/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/nrf/modules/nrfxlib/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build modules/nrfxlib/nrfxlib/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrfxlib/nrfxlib && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/nrfxlib/nrfxlib/rebuild_cache: phony modules/nrfxlib/nrfxlib/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build modules/nrfxlib/nrfxlib/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrfxlib/nrfxlib && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/nrfxlib/nrfxlib/edit_cache: phony modules/nrfxlib/nrfxlib/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/nrf/modules/nrfxlib/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build modules/nrfxlib/nrf_802154/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrfxlib/nrf_802154 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/nrfxlib/nrf_802154/rebuild_cache: phony modules/nrfxlib/nrf_802154/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build modules/nrfxlib/nrf_802154/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrfxlib/nrf_802154 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/nrfxlib/nrf_802154/edit_cache: phony modules/nrfxlib/nrf_802154/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build modules/nrf_hw_models/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf_hw_models && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/nrf_hw_models/rebuild_cache: phony modules/nrf_hw_models/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build modules/nrf_hw_models/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf_hw_models && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/nrf_hw_models/edit_cache: phony modules/nrf_hw_models/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build modules/connectedhomeip/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/connectedhomeip && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/connectedhomeip/rebuild_cache: phony modules/connectedhomeip/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build modules/connectedhomeip/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/connectedhomeip && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/connectedhomeip/edit_cache: phony modules/connectedhomeip/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build zephyr/kernel/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/kernel && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/kernel/rebuild_cache: phony zephyr/kernel/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build zephyr/kernel/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/kernel && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/kernel/edit_cache: phony zephyr/kernel/CMakeFiles/edit_cache.util + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target kernel + + +############################################# +# Order-only phony target for kernel + +build cmake_object_order_depends_target_kernel: phony || zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/syscall_list_h_target zephyr/zephyr_generated_headers + +build zephyr/kernel/CMakeFiles/kernel.dir/main_weak.c.obj: C_COMPILER__kernel_ /home/miguel/ncs/v3.0.2/zephyr/kernel/main_weak.c || cmake_object_order_depends_target_kernel + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr/kernel/CMakeFiles/kernel.dir/main_weak.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/kernel/CMakeFiles/kernel.dir + OBJECT_FILE_DIR = zephyr/kernel/CMakeFiles/kernel.dir + +build zephyr/kernel/CMakeFiles/kernel.dir/banner.c.obj: C_COMPILER__kernel_ /home/miguel/ncs/v3.0.2/zephyr/kernel/banner.c || cmake_object_order_depends_target_kernel + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr/kernel/CMakeFiles/kernel.dir/banner.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/kernel/CMakeFiles/kernel.dir + OBJECT_FILE_DIR = zephyr/kernel/CMakeFiles/kernel.dir + +build zephyr/kernel/CMakeFiles/kernel.dir/busy_wait.c.obj: C_COMPILER__kernel_ /home/miguel/ncs/v3.0.2/zephyr/kernel/busy_wait.c || cmake_object_order_depends_target_kernel + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr/kernel/CMakeFiles/kernel.dir/busy_wait.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/kernel/CMakeFiles/kernel.dir + OBJECT_FILE_DIR = zephyr/kernel/CMakeFiles/kernel.dir + +build zephyr/kernel/CMakeFiles/kernel.dir/device.c.obj: C_COMPILER__kernel_ /home/miguel/ncs/v3.0.2/zephyr/kernel/device.c || cmake_object_order_depends_target_kernel + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr/kernel/CMakeFiles/kernel.dir/device.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/kernel/CMakeFiles/kernel.dir + OBJECT_FILE_DIR = zephyr/kernel/CMakeFiles/kernel.dir + +build zephyr/kernel/CMakeFiles/kernel.dir/errno.c.obj: C_COMPILER__kernel_ /home/miguel/ncs/v3.0.2/zephyr/kernel/errno.c || cmake_object_order_depends_target_kernel + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr/kernel/CMakeFiles/kernel.dir/errno.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/kernel/CMakeFiles/kernel.dir + OBJECT_FILE_DIR = zephyr/kernel/CMakeFiles/kernel.dir + +build zephyr/kernel/CMakeFiles/kernel.dir/fatal.c.obj: C_COMPILER__kernel_ /home/miguel/ncs/v3.0.2/zephyr/kernel/fatal.c || cmake_object_order_depends_target_kernel + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr/kernel/CMakeFiles/kernel.dir/fatal.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/kernel/CMakeFiles/kernel.dir + OBJECT_FILE_DIR = zephyr/kernel/CMakeFiles/kernel.dir + +build zephyr/kernel/CMakeFiles/kernel.dir/init.c.obj: C_COMPILER__kernel_ /home/miguel/ncs/v3.0.2/zephyr/kernel/init.c || cmake_object_order_depends_target_kernel + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr/kernel/CMakeFiles/kernel.dir/init.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/kernel/CMakeFiles/kernel.dir + OBJECT_FILE_DIR = zephyr/kernel/CMakeFiles/kernel.dir + +build zephyr/kernel/CMakeFiles/kernel.dir/init_static.c.obj: C_COMPILER__kernel_ /home/miguel/ncs/v3.0.2/zephyr/kernel/init_static.c || cmake_object_order_depends_target_kernel + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr/kernel/CMakeFiles/kernel.dir/init_static.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/kernel/CMakeFiles/kernel.dir + OBJECT_FILE_DIR = zephyr/kernel/CMakeFiles/kernel.dir + +build zephyr/kernel/CMakeFiles/kernel.dir/kheap.c.obj: C_COMPILER__kernel_ /home/miguel/ncs/v3.0.2/zephyr/kernel/kheap.c || cmake_object_order_depends_target_kernel + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr/kernel/CMakeFiles/kernel.dir/kheap.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/kernel/CMakeFiles/kernel.dir + OBJECT_FILE_DIR = zephyr/kernel/CMakeFiles/kernel.dir + +build zephyr/kernel/CMakeFiles/kernel.dir/mem_slab.c.obj: C_COMPILER__kernel_ /home/miguel/ncs/v3.0.2/zephyr/kernel/mem_slab.c || cmake_object_order_depends_target_kernel + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr/kernel/CMakeFiles/kernel.dir/mem_slab.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/kernel/CMakeFiles/kernel.dir + OBJECT_FILE_DIR = zephyr/kernel/CMakeFiles/kernel.dir + +build zephyr/kernel/CMakeFiles/kernel.dir/float.c.obj: C_COMPILER__kernel_ /home/miguel/ncs/v3.0.2/zephyr/kernel/float.c || cmake_object_order_depends_target_kernel + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr/kernel/CMakeFiles/kernel.dir/float.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/kernel/CMakeFiles/kernel.dir + OBJECT_FILE_DIR = zephyr/kernel/CMakeFiles/kernel.dir + +build zephyr/kernel/CMakeFiles/kernel.dir/version.c.obj: C_COMPILER__kernel_ /home/miguel/ncs/v3.0.2/zephyr/kernel/version.c || cmake_object_order_depends_target_kernel + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr/kernel/CMakeFiles/kernel.dir/version.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/kernel/CMakeFiles/kernel.dir + OBJECT_FILE_DIR = zephyr/kernel/CMakeFiles/kernel.dir + +build zephyr/kernel/CMakeFiles/kernel.dir/idle.c.obj: C_COMPILER__kernel_ /home/miguel/ncs/v3.0.2/zephyr/kernel/idle.c || cmake_object_order_depends_target_kernel + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr/kernel/CMakeFiles/kernel.dir/idle.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/kernel/CMakeFiles/kernel.dir + OBJECT_FILE_DIR = zephyr/kernel/CMakeFiles/kernel.dir + +build zephyr/kernel/CMakeFiles/kernel.dir/mailbox.c.obj: C_COMPILER__kernel_ /home/miguel/ncs/v3.0.2/zephyr/kernel/mailbox.c || cmake_object_order_depends_target_kernel + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr/kernel/CMakeFiles/kernel.dir/mailbox.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/kernel/CMakeFiles/kernel.dir + OBJECT_FILE_DIR = zephyr/kernel/CMakeFiles/kernel.dir + +build zephyr/kernel/CMakeFiles/kernel.dir/msg_q.c.obj: C_COMPILER__kernel_ /home/miguel/ncs/v3.0.2/zephyr/kernel/msg_q.c || cmake_object_order_depends_target_kernel + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr/kernel/CMakeFiles/kernel.dir/msg_q.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/kernel/CMakeFiles/kernel.dir + OBJECT_FILE_DIR = zephyr/kernel/CMakeFiles/kernel.dir + +build zephyr/kernel/CMakeFiles/kernel.dir/mutex.c.obj: C_COMPILER__kernel_ /home/miguel/ncs/v3.0.2/zephyr/kernel/mutex.c || cmake_object_order_depends_target_kernel + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr/kernel/CMakeFiles/kernel.dir/mutex.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/kernel/CMakeFiles/kernel.dir + OBJECT_FILE_DIR = zephyr/kernel/CMakeFiles/kernel.dir + +build zephyr/kernel/CMakeFiles/kernel.dir/queue.c.obj: C_COMPILER__kernel_ /home/miguel/ncs/v3.0.2/zephyr/kernel/queue.c || cmake_object_order_depends_target_kernel + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr/kernel/CMakeFiles/kernel.dir/queue.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/kernel/CMakeFiles/kernel.dir + OBJECT_FILE_DIR = zephyr/kernel/CMakeFiles/kernel.dir + +build zephyr/kernel/CMakeFiles/kernel.dir/sem.c.obj: C_COMPILER__kernel_ /home/miguel/ncs/v3.0.2/zephyr/kernel/sem.c || cmake_object_order_depends_target_kernel + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr/kernel/CMakeFiles/kernel.dir/sem.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/kernel/CMakeFiles/kernel.dir + OBJECT_FILE_DIR = zephyr/kernel/CMakeFiles/kernel.dir + +build zephyr/kernel/CMakeFiles/kernel.dir/stack.c.obj: C_COMPILER__kernel_ /home/miguel/ncs/v3.0.2/zephyr/kernel/stack.c || cmake_object_order_depends_target_kernel + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr/kernel/CMakeFiles/kernel.dir/stack.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/kernel/CMakeFiles/kernel.dir + OBJECT_FILE_DIR = zephyr/kernel/CMakeFiles/kernel.dir + +build zephyr/kernel/CMakeFiles/kernel.dir/system_work_q.c.obj: C_COMPILER__kernel_ /home/miguel/ncs/v3.0.2/zephyr/kernel/system_work_q.c || cmake_object_order_depends_target_kernel + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr/kernel/CMakeFiles/kernel.dir/system_work_q.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/kernel/CMakeFiles/kernel.dir + OBJECT_FILE_DIR = zephyr/kernel/CMakeFiles/kernel.dir + +build zephyr/kernel/CMakeFiles/kernel.dir/work.c.obj: C_COMPILER__kernel_ /home/miguel/ncs/v3.0.2/zephyr/kernel/work.c || cmake_object_order_depends_target_kernel + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr/kernel/CMakeFiles/kernel.dir/work.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/kernel/CMakeFiles/kernel.dir + OBJECT_FILE_DIR = zephyr/kernel/CMakeFiles/kernel.dir + +build zephyr/kernel/CMakeFiles/kernel.dir/condvar.c.obj: C_COMPILER__kernel_ /home/miguel/ncs/v3.0.2/zephyr/kernel/condvar.c || cmake_object_order_depends_target_kernel + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr/kernel/CMakeFiles/kernel.dir/condvar.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/kernel/CMakeFiles/kernel.dir + OBJECT_FILE_DIR = zephyr/kernel/CMakeFiles/kernel.dir + +build zephyr/kernel/CMakeFiles/kernel.dir/priority_queues.c.obj: C_COMPILER__kernel_ /home/miguel/ncs/v3.0.2/zephyr/kernel/priority_queues.c || cmake_object_order_depends_target_kernel + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr/kernel/CMakeFiles/kernel.dir/priority_queues.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/kernel/CMakeFiles/kernel.dir + OBJECT_FILE_DIR = zephyr/kernel/CMakeFiles/kernel.dir + +build zephyr/kernel/CMakeFiles/kernel.dir/thread.c.obj: C_COMPILER__kernel_ /home/miguel/ncs/v3.0.2/zephyr/kernel/thread.c || cmake_object_order_depends_target_kernel + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr/kernel/CMakeFiles/kernel.dir/thread.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/kernel/CMakeFiles/kernel.dir + OBJECT_FILE_DIR = zephyr/kernel/CMakeFiles/kernel.dir + +build zephyr/kernel/CMakeFiles/kernel.dir/sched.c.obj: C_COMPILER__kernel_ /home/miguel/ncs/v3.0.2/zephyr/kernel/sched.c || cmake_object_order_depends_target_kernel + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr/kernel/CMakeFiles/kernel.dir/sched.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/kernel/CMakeFiles/kernel.dir + OBJECT_FILE_DIR = zephyr/kernel/CMakeFiles/kernel.dir + +build zephyr/kernel/CMakeFiles/kernel.dir/timeslicing.c.obj: C_COMPILER__kernel_ /home/miguel/ncs/v3.0.2/zephyr/kernel/timeslicing.c || cmake_object_order_depends_target_kernel + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr/kernel/CMakeFiles/kernel.dir/timeslicing.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/kernel/CMakeFiles/kernel.dir + OBJECT_FILE_DIR = zephyr/kernel/CMakeFiles/kernel.dir + +build zephyr/kernel/CMakeFiles/kernel.dir/spinlock_validate.c.obj: C_COMPILER__kernel_ /home/miguel/ncs/v3.0.2/zephyr/kernel/spinlock_validate.c || cmake_object_order_depends_target_kernel + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr/kernel/CMakeFiles/kernel.dir/spinlock_validate.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/kernel/CMakeFiles/kernel.dir + OBJECT_FILE_DIR = zephyr/kernel/CMakeFiles/kernel.dir + +build zephyr/kernel/CMakeFiles/kernel.dir/xip.c.obj: C_COMPILER__kernel_ /home/miguel/ncs/v3.0.2/zephyr/kernel/xip.c || cmake_object_order_depends_target_kernel + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr/kernel/CMakeFiles/kernel.dir/xip.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/kernel/CMakeFiles/kernel.dir + OBJECT_FILE_DIR = zephyr/kernel/CMakeFiles/kernel.dir + +build zephyr/kernel/CMakeFiles/kernel.dir/timeout.c.obj: C_COMPILER__kernel_ /home/miguel/ncs/v3.0.2/zephyr/kernel/timeout.c || cmake_object_order_depends_target_kernel + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr/kernel/CMakeFiles/kernel.dir/timeout.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/kernel/CMakeFiles/kernel.dir + OBJECT_FILE_DIR = zephyr/kernel/CMakeFiles/kernel.dir + +build zephyr/kernel/CMakeFiles/kernel.dir/timer.c.obj: C_COMPILER__kernel_ /home/miguel/ncs/v3.0.2/zephyr/kernel/timer.c || cmake_object_order_depends_target_kernel + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr/kernel/CMakeFiles/kernel.dir/timer.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/kernel/CMakeFiles/kernel.dir + OBJECT_FILE_DIR = zephyr/kernel/CMakeFiles/kernel.dir + +build zephyr/kernel/CMakeFiles/kernel.dir/mempool.c.obj: C_COMPILER__kernel_ /home/miguel/ncs/v3.0.2/zephyr/kernel/mempool.c || cmake_object_order_depends_target_kernel + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr/kernel/CMakeFiles/kernel.dir/mempool.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/kernel/CMakeFiles/kernel.dir + OBJECT_FILE_DIR = zephyr/kernel/CMakeFiles/kernel.dir + +build zephyr/kernel/CMakeFiles/kernel.dir/dynamic_disabled.c.obj: C_COMPILER__kernel_ /home/miguel/ncs/v3.0.2/zephyr/kernel/dynamic_disabled.c || cmake_object_order_depends_target_kernel + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr/kernel/CMakeFiles/kernel.dir/dynamic_disabled.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/kernel/CMakeFiles/kernel.dir + OBJECT_FILE_DIR = zephyr/kernel/CMakeFiles/kernel.dir + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target kernel + + +############################################# +# Link the static library zephyr/kernel/libkernel.a + +build zephyr/kernel/libkernel.a: C_STATIC_LIBRARY_LINKER__kernel_ zephyr/kernel/CMakeFiles/kernel.dir/main_weak.c.obj zephyr/kernel/CMakeFiles/kernel.dir/banner.c.obj zephyr/kernel/CMakeFiles/kernel.dir/busy_wait.c.obj zephyr/kernel/CMakeFiles/kernel.dir/device.c.obj zephyr/kernel/CMakeFiles/kernel.dir/errno.c.obj zephyr/kernel/CMakeFiles/kernel.dir/fatal.c.obj zephyr/kernel/CMakeFiles/kernel.dir/init.c.obj zephyr/kernel/CMakeFiles/kernel.dir/init_static.c.obj zephyr/kernel/CMakeFiles/kernel.dir/kheap.c.obj zephyr/kernel/CMakeFiles/kernel.dir/mem_slab.c.obj zephyr/kernel/CMakeFiles/kernel.dir/float.c.obj zephyr/kernel/CMakeFiles/kernel.dir/version.c.obj zephyr/kernel/CMakeFiles/kernel.dir/idle.c.obj zephyr/kernel/CMakeFiles/kernel.dir/mailbox.c.obj zephyr/kernel/CMakeFiles/kernel.dir/msg_q.c.obj zephyr/kernel/CMakeFiles/kernel.dir/mutex.c.obj zephyr/kernel/CMakeFiles/kernel.dir/queue.c.obj zephyr/kernel/CMakeFiles/kernel.dir/sem.c.obj zephyr/kernel/CMakeFiles/kernel.dir/stack.c.obj zephyr/kernel/CMakeFiles/kernel.dir/system_work_q.c.obj zephyr/kernel/CMakeFiles/kernel.dir/work.c.obj zephyr/kernel/CMakeFiles/kernel.dir/condvar.c.obj zephyr/kernel/CMakeFiles/kernel.dir/priority_queues.c.obj zephyr/kernel/CMakeFiles/kernel.dir/thread.c.obj zephyr/kernel/CMakeFiles/kernel.dir/sched.c.obj zephyr/kernel/CMakeFiles/kernel.dir/timeslicing.c.obj zephyr/kernel/CMakeFiles/kernel.dir/spinlock_validate.c.obj zephyr/kernel/CMakeFiles/kernel.dir/xip.c.obj zephyr/kernel/CMakeFiles/kernel.dir/timeout.c.obj zephyr/kernel/CMakeFiles/kernel.dir/timer.c.obj zephyr/kernel/CMakeFiles/kernel.dir/mempool.c.obj zephyr/kernel/CMakeFiles/kernel.dir/dynamic_disabled.c.obj || zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/syscall_list_h_target zephyr/zephyr_generated_headers + OBJECT_DIR = zephyr/kernel/CMakeFiles/kernel.dir + POST_BUILD = : + PRE_LINK = : + TARGET_FILE = zephyr/kernel/libkernel.a + TARGET_PDB = kernel.a.dbg + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/cmake/flash/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/cmake/flash && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/cmake/flash/edit_cache: phony zephyr/cmake/flash/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rtt + +build zephyr/cmake/flash/rtt: phony zephyr/cmake/flash/CMakeFiles/rtt + + +############################################# +# Utility command for flash + +build zephyr/cmake/flash/flash: phony zephyr/cmake/flash/CMakeFiles/flash + + +############################################# +# Utility command for debug + +build zephyr/cmake/flash/debug: phony zephyr/cmake/flash/CMakeFiles/debug + + +############################################# +# Utility command for debugserver + +build zephyr/cmake/flash/debugserver: phony zephyr/cmake/flash/CMakeFiles/debugserver + + +############################################# +# Utility command for rebuild_cache + +build zephyr/cmake/flash/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/cmake/flash && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/cmake/flash/rebuild_cache: phony zephyr/cmake/flash/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for attach + +build zephyr/cmake/flash/attach: phony zephyr/cmake/flash/CMakeFiles/attach + + +############################################# +# Custom command for zephyr/cmake/flash/CMakeFiles/rtt + +build zephyr/cmake/flash/CMakeFiles/rtt | ${cmake_ninja_workdir}zephyr/cmake/flash/CMakeFiles/rtt: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -DTARGET=rtt -DDEPENDENCIES="" -P /home/miguel/ncs/v3.0.2/zephyr/cmake/flash/check_runner_dependencies.cmake && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E env /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/python -m west rtt + DESC = RTT phf000_board + pool = console + + +############################################# +# Custom command for zephyr/cmake/flash/CMakeFiles/flash + +build zephyr/cmake/flash/CMakeFiles/flash | ${cmake_ninja_workdir}zephyr/cmake/flash/CMakeFiles/flash: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -DTARGET=flash -DDEPENDENCIES="" -P /home/miguel/ncs/v3.0.2/zephyr/cmake/flash/check_runner_dependencies.cmake && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E env /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/python -m west flash + DESC = Flashing phf000_board + pool = console + + +############################################# +# Custom command for zephyr/cmake/flash/CMakeFiles/debug + +build zephyr/cmake/flash/CMakeFiles/debug | ${cmake_ninja_workdir}zephyr/cmake/flash/CMakeFiles/debug: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -DTARGET=debug -DDEPENDENCIES="" -P /home/miguel/ncs/v3.0.2/zephyr/cmake/flash/check_runner_dependencies.cmake && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E env /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/python -m west debug + DESC = Debugging phf000_board + pool = console + + +############################################# +# Custom command for zephyr/cmake/flash/CMakeFiles/debugserver + +build zephyr/cmake/flash/CMakeFiles/debugserver | ${cmake_ninja_workdir}zephyr/cmake/flash/CMakeFiles/debugserver: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -DTARGET=debugserver -DDEPENDENCIES="" -P /home/miguel/ncs/v3.0.2/zephyr/cmake/flash/check_runner_dependencies.cmake && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E env /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/python -m west debugserver + DESC = Debugging phf000_board + pool = console + + +############################################# +# Custom command for zephyr/cmake/flash/CMakeFiles/attach + +build zephyr/cmake/flash/CMakeFiles/attach | ${cmake_ninja_workdir}zephyr/cmake/flash/CMakeFiles/attach: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -DTARGET=attach -DDEPENDENCIES="" -P /home/miguel/ncs/v3.0.2/zephyr/cmake/flash/check_runner_dependencies.cmake && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E env /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/python -m west attach + DESC = Debugging phf000_board + pool = console + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/cmake/usage/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/cmake/usage && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/cmake/usage/edit_cache: phony zephyr/cmake/usage/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/cmake/usage/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/cmake/usage && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/cmake/usage/rebuild_cache: phony zephyr/cmake/usage/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for usage + +build zephyr/cmake/usage/usage: phony zephyr/cmake/usage/CMakeFiles/usage + + +############################################# +# Custom command for zephyr/cmake/usage/CMakeFiles/usage + +build zephyr/cmake/usage/CMakeFiles/usage | ${cmake_ninja_workdir}zephyr/cmake/usage/CMakeFiles/usage: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/cmake/usage && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -DZEPHYR_BASE=/home/miguel/ncs/v3.0.2/zephyr -DCMAKE_MAKE_PROGRAM=/home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/ninja -P /home/miguel/ncs/v3.0.2/zephyr/cmake/usage/usage.cmake + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build zephyr/cmake/reports/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/cmake/reports && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/cmake/reports/rebuild_cache: phony zephyr/cmake/reports/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for rom_report + +build zephyr/cmake/reports/rom_report: phony zephyr/cmake/reports/CMakeFiles/rom_report zephyr/zephyr.elf + + +############################################# +# Utility command for ram_report + +build zephyr/cmake/reports/ram_report: phony zephyr/cmake/reports/CMakeFiles/ram_report zephyr/zephyr.elf + + +############################################# +# Utility command for footprint + +build zephyr/cmake/reports/footprint: phony zephyr/cmake/reports/CMakeFiles/footprint zephyr/cmake/reports/ram_report zephyr/cmake/reports/rom_report + + +############################################# +# Utility command for edit_cache + +build zephyr/cmake/reports/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/cmake/reports && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/Documents/GardenProject/Software/PHF000-Firmware -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/cmake/reports/edit_cache: phony zephyr/cmake/reports/CMakeFiles/edit_cache.util + + +############################################# +# Custom command for zephyr/cmake/reports/CMakeFiles/rom_report + +build zephyr/cmake/reports/CMakeFiles/rom_report | ${cmake_ninja_workdir}zephyr/cmake/reports/CMakeFiles/rom_report: CUSTOM_COMMAND zephyr/zephyr.elf || app/libapp.a modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a modules/nrf/ncs_commit_h modules/nrf/ncs_version_h modules/nrf/zephyr_commit_h modules/segger/libmodules__segger.a zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a zephyr/arch/arch/arm/core/libarch__arm__core.a zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a zephyr/arch/common/libarch__common.a zephyr/arch/common/libisr_tables.a zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/drivers/adc/libdrivers__adc.a zephyr/drivers/clock_control/libdrivers__clock_control.a zephyr/drivers/console/libdrivers__console.a zephyr/drivers/gpio/libdrivers__gpio.a zephyr/drivers/hwinfo/libdrivers__hwinfo.a zephyr/drivers/pinctrl/libdrivers__pinctrl.a zephyr/drivers/sensor/nordic/temp/libdrivers__sensor__nordic__temp.a zephyr/drivers/serial/libdrivers__serial.a zephyr/drivers/timer/libdrivers__timer.a zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a zephyr/drivers/usb/device/libdrivers__usb__device.a zephyr/kernel/libkernel.a zephyr/kobj_types_h_target zephyr/lib/libc/common/liblib__libc__common.a zephyr/lib/libc/picolibc/liblib__libc__picolibc.a zephyr/libzephyr.a zephyr/linker_zephyr_final_script_target zephyr/linker_zephyr_prebuilt_script_target zephyr/offsets zephyr/offsets_h zephyr/parse_syscalls_target zephyr/soc/soc/nrf52833/libsoc__nordic.a zephyr/syscall_list_h_target zephyr/version_h zephyr/zephyr.elf zephyr/zephyr_generated_headers zephyr/zephyr_pre0.elf + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/python /home/miguel/ncs/v3.0.2/zephyr/scripts/footprint/size_report -k /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/zephyr.elf -z /home/miguel/ncs/v3.0.2/zephyr -o /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware --workspace=/home/miguel/ncs/v3.0.2 -d 99 rom + pool = console + + +############################################# +# Custom command for zephyr/cmake/reports/CMakeFiles/ram_report + +build zephyr/cmake/reports/CMakeFiles/ram_report | ${cmake_ninja_workdir}zephyr/cmake/reports/CMakeFiles/ram_report: CUSTOM_COMMAND zephyr/zephyr.elf || app/libapp.a modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a modules/nrf/ncs_commit_h modules/nrf/ncs_version_h modules/nrf/zephyr_commit_h modules/segger/libmodules__segger.a zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a zephyr/arch/arch/arm/core/libarch__arm__core.a zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a zephyr/arch/common/libarch__common.a zephyr/arch/common/libisr_tables.a zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/drivers/adc/libdrivers__adc.a zephyr/drivers/clock_control/libdrivers__clock_control.a zephyr/drivers/console/libdrivers__console.a zephyr/drivers/gpio/libdrivers__gpio.a zephyr/drivers/hwinfo/libdrivers__hwinfo.a zephyr/drivers/pinctrl/libdrivers__pinctrl.a zephyr/drivers/sensor/nordic/temp/libdrivers__sensor__nordic__temp.a zephyr/drivers/serial/libdrivers__serial.a zephyr/drivers/timer/libdrivers__timer.a zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a zephyr/drivers/usb/device/libdrivers__usb__device.a zephyr/kernel/libkernel.a zephyr/kobj_types_h_target zephyr/lib/libc/common/liblib__libc__common.a zephyr/lib/libc/picolibc/liblib__libc__picolibc.a zephyr/libzephyr.a zephyr/linker_zephyr_final_script_target zephyr/linker_zephyr_prebuilt_script_target zephyr/offsets zephyr/offsets_h zephyr/parse_syscalls_target zephyr/soc/soc/nrf52833/libsoc__nordic.a zephyr/syscall_list_h_target zephyr/version_h zephyr/zephyr.elf zephyr/zephyr_generated_headers zephyr/zephyr_pre0.elf + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/python /home/miguel/ncs/v3.0.2/zephyr/scripts/footprint/size_report -k /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/zephyr.elf -z /home/miguel/ncs/v3.0.2/zephyr -o /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware --workspace=/home/miguel/ncs/v3.0.2 -d 99 ram + pool = console + + +############################################# +# Phony custom command for zephyr/cmake/reports/CMakeFiles/footprint + +build zephyr/cmake/reports/CMakeFiles/footprint | ${cmake_ninja_workdir}zephyr/cmake/reports/CMakeFiles/footprint: phony || app/libapp.a modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a modules/nrf/ncs_commit_h modules/nrf/ncs_version_h modules/nrf/zephyr_commit_h modules/segger/libmodules__segger.a zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a zephyr/arch/arch/arm/core/libarch__arm__core.a zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a zephyr/arch/common/libarch__common.a zephyr/arch/common/libisr_tables.a zephyr/cmake/reports/ram_report zephyr/cmake/reports/rom_report zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/drivers/adc/libdrivers__adc.a zephyr/drivers/clock_control/libdrivers__clock_control.a zephyr/drivers/console/libdrivers__console.a zephyr/drivers/gpio/libdrivers__gpio.a zephyr/drivers/hwinfo/libdrivers__hwinfo.a zephyr/drivers/pinctrl/libdrivers__pinctrl.a zephyr/drivers/sensor/nordic/temp/libdrivers__sensor__nordic__temp.a zephyr/drivers/serial/libdrivers__serial.a zephyr/drivers/timer/libdrivers__timer.a zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a zephyr/drivers/usb/device/libdrivers__usb__device.a zephyr/kernel/libkernel.a zephyr/kobj_types_h_target zephyr/lib/libc/common/liblib__libc__common.a zephyr/lib/libc/picolibc/liblib__libc__picolibc.a zephyr/libzephyr.a zephyr/linker_zephyr_final_script_target zephyr/linker_zephyr_prebuilt_script_target zephyr/offsets zephyr/offsets_h zephyr/parse_syscalls_target zephyr/soc/soc/nrf52833/libsoc__nordic.a zephyr/syscall_list_h_target zephyr/version_h zephyr/zephyr.elf zephyr/zephyr_generated_headers zephyr/zephyr_pre0.elf + +# ============================================================================= +# Target aliases. + +build app: phony app/libapp.a + +build arch__arm__core: phony zephyr/arch/arch/arm/core/libarch__arm__core.a + +build arch__arm__core__cortex_m: phony zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a + +build arch__arm__core__mpu: phony zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a + +build arch__common: phony zephyr/arch/common/libarch__common.a + +build attach: phony zephyr/cmake/flash/attach + +build build_info_yaml_saved: phony zephyr/build_info_yaml_saved + +build debug: phony zephyr/cmake/flash/debug + +build debugserver: phony zephyr/cmake/flash/debugserver + +build device_api_ld_target: phony zephyr/device_api_ld_target + +build driver_validation_h_target: phony zephyr/driver_validation_h_target + +build drivers__adc: phony zephyr/drivers/adc/libdrivers__adc.a + +build drivers__clock_control: phony zephyr/drivers/clock_control/libdrivers__clock_control.a + +build drivers__console: phony zephyr/drivers/console/libdrivers__console.a + +build drivers__gpio: phony zephyr/drivers/gpio/libdrivers__gpio.a + +build drivers__hwinfo: phony zephyr/drivers/hwinfo/libdrivers__hwinfo.a + +build drivers__interrupt_controller: phony zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a + +build drivers__pinctrl: phony zephyr/drivers/pinctrl/libdrivers__pinctrl.a + +build drivers__sensor: phony zephyr/drivers/sensor/libdrivers__sensor.a + +build drivers__sensor__nordic__temp: phony zephyr/drivers/sensor/nordic/temp/libdrivers__sensor__nordic__temp.a + +build drivers__serial: phony zephyr/drivers/serial/libdrivers__serial.a + +build drivers__timer: phony zephyr/drivers/timer/libdrivers__timer.a + +build drivers__usb__common__nrf_usbd_common: phony zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a + +build drivers__usb__device: phony zephyr/drivers/usb/device/libdrivers__usb__device.a + +build flash: phony zephyr/cmake/flash/flash + +build footprint: phony zephyr/cmake/reports/footprint + +build initlevels: phony zephyr/initlevels + +build isr_tables: phony zephyr/arch/common/libisr_tables.a + +build kernel: phony zephyr/kernel/libkernel.a + +build kobj_types_h_target: phony zephyr/kobj_types_h_target + +build lib__libc__common: phony zephyr/lib/libc/common/liblib__libc__common.a + +build lib__libc__picolibc: phony zephyr/lib/libc/picolibc/liblib__libc__picolibc.a + +build lib__posix__options: phony zephyr/lib/posix/options/liblib__posix__options.a + +build libapp.a: phony app/libapp.a + +build libarch__arm__core.a: phony zephyr/arch/arch/arm/core/libarch__arm__core.a + +build libarch__arm__core__cortex_m.a: phony zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a + +build libarch__arm__core__mpu.a: phony zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a + +build libarch__common.a: phony zephyr/arch/common/libarch__common.a + +build libdrivers__adc.a: phony zephyr/drivers/adc/libdrivers__adc.a + +build libdrivers__clock_control.a: phony zephyr/drivers/clock_control/libdrivers__clock_control.a + +build libdrivers__console.a: phony zephyr/drivers/console/libdrivers__console.a + +build libdrivers__gpio.a: phony zephyr/drivers/gpio/libdrivers__gpio.a + +build libdrivers__hwinfo.a: phony zephyr/drivers/hwinfo/libdrivers__hwinfo.a + +build libdrivers__interrupt_controller.a: phony zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a + +build libdrivers__pinctrl.a: phony zephyr/drivers/pinctrl/libdrivers__pinctrl.a + +build libdrivers__sensor.a: phony zephyr/drivers/sensor/libdrivers__sensor.a + +build libdrivers__sensor__nordic__temp.a: phony zephyr/drivers/sensor/nordic/temp/libdrivers__sensor__nordic__temp.a + +build libdrivers__serial.a: phony zephyr/drivers/serial/libdrivers__serial.a + +build libdrivers__timer.a: phony zephyr/drivers/timer/libdrivers__timer.a + +build libdrivers__usb__common__nrf_usbd_common.a: phony zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a + +build libdrivers__usb__device.a: phony zephyr/drivers/usb/device/libdrivers__usb__device.a + +build libisr_tables.a: phony zephyr/arch/common/libisr_tables.a + +build libkernel.a: phony zephyr/kernel/libkernel.a + +build liblib__libc__common.a: phony zephyr/lib/libc/common/liblib__libc__common.a + +build liblib__libc__picolibc.a: phony zephyr/lib/libc/picolibc/liblib__libc__picolibc.a + +build liblib__posix__options.a: phony zephyr/lib/posix/options/liblib__posix__options.a + +build libmodules__hal_nordic__nrfx.a: phony modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a + +build libmodules__segger.a: phony modules/segger/libmodules__segger.a + +build libsoc__nordic.a: phony zephyr/soc/soc/nrf52833/libsoc__nordic.a + +build libzephyr.a: phony zephyr/libzephyr.a + +build linker_zephyr_final_script_target: phony zephyr/linker_zephyr_final_script_target + +build linker_zephyr_prebuilt_script_target: phony zephyr/linker_zephyr_prebuilt_script_target + +build llext-edk: phony zephyr/llext-edk + +build modules__hal_nordic__nrfx: phony modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a + +build modules__segger: phony modules/segger/libmodules__segger.a + +build ncs_commit_h: phony modules/nrf/ncs_commit_h + +build ncs_version_h: phony modules/nrf/ncs_version_h + +build offsets: phony zephyr/offsets + +build offsets_h: phony zephyr/offsets_h + +build parse_syscalls_target: phony zephyr/parse_syscalls_target + +build ram_report: phony zephyr/cmake/reports/ram_report + +build rom_report: phony zephyr/cmake/reports/rom_report + +build rtt: phony zephyr/cmake/flash/rtt + +build run: phony zephyr/run + +build soc__nordic: phony zephyr/soc/soc/nrf52833/libsoc__nordic.a + +build syscall_list_h_target: phony zephyr/syscall_list_h_target + +build usage: phony zephyr/cmake/usage/usage + +build version_h: phony zephyr/version_h + +build zephyr: phony zephyr/libzephyr.a + +build zephyr.elf: phony zephyr/zephyr.elf + +build zephyr_commit_h: phony modules/nrf/zephyr_commit_h + +build zephyr_final: phony zephyr/zephyr.elf + +build zephyr_generated_headers: phony zephyr/zephyr_generated_headers + +build zephyr_pre0: phony zephyr/zephyr_pre0.elf + +build zephyr_pre0.elf: phony zephyr/zephyr_pre0.elf + +# ============================================================================= +# Folder targets. + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware + +build all: phony app/libapp.a zephyr/all + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/azure-sdk-for-c + +build modules/azure-sdk-for-c/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/canopennode + +build modules/canopennode/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/chre + +build modules/chre/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/cirrus-logic + +build modules/cirrus-logic/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/cjson + +build modules/cjson/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/cmsis + +build modules/cmsis/all: phony modules/cmsis/cmsis/all + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/cmsis-dsp + +build modules/cmsis-dsp/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/cmsis-nn + +build modules/cmsis-nn/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/cmsis/cmsis + +build modules/cmsis/cmsis/all: phony modules/cmsis/cmsis/CMSIS/all + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/cmsis/cmsis/CMSIS + +build modules/cmsis/cmsis/CMSIS/all: phony modules/cmsis/cmsis/CMSIS/Core/all + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/cmsis/cmsis/CMSIS/Core + +build modules/cmsis/cmsis/CMSIS/Core/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/connectedhomeip + +build modules/connectedhomeip/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/fatfs + +build modules/fatfs/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/hal_nordic + +build modules/hal_nordic/all: phony modules/hal_nordic/modules/hal_nordic/all modules/hal_nordic/nrfx/all + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/hal_nordic/modules/hal_nordic + +build modules/hal_nordic/modules/hal_nordic/all: phony modules/hal_nordic/modules/hal_nordic/nrfx/all + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/hal_nordic/modules/hal_nordic/nrfx + +build modules/hal_nordic/modules/hal_nordic/nrfx/all: phony modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/hal_nordic/nrfx + +build modules/hal_nordic/nrfx/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/hal_st + +build modules/hal_st/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/hal_tdk + +build modules/hal_tdk/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/hal_wurthelektronik + +build modules/hal_wurthelektronik/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/hostap + +build modules/hostap/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/liblc3 + +build modules/liblc3/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/libmetal + +build modules/libmetal/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/littlefs + +build modules/littlefs/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/loramac-node + +build modules/loramac-node/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/lvgl + +build modules/lvgl/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/lz4 + +build modules/lz4/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/mbedtls + +build modules/mbedtls/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/mcuboot + +build modules/mcuboot/all: phony modules/mcuboot/boot/bootutil/zephyr/all + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/mcuboot/boot/bootutil/zephyr + +build modules/mcuboot/boot/bootutil/zephyr/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/memfault-firmware-sdk + +build modules/memfault-firmware-sdk/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/mipi-sys-t + +build modules/mipi-sys-t/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nanopb + +build modules/nanopb/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf + +build modules/nrf/all: phony modules/nrf/ext/all modules/nrf/lib/all modules/nrf/samples/all modules/nrf/subsys/all modules/nrf/modules/all modules/nrf/drivers/all modules/nrf/tests/all + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/drivers + +build modules/nrf/drivers/all: phony modules/nrf/drivers/entropy/all modules/nrf/drivers/flash/all modules/nrf/drivers/gpio/all modules/nrf/drivers/hw_cc3xx/all modules/nrf/drivers/mpsl/all modules/nrf/drivers/sensor/all modules/nrf/drivers/serial/all + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/drivers/entropy + +build modules/nrf/drivers/entropy/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/drivers/flash + +build modules/nrf/drivers/flash/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/drivers/gpio + +build modules/nrf/drivers/gpio/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/drivers/hw_cc3xx + +build modules/nrf/drivers/hw_cc3xx/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/drivers/mpsl + +build modules/nrf/drivers/mpsl/all: phony modules/nrf/drivers/mpsl/flash_sync/all + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/drivers/mpsl/flash_sync + +build modules/nrf/drivers/mpsl/flash_sync/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/drivers/sensor + +build modules/nrf/drivers/sensor/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/drivers/serial + +build modules/nrf/drivers/serial/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/ext + +build modules/nrf/ext/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/lib + +build modules/nrf/lib/all: phony modules/nrf/lib/bin/all modules/nrf/lib/flash_patch/all modules/nrf/lib/fatal_error/all modules/nrf/lib/boot_banner/all + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/lib/bin + +build modules/nrf/lib/bin/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/lib/boot_banner + +build modules/nrf/lib/boot_banner/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/lib/fatal_error + +build modules/nrf/lib/fatal_error/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/lib/flash_patch + +build modules/nrf/lib/flash_patch/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/modules + +build modules/nrf/modules/all: phony modules/nrf/modules/wfa-qt/all + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/modules/wfa-qt + +build modules/nrf/modules/wfa-qt/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/samples + +build modules/nrf/samples/all: phony modules/nrf/samples/common/all + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/samples/common + +build modules/nrf/samples/common/all: phony modules/nrf/samples/common/mcumgr_bt_ota_dfu/all + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/samples/common/mcumgr_bt_ota_dfu + +build modules/nrf/samples/common/mcumgr_bt_ota_dfu/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/subsys + +build modules/nrf/subsys/all: phony modules/nrf/subsys/net/all modules/nrf/subsys/dfu/all modules/nrf/subsys/mpsl/all modules/nrf/subsys/logging/all modules/nrf/subsys/shell/all modules/nrf/subsys/debug/all modules/nrf/subsys/partition_manager/all modules/nrf/subsys/suit/all modules/nrf/subsys/mgmt/mcumgr/all + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/subsys/debug + +build modules/nrf/subsys/debug/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/subsys/dfu + +build modules/nrf/subsys/dfu/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/subsys/logging + +build modules/nrf/subsys/logging/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/subsys/mgmt/mcumgr + +build modules/nrf/subsys/mgmt/mcumgr/all: phony modules/nrf/subsys/mgmt/mcumgr/grp/all + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/subsys/mgmt/mcumgr/grp + +build modules/nrf/subsys/mgmt/mcumgr/grp/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/subsys/mpsl + +build modules/nrf/subsys/mpsl/all: phony modules/nrf/subsys/mpsl/cx/all + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/subsys/mpsl/cx + +build modules/nrf/subsys/mpsl/cx/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/subsys/net + +build modules/nrf/subsys/net/all: phony modules/nrf/subsys/net/lib/all + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/subsys/net/lib + +build modules/nrf/subsys/net/lib/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/subsys/partition_manager + +build modules/nrf/subsys/partition_manager/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/subsys/shell + +build modules/nrf/subsys/shell/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/subsys/suit + +build modules/nrf/subsys/suit/all: phony modules/nrf/subsys/suit/app_tools/all + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/subsys/suit/app_tools + +build modules/nrf/subsys/suit/app_tools/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/tests + +build modules/nrf/tests/all: phony modules/nrf/tests/mocks/all + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/tests/mocks + +build modules/nrf/tests/mocks/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf_hw_models + +build modules/nrf_hw_models/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf_wifi + +build modules/nrf_wifi/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrfxlib + +build modules/nrfxlib/all: phony modules/nrfxlib/nrfxlib/all modules/nrfxlib/nrf_802154/all + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrfxlib/nrf_802154 + +build modules/nrfxlib/nrf_802154/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrfxlib/nrfxlib + +build modules/nrfxlib/nrfxlib/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/open-amp + +build modules/open-amp/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/openthread + +build modules/openthread/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/percepio + +build modules/percepio/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/picolibc + +build modules/picolibc/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/segger + +build modules/segger/all: phony modules/segger/libmodules__segger.a + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/suit-processor + +build modules/suit-processor/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/tinycrypt + +build modules/tinycrypt/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/trusted-firmware-m + +build modules/trusted-firmware-m/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/uoscore-uedhoc + +build modules/uoscore-uedhoc/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/zcbor + +build modules/zcbor/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/zscilib + +build modules/zscilib/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr + +build zephyr/all: phony zephyr/build_info_yaml_saved zephyr/zephyr.elf zephyr/libzephyr.a zephyr/zephyr_pre0.elf zephyr/offsets zephyr/arch/all zephyr/lib/all zephyr/soc/all zephyr/boards/all zephyr/subsys/all zephyr/drivers/all modules/nrf/all modules/hostap/all modules/mcuboot/all modules/mbedtls/all modules/trusted-firmware-m/all modules/cjson/all modules/azure-sdk-for-c/all modules/cirrus-logic/all modules/openthread/all modules/suit-processor/all modules/memfault-firmware-sdk/all modules/canopennode/all modules/chre/all modules/lz4/all modules/nanopb/all modules/zscilib/all modules/cmsis/all modules/cmsis-dsp/all modules/cmsis-nn/all modules/fatfs/all modules/hal_nordic/all modules/hal_st/all modules/hal_tdk/all modules/hal_wurthelektronik/all modules/liblc3/all modules/libmetal/all modules/littlefs/all modules/loramac-node/all modules/lvgl/all modules/mipi-sys-t/all modules/nrf_wifi/all modules/open-amp/all modules/percepio/all modules/picolibc/all modules/segger/all modules/tinycrypt/all modules/uoscore-uedhoc/all modules/zcbor/all modules/nrfxlib/all modules/nrf_hw_models/all modules/connectedhomeip/all zephyr/kernel/all zephyr/cmake/flash/all zephyr/cmake/usage/all zephyr/cmake/reports/all + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/arch + +build zephyr/arch/all: phony zephyr/arch/common/all zephyr/arch/arch/arm/all + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/arch/arch/arm + +build zephyr/arch/arch/arm/all: phony zephyr/arch/arch/arm/core/all + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/arch/arch/arm/core + +build zephyr/arch/arch/arm/core/all: phony zephyr/arch/arch/arm/core/libarch__arm__core.a zephyr/arch/arch/arm/core/cortex_m/all zephyr/arch/arch/arm/core/mpu/all + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/arch/arch/arm/core/cortex_m + +build zephyr/arch/arch/arm/core/cortex_m/all: phony zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/arch/arch/arm/core/mpu + +build zephyr/arch/arch/arm/core/mpu/all: phony zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/arch/common + +build zephyr/arch/common/all: phony zephyr/arch/common/libisr_tables.a zephyr/arch/common/libarch__common.a + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/boards + +build zephyr/boards/all: phony zephyr/boards/shields/all + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/boards/shields + +build zephyr/boards/shields/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/cmake/flash + +build zephyr/cmake/flash/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/cmake/reports + +build zephyr/cmake/reports/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/cmake/usage + +build zephyr/cmake/usage/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers + +build zephyr/drivers/all: phony zephyr/drivers/disk/all zephyr/drivers/firmware/all zephyr/drivers/interrupt_controller/all zephyr/drivers/misc/all zephyr/drivers/pcie/all zephyr/drivers/usb/all zephyr/drivers/usb_c/all zephyr/drivers/adc/all zephyr/drivers/clock_control/all zephyr/drivers/console/all zephyr/drivers/gpio/all zephyr/drivers/hwinfo/all zephyr/drivers/pinctrl/all zephyr/drivers/sensor/all zephyr/drivers/serial/all zephyr/drivers/timer/all + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/adc + +build zephyr/drivers/adc/all: phony zephyr/drivers/adc/libdrivers__adc.a + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/clock_control + +build zephyr/drivers/clock_control/all: phony zephyr/drivers/clock_control/libdrivers__clock_control.a + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/console + +build zephyr/drivers/console/all: phony zephyr/drivers/console/libdrivers__console.a + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/disk + +build zephyr/drivers/disk/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/firmware + +build zephyr/drivers/firmware/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/gpio + +build zephyr/drivers/gpio/all: phony zephyr/drivers/gpio/libdrivers__gpio.a + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/hwinfo + +build zephyr/drivers/hwinfo/all: phony zephyr/drivers/hwinfo/libdrivers__hwinfo.a + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/interrupt_controller + +build zephyr/drivers/interrupt_controller/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/misc + +build zephyr/drivers/misc/all: phony zephyr/drivers/misc/coresight/all + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/misc/coresight + +build zephyr/drivers/misc/coresight/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/pcie + +build zephyr/drivers/pcie/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/pinctrl + +build zephyr/drivers/pinctrl/all: phony zephyr/drivers/pinctrl/libdrivers__pinctrl.a zephyr/drivers/pinctrl/renesas/all + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/pinctrl/renesas + +build zephyr/drivers/pinctrl/renesas/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor + +build zephyr/drivers/sensor/all: phony zephyr/drivers/sensor/adi/all zephyr/drivers/sensor/ams/all zephyr/drivers/sensor/aosong/all zephyr/drivers/sensor/asahi_kasei/all zephyr/drivers/sensor/bosch/all zephyr/drivers/sensor/espressif/all zephyr/drivers/sensor/honeywell/all zephyr/drivers/sensor/infineon/all zephyr/drivers/sensor/ite/all zephyr/drivers/sensor/jedec/all zephyr/drivers/sensor/maxim/all zephyr/drivers/sensor/meas/all zephyr/drivers/sensor/memsic/all zephyr/drivers/sensor/microchip/all zephyr/drivers/sensor/nordic/all zephyr/drivers/sensor/nuvoton/all zephyr/drivers/sensor/nxp/all zephyr/drivers/sensor/renesas/all zephyr/drivers/sensor/rohm/all zephyr/drivers/sensor/seeed/all zephyr/drivers/sensor/sensirion/all zephyr/drivers/sensor/silabs/all zephyr/drivers/sensor/st/all zephyr/drivers/sensor/tdk/all zephyr/drivers/sensor/ti/all zephyr/drivers/sensor/vishay/all zephyr/drivers/sensor/wsen/all + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/adi + +build zephyr/drivers/sensor/adi/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/ams + +build zephyr/drivers/sensor/ams/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/aosong + +build zephyr/drivers/sensor/aosong/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/asahi_kasei + +build zephyr/drivers/sensor/asahi_kasei/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/bosch + +build zephyr/drivers/sensor/bosch/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/espressif + +build zephyr/drivers/sensor/espressif/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/honeywell + +build zephyr/drivers/sensor/honeywell/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/infineon + +build zephyr/drivers/sensor/infineon/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/ite + +build zephyr/drivers/sensor/ite/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/jedec + +build zephyr/drivers/sensor/jedec/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/maxim + +build zephyr/drivers/sensor/maxim/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/meas + +build zephyr/drivers/sensor/meas/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/memsic + +build zephyr/drivers/sensor/memsic/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/microchip + +build zephyr/drivers/sensor/microchip/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/nordic + +build zephyr/drivers/sensor/nordic/all: phony zephyr/drivers/sensor/nordic/temp/all + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/nordic/temp + +build zephyr/drivers/sensor/nordic/temp/all: phony zephyr/drivers/sensor/nordic/temp/libdrivers__sensor__nordic__temp.a + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/nuvoton + +build zephyr/drivers/sensor/nuvoton/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/nxp + +build zephyr/drivers/sensor/nxp/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/renesas + +build zephyr/drivers/sensor/renesas/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/rohm + +build zephyr/drivers/sensor/rohm/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/seeed + +build zephyr/drivers/sensor/seeed/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/sensirion + +build zephyr/drivers/sensor/sensirion/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/silabs + +build zephyr/drivers/sensor/silabs/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/st + +build zephyr/drivers/sensor/st/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/tdk + +build zephyr/drivers/sensor/tdk/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/ti + +build zephyr/drivers/sensor/ti/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/vishay + +build zephyr/drivers/sensor/vishay/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/wsen + +build zephyr/drivers/sensor/wsen/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/serial + +build zephyr/drivers/serial/all: phony zephyr/drivers/serial/libdrivers__serial.a + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/timer + +build zephyr/drivers/timer/all: phony zephyr/drivers/timer/libdrivers__timer.a + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/usb + +build zephyr/drivers/usb/all: phony zephyr/drivers/usb/device/all zephyr/drivers/usb/common/all + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/usb/common + +build zephyr/drivers/usb/common/all: phony zephyr/drivers/usb/common/nrf_usbd_common/all + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/usb/common/nrf_usbd_common + +build zephyr/drivers/usb/common/nrf_usbd_common/all: phony zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/usb/device + +build zephyr/drivers/usb/device/all: phony zephyr/drivers/usb/device/libdrivers__usb__device.a + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/usb_c + +build zephyr/drivers/usb_c/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/kernel + +build zephyr/kernel/all: phony zephyr/kernel/libkernel.a + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/lib + +build zephyr/lib/all: phony zephyr/lib/crc/all zephyr/lib/libc/all zephyr/lib/posix/all zephyr/lib/hash/all zephyr/lib/heap/all zephyr/lib/mem_blocks/all zephyr/lib/os/all zephyr/lib/utils/all + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/lib/crc + +build zephyr/lib/crc/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/lib/hash + +build zephyr/lib/hash/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/lib/heap + +build zephyr/lib/heap/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/lib/libc + +build zephyr/lib/libc/all: phony zephyr/lib/libc/picolibc/all zephyr/lib/libc/common/all + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/lib/libc/common + +build zephyr/lib/libc/common/all: phony zephyr/lib/libc/common/liblib__libc__common.a + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/lib/libc/picolibc + +build zephyr/lib/libc/picolibc/all: phony zephyr/lib/libc/picolibc/liblib__libc__picolibc.a + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/lib/mem_blocks + +build zephyr/lib/mem_blocks/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/lib/os + +build zephyr/lib/os/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/lib/posix + +build zephyr/lib/posix/all: phony zephyr/lib/posix/options/all + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/lib/posix/options + +build zephyr/lib/posix/options/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/lib/utils + +build zephyr/lib/utils/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/soc + +build zephyr/soc/all: phony zephyr/soc/common/all zephyr/soc/soc/nrf52833/all + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/soc/common + +build zephyr/soc/common/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/soc/soc/nrf52833 + +build zephyr/soc/soc/nrf52833/all: phony zephyr/soc/soc/nrf52833/libsoc__nordic.a zephyr/soc/soc/nrf52833/nrf52/all zephyr/soc/soc/nrf52833/common/all + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/soc/soc/nrf52833/common + +build zephyr/soc/soc/nrf52833/common/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/soc/soc/nrf52833/nrf52 + +build zephyr/soc/soc/nrf52833/nrf52/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys + +build zephyr/subsys/all: phony zephyr/subsys/canbus/all zephyr/subsys/debug/all zephyr/subsys/fb/all zephyr/subsys/fs/all zephyr/subsys/ipc/all zephyr/subsys/logging/all zephyr/subsys/mem_mgmt/all zephyr/subsys/mgmt/all zephyr/subsys/modbus/all zephyr/subsys/pm/all zephyr/subsys/portability/all zephyr/subsys/random/all zephyr/subsys/rtio/all zephyr/subsys/sd/all zephyr/subsys/stats/all zephyr/subsys/storage/all zephyr/subsys/task_wdt/all zephyr/subsys/testsuite/all zephyr/subsys/tracing/all zephyr/subsys/usb/all + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/canbus + +build zephyr/subsys/canbus/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/debug + +build zephyr/subsys/debug/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/fb + +build zephyr/subsys/fb/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/fs + +build zephyr/subsys/fs/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/ipc + +build zephyr/subsys/ipc/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/logging + +build zephyr/subsys/logging/all: phony zephyr/subsys/logging/backends/all zephyr/subsys/logging/frontends/all + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/logging/backends + +build zephyr/subsys/logging/backends/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/logging/frontends + +build zephyr/subsys/logging/frontends/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/mem_mgmt + +build zephyr/subsys/mem_mgmt/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/mgmt + +build zephyr/subsys/mgmt/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/modbus + +build zephyr/subsys/modbus/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/pm + +build zephyr/subsys/pm/all: phony zephyr/subsys/pm/policy/all + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/pm/policy + +build zephyr/subsys/pm/policy/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/portability + +build zephyr/subsys/portability/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/random + +build zephyr/subsys/random/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/rtio + +build zephyr/subsys/rtio/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/sd + +build zephyr/subsys/sd/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/stats + +build zephyr/subsys/stats/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/storage + +build zephyr/subsys/storage/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/task_wdt + +build zephyr/subsys/task_wdt/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/testsuite + +build zephyr/subsys/testsuite/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/tracing + +build zephyr/subsys/tracing/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/usb + +build zephyr/subsys/usb/all: phony zephyr/subsys/usb/device/all + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/usb/device + +build zephyr/subsys/usb/device/all: phony zephyr/subsys/usb/device/class/all + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/usb/device/class + +build zephyr/subsys/usb/device/class/all: phony + +# ============================================================================= +# Built-in targets + + +############################################# +# Re-run CMake if any of its inputs changed. + +build build.ninja: RERUN_CMAKE | ../../CMakeLists.txt ../../boards/Mi_labs/phf000_board/Kconfig.phf000_board ../../boards/Mi_labs/phf000_board/board.cmake ../../boards/Mi_labs/phf000_board/board.yml ../../boards/Mi_labs/phf000_board/phf000_board-pinctrl.dtsi ../../boards/Mi_labs/phf000_board/phf000_board.dts ../../boards/Mi_labs/phf000_board/phf000_board_defconfig ../../boards/Mi_labs/phf000_board/pre_dt_board.cmake ../../prj.conf /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/cmake/Zephyr-sdkConfig.cmake /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/cmake/Zephyr-sdkConfigVersion.cmake /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/cmake/zephyr/Kconfig /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/cmake/zephyr/generic.cmake /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/cmake/zephyr/host-tools.cmake /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/cmake/zephyr/target.cmake /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/share/cmake-3.21/Modules/CMakeASMInformation.cmake /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/share/cmake-3.21/Modules/CMakeCInformation.cmake /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/share/cmake-3.21/Modules/CMakeCXXInformation.cmake /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/share/cmake-3.21/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/share/cmake-3.21/Modules/CMakeCommonLanguageInclude.cmake /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/share/cmake-3.21/Modules/CMakeGenericSystem.cmake /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/share/cmake-3.21/Modules/CMakeInitializeConfigs.cmake /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/share/cmake-3.21/Modules/CMakeLanguageInformation.cmake /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/share/cmake-3.21/Modules/CMakeSystemSpecificInformation.cmake /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/share/cmake-3.21/Modules/CMakeSystemSpecificInitialize.cmake /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/share/cmake-3.21/Modules/CheckCCompilerFlag.cmake /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/share/cmake-3.21/Modules/CheckCSourceCompiles.cmake /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/share/cmake-3.21/Modules/CheckCXXCompilerFlag.cmake /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/share/cmake-3.21/Modules/CheckCXXSourceCompiles.cmake /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/share/cmake-3.21/Modules/Compiler/CMakeCommonCompilerMacros.cmake /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/share/cmake-3.21/Modules/Compiler/GNU-ASM.cmake /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/share/cmake-3.21/Modules/Compiler/GNU-C.cmake /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/share/cmake-3.21/Modules/Compiler/GNU-CXX.cmake /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/share/cmake-3.21/Modules/Compiler/GNU.cmake /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/share/cmake-3.21/Modules/FindGit.cmake /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/share/cmake-3.21/Modules/FindPackageHandleStandardArgs.cmake /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/share/cmake-3.21/Modules/FindPackageMessage.cmake /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/share/cmake-3.21/Modules/FindPython/Support.cmake /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/share/cmake-3.21/Modules/FindPython3.cmake /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/share/cmake-3.21/Modules/Internal/CheckCompilerFlag.cmake /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/share/cmake-3.21/Modules/Internal/CheckSourceCompiles.cmake /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/share/cmake-3.21/Modules/Platform/Generic.cmake /home/miguel/ncs/v3.0.2/bootloader/mcuboot/boot/bootutil/zephyr/CMakeLists.txt /home/miguel/ncs/v3.0.2/modules/bsim_hw_models/nrf_hw_models/CMakeLists.txt /home/miguel/ncs/v3.0.2/modules/crypto/oberon-psa-crypto/Kconfig.oberon_psa_crypto /home/miguel/ncs/v3.0.2/modules/crypto/tinycrypt/CMakeLists.txt /home/miguel/ncs/v3.0.2/modules/debug/mipi-sys-t/CMakeLists.txt /home/miguel/ncs/v3.0.2/modules/debug/percepio/DFM/kernelports/Zephyr/Kconfig /home/miguel/ncs/v3.0.2/modules/debug/percepio/DFM/kernelports/Zephyr/storageports/Filesystem/Kconfig /home/miguel/ncs/v3.0.2/modules/debug/percepio/DFM/kernelports/Zephyr/storageports/Flash/Kconfig /home/miguel/ncs/v3.0.2/modules/debug/percepio/TraceRecorder/config/Kconfig /home/miguel/ncs/v3.0.2/modules/debug/percepio/TraceRecorder/kernelports/Zephyr/Kconfig /home/miguel/ncs/v3.0.2/modules/debug/percepio/TraceRecorder/kernelports/Zephyr/streamports/Semihost/Kconfig /home/miguel/ncs/v3.0.2/modules/debug/percepio/TraceRecorder/streamports/ARM_ITM/Kconfig /home/miguel/ncs/v3.0.2/modules/debug/percepio/TraceRecorder/streamports/File/Kconfig /home/miguel/ncs/v3.0.2/modules/debug/percepio/TraceRecorder/streamports/Jlink_RTT/Kconfig /home/miguel/ncs/v3.0.2/modules/debug/percepio/TraceRecorder/streamports/RingBuffer/Kconfig /home/miguel/ncs/v3.0.2/modules/debug/percepio/zephyr/Kconfig /home/miguel/ncs/v3.0.2/modules/hal/cirrus-logic/CMakeLists.txt /home/miguel/ncs/v3.0.2/modules/hal/cirrus-logic/Kconfig /home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/CMakeLists.txt /home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/CMakeLists.txt /home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMakeLists.txt /home/miguel/ncs/v3.0.2/modules/hal/libmetal/CMakeLists.txt /home/miguel/ncs/v3.0.2/modules/hal/st/CMakeLists.txt /home/miguel/ncs/v3.0.2/modules/hal/tdk/CMakeLists.txt /home/miguel/ncs/v3.0.2/modules/hal/wurthelektronik/CMakeLists.txt /home/miguel/ncs/v3.0.2/modules/lib/chre/platform/zephyr/CMakeLists.txt /home/miguel/ncs/v3.0.2/modules/lib/chre/platform/zephyr/Kconfig /home/miguel/ncs/v3.0.2/modules/lib/gui/lvgl/Kconfig /home/miguel/ncs/v3.0.2/modules/lib/gui/lvgl/zephyr/Kconfig /home/miguel/ncs/v3.0.2/modules/lib/matter/config/nrfconnect/chip-module/CMakeLists.txt /home/miguel/ncs/v3.0.2/modules/lib/matter/config/nrfconnect/chip-module/Kconfig /home/miguel/ncs/v3.0.2/modules/lib/matter/config/zephyr/Kconfig /home/miguel/ncs/v3.0.2/modules/lib/memfault-firmware-sdk/ports/zephyr/CMakeLists.txt /home/miguel/ncs/v3.0.2/modules/lib/memfault-firmware-sdk/ports/zephyr/Kconfig /home/miguel/ncs/v3.0.2/modules/lib/memfault-firmware-sdk/ports/zephyr/ncs/Kconfig /home/miguel/ncs/v3.0.2/modules/lib/open-amp/CMakeLists.txt /home/miguel/ncs/v3.0.2/modules/lib/picolibc/CMakeLists.txt /home/miguel/ncs/v3.0.2/modules/lib/picolibc/zephyr/Kconfig /home/miguel/ncs/v3.0.2/modules/lib/suit-generator/ncs/Kconfig /home/miguel/ncs/v3.0.2/modules/lib/suit-processor/Kconfig /home/miguel/ncs/v3.0.2/modules/lib/suit-processor/ncs/CMakeLists.txt /home/miguel/ncs/v3.0.2/modules/lib/zscilib/CMakeLists.txt /home/miguel/ncs/v3.0.2/modules/lib/zscilib/Kconfig.zscilib /home/miguel/ncs/v3.0.2/nrf/CMakeLists.txt /home/miguel/ncs/v3.0.2/nrf/Kconfig.nrf /home/miguel/ncs/v3.0.2/nrf/boards/deprecated.cmake /home/miguel/ncs/v3.0.2/nrf/boards/shields/coverage_support/Kconfig.shield /home/miguel/ncs/v3.0.2/nrf/boards/shields/nrf21540ek/Kconfig.shield /home/miguel/ncs/v3.0.2/nrf/boards/shields/nrf2220ek/Kconfig.shield /home/miguel/ncs/v3.0.2/nrf/boards/shields/nrf2240ek/Kconfig.shield /home/miguel/ncs/v3.0.2/nrf/boards/shields/nrf7002eb2/Kconfig.shield /home/miguel/ncs/v3.0.2/nrf/boards/shields/nrf7002eb_interposer_p1/Kconfig.shield /home/miguel/ncs/v3.0.2/nrf/boards/shields/pca63565/Kconfig.shield /home/miguel/ncs/v3.0.2/nrf/boards/shields/pca63566/Kconfig.shield /home/miguel/ncs/v3.0.2/nrf/cmake/boilerplate.cmake /home/miguel/ncs/v3.0.2/nrf/cmake/extensions.cmake /home/miguel/ncs/v3.0.2/nrf/cmake/hpf.cmake /home/miguel/ncs/v3.0.2/nrf/cmake/modules/kconfig.cmake /home/miguel/ncs/v3.0.2/nrf/cmake/partition_manager.cmake /home/miguel/ncs/v3.0.2/nrf/cmake/version.cmake /home/miguel/ncs/v3.0.2/nrf/cmake/version_app.cmake /home/miguel/ncs/v3.0.2/nrf/drivers/CMakeLists.txt /home/miguel/ncs/v3.0.2/nrf/drivers/Kconfig /home/miguel/ncs/v3.0.2/nrf/drivers/bluetooth/Kconfig /home/miguel/ncs/v3.0.2/nrf/drivers/bluetooth/hci/Kconfig /home/miguel/ncs/v3.0.2/nrf/drivers/entropy/CMakeLists.txt /home/miguel/ncs/v3.0.2/nrf/drivers/entropy/Kconfig /home/miguel/ncs/v3.0.2/nrf/drivers/flash/CMakeLists.txt /home/miguel/ncs/v3.0.2/nrf/drivers/flash/Kconfig /home/miguel/ncs/v3.0.2/nrf/drivers/gpio/CMakeLists.txt /home/miguel/ncs/v3.0.2/nrf/drivers/gpio/Kconfig /home/miguel/ncs/v3.0.2/nrf/drivers/hw_cc3xx/CMakeLists.txt /home/miguel/ncs/v3.0.2/nrf/drivers/hw_cc3xx/Kconfig /home/miguel/ncs/v3.0.2/nrf/drivers/mpsl/CMakeLists.txt /home/miguel/ncs/v3.0.2/nrf/drivers/mpsl/Kconfig /home/miguel/ncs/v3.0.2/nrf/drivers/mpsl/clock_control/Kconfig /home/miguel/ncs/v3.0.2/nrf/drivers/mpsl/flash_sync/CMakeLists.txt /home/miguel/ncs/v3.0.2/nrf/drivers/mpsl/flash_sync/Kconfig /home/miguel/ncs/v3.0.2/nrf/drivers/mpsl/temp_nrf5/Kconfig /home/miguel/ncs/v3.0.2/nrf/drivers/mspi/Kconfig /home/miguel/ncs/v3.0.2/nrf/drivers/mspi/Kconfig.hpf /home/miguel/ncs/v3.0.2/nrf/drivers/mspi/Kconfig.sqspi /home/miguel/ncs/v3.0.2/nrf/drivers/net/Kconfig /home/miguel/ncs/v3.0.2/nrf/drivers/sensor/CMakeLists.txt /home/miguel/ncs/v3.0.2/nrf/drivers/sensor/Kconfig /home/miguel/ncs/v3.0.2/nrf/drivers/sensor/bh1749/Kconfig /home/miguel/ncs/v3.0.2/nrf/drivers/sensor/bme68x_iaq/Kconfig /home/miguel/ncs/v3.0.2/nrf/drivers/sensor/paw3212/Kconfig /home/miguel/ncs/v3.0.2/nrf/drivers/sensor/pmw3360/Kconfig /home/miguel/ncs/v3.0.2/nrf/drivers/sensor/sensor_sim/Kconfig /home/miguel/ncs/v3.0.2/nrf/drivers/sensor/sensor_stub/Kconfig /home/miguel/ncs/v3.0.2/nrf/drivers/serial/CMakeLists.txt /home/miguel/ncs/v3.0.2/nrf/drivers/serial/Kconfig /home/miguel/ncs/v3.0.2/nrf/drivers/serial/Kconfig.ipc /home/miguel/ncs/v3.0.2/nrf/drivers/serial/Kconfig.nrf_sw_lpuart /home/miguel/ncs/v3.0.2/nrf/ext/CMakeLists.txt /home/miguel/ncs/v3.0.2/nrf/ext/Kconfig /home/miguel/ncs/v3.0.2/nrf/ext/curl/Kconfig /home/miguel/ncs/v3.0.2/nrf/ext/freebsd-getopt/Kconfig /home/miguel/ncs/v3.0.2/nrf/ext/iperf3/Kconfig /home/miguel/ncs/v3.0.2/nrf/lib/CMakeLists.txt /home/miguel/ncs/v3.0.2/nrf/lib/Kconfig /home/miguel/ncs/v3.0.2/nrf/lib/adp536x/Kconfig /home/miguel/ncs/v3.0.2/nrf/lib/app_jwt/Kconfig /home/miguel/ncs/v3.0.2/nrf/lib/at_cmd_custom/Kconfig /home/miguel/ncs/v3.0.2/nrf/lib/at_cmd_parser/Kconfig /home/miguel/ncs/v3.0.2/nrf/lib/at_host/Kconfig /home/miguel/ncs/v3.0.2/nrf/lib/at_monitor/Kconfig /home/miguel/ncs/v3.0.2/nrf/lib/at_parser/Kconfig /home/miguel/ncs/v3.0.2/nrf/lib/at_shell/Kconfig /home/miguel/ncs/v3.0.2/nrf/lib/bin/CMakeLists.txt /home/miguel/ncs/v3.0.2/nrf/lib/bin/Kconfig /home/miguel/ncs/v3.0.2/nrf/lib/bin/lwm2m_carrier/Kconfig /home/miguel/ncs/v3.0.2/nrf/lib/boot_banner/CMakeLists.txt /home/miguel/ncs/v3.0.2/nrf/lib/boot_banner/Kconfig /home/miguel/ncs/v3.0.2/nrf/lib/contin_array/Kconfig /home/miguel/ncs/v3.0.2/nrf/lib/data_fifo/Kconfig /home/miguel/ncs/v3.0.2/nrf/lib/date_time/Kconfig /home/miguel/ncs/v3.0.2/nrf/lib/dk_buttons_and_leds/Kconfig /home/miguel/ncs/v3.0.2/nrf/lib/edge_impulse/Kconfig /home/miguel/ncs/v3.0.2/nrf/lib/fatal_error/CMakeLists.txt /home/miguel/ncs/v3.0.2/nrf/lib/fatal_error/Kconfig /home/miguel/ncs/v3.0.2/nrf/lib/fem_al/Kconfig /home/miguel/ncs/v3.0.2/nrf/lib/flash_patch/CMakeLists.txt /home/miguel/ncs/v3.0.2/nrf/lib/flash_patch/Kconfig /home/miguel/ncs/v3.0.2/nrf/lib/fprotect/Kconfig /home/miguel/ncs/v3.0.2/nrf/lib/gcf_sms/Kconfig /home/miguel/ncs/v3.0.2/nrf/lib/hw_id/Kconfig /home/miguel/ncs/v3.0.2/nrf/lib/hw_unique_key/Kconfig /home/miguel/ncs/v3.0.2/nrf/lib/identity_key/Kconfig /home/miguel/ncs/v3.0.2/nrf/lib/location/Kconfig /home/miguel/ncs/v3.0.2/nrf/lib/lte_link_control/Kconfig /home/miguel/ncs/v3.0.2/nrf/lib/modem_antenna/Kconfig /home/miguel/ncs/v3.0.2/nrf/lib/modem_attest_token/Kconfig /home/miguel/ncs/v3.0.2/nrf/lib/modem_battery/Kconfig /home/miguel/ncs/v3.0.2/nrf/lib/modem_info/Kconfig /home/miguel/ncs/v3.0.2/nrf/lib/modem_jwt/Kconfig /home/miguel/ncs/v3.0.2/nrf/lib/modem_key_mgmt/Kconfig /home/miguel/ncs/v3.0.2/nrf/lib/modem_slm/Kconfig /home/miguel/ncs/v3.0.2/nrf/lib/multithreading_lock/Kconfig /home/miguel/ncs/v3.0.2/nrf/lib/nrf_modem_lib/Kconfig /home/miguel/ncs/v3.0.2/nrf/lib/nrf_modem_lib/Kconfig.modemlib /home/miguel/ncs/v3.0.2/nrf/lib/nrf_modem_lib/lte_net_if/Kconfig /home/miguel/ncs/v3.0.2/nrf/lib/nrf_modem_lib/shell/Kconfig /home/miguel/ncs/v3.0.2/nrf/lib/nrf_modem_lib/trace_backends/Kconfig /home/miguel/ncs/v3.0.2/nrf/lib/nrf_modem_lib/trace_backends/flash/Kconfig /home/miguel/ncs/v3.0.2/nrf/lib/nrf_modem_lib/trace_backends/ram/Kconfig /home/miguel/ncs/v3.0.2/nrf/lib/nrf_modem_lib/trace_backends/rtt/Kconfig /home/miguel/ncs/v3.0.2/nrf/lib/nrf_modem_lib/trace_backends/uart/Kconfig /home/miguel/ncs/v3.0.2/nrf/lib/pcm_mix/Kconfig /home/miguel/ncs/v3.0.2/nrf/lib/pcm_stream_channel_modifier/Kconfig /home/miguel/ncs/v3.0.2/nrf/lib/pdn/Kconfig /home/miguel/ncs/v3.0.2/nrf/lib/qos/Kconfig /home/miguel/ncs/v3.0.2/nrf/lib/ram_pwrdn/Kconfig /home/miguel/ncs/v3.0.2/nrf/lib/sample_rate_converter/Kconfig /home/miguel/ncs/v3.0.2/nrf/lib/sfloat/Kconfig /home/miguel/ncs/v3.0.2/nrf/lib/sms/Kconfig /home/miguel/ncs/v3.0.2/nrf/lib/st25r3911b/Kconfig /home/miguel/ncs/v3.0.2/nrf/lib/supl/Kconfig /home/miguel/ncs/v3.0.2/nrf/lib/tone/Kconfig /home/miguel/ncs/v3.0.2/nrf/lib/uicc_lwm2m/Kconfig /home/miguel/ncs/v3.0.2/nrf/lib/wave_gen/Kconfig /home/miguel/ncs/v3.0.2/nrf/modules/CMakeLists.txt /home/miguel/ncs/v3.0.2/nrf/modules/Kconfig /home/miguel/ncs/v3.0.2/nrf/modules/azure-sdk-for-c/CMakeLists.txt /home/miguel/ncs/v3.0.2/nrf/modules/azure-sdk-for-c/Kconfig /home/miguel/ncs/v3.0.2/nrf/modules/cjson/CMakeLists.txt /home/miguel/ncs/v3.0.2/nrf/modules/cjson/Kconfig /home/miguel/ncs/v3.0.2/nrf/modules/coremark/Kconfig /home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/CMakeLists.txt /home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/nrfx/CMakeLists.txt /home/miguel/ncs/v3.0.2/nrf/modules/mcuboot/CMakeLists.txt /home/miguel/ncs/v3.0.2/nrf/modules/mcuboot/Kconfig /home/miguel/ncs/v3.0.2/nrf/modules/memfault-firmware-sdk/Kconfig /home/miguel/ncs/v3.0.2/nrf/modules/modules.cmake /home/miguel/ncs/v3.0.2/nrf/modules/nrfxlib/CMakeLists.txt /home/miguel/ncs/v3.0.2/nrf/modules/nrfxlib/nrf_802154/CMakeLists.txt /home/miguel/ncs/v3.0.2/nrf/modules/openthread/CMakeLists.txt /home/miguel/ncs/v3.0.2/nrf/modules/openthread/Kconfig /home/miguel/ncs/v3.0.2/nrf/modules/openthread/Kconfig.features /home/miguel/ncs/v3.0.2/nrf/modules/openthread/Kconfig.thread /home/miguel/ncs/v3.0.2/nrf/modules/trusted-firmware-m/Kconfig /home/miguel/ncs/v3.0.2/nrf/modules/trusted-firmware-m/Kconfig.mbedtls.defconfig /home/miguel/ncs/v3.0.2/nrf/modules/trusted-firmware-m/Kconfig.mbedtls_minimal.defconfig /home/miguel/ncs/v3.0.2/nrf/modules/trusted-firmware-m/Kconfig.peripheral_secure /home/miguel/ncs/v3.0.2/nrf/modules/trusted-firmware-m/Kconfig.psa.defconfig /home/miguel/ncs/v3.0.2/nrf/modules/trusted-firmware-m/Kconfig.template.peripheral_secure /home/miguel/ncs/v3.0.2/nrf/modules/trusted-firmware-m/Kconfig.tfm.defconfig /home/miguel/ncs/v3.0.2/nrf/modules/trusted-firmware-m/Kconfig.tfm.pm /home/miguel/ncs/v3.0.2/nrf/modules/trusted-firmware-m/Kconfig.tfm_minimal.defconfig /home/miguel/ncs/v3.0.2/nrf/modules/wfa-qt/CMakeLists.txt /home/miguel/ncs/v3.0.2/nrf/modules/wfa-qt/Kconfig /home/miguel/ncs/v3.0.2/nrf/samples/CMakeLists.txt /home/miguel/ncs/v3.0.2/nrf/samples/Kconfig /home/miguel/ncs/v3.0.2/nrf/samples/common/CMakeLists.txt /home/miguel/ncs/v3.0.2/nrf/samples/common/Kconfig /home/miguel/ncs/v3.0.2/nrf/samples/common/mcumgr_bt_ota_dfu/CMakeLists.txt /home/miguel/ncs/v3.0.2/nrf/samples/common/mcumgr_bt_ota_dfu/Kconfig /home/miguel/ncs/v3.0.2/nrf/share/ncs-package/cmake/NcsConfig.cmake /home/miguel/ncs/v3.0.2/nrf/share/zephyrbuild-package/cmake/ZephyrBuildConfig.cmake /home/miguel/ncs/v3.0.2/nrf/snippets/ci-shell/snippet.yml /home/miguel/ncs/v3.0.2/nrf/snippets/hpf/gpio/icbmsg/snippet.yml /home/miguel/ncs/v3.0.2/nrf/snippets/hpf/gpio/icmsg/snippet.yml /home/miguel/ncs/v3.0.2/nrf/snippets/hpf/gpio/mbox/snippet.yml /home/miguel/ncs/v3.0.2/nrf/snippets/hpf/mspi/snippet.yml /home/miguel/ncs/v3.0.2/nrf/snippets/hw-flow-control/snippet.yml /home/miguel/ncs/v3.0.2/nrf/snippets/matter-debug/snippet.yml /home/miguel/ncs/v3.0.2/nrf/snippets/matter-diagnostic-logs/snippet.yml /home/miguel/ncs/v3.0.2/nrf/snippets/matter-power-consumption-tests/snippet.yml /home/miguel/ncs/v3.0.2/nrf/snippets/nordic-bt-rpc/snippet.yml /home/miguel/ncs/v3.0.2/nrf/snippets/nrf54l09-switch-uart/snippet.yml /home/miguel/ncs/v3.0.2/nrf/snippets/nrf70-driver-debug/snippet.yml /home/miguel/ncs/v3.0.2/nrf/snippets/nrf70-driver-verbose-debug/snippet.yml /home/miguel/ncs/v3.0.2/nrf/snippets/nrf70-fw-patch-ext-flash/snippet.yml /home/miguel/ncs/v3.0.2/nrf/snippets/nrf70-wifi/snippet.yml /home/miguel/ncs/v3.0.2/nrf/snippets/nrf91-modem-trace-ext-flash/snippet.yml /home/miguel/ncs/v3.0.2/nrf/snippets/nrf91-modem-trace-ram/snippet.yml /home/miguel/ncs/v3.0.2/nrf/snippets/nrf91-modem-trace-rtt/snippet.yml /home/miguel/ncs/v3.0.2/nrf/snippets/nrf91-modem-trace-uart/snippet.yml /home/miguel/ncs/v3.0.2/nrf/snippets/tfm-enable-share-uart/snippet.yml /home/miguel/ncs/v3.0.2/nrf/snippets/wpa-supplicant-debug/snippet.yml /home/miguel/ncs/v3.0.2/nrf/snippets/zperf/snippet.yml /home/miguel/ncs/v3.0.2/nrf/soc/nordic/Kconfig /home/miguel/ncs/v3.0.2/nrf/soc/nordic/Kconfig.defconfig /home/miguel/ncs/v3.0.2/nrf/soc/nordic/Kconfig.soc /home/miguel/ncs/v3.0.2/nrf/soc/nordic/nrf54l/Kconfig /home/miguel/ncs/v3.0.2/nrf/soc/nordic/nrf54l/Kconfig.defconfig /home/miguel/ncs/v3.0.2/nrf/soc/nordic/nrf54l/Kconfig.defconfig.nrf54lm20a_enga_cpuapp /home/miguel/ncs/v3.0.2/nrf/soc/nordic/nrf54l/Kconfig.defconfig.nrf54lv10a_enga_cpuapp /home/miguel/ncs/v3.0.2/nrf/soc/nordic/nrf54l/Kconfig.soc /home/miguel/ncs/v3.0.2/nrf/soc/nordic/nrf71/Kconfig /home/miguel/ncs/v3.0.2/nrf/soc/nordic/nrf71/Kconfig.defconfig /home/miguel/ncs/v3.0.2/nrf/soc/nordic/nrf71/Kconfig.defconfig.nrf7120_enga_cpuapp /home/miguel/ncs/v3.0.2/nrf/soc/nordic/nrf71/Kconfig.defconfig.nrf7120_enga_cpuflpr /home/miguel/ncs/v3.0.2/nrf/soc/nordic/nrf71/Kconfig.soc /home/miguel/ncs/v3.0.2/nrf/subsys/CMakeLists.txt /home/miguel/ncs/v3.0.2/nrf/subsys/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/app_event_manager/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/app_event_manager_profiler_tracer/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/audio/audio_module_template/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/audio_module/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/Kconfig.discovery /home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/Kconfig.enocean /home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/Kconfig.link /home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/Kconfig.pool /home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/Kconfig.scan /home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/adv_prov/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/adv_prov/providers/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/adv_prov/providers/Kconfig.device_name /home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/adv_prov/providers/Kconfig.fast_pair /home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/adv_prov/providers/Kconfig.flags /home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/adv_prov/providers/Kconfig.gap_appearance /home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/adv_prov/providers/Kconfig.swift_pair /home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/adv_prov/providers/Kconfig.tx_power /home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/controller/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/cs_de/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/host_extensions/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/mesh/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/mesh/Kconfig.dk_prov /home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/mesh/Kconfig.models /home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/mesh/Kconfig.rpl /home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/mesh/Kconfig.sensor /home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/mesh/shell/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/mesh/vnd/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/rpc/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/services/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/services/Kconfig.ams_client /home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/services/Kconfig.ancs_client /home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/services/Kconfig.bas_client /home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/services/Kconfig.bms /home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/services/Kconfig.cts_client /home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/services/Kconfig.ddfs /home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/services/Kconfig.dfu_smp /home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/services/Kconfig.gattp /home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/services/Kconfig.hids /home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/services/Kconfig.hogp /home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/services/Kconfig.hrs_client /home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/services/Kconfig.latency /home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/services/Kconfig.latency_c /home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/services/Kconfig.lbs /home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/services/Kconfig.mds /home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/services/Kconfig.nsms /home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/services/Kconfig.nus /home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/services/Kconfig.nus_client /home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/services/Kconfig.rscs /home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/services/Kconfig.throughput /home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/services/cgms/Kconfig.cgms /home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/services/fast_pair/Kconfig.fast_pair /home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/services/fast_pair/fmdn/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/services/fast_pair/fp_crypto/Kconfig.fp_crypto /home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/services/fast_pair/fp_storage/Kconfig.fp_storage /home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/services/fast_pair/use_case/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/services/ras/Kconfig.ras /home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/services/ras/rreq/Kconfig.ras_rreq /home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/services/ras/rrsp/Kconfig.ras_rrsp /home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/services/wifi_prov/Kconfig.wifi_prov /home/miguel/ncs/v3.0.2/nrf/subsys/bootloader/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/bootloader/bl_crypto/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/bootloader/bl_storage/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/bootloader/bl_validation/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/caf/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/caf/events/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/caf/events/Kconfig.factory_reset_event /home/miguel/ncs/v3.0.2/nrf/subsys/caf/events/Kconfig.force_power_down_event /home/miguel/ncs/v3.0.2/nrf/subsys/caf/events/Kconfig.keep_alive_event /home/miguel/ncs/v3.0.2/nrf/subsys/caf/events/Kconfig.module_state_event /home/miguel/ncs/v3.0.2/nrf/subsys/caf/events/Kconfig.power_manager_event /home/miguel/ncs/v3.0.2/nrf/subsys/caf/events/Kconfig.sensor_event /home/miguel/ncs/v3.0.2/nrf/subsys/caf/modules/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/caf/modules/Kconfig.ble_adv /home/miguel/ncs/v3.0.2/nrf/subsys/caf/modules/Kconfig.ble_bond /home/miguel/ncs/v3.0.2/nrf/subsys/caf/modules/Kconfig.ble_smp /home/miguel/ncs/v3.0.2/nrf/subsys/caf/modules/Kconfig.ble_state /home/miguel/ncs/v3.0.2/nrf/subsys/caf/modules/Kconfig.buttons /home/miguel/ncs/v3.0.2/nrf/subsys/caf/modules/Kconfig.caf_shell /home/miguel/ncs/v3.0.2/nrf/subsys/caf/modules/Kconfig.click_detector /home/miguel/ncs/v3.0.2/nrf/subsys/caf/modules/Kconfig.factory_reset_request /home/miguel/ncs/v3.0.2/nrf/subsys/caf/modules/Kconfig.leds /home/miguel/ncs/v3.0.2/nrf/subsys/caf/modules/Kconfig.net_state /home/miguel/ncs/v3.0.2/nrf/subsys/caf/modules/Kconfig.power_manager /home/miguel/ncs/v3.0.2/nrf/subsys/caf/modules/Kconfig.sensor_data_aggregator /home/miguel/ncs/v3.0.2/nrf/subsys/caf/modules/Kconfig.sensor_manager /home/miguel/ncs/v3.0.2/nrf/subsys/caf/modules/Kconfig.settings_loader /home/miguel/ncs/v3.0.2/nrf/subsys/debug/CMakeLists.txt /home/miguel/ncs/v3.0.2/nrf/subsys/debug/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/debug/cpu_load/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/debug/etb_trace/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/debug/ppi_trace/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/dfu/CMakeLists.txt /home/miguel/ncs/v3.0.2/nrf/subsys/dfu/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/dfu/dfu_multi_image/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/dfu/dfu_target/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/dfu/fmfu_fdev/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/dm/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/dm/rpc/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/dult/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/emds/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/esb/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/event_manager_proxy/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/fw_info/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/fw_info/Kconfig.template.fw_info_ext_api /home/miguel/ncs/v3.0.2/nrf/subsys/gazell/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/ieee802154/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/logging/CMakeLists.txt /home/miguel/ncs/v3.0.2/nrf/subsys/logging/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/mcuboot_ids/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/mgmt/fmfu/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/mgmt/mcumgr/CMakeLists.txt /home/miguel/ncs/v3.0.2/nrf/subsys/mgmt/mcumgr/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/mgmt/mcumgr/grp/CMakeLists.txt /home/miguel/ncs/v3.0.2/nrf/subsys/mgmt/mcumgr/grp/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/mgmt/mcumgr/grp/os_mgmt/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/mgmt/suitfu/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/mpsl/CMakeLists.txt /home/miguel/ncs/v3.0.2/nrf/subsys/mpsl/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/mpsl/clock_ctrl/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/mpsl/cx/CMakeLists.txt /home/miguel/ncs/v3.0.2/nrf/subsys/mpsl/cx/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/mpsl/fem/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/mpsl/init/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/mpsl/pin_debug/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/mpsl/pm/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/net/CMakeLists.txt /home/miguel/ncs/v3.0.2/nrf/subsys/net/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/net/l2_wifi_if_conn/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/CMakeLists.txt /home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/aws_fota/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/aws_iot/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/aws_jobs/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/azure_fota/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/azure_iot_hub/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/coap_utils/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/download_client/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/downloader/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/fota_download/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/ftp_client/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/hostap_crypto/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/icalendar_parser/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/lwm2m_client_utils/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/mcumgr_smp_client/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/mqtt_helper/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/nrf70_fw_ext/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/nrf_cloud/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/nrf_cloud/Kconfig.nrf_cloud_agnss /home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/nrf_cloud/Kconfig.nrf_cloud_alert /home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/nrf_cloud/Kconfig.nrf_cloud_client_id /home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/nrf_cloud/Kconfig.nrf_cloud_coap /home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/nrf_cloud/Kconfig.nrf_cloud_fota /home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/nrf_cloud/Kconfig.nrf_cloud_location /home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/nrf_cloud/Kconfig.nrf_cloud_log /home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/nrf_cloud/Kconfig.nrf_cloud_mqtt /home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/nrf_cloud/Kconfig.nrf_cloud_pgps /home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/nrf_cloud/Kconfig.nrf_cloud_rest /home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/nrf_cloud/Kconfig.nrf_cloud_shadow_info /home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/nrf_provisioning/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/nrf_provisioning/Kconfig.nrf_provisioning_cbor /home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/nrf_provisioning/Kconfig.nrf_provisioning_coap /home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/nrf_provisioning/Kconfig.nrf_provisioning_codec /home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/nrf_provisioning/Kconfig.nrf_provisioning_http /home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/rest_client/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/softap_wifi_provision/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/tls_credentials/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/wifi_ready/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/zzhc/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/net/openthread/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/net/openthread/Kconfig.defconfig /home/miguel/ncs/v3.0.2/nrf/subsys/net/openthread/report/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/net/openthread/rpc/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/net_core_monitor/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/nfc/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/nfc/lib/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/nfc/ndef/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/nfc/rpc/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/nfc/t2t/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/nfc/t4t/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/nfc/tnep/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/nfc/tnep/ch/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/nrf_compress/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/nrf_profiler/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/nrf_rpc/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/nrf_rpc/dev_info/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/nrf_security/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/nrf_security/Kconfig.legacy /home/miguel/ncs/v3.0.2/nrf/subsys/nrf_security/Kconfig.psa /home/miguel/ncs/v3.0.2/nrf/subsys/nrf_security/Kconfig.psa.nordic /home/miguel/ncs/v3.0.2/nrf/subsys/nrf_security/Kconfig.tls /home/miguel/ncs/v3.0.2/nrf/subsys/nrf_security/src/core/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/nrf_security/src/drivers/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/nrf_security/src/drivers/Kconfig.psa_accel /home/miguel/ncs/v3.0.2/nrf/subsys/nrf_security/src/drivers/cracen/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/nrf_security/src/drivers/cracen/psa_driver.Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/nrf_security/src/drivers/nrf_cc3xx/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/nrf_security/src/drivers/nrf_oberon/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/nrf_security/src/drivers/zephyr/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/nrf_security/src/ssf_secdom/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/partition_manager/CMakeLists.txt /home/miguel/ncs/v3.0.2/nrf/subsys/partition_manager/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/partition_manager/Kconfig.template.partition_config /home/miguel/ncs/v3.0.2/nrf/subsys/partition_manager/Kconfig.template.partition_region /home/miguel/ncs/v3.0.2/nrf/subsys/pcd/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/sdfw_services/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/sdfw_services/services/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/sdfw_services/services/Kconfig.template.service /home/miguel/ncs/v3.0.2/nrf/subsys/sdfw_services/services/device_info/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/sdfw_services/services/enc_fw/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/sdfw_services/services/extmem/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/sdfw_services/services/psa_crypto/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/sdfw_services/services/suit_service/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/sdfw_services/transport/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/sdfw_services/transport/nrf_rpc/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/settings/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/shell/CMakeLists.txt /home/miguel/ncs/v3.0.2/nrf/subsys/shell/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/suit/CMakeLists.txt /home/miguel/ncs/v3.0.2/nrf/subsys/suit/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/suit/app_tools/CMakeLists.txt /home/miguel/ncs/v3.0.2/nrf/subsys/suit/app_tools/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/suit/app_tools/recovery_button/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/suit/cache/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/suit/envelope_info/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/suit/events/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/suit/execution_mode/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/suit/ipuc/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/suit/manifest_variables/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/suit/mci/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/suit/memory_layout/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/suit/memptr_storage/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/suit/metadata/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/suit/orchestrator/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/suit/orchestrator_app/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/suit/platform/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/suit/platform/sdfw/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/suit/platform/sink_selector/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/suit/storage/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/suit/stream/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/suit/utils/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/suit/validator/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/trusted_storage/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/uart_async_adapter/Kconfig /home/miguel/ncs/v3.0.2/nrf/tests/CMakeLists.txt /home/miguel/ncs/v3.0.2/nrf/tests/Kconfig /home/miguel/ncs/v3.0.2/nrf/tests/mocks/CMakeLists.txt /home/miguel/ncs/v3.0.2/nrf/tests/mocks/Kconfig /home/miguel/ncs/v3.0.2/nrf/tests/mocks/nrf_modem_at/Kconfig /home/miguel/ncs/v3.0.2/nrf/tests/mocks/nrf_rpc/Kconfig /home/miguel/ncs/v3.0.2/nrf/tests/unity/Kconfig /home/miguel/ncs/v3.0.2/nrfxlib/CMakeLists.txt /home/miguel/ncs/v3.0.2/nrfxlib/Kconfig.nrfxlib /home/miguel/ncs/v3.0.2/nrfxlib/common.cmake /home/miguel/ncs/v3.0.2/nrfxlib/crypto/Kconfig /home/miguel/ncs/v3.0.2/nrfxlib/gzll/Kconfig /home/miguel/ncs/v3.0.2/nrfxlib/lc3/Kconfig /home/miguel/ncs/v3.0.2/nrfxlib/mpsl/Kconfig /home/miguel/ncs/v3.0.2/nrfxlib/nfc/Kconfig /home/miguel/ncs/v3.0.2/nrfxlib/nrf_802154/zephyr/Kconfig.nrfxlib /home/miguel/ncs/v3.0.2/nrfxlib/nrf_dm/Kconfig /home/miguel/ncs/v3.0.2/nrfxlib/nrf_fuel_gauge/Kconfig /home/miguel/ncs/v3.0.2/nrfxlib/nrf_modem/Kconfig /home/miguel/ncs/v3.0.2/nrfxlib/nrf_rpc/Kconfig /home/miguel/ncs/v3.0.2/nrfxlib/openthread/Kconfig /home/miguel/ncs/v3.0.2/zephyr/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/Kconfig /home/miguel/ncs/v3.0.2/zephyr/Kconfig.constants /home/miguel/ncs/v3.0.2/zephyr/Kconfig.zephyr /home/miguel/ncs/v3.0.2/zephyr/VERSION /home/miguel/ncs/v3.0.2/zephyr/arch/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/arch/Kconfig /home/miguel/ncs/v3.0.2/zephyr/arch/Kconfig.v2 /home/miguel/ncs/v3.0.2/zephyr/arch/arc/Kconfig /home/miguel/ncs/v3.0.2/zephyr/arch/arc/core/dsp/Kconfig /home/miguel/ncs/v3.0.2/zephyr/arch/arc/core/mpu/Kconfig /home/miguel/ncs/v3.0.2/zephyr/arch/arm/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/arch/arm/Kconfig /home/miguel/ncs/v3.0.2/zephyr/arch/arm/core/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/arch/arm/core/Kconfig /home/miguel/ncs/v3.0.2/zephyr/arch/arm/core/Kconfig.vfp /home/miguel/ncs/v3.0.2/zephyr/arch/arm/core/cortex_a_r/Kconfig /home/miguel/ncs/v3.0.2/zephyr/arch/arm/core/cortex_m/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/arch/arm/core/cortex_m/Kconfig /home/miguel/ncs/v3.0.2/zephyr/arch/arm/core/cortex_m/tz/Kconfig /home/miguel/ncs/v3.0.2/zephyr/arch/arm/core/mmu/Kconfig /home/miguel/ncs/v3.0.2/zephyr/arch/arm/core/mpu/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/arch/arm/core/mpu/Kconfig /home/miguel/ncs/v3.0.2/zephyr/arch/arm64/Kconfig /home/miguel/ncs/v3.0.2/zephyr/arch/arm64/core/Kconfig /home/miguel/ncs/v3.0.2/zephyr/arch/arm64/core/cortex_r/Kconfig /home/miguel/ncs/v3.0.2/zephyr/arch/arm64/core/xen/Kconfig /home/miguel/ncs/v3.0.2/zephyr/arch/common/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/arch/common/Kconfig /home/miguel/ncs/v3.0.2/zephyr/arch/mips/Kconfig /home/miguel/ncs/v3.0.2/zephyr/arch/nios2/Kconfig /home/miguel/ncs/v3.0.2/zephyr/arch/posix/Kconfig /home/miguel/ncs/v3.0.2/zephyr/arch/riscv/Kconfig /home/miguel/ncs/v3.0.2/zephyr/arch/riscv/Kconfig.isa /home/miguel/ncs/v3.0.2/zephyr/arch/sparc/Kconfig /home/miguel/ncs/v3.0.2/zephyr/arch/x86/Kconfig /home/miguel/ncs/v3.0.2/zephyr/arch/x86/core/Kconfig.ia32 /home/miguel/ncs/v3.0.2/zephyr/arch/x86/core/Kconfig.intel64 /home/miguel/ncs/v3.0.2/zephyr/arch/xtensa/Kconfig /home/miguel/ncs/v3.0.2/zephyr/boards/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/boards/Kconfig /home/miguel/ncs/v3.0.2/zephyr/boards/Kconfig.v2 /home/miguel/ncs/v3.0.2/zephyr/boards/common/jlink.board.cmake /home/miguel/ncs/v3.0.2/zephyr/boards/common/nrfjprog.board.cmake /home/miguel/ncs/v3.0.2/zephyr/boards/common/nrfutil.board.cmake /home/miguel/ncs/v3.0.2/zephyr/boards/common/openocd-nrf5.board.cmake /home/miguel/ncs/v3.0.2/zephyr/boards/common/openocd.board.cmake /home/miguel/ncs/v3.0.2/zephyr/boards/common/pyocd.board.cmake /home/miguel/ncs/v3.0.2/zephyr/boards/deprecated.cmake /home/miguel/ncs/v3.0.2/zephyr/boards/shields/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/boards/shields/adafruit_2_8_tft_touch_v2/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/boards/shields/adafruit_2_8_tft_touch_v2/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/adafruit_adalogger_featherwing/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/adafruit_aw9523/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/adafruit_data_logger/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/adafruit_neopixel_grid_bff/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/boards/shields/adafruit_neopixel_grid_bff/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/adafruit_pca9685/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/adafruit_winc1500/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/boards/shields/adafruit_winc1500/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/amg88xx/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/arceli_eth_w5500/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/boards/shields/arceli_eth_w5500/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/arduino_uno_click/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/atmel_rf2xx/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/boards/shields/atmel_rf2xx/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/boostxl_ulpsense/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/buydisplay_2_8_tft_touch_arduino/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/boards/shields/buydisplay_2_8_tft_touch_arduino/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/buydisplay_3_5_tft_touch_arduino/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/boards/shields/buydisplay_3_5_tft_touch_arduino/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/dac80508_evm/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/dvp_fpc24_mt9m114/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/esp_8266/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/boards/shields/esp_8266/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/esp_8266/boards/disco_l475_iot1.defconfig /home/miguel/ncs/v3.0.2/zephyr/boards/shields/esp_8266/boards/sam4e_xpro.defconfig /home/miguel/ncs/v3.0.2/zephyr/boards/shields/eval_adxl362_ardz/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/eval_adxl372_ardz/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/frdm_cr20a/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/boards/shields/frdm_cr20a/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/frdm_cr20a/boards/frdm_k64f.defconfig /home/miguel/ncs/v3.0.2/zephyr/boards/shields/frdm_kw41z/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/frdm_stbc_agm01/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/ftdi_vm800c/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/g1120b0mipi/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/boards/shields/g1120b0mipi/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/inventek_eswifi/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/boards/shields/inventek_eswifi/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/inventek_eswifi/boards/frdm_k64f.defconfig /home/miguel/ncs/v3.0.2/zephyr/boards/shields/inventek_eswifi/boards/nucleo_f767zi.defconfig /home/miguel/ncs/v3.0.2/zephyr/boards/shields/lcd_par_s035/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/boards/shields/lcd_par_s035/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/link_board_eth/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/boards/shields/link_board_eth/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/lmp90100_evb/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/boards/shields/lmp90100_evb/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/ls0xx_generic/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/boards/shields/ls0xx_generic/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/m5stack_core2_ext/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/max3421e/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/max7219/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/mcp2515/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/mikroe_accel13_click/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/mikroe_adc_click/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/boards/shields/mikroe_adc_click/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/mikroe_ble_tiny_click/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/boards/shields/mikroe_ble_tiny_click/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/mikroe_eth3_click/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/boards/shields/mikroe_eth3_click/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/mikroe_eth_click/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/boards/shields/mikroe_eth_click/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/mikroe_mcp2518fd_click/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/mikroe_weather_click/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/mikroe_wifi_bt_click/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/boards/shields/mikroe_wifi_bt_click/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/npm1100_ek/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/npm1300_ek/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/npm6001_ek/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/nrf7002eb/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/nrf7002ek/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/nxp_btb44_ov5640/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/p3t1755dp_ard_i2c/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/p3t1755dp_ard_i3c/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/pmod_acl/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/pmod_sd/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/renesas_us159_da14531evz/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/reyax_lora/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/rk043fn02h_ct/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/boards/shields/rk043fn02h_ct/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/rk043fn66hs_ctg/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/boards/shields/rk043fn66hs_ctg/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/rk055hdmipi4m/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/boards/shields/rk055hdmipi4m/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/rk055hdmipi4ma0/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/boards/shields/rk055hdmipi4ma0/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/rpi_pico_uno_flexypin/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/rtkmipilcdb00000be/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/boards/shields/rtkmipilcdb00000be/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/seeed_w5500/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/boards/shields/seeed_w5500/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/seeed_xiao_expansion_board/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/boards/shields/seeed_xiao_expansion_board/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/seeed_xiao_round_display/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/boards/shields/seeed_xiao_round_display/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/semtech_sx1262mb2das/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/semtech_sx1272mb2das/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/semtech_sx1276mb1mas/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/sparkfun_carrier_asset_tracker/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/sparkfun_sara_r4/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/boards/shields/sparkfun_sara_r4/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/ssd1306/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/boards/shields/ssd1306/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/st7735r/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/boards/shields/st7735r/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/st7789v_generic/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/boards/shields/st7789v_generic/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/st_b_lcd40_dsi1_mb1166/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/boards/shields/st_b_lcd40_dsi1_mb1166/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/st_b_lcd40_dsi1_mb1166/boards/stm32h747i_disco_stm32h747xx_m7.defconfig /home/miguel/ncs/v3.0.2/zephyr/boards/shields/tcan4550evm/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/ti_bp_bassensorsmkii/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/v2c_daplink/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/waveshare_epaper/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/boards/shields/waveshare_epaper/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/waveshare_ups/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/weact_ov2640_cam_module/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/wnc_m14a2a/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/boards/shields/wnc_m14a2a/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/x_nucleo_53l0a1/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/boards/shields/x_nucleo_53l0a1/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/x_nucleo_bnrg2a1/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/boards/shields/x_nucleo_bnrg2a1/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/x_nucleo_eeprma2/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/boards/shields/x_nucleo_eeprma2/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/x_nucleo_idb05a1/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/boards/shields/x_nucleo_idb05a1/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/x_nucleo_iks01a1/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/x_nucleo_iks01a2/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/x_nucleo_iks01a3/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/x_nucleo_iks02a1/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/x_nucleo_iks4a1/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/x_nucleo_wb05kn1/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/boards/shields/x_nucleo_wb05kn1/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/cmake/bintools/bintools_template.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/bintools/gnu/target.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/bintools/gnu/target_bintools.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/compiler/compiler_features.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/compiler/compiler_flags_template.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/compiler/gcc/compiler_flags.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/compiler/gcc/generic.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/compiler/gcc/target.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/compiler/gcc/target_arm.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/extra_flags.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/flash/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/cmake/gcc-m-cpu.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/gcc-m-fpu.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/kobj.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/linker/ld/gcc/linker_flags.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/linker/ld/linker_flags.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/linker/ld/linker_libraries.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/linker/ld/target.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/linker/ld/target_configure.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/linker/ld/target_relocation.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/linker/linker_flags_template.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/linker/linker_libraries_template.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/linker/target_template.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/linker_script/arm/linker.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/linker_script/common/common-ram.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/linker_script/common/common-rom.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/linker_script/common/debug-sections.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/linker_script/common/ram-end.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/linker_script/common/thread-local-storage.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/modules/FindDeprecated.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/modules/FindDtc.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/modules/FindGnuLd.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/modules/FindHostTools.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/modules/FindScaTools.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/modules/FindTargetTools.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/modules/FindZephyr-sdk.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/modules/arch_v1.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/modules/arch_v2.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/modules/basic_settings.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/modules/boards.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/modules/ccache.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/modules/configuration_files.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/modules/dts.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/modules/extensions.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/modules/generated_file_directories.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/modules/hwm_v2.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/modules/kconfig.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/modules/kernel.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/modules/pre_dt.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/modules/python.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/modules/root.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/modules/shields.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/modules/snippets.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/modules/soc_v1.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/modules/soc_v2.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/modules/user_cache.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/modules/version.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/modules/west.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/modules/yaml.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/modules/zephyr_default.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/modules/zephyr_module.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/reports/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/cmake/target_toolchain_flags.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/toolchain/zephyr/generic.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/toolchain/zephyr/target.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/usage/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/drivers/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/drivers/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/adc/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.ad559x /home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.adc_emul /home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.ads1112 /home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.ads1119 /home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.ads114s0x /home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.ads131m02 /home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.ads1x1x /home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.ads7052 /home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.ambiq /home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.b91 /home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.cc13xx_cc26xx /home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.cc32xx /home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.ene /home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.esp32 /home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.gd32 /home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.gecko /home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.ifx_cat1 /home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.it8xxx2 /home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.lmp90xxx /home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.ltc2451 /home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.max11102_17 /home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.max1125x /home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.max32 /home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.mcp320x /home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.mcux /home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.npcx /home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.nrfx /home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.numaker /home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.nxp_s32 /home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.renesas_ra /home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.rpi_pico /home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.sam /home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.sam0 /home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.sam_afec /home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.smartbond /home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.stm32 /home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.test /home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.tla202x /home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.vf610 /home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.xec /home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.xmc4xxx /home/miguel/ncs/v3.0.2/zephyr/drivers/audio/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/audio/Kconfig.dmic_mcux /home/miguel/ncs/v3.0.2/zephyr/drivers/audio/Kconfig.dmic_pdm_nrfx /home/miguel/ncs/v3.0.2/zephyr/drivers/audio/Kconfig.mpxxdtyy /home/miguel/ncs/v3.0.2/zephyr/drivers/audio/Kconfig.tas6422dac /home/miguel/ncs/v3.0.2/zephyr/drivers/audio/Kconfig.tlv320dac /home/miguel/ncs/v3.0.2/zephyr/drivers/audio/Kconfig.wm8904 /home/miguel/ncs/v3.0.2/zephyr/drivers/auxdisplay/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/auxdisplay/Kconfig.hd44780 /home/miguel/ncs/v3.0.2/zephyr/drivers/auxdisplay/Kconfig.itron /home/miguel/ncs/v3.0.2/zephyr/drivers/auxdisplay/Kconfig.jhd1313 /home/miguel/ncs/v3.0.2/zephyr/drivers/auxdisplay/Kconfig.pt6314 /home/miguel/ncs/v3.0.2/zephyr/drivers/auxdisplay/Kconfig.serlcd /home/miguel/ncs/v3.0.2/zephyr/drivers/bbram/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/bbram/Kconfig.bbram_emul /home/miguel/ncs/v3.0.2/zephyr/drivers/bbram/Kconfig.it8xxx2 /home/miguel/ncs/v3.0.2/zephyr/drivers/bbram/Kconfig.microchip /home/miguel/ncs/v3.0.2/zephyr/drivers/bbram/Kconfig.npcx /home/miguel/ncs/v3.0.2/zephyr/drivers/bbram/Kconfig.stm32 /home/miguel/ncs/v3.0.2/zephyr/drivers/bbram/Kconfig.xec /home/miguel/ncs/v3.0.2/zephyr/drivers/bluetooth/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/bluetooth/hci/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/bluetooth/hci/Kconfig.esp32 /home/miguel/ncs/v3.0.2/zephyr/drivers/bluetooth/hci/Kconfig.infineon /home/miguel/ncs/v3.0.2/zephyr/drivers/bluetooth/hci/Kconfig.nxp /home/miguel/ncs/v3.0.2/zephyr/drivers/cache/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/cache/Kconfig.andes /home/miguel/ncs/v3.0.2/zephyr/drivers/cache/Kconfig.aspeed /home/miguel/ncs/v3.0.2/zephyr/drivers/cache/Kconfig.nrf /home/miguel/ncs/v3.0.2/zephyr/drivers/can/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/can/Kconfig.esp32 /home/miguel/ncs/v3.0.2/zephyr/drivers/can/Kconfig.fake /home/miguel/ncs/v3.0.2/zephyr/drivers/can/Kconfig.kvaser /home/miguel/ncs/v3.0.2/zephyr/drivers/can/Kconfig.loopback /home/miguel/ncs/v3.0.2/zephyr/drivers/can/Kconfig.mcan /home/miguel/ncs/v3.0.2/zephyr/drivers/can/Kconfig.mcp2515 /home/miguel/ncs/v3.0.2/zephyr/drivers/can/Kconfig.mcp251xfd /home/miguel/ncs/v3.0.2/zephyr/drivers/can/Kconfig.mcux /home/miguel/ncs/v3.0.2/zephyr/drivers/can/Kconfig.native_linux /home/miguel/ncs/v3.0.2/zephyr/drivers/can/Kconfig.nrf /home/miguel/ncs/v3.0.2/zephyr/drivers/can/Kconfig.numaker /home/miguel/ncs/v3.0.2/zephyr/drivers/can/Kconfig.nxp_s32 /home/miguel/ncs/v3.0.2/zephyr/drivers/can/Kconfig.rcar /home/miguel/ncs/v3.0.2/zephyr/drivers/can/Kconfig.renesas_ra /home/miguel/ncs/v3.0.2/zephyr/drivers/can/Kconfig.sam /home/miguel/ncs/v3.0.2/zephyr/drivers/can/Kconfig.sam0 /home/miguel/ncs/v3.0.2/zephyr/drivers/can/Kconfig.sja1000 /home/miguel/ncs/v3.0.2/zephyr/drivers/can/Kconfig.stm32 /home/miguel/ncs/v3.0.2/zephyr/drivers/can/Kconfig.tcan4x5x /home/miguel/ncs/v3.0.2/zephyr/drivers/can/Kconfig.xmc4xxx /home/miguel/ncs/v3.0.2/zephyr/drivers/can/transceiver/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/charger/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/charger/Kconfig.bq24190 /home/miguel/ncs/v3.0.2/zephyr/drivers/charger/Kconfig.bq25180 /home/miguel/ncs/v3.0.2/zephyr/drivers/charger/Kconfig.max20335 /home/miguel/ncs/v3.0.2/zephyr/drivers/charger/Kconfig.sbs_charger /home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.agilex5 /home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.ambiq /home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.arm_scmi /home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.aspeed /home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.beetle /home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.cavs /home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.esp32 /home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.fixed /home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.gd32 /home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.ifx_cat1 /home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.litex /home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.lpc11u6x /home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.max32 /home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.mcux_ccm /home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.mcux_ccm_rev2 /home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.mcux_mcg /home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.mcux_pcc /home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.mcux_scg /home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.mcux_sim /home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.mcux_syscon /home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.npcm /home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.npcx /home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.nrf /home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.nrf_auxpll /home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.numaker /home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.nxp_s32 /home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.pwm /home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.rcar /home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.renesas_ra_cgc /home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.rpi_pico /home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.rts5912 /home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.rv32m1 /home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.sam /home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.si32 /home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.silabs /home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.smartbond /home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.stm32 /home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.wch_rcc /home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.xec /home/miguel/ncs/v3.0.2/zephyr/drivers/comparator/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/comparator/Kconfig.fake_comp /home/miguel/ncs/v3.0.2/zephyr/drivers/comparator/Kconfig.mcux_acmp /home/miguel/ncs/v3.0.2/zephyr/drivers/comparator/Kconfig.nrf_comp /home/miguel/ncs/v3.0.2/zephyr/drivers/comparator/Kconfig.nrf_lpcomp /home/miguel/ncs/v3.0.2/zephyr/drivers/comparator/Kconfig.shell /home/miguel/ncs/v3.0.2/zephyr/drivers/console/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/drivers/console/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/coredump/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.ace /home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.ambiq /home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.andes_atcpit100 /home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.cmos /home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.dtmr_cmsdk_apb /home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.dw /home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.esp32_rtc /home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.esp32_tmr /home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.gd32 /home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.gecko /home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.ifx_cat1 /home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.imx_epit /home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.max32_rtc /home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.max32_timer /home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.maxim_ds3231 /home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.mcp7940n /home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.mcux_ctimer /home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.mcux_gpt /home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.mcux_lpc_rtc /home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.mcux_lptmr /home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.mcux_qtmr /home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.mcux_rtc /home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.mcux_snvs /home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.mcux_tpm /home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.native_posix /home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.nrfx /home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.nxp_mrt /home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.nxp_pit /home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.nxp_s32 /home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.renesas_ra /home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.rpi_pico /home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.sam /home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.sam0 /home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.smartbond_timer /home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.stm32_rtc /home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.stm32_timer /home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.tmr_cmsdk_apb /home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.xec /home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.xlnx /home/miguel/ncs/v3.0.2/zephyr/drivers/crypto/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/crypto/Kconfig.ataes132a /home/miguel/ncs/v3.0.2/zephyr/drivers/crypto/Kconfig.intel /home/miguel/ncs/v3.0.2/zephyr/drivers/crypto/Kconfig.it8xxx2 /home/miguel/ncs/v3.0.2/zephyr/drivers/crypto/Kconfig.mcux_dcp /home/miguel/ncs/v3.0.2/zephyr/drivers/crypto/Kconfig.npcx /home/miguel/ncs/v3.0.2/zephyr/drivers/crypto/Kconfig.nrf_ecb /home/miguel/ncs/v3.0.2/zephyr/drivers/crypto/Kconfig.si32 /home/miguel/ncs/v3.0.2/zephyr/drivers/crypto/Kconfig.smartbond /home/miguel/ncs/v3.0.2/zephyr/drivers/crypto/Kconfig.stm32 /home/miguel/ncs/v3.0.2/zephyr/drivers/crypto/Kconfig.xec /home/miguel/ncs/v3.0.2/zephyr/drivers/dac/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/dac/Kconfig.ad559x /home/miguel/ncs/v3.0.2/zephyr/drivers/dac/Kconfig.ad569x /home/miguel/ncs/v3.0.2/zephyr/drivers/dac/Kconfig.ad56xx /home/miguel/ncs/v3.0.2/zephyr/drivers/dac/Kconfig.dacx0501 /home/miguel/ncs/v3.0.2/zephyr/drivers/dac/Kconfig.dacx0508 /home/miguel/ncs/v3.0.2/zephyr/drivers/dac/Kconfig.dacx3608 /home/miguel/ncs/v3.0.2/zephyr/drivers/dac/Kconfig.esp32 /home/miguel/ncs/v3.0.2/zephyr/drivers/dac/Kconfig.gd32 /home/miguel/ncs/v3.0.2/zephyr/drivers/dac/Kconfig.ltc166x /home/miguel/ncs/v3.0.2/zephyr/drivers/dac/Kconfig.mcp4725 /home/miguel/ncs/v3.0.2/zephyr/drivers/dac/Kconfig.mcp4728 /home/miguel/ncs/v3.0.2/zephyr/drivers/dac/Kconfig.mcux /home/miguel/ncs/v3.0.2/zephyr/drivers/dac/Kconfig.sam /home/miguel/ncs/v3.0.2/zephyr/drivers/dac/Kconfig.sam0 /home/miguel/ncs/v3.0.2/zephyr/drivers/dac/Kconfig.stm32 /home/miguel/ncs/v3.0.2/zephyr/drivers/dac/Kconfig.test /home/miguel/ncs/v3.0.2/zephyr/drivers/dai/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/dai/intel/alh/Kconfig.alh /home/miguel/ncs/v3.0.2/zephyr/drivers/dai/intel/dmic/Kconfig.dmic /home/miguel/ncs/v3.0.2/zephyr/drivers/dai/intel/hda/Kconfig.hda /home/miguel/ncs/v3.0.2/zephyr/drivers/dai/intel/ssp/Kconfig.ssp /home/miguel/ncs/v3.0.2/zephyr/drivers/dai/nxp/esai/Kconfig.esai /home/miguel/ncs/v3.0.2/zephyr/drivers/dai/nxp/sai/Kconfig.sai /home/miguel/ncs/v3.0.2/zephyr/drivers/disk/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/drivers/disk/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/disk/Kconfig.flash /home/miguel/ncs/v3.0.2/zephyr/drivers/disk/Kconfig.loopback /home/miguel/ncs/v3.0.2/zephyr/drivers/disk/Kconfig.mmc /home/miguel/ncs/v3.0.2/zephyr/drivers/disk/Kconfig.ram /home/miguel/ncs/v3.0.2/zephyr/drivers/disk/Kconfig.sdmmc /home/miguel/ncs/v3.0.2/zephyr/drivers/disk/nvme/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/display/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/display/Kconfig.dummy /home/miguel/ncs/v3.0.2/zephyr/drivers/display/Kconfig.gc9x01x /home/miguel/ncs/v3.0.2/zephyr/drivers/display/Kconfig.hx8394 /home/miguel/ncs/v3.0.2/zephyr/drivers/display/Kconfig.ili9806e_dsi /home/miguel/ncs/v3.0.2/zephyr/drivers/display/Kconfig.ili9xxx /home/miguel/ncs/v3.0.2/zephyr/drivers/display/Kconfig.intel_multibootfb /home/miguel/ncs/v3.0.2/zephyr/drivers/display/Kconfig.ist3931 /home/miguel/ncs/v3.0.2/zephyr/drivers/display/Kconfig.led_strip_matrix /home/miguel/ncs/v3.0.2/zephyr/drivers/display/Kconfig.ls0xx /home/miguel/ncs/v3.0.2/zephyr/drivers/display/Kconfig.max7219 /home/miguel/ncs/v3.0.2/zephyr/drivers/display/Kconfig.mcux_dcnano_lcdif /home/miguel/ncs/v3.0.2/zephyr/drivers/display/Kconfig.mcux_elcdif /home/miguel/ncs/v3.0.2/zephyr/drivers/display/Kconfig.microbit /home/miguel/ncs/v3.0.2/zephyr/drivers/display/Kconfig.nrf_led_matrix /home/miguel/ncs/v3.0.2/zephyr/drivers/display/Kconfig.nt35510 /home/miguel/ncs/v3.0.2/zephyr/drivers/display/Kconfig.otm8009a /home/miguel/ncs/v3.0.2/zephyr/drivers/display/Kconfig.renesas_lcdc /home/miguel/ncs/v3.0.2/zephyr/drivers/display/Kconfig.renesas_ra /home/miguel/ncs/v3.0.2/zephyr/drivers/display/Kconfig.rm67162 /home/miguel/ncs/v3.0.2/zephyr/drivers/display/Kconfig.rm68200 /home/miguel/ncs/v3.0.2/zephyr/drivers/display/Kconfig.sdl /home/miguel/ncs/v3.0.2/zephyr/drivers/display/Kconfig.ssd1306 /home/miguel/ncs/v3.0.2/zephyr/drivers/display/Kconfig.ssd1322 /home/miguel/ncs/v3.0.2/zephyr/drivers/display/Kconfig.ssd1327 /home/miguel/ncs/v3.0.2/zephyr/drivers/display/Kconfig.ssd16xx /home/miguel/ncs/v3.0.2/zephyr/drivers/display/Kconfig.st7735r /home/miguel/ncs/v3.0.2/zephyr/drivers/display/Kconfig.st7789v /home/miguel/ncs/v3.0.2/zephyr/drivers/display/Kconfig.st7796s /home/miguel/ncs/v3.0.2/zephyr/drivers/display/Kconfig.stm32_ltdc /home/miguel/ncs/v3.0.2/zephyr/drivers/display/Kconfig.uc81xx /home/miguel/ncs/v3.0.2/zephyr/drivers/dma/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/dma/Kconfig.andes_atcdmac300 /home/miguel/ncs/v3.0.2/zephyr/drivers/dma/Kconfig.dma_pl330 /home/miguel/ncs/v3.0.2/zephyr/drivers/dma/Kconfig.dw /home/miguel/ncs/v3.0.2/zephyr/drivers/dma/Kconfig.dw_axi_dmac /home/miguel/ncs/v3.0.2/zephyr/drivers/dma/Kconfig.dw_common /home/miguel/ncs/v3.0.2/zephyr/drivers/dma/Kconfig.emul /home/miguel/ncs/v3.0.2/zephyr/drivers/dma/Kconfig.esp32 /home/miguel/ncs/v3.0.2/zephyr/drivers/dma/Kconfig.gd32 /home/miguel/ncs/v3.0.2/zephyr/drivers/dma/Kconfig.intel_adsp_gpdma /home/miguel/ncs/v3.0.2/zephyr/drivers/dma/Kconfig.intel_adsp_hda /home/miguel/ncs/v3.0.2/zephyr/drivers/dma/Kconfig.intel_lpss /home/miguel/ncs/v3.0.2/zephyr/drivers/dma/Kconfig.iproc_pax /home/miguel/ncs/v3.0.2/zephyr/drivers/dma/Kconfig.max32 /home/miguel/ncs/v3.0.2/zephyr/drivers/dma/Kconfig.mcux_edma /home/miguel/ncs/v3.0.2/zephyr/drivers/dma/Kconfig.mcux_lpc /home/miguel/ncs/v3.0.2/zephyr/drivers/dma/Kconfig.mcux_pxp /home/miguel/ncs/v3.0.2/zephyr/drivers/dma/Kconfig.mcux_smartdma /home/miguel/ncs/v3.0.2/zephyr/drivers/dma/Kconfig.nios2_msgdma /home/miguel/ncs/v3.0.2/zephyr/drivers/dma/Kconfig.nxp_edma /home/miguel/ncs/v3.0.2/zephyr/drivers/dma/Kconfig.nxp_sdma /home/miguel/ncs/v3.0.2/zephyr/drivers/dma/Kconfig.nxp_sof_host_dma /home/miguel/ncs/v3.0.2/zephyr/drivers/dma/Kconfig.rpi_pico /home/miguel/ncs/v3.0.2/zephyr/drivers/dma/Kconfig.sam0 /home/miguel/ncs/v3.0.2/zephyr/drivers/dma/Kconfig.sam_xdmac /home/miguel/ncs/v3.0.2/zephyr/drivers/dma/Kconfig.sedi /home/miguel/ncs/v3.0.2/zephyr/drivers/dma/Kconfig.si32 /home/miguel/ncs/v3.0.2/zephyr/drivers/dma/Kconfig.silabs /home/miguel/ncs/v3.0.2/zephyr/drivers/dma/Kconfig.smartbond /home/miguel/ncs/v3.0.2/zephyr/drivers/dma/Kconfig.stm32 /home/miguel/ncs/v3.0.2/zephyr/drivers/dma/Kconfig.xec /home/miguel/ncs/v3.0.2/zephyr/drivers/dma/Kconfig.xilinx_axi_dma /home/miguel/ncs/v3.0.2/zephyr/drivers/dma/Kconfig.xmc4xxx /home/miguel/ncs/v3.0.2/zephyr/drivers/dp/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/edac/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/eeprom/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/eeprom/Kconfig.eeprom_emu /home/miguel/ncs/v3.0.2/zephyr/drivers/eeprom/Kconfig.lpc11u6x /home/miguel/ncs/v3.0.2/zephyr/drivers/eeprom/Kconfig.mb85rcxx /home/miguel/ncs/v3.0.2/zephyr/drivers/eeprom/Kconfig.mb85rsxx /home/miguel/ncs/v3.0.2/zephyr/drivers/eeprom/Kconfig.stm32 /home/miguel/ncs/v3.0.2/zephyr/drivers/eeprom/Kconfig.tmp116 /home/miguel/ncs/v3.0.2/zephyr/drivers/eeprom/Kconfig.xec /home/miguel/ncs/v3.0.2/zephyr/drivers/entropy/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/entropy/Kconfig.b91 /home/miguel/ncs/v3.0.2/zephyr/drivers/entropy/Kconfig.bt_hci /home/miguel/ncs/v3.0.2/zephyr/drivers/entropy/Kconfig.cc13xx_cc26xx /home/miguel/ncs/v3.0.2/zephyr/drivers/entropy/Kconfig.esp32 /home/miguel/ncs/v3.0.2/zephyr/drivers/entropy/Kconfig.gecko /home/miguel/ncs/v3.0.2/zephyr/drivers/entropy/Kconfig.litex /home/miguel/ncs/v3.0.2/zephyr/drivers/entropy/Kconfig.max32 /home/miguel/ncs/v3.0.2/zephyr/drivers/entropy/Kconfig.mcux /home/miguel/ncs/v3.0.2/zephyr/drivers/entropy/Kconfig.native_posix /home/miguel/ncs/v3.0.2/zephyr/drivers/entropy/Kconfig.neorv32 /home/miguel/ncs/v3.0.2/zephyr/drivers/entropy/Kconfig.npcx /home/miguel/ncs/v3.0.2/zephyr/drivers/entropy/Kconfig.nrf5 /home/miguel/ncs/v3.0.2/zephyr/drivers/entropy/Kconfig.nrf_prng /home/miguel/ncs/v3.0.2/zephyr/drivers/entropy/Kconfig.psa_crypto /home/miguel/ncs/v3.0.2/zephyr/drivers/entropy/Kconfig.renesas_ra /home/miguel/ncs/v3.0.2/zephyr/drivers/entropy/Kconfig.rv32m1 /home/miguel/ncs/v3.0.2/zephyr/drivers/entropy/Kconfig.sam /home/miguel/ncs/v3.0.2/zephyr/drivers/entropy/Kconfig.smartbond /home/miguel/ncs/v3.0.2/zephyr/drivers/entropy/Kconfig.stm32 /home/miguel/ncs/v3.0.2/zephyr/drivers/espi/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/espi/Kconfig.espi_emul /home/miguel/ncs/v3.0.2/zephyr/drivers/espi/Kconfig.it8xxx2 /home/miguel/ncs/v3.0.2/zephyr/drivers/espi/Kconfig.npcx /home/miguel/ncs/v3.0.2/zephyr/drivers/espi/Kconfig.xec /home/miguel/ncs/v3.0.2/zephyr/drivers/ethernet/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/ethernet/Kconfig.adin2111 /home/miguel/ncs/v3.0.2/zephyr/drivers/ethernet/Kconfig.cyclonev /home/miguel/ncs/v3.0.2/zephyr/drivers/ethernet/Kconfig.dsa /home/miguel/ncs/v3.0.2/zephyr/drivers/ethernet/Kconfig.dwmac /home/miguel/ncs/v3.0.2/zephyr/drivers/ethernet/Kconfig.e1000 /home/miguel/ncs/v3.0.2/zephyr/drivers/ethernet/Kconfig.enc28j60 /home/miguel/ncs/v3.0.2/zephyr/drivers/ethernet/Kconfig.enc424j600 /home/miguel/ncs/v3.0.2/zephyr/drivers/ethernet/Kconfig.esp32 /home/miguel/ncs/v3.0.2/zephyr/drivers/ethernet/Kconfig.gecko /home/miguel/ncs/v3.0.2/zephyr/drivers/ethernet/Kconfig.ivshmem /home/miguel/ncs/v3.0.2/zephyr/drivers/ethernet/Kconfig.lan865x /home/miguel/ncs/v3.0.2/zephyr/drivers/ethernet/Kconfig.lan9250 /home/miguel/ncs/v3.0.2/zephyr/drivers/ethernet/Kconfig.litex /home/miguel/ncs/v3.0.2/zephyr/drivers/ethernet/Kconfig.native_posix /home/miguel/ncs/v3.0.2/zephyr/drivers/ethernet/Kconfig.numaker /home/miguel/ncs/v3.0.2/zephyr/drivers/ethernet/Kconfig.nxp_imx_netc /home/miguel/ncs/v3.0.2/zephyr/drivers/ethernet/Kconfig.nxp_s32_gmac /home/miguel/ncs/v3.0.2/zephyr/drivers/ethernet/Kconfig.nxp_s32_netc /home/miguel/ncs/v3.0.2/zephyr/drivers/ethernet/Kconfig.renesas_ra /home/miguel/ncs/v3.0.2/zephyr/drivers/ethernet/Kconfig.sam_gmac /home/miguel/ncs/v3.0.2/zephyr/drivers/ethernet/Kconfig.smsc911x /home/miguel/ncs/v3.0.2/zephyr/drivers/ethernet/Kconfig.smsc91x /home/miguel/ncs/v3.0.2/zephyr/drivers/ethernet/Kconfig.stellaris /home/miguel/ncs/v3.0.2/zephyr/drivers/ethernet/Kconfig.stm32_hal /home/miguel/ncs/v3.0.2/zephyr/drivers/ethernet/Kconfig.test /home/miguel/ncs/v3.0.2/zephyr/drivers/ethernet/Kconfig.w5500 /home/miguel/ncs/v3.0.2/zephyr/drivers/ethernet/Kconfig.xlnx_gem /home/miguel/ncs/v3.0.2/zephyr/drivers/ethernet/Kconfig.xmc4xxx /home/miguel/ncs/v3.0.2/zephyr/drivers/ethernet/dwc_xgmac/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/ethernet/eth_nxp_enet_qos/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/ethernet/nxp_enet/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/ethernet/phy/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/ethernet/phy/Kconfig.dm8806 /home/miguel/ncs/v3.0.2/zephyr/drivers/ethernet/phy/Kconfig.tja1103 /home/miguel/ncs/v3.0.2/zephyr/drivers/firmware/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/drivers/firmware/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/firmware/scmi/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.ambiq /home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.andes /home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.at45 /home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.b91 /home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.cadence_nand /home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.cadence_qspi_nor /home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.cc13xx_cc26xx /home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.esp32 /home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.gd32 /home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.gecko /home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.ifx_cat1 /home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.it8xxx2 /home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.lpc /home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.max32 /home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.mcux /home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.mspi /home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.nios2_qspi /home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.nor /home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.nordic_qspi_nor /home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.npcx_fiu /home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.nrf /home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.nrf_mram /home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.nrf_rram /home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.numaker /home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.numaker_rmc /home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.nxp_s32 /home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.renesas_ra /home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.rpi_pico /home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.rv32m1 /home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.sam /home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.sam0 /home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.si32 /home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.simulator /home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.smartbond /home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.stm32 /home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.stm32_ospi /home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.stm32_qspi /home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.stm32_xspi /home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.xmc4xxx /home/miguel/ncs/v3.0.2/zephyr/drivers/fpga/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/fpga/Kconfig.altera_agilex_bridge /home/miguel/ncs/v3.0.2/zephyr/drivers/fpga/Kconfig.eos_s3 /home/miguel/ncs/v3.0.2/zephyr/drivers/fpga/Kconfig.ice40 /home/miguel/ncs/v3.0.2/zephyr/drivers/fpga/Kconfig.mpfs /home/miguel/ncs/v3.0.2/zephyr/drivers/fpga/Kconfig.slg471x5 /home/miguel/ncs/v3.0.2/zephyr/drivers/fpga/Kconfig.zynqmp /home/miguel/ncs/v3.0.2/zephyr/drivers/fuel_gauge/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/fuel_gauge/bq27z746/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/fuel_gauge/composite/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/fuel_gauge/max17048/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/fuel_gauge/sbs_gauge/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/fuel_gauge/sbs_gauge/Kconfig.emul_sbs_gauge /home/miguel/ncs/v3.0.2/zephyr/drivers/gnss/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/gnss/Kconfig.emul /home/miguel/ncs/v3.0.2/zephyr/drivers/gnss/Kconfig.generic /home/miguel/ncs/v3.0.2/zephyr/drivers/gnss/Kconfig.luatos_air530z /home/miguel/ncs/v3.0.2/zephyr/drivers/gnss/Kconfig.quectel_lcx6g /home/miguel/ncs/v3.0.2/zephyr/drivers/gnss/Kconfig.u_blox_m8 /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.ad559x /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.adp5585 /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.ads114s0x /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.altera /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.ambiq /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.andes_atcgpio100 /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.aw9523b /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.axp192 /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.b91 /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.bcm2711 /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.bd8lb600fs /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.brcmstb /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.cc13xx_cc26xx /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.cc32xx /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.cmsdk_ahb /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.creg_gpio /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.cy8c95xx /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.davinci /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.dw /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.efinix_sapphire /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.emul /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.emul_sdl /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.ene /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.eos_s3 /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.esp32 /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.fxl6408 /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.gd32 /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.gecko /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.grgpio /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.ifx_cat1 /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.imx /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.intel /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.iproc /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.it8801 /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.it8xxx2 /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.litex /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.lmp90xxx /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.lpc11u6x /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.max14906 /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.max14916 /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.max22190 /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.max32 /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.mchp_mss /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.mcp23xxx /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.mcux /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.mcux_igpio /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.mcux_lpc /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.mcux_rgpio /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.mec5 /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.mmio32 /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.nct38xx /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.neorv32 /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.npcx /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.npm1300 /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.npm2100 /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.npm6001 /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.nrfx /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.numaker /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.numicro /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.nxp_s32 /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.pca953x /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.pca95xx /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.pca_series /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.pcal64xxa /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.pcf857x /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.psoc6 /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.rcar /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.renesas_ra /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.renesas_ra_ioport /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.renesas_rz /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.rp1 /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.rpi_pico /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.rt1718s /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.rts5912 /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.rv32m1 /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.rzt2m /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.sam /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.sam0 /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.sc18im704 /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.sedi /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.si32 /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.sifive /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.smartbond /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.sn74hc595 /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.stellaris /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.stm32 /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.stmpe1600 /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.sx1509b /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.tca6424a /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.test /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.tle9104 /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.wch_ch32v00x /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.xec /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.xlnx /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.xlnx_ps /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.xmc4xxx /home/miguel/ncs/v3.0.2/zephyr/drivers/haptics/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/haptics/Kconfig.drv2605 /home/miguel/ncs/v3.0.2/zephyr/drivers/hdlc_rcp_if/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/hdlc_rcp_if/Kconfig.nxp /home/miguel/ncs/v3.0.2/zephyr/drivers/hdlc_rcp_if/Kconfig.uart /home/miguel/ncs/v3.0.2/zephyr/drivers/hwinfo/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/drivers/hwinfo/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/hwspinlock/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/hwspinlock/Kconfig.sqn /home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/Kconfig.ambiq /home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/Kconfig.andes_atciic100 /home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/Kconfig.b91 /home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/Kconfig.bcm_iproc /home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/Kconfig.cc13xx_cc26xx /home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/Kconfig.dw /home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/Kconfig.ene /home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/Kconfig.esp32 /home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/Kconfig.gd32 /home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/Kconfig.gpio /home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/Kconfig.i2c_emul /home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/Kconfig.ifx_cat1 /home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/Kconfig.ifx_xmc4 /home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/Kconfig.it8xxx2 /home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/Kconfig.litex /home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/Kconfig.lpc11u6x /home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/Kconfig.max32 /home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/Kconfig.mchp_mss /home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/Kconfig.mcux /home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/Kconfig.npcx /home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/Kconfig.nrfx /home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/Kconfig.numaker /home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/Kconfig.rcar /home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/Kconfig.renesas_ra /home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/Kconfig.sam0 /home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/Kconfig.sam_twihs /home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/Kconfig.sbcon /home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/Kconfig.sc18im704 /home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/Kconfig.sedi /home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/Kconfig.sifive /home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/Kconfig.smartbond /home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/Kconfig.stm32 /home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/Kconfig.tca954x /home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/Kconfig.test /home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/Kconfig.xec /home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/Kconfig.xilinx_axi /home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/target/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/target/Kconfig.eeprom /home/miguel/ncs/v3.0.2/zephyr/drivers/i2s/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/i2s/Kconfig.esp32 /home/miguel/ncs/v3.0.2/zephyr/drivers/i2s/Kconfig.litex /home/miguel/ncs/v3.0.2/zephyr/drivers/i2s/Kconfig.mcux /home/miguel/ncs/v3.0.2/zephyr/drivers/i2s/Kconfig.mcux_flexcomm /home/miguel/ncs/v3.0.2/zephyr/drivers/i2s/Kconfig.nrfx /home/miguel/ncs/v3.0.2/zephyr/drivers/i2s/Kconfig.sam_ssc /home/miguel/ncs/v3.0.2/zephyr/drivers/i2s/Kconfig.stm32 /home/miguel/ncs/v3.0.2/zephyr/drivers/i2s/Kconfig.test /home/miguel/ncs/v3.0.2/zephyr/drivers/i3c/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/i3c/Kconfig.cdns /home/miguel/ncs/v3.0.2/zephyr/drivers/i3c/Kconfig.npcx /home/miguel/ncs/v3.0.2/zephyr/drivers/i3c/Kconfig.nxp /home/miguel/ncs/v3.0.2/zephyr/drivers/i3c/Kconfig.stm32 /home/miguel/ncs/v3.0.2/zephyr/drivers/i3c/Kconfig.test /home/miguel/ncs/v3.0.2/zephyr/drivers/ieee802154/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/ieee802154/Kconfig.b91 /home/miguel/ncs/v3.0.2/zephyr/drivers/ieee802154/Kconfig.cc1200 /home/miguel/ncs/v3.0.2/zephyr/drivers/ieee802154/Kconfig.cc13xx_cc26xx /home/miguel/ncs/v3.0.2/zephyr/drivers/ieee802154/Kconfig.cc2520 /home/miguel/ncs/v3.0.2/zephyr/drivers/ieee802154/Kconfig.dw1000 /home/miguel/ncs/v3.0.2/zephyr/drivers/ieee802154/Kconfig.kw41z /home/miguel/ncs/v3.0.2/zephyr/drivers/ieee802154/Kconfig.mcr20a /home/miguel/ncs/v3.0.2/zephyr/drivers/ieee802154/Kconfig.nrf5 /home/miguel/ncs/v3.0.2/zephyr/drivers/ieee802154/Kconfig.rf2xx /home/miguel/ncs/v3.0.2/zephyr/drivers/ieee802154/Kconfig.uart_pipe /home/miguel/ncs/v3.0.2/zephyr/drivers/input/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/input/Kconfig.adc_keys /home/miguel/ncs/v3.0.2/zephyr/drivers/input/Kconfig.analog_axis /home/miguel/ncs/v3.0.2/zephyr/drivers/input/Kconfig.cap12xx /home/miguel/ncs/v3.0.2/zephyr/drivers/input/Kconfig.cf1133 /home/miguel/ncs/v3.0.2/zephyr/drivers/input/Kconfig.chsc6x /home/miguel/ncs/v3.0.2/zephyr/drivers/input/Kconfig.cst816s /home/miguel/ncs/v3.0.2/zephyr/drivers/input/Kconfig.esp32 /home/miguel/ncs/v3.0.2/zephyr/drivers/input/Kconfig.evdev /home/miguel/ncs/v3.0.2/zephyr/drivers/input/Kconfig.ft5336 /home/miguel/ncs/v3.0.2/zephyr/drivers/input/Kconfig.gpio_kbd_matrix /home/miguel/ncs/v3.0.2/zephyr/drivers/input/Kconfig.gpio_keys /home/miguel/ncs/v3.0.2/zephyr/drivers/input/Kconfig.gpio_qdec /home/miguel/ncs/v3.0.2/zephyr/drivers/input/Kconfig.gt911 /home/miguel/ncs/v3.0.2/zephyr/drivers/input/Kconfig.ili2132a /home/miguel/ncs/v3.0.2/zephyr/drivers/input/Kconfig.it8801 /home/miguel/ncs/v3.0.2/zephyr/drivers/input/Kconfig.it8xxx2 /home/miguel/ncs/v3.0.2/zephyr/drivers/input/Kconfig.kbd_matrix /home/miguel/ncs/v3.0.2/zephyr/drivers/input/Kconfig.npcx /home/miguel/ncs/v3.0.2/zephyr/drivers/input/Kconfig.nunchuk /home/miguel/ncs/v3.0.2/zephyr/drivers/input/Kconfig.pat912x /home/miguel/ncs/v3.0.2/zephyr/drivers/input/Kconfig.paw32xx /home/miguel/ncs/v3.0.2/zephyr/drivers/input/Kconfig.pinnacle /home/miguel/ncs/v3.0.2/zephyr/drivers/input/Kconfig.pmw3610 /home/miguel/ncs/v3.0.2/zephyr/drivers/input/Kconfig.sbus /home/miguel/ncs/v3.0.2/zephyr/drivers/input/Kconfig.sdl /home/miguel/ncs/v3.0.2/zephyr/drivers/input/Kconfig.stmpe811 /home/miguel/ncs/v3.0.2/zephyr/drivers/input/Kconfig.touch /home/miguel/ncs/v3.0.2/zephyr/drivers/input/Kconfig.xec /home/miguel/ncs/v3.0.2/zephyr/drivers/input/Kconfig.xpt2046 /home/miguel/ncs/v3.0.2/zephyr/drivers/interrupt_controller/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/drivers/interrupt_controller/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/interrupt_controller/Kconfig.cavs /home/miguel/ncs/v3.0.2/zephyr/drivers/interrupt_controller/Kconfig.clic /home/miguel/ncs/v3.0.2/zephyr/drivers/interrupt_controller/Kconfig.dw /home/miguel/ncs/v3.0.2/zephyr/drivers/interrupt_controller/Kconfig.esp32 /home/miguel/ncs/v3.0.2/zephyr/drivers/interrupt_controller/Kconfig.esp32c3 /home/miguel/ncs/v3.0.2/zephyr/drivers/interrupt_controller/Kconfig.gd32_exti /home/miguel/ncs/v3.0.2/zephyr/drivers/interrupt_controller/Kconfig.gic /home/miguel/ncs/v3.0.2/zephyr/drivers/interrupt_controller/Kconfig.intel_vtd /home/miguel/ncs/v3.0.2/zephyr/drivers/interrupt_controller/Kconfig.it8xxx2 /home/miguel/ncs/v3.0.2/zephyr/drivers/interrupt_controller/Kconfig.loapic /home/miguel/ncs/v3.0.2/zephyr/drivers/interrupt_controller/Kconfig.mtk_adsp /home/miguel/ncs/v3.0.2/zephyr/drivers/interrupt_controller/Kconfig.multilevel /home/miguel/ncs/v3.0.2/zephyr/drivers/interrupt_controller/Kconfig.multilevel.aggregator_template /home/miguel/ncs/v3.0.2/zephyr/drivers/interrupt_controller/Kconfig.npcx /home/miguel/ncs/v3.0.2/zephyr/drivers/interrupt_controller/Kconfig.nxp_irqsteer /home/miguel/ncs/v3.0.2/zephyr/drivers/interrupt_controller/Kconfig.nxp_pint /home/miguel/ncs/v3.0.2/zephyr/drivers/interrupt_controller/Kconfig.nxp_s32 /home/miguel/ncs/v3.0.2/zephyr/drivers/interrupt_controller/Kconfig.plic /home/miguel/ncs/v3.0.2/zephyr/drivers/interrupt_controller/Kconfig.renesas_ra /home/miguel/ncs/v3.0.2/zephyr/drivers/interrupt_controller/Kconfig.rv32m1 /home/miguel/ncs/v3.0.2/zephyr/drivers/interrupt_controller/Kconfig.sam0 /home/miguel/ncs/v3.0.2/zephyr/drivers/interrupt_controller/Kconfig.shared_irq /home/miguel/ncs/v3.0.2/zephyr/drivers/interrupt_controller/Kconfig.stm32 /home/miguel/ncs/v3.0.2/zephyr/drivers/interrupt_controller/Kconfig.vim /home/miguel/ncs/v3.0.2/zephyr/drivers/interrupt_controller/Kconfig.wch_pfic /home/miguel/ncs/v3.0.2/zephyr/drivers/interrupt_controller/Kconfig.xec /home/miguel/ncs/v3.0.2/zephyr/drivers/interrupt_controller/Kconfig.xmc4xxx /home/miguel/ncs/v3.0.2/zephyr/drivers/ipm/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/ipm/Kconfig.imx /home/miguel/ncs/v3.0.2/zephyr/drivers/ipm/Kconfig.intel_adsp /home/miguel/ncs/v3.0.2/zephyr/drivers/ipm/Kconfig.ivshmem /home/miguel/ncs/v3.0.2/zephyr/drivers/ipm/Kconfig.nrfx /home/miguel/ncs/v3.0.2/zephyr/drivers/ipm/Kconfig.nrfx_ipc_channel /home/miguel/ncs/v3.0.2/zephyr/drivers/ipm/Kconfig.sedi /home/miguel/ncs/v3.0.2/zephyr/drivers/ipm/Kconfig.stm32 /home/miguel/ncs/v3.0.2/zephyr/drivers/kscan/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/kscan/Kconfig.input /home/miguel/ncs/v3.0.2/zephyr/drivers/led/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/led/Kconfig.gpio /home/miguel/ncs/v3.0.2/zephyr/drivers/led/Kconfig.ht16k33 /home/miguel/ncs/v3.0.2/zephyr/drivers/led/Kconfig.is31fl3194 /home/miguel/ncs/v3.0.2/zephyr/drivers/led/Kconfig.is31fl3216a /home/miguel/ncs/v3.0.2/zephyr/drivers/led/Kconfig.is31fl3733 /home/miguel/ncs/v3.0.2/zephyr/drivers/led/Kconfig.lp3943 /home/miguel/ncs/v3.0.2/zephyr/drivers/led/Kconfig.lp50xx /home/miguel/ncs/v3.0.2/zephyr/drivers/led/Kconfig.lp5562 /home/miguel/ncs/v3.0.2/zephyr/drivers/led/Kconfig.lp5569 /home/miguel/ncs/v3.0.2/zephyr/drivers/led/Kconfig.ncp5623 /home/miguel/ncs/v3.0.2/zephyr/drivers/led/Kconfig.npm1300 /home/miguel/ncs/v3.0.2/zephyr/drivers/led/Kconfig.pca9633 /home/miguel/ncs/v3.0.2/zephyr/drivers/led/Kconfig.pwm /home/miguel/ncs/v3.0.2/zephyr/drivers/led/Kconfig.tlc59108 /home/miguel/ncs/v3.0.2/zephyr/drivers/led/Kconfig.xec /home/miguel/ncs/v3.0.2/zephyr/drivers/led_strip/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/led_strip/Kconfig.apa102 /home/miguel/ncs/v3.0.2/zephyr/drivers/led_strip/Kconfig.lpd880x /home/miguel/ncs/v3.0.2/zephyr/drivers/led_strip/Kconfig.tlc5971 /home/miguel/ncs/v3.0.2/zephyr/drivers/led_strip/Kconfig.tlc59731 /home/miguel/ncs/v3.0.2/zephyr/drivers/led_strip/Kconfig.ws2812 /home/miguel/ncs/v3.0.2/zephyr/drivers/lora/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/lora/Kconfig.rylrxxx /home/miguel/ncs/v3.0.2/zephyr/drivers/lora/Kconfig.sx12xx /home/miguel/ncs/v3.0.2/zephyr/drivers/mbox/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/mbox/Kconfig.andes /home/miguel/ncs/v3.0.2/zephyr/drivers/mbox/Kconfig.esp32 /home/miguel/ncs/v3.0.2/zephyr/drivers/mbox/Kconfig.ivshmem /home/miguel/ncs/v3.0.2/zephyr/drivers/mbox/Kconfig.nrf_bellboard /home/miguel/ncs/v3.0.2/zephyr/drivers/mbox/Kconfig.nrf_vevif_event /home/miguel/ncs/v3.0.2/zephyr/drivers/mbox/Kconfig.nrf_vevif_task /home/miguel/ncs/v3.0.2/zephyr/drivers/mbox/Kconfig.nrfx /home/miguel/ncs/v3.0.2/zephyr/drivers/mbox/Kconfig.nxp_imx /home/miguel/ncs/v3.0.2/zephyr/drivers/mbox/Kconfig.nxp_mailbox /home/miguel/ncs/v3.0.2/zephyr/drivers/mbox/Kconfig.nxp_s32 /home/miguel/ncs/v3.0.2/zephyr/drivers/mbox/Kconfig.stm32_hsem /home/miguel/ncs/v3.0.2/zephyr/drivers/mdio/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/mdio/Kconfig.adin2111 /home/miguel/ncs/v3.0.2/zephyr/drivers/mdio/Kconfig.dwcxgmac /home/miguel/ncs/v3.0.2/zephyr/drivers/mdio/Kconfig.esp32 /home/miguel/ncs/v3.0.2/zephyr/drivers/mdio/Kconfig.gpio /home/miguel/ncs/v3.0.2/zephyr/drivers/mdio/Kconfig.litex /home/miguel/ncs/v3.0.2/zephyr/drivers/mdio/Kconfig.nxp_enet /home/miguel/ncs/v3.0.2/zephyr/drivers/mdio/Kconfig.nxp_enet_qos /home/miguel/ncs/v3.0.2/zephyr/drivers/mdio/Kconfig.nxp_imx_netc /home/miguel/ncs/v3.0.2/zephyr/drivers/mdio/Kconfig.nxp_s32_gmac /home/miguel/ncs/v3.0.2/zephyr/drivers/mdio/Kconfig.nxp_s32_netc /home/miguel/ncs/v3.0.2/zephyr/drivers/mdio/Kconfig.renesas_ra /home/miguel/ncs/v3.0.2/zephyr/drivers/mdio/Kconfig.sam /home/miguel/ncs/v3.0.2/zephyr/drivers/mdio/Kconfig.stm32_hal /home/miguel/ncs/v3.0.2/zephyr/drivers/mdio/Kconfig.xmc4xxx /home/miguel/ncs/v3.0.2/zephyr/drivers/memc/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/memc/Kconfig.mcux /home/miguel/ncs/v3.0.2/zephyr/drivers/memc/Kconfig.mspi /home/miguel/ncs/v3.0.2/zephyr/drivers/memc/Kconfig.nxp_s32 /home/miguel/ncs/v3.0.2/zephyr/drivers/memc/Kconfig.renesas_ra /home/miguel/ncs/v3.0.2/zephyr/drivers/memc/Kconfig.sam /home/miguel/ncs/v3.0.2/zephyr/drivers/memc/Kconfig.sifive /home/miguel/ncs/v3.0.2/zephyr/drivers/memc/Kconfig.smartbond /home/miguel/ncs/v3.0.2/zephyr/drivers/memc/Kconfig.stm32 /home/miguel/ncs/v3.0.2/zephyr/drivers/mfd/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/mfd/Kconfig.ad559x /home/miguel/ncs/v3.0.2/zephyr/drivers/mfd/Kconfig.adp5585 /home/miguel/ncs/v3.0.2/zephyr/drivers/mfd/Kconfig.aw9523b /home/miguel/ncs/v3.0.2/zephyr/drivers/mfd/Kconfig.axp192 /home/miguel/ncs/v3.0.2/zephyr/drivers/mfd/Kconfig.bd8lb600fs /home/miguel/ncs/v3.0.2/zephyr/drivers/mfd/Kconfig.ds3231 /home/miguel/ncs/v3.0.2/zephyr/drivers/mfd/Kconfig.it8801 /home/miguel/ncs/v3.0.2/zephyr/drivers/mfd/Kconfig.lpflexcomm /home/miguel/ncs/v3.0.2/zephyr/drivers/mfd/Kconfig.max20335 /home/miguel/ncs/v3.0.2/zephyr/drivers/mfd/Kconfig.max31790 /home/miguel/ncs/v3.0.2/zephyr/drivers/mfd/Kconfig.nct38xx /home/miguel/ncs/v3.0.2/zephyr/drivers/mfd/Kconfig.npm1300 /home/miguel/ncs/v3.0.2/zephyr/drivers/mfd/Kconfig.npm2100 /home/miguel/ncs/v3.0.2/zephyr/drivers/mfd/Kconfig.npm6001 /home/miguel/ncs/v3.0.2/zephyr/drivers/mfd/Kconfig.tle9104 /home/miguel/ncs/v3.0.2/zephyr/drivers/mipi_dbi/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/mipi_dbi/Kconfig.bitbang /home/miguel/ncs/v3.0.2/zephyr/drivers/mipi_dbi/Kconfig.nxp_flexio_lcdif /home/miguel/ncs/v3.0.2/zephyr/drivers/mipi_dbi/Kconfig.nxp_lcdic /home/miguel/ncs/v3.0.2/zephyr/drivers/mipi_dbi/Kconfig.smartbond /home/miguel/ncs/v3.0.2/zephyr/drivers/mipi_dbi/Kconfig.spi /home/miguel/ncs/v3.0.2/zephyr/drivers/mipi_dbi/Kconfig.stm32_fmc /home/miguel/ncs/v3.0.2/zephyr/drivers/mipi_dsi/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/mipi_dsi/Kconfig.mcux /home/miguel/ncs/v3.0.2/zephyr/drivers/mipi_dsi/Kconfig.renesas_ra /home/miguel/ncs/v3.0.2/zephyr/drivers/mipi_dsi/Kconfig.stm32 /home/miguel/ncs/v3.0.2/zephyr/drivers/mipi_dsi/Kconfig.test /home/miguel/ncs/v3.0.2/zephyr/drivers/misc/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/drivers/misc/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/misc/coresight/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/drivers/misc/coresight/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/misc/devmux/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/misc/ft8xx/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/misc/grove_lcd_rgb/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/misc/mcux_flexio/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/misc/nordic_vpr_launcher/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/misc/nxp_s32_emios/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/misc/pio_rpi_pico/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/misc/renesas_ra_external_interrupt/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/misc/timeaware_gpio/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/misc/timeaware_gpio/Kconfig.timeaware_gpio_intel /home/miguel/ncs/v3.0.2/zephyr/drivers/mm/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/modem/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/modem/Kconfig.at_shell /home/miguel/ncs/v3.0.2/zephyr/drivers/modem/Kconfig.cellular /home/miguel/ncs/v3.0.2/zephyr/drivers/modem/Kconfig.hl7800 /home/miguel/ncs/v3.0.2/zephyr/drivers/modem/Kconfig.quectel-bg9x /home/miguel/ncs/v3.0.2/zephyr/drivers/modem/Kconfig.simcom-sim7080 /home/miguel/ncs/v3.0.2/zephyr/drivers/modem/Kconfig.ublox-sara-r4 /home/miguel/ncs/v3.0.2/zephyr/drivers/modem/Kconfig.wncm14a2a /home/miguel/ncs/v3.0.2/zephyr/drivers/mspi/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/mspi/Kconfig.ambiq /home/miguel/ncs/v3.0.2/zephyr/drivers/mspi/Kconfig.dw /home/miguel/ncs/v3.0.2/zephyr/drivers/mspi/Kconfig.mspi_emul /home/miguel/ncs/v3.0.2/zephyr/drivers/net/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/pcie/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/drivers/pcie/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/pcie/endpoint/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/pcie/endpoint/Kconfig.iproc /home/miguel/ncs/v3.0.2/zephyr/drivers/pcie/host/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/peci/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/peci/Kconfig.it8xxx2 /home/miguel/ncs/v3.0.2/zephyr/drivers/peci/Kconfig.npcx /home/miguel/ncs/v3.0.2/zephyr/drivers/peci/Kconfig.xec /home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig.ambiq /home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig.b91 /home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig.cc13xx_cc26xx /home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig.emsdp /home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig.ene /home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig.eos_s3 /home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig.esp32 /home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig.gd32 /home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig.gecko /home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig.ifx_cat1 /home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig.imx /home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig.it8xxx2 /home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig.lpc_iocon /home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig.max32 /home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig.mci_io_mux /home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig.mec5 /home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig.npcx /home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig.nrf /home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig.numaker /home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig.numicro /home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig.nxp_port /home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig.nxp_s32 /home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig.realtek_rts5912 /home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig.rpi_pico /home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig.rv32m1 /home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig.sam /home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig.sam0 /home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig.sifive /home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig.silabs_dbus /home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig.stm32 /home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig.sy1xx /home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig.ti_cc32xx /home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig.ti_k3 /home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig.wch_afio /home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig.xec /home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig.xlnx /home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig.xmc4xxx /home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig.zynqmp /home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/renesas/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/renesas/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/renesas/ra/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/renesas/rcar/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/renesas/rz/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/renesas/smartbond/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/pm_cpu_ops/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/power_domain/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/ps2/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/ps2/Kconfig.npcx /home/miguel/ncs/v3.0.2/zephyr/drivers/ps2/Kconfig.xec /home/miguel/ncs/v3.0.2/zephyr/drivers/ptp_clock/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/ptp_clock/Kconfig.nxp_enet /home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.b91 /home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.cc13xx_cc26xx_timer /home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.ene /home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.esp32 /home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.fake /home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.gd32 /home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.gecko /home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.ifx_cat1 /home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.imx /home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.intel_blinky /home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.it8801 /home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.it8xxx2 /home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.litex /home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.max31790 /home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.max32 /home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.mcux /home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.mcux_ctimer /home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.mcux_ftm /home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.mcux_pwt /home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.mcux_qtmr /home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.mcux_sctimer /home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.mcux_tpm /home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.npcx /home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.nrf_sw /home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.nrfx /home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.numaker /home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.nxp_flexio /home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.nxp_s32_emios /home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.pca9685 /home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.rcar /home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.renesas_ra /home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.rpi_pico /home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.rv32m1_tpm /home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.sam /home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.sam0 /home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.sam0_tc /home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.sifive /home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.stm32 /home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.test /home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.xec /home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.xlnx /home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.xmc4xxx_ccu4 /home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.xmc4xxx_ccu8 /home/miguel/ncs/v3.0.2/zephyr/drivers/regulator/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/regulator/Kconfig.adp5360 /home/miguel/ncs/v3.0.2/zephyr/drivers/regulator/Kconfig.axp192 /home/miguel/ncs/v3.0.2/zephyr/drivers/regulator/Kconfig.cp9314 /home/miguel/ncs/v3.0.2/zephyr/drivers/regulator/Kconfig.da1469x /home/miguel/ncs/v3.0.2/zephyr/drivers/regulator/Kconfig.fake /home/miguel/ncs/v3.0.2/zephyr/drivers/regulator/Kconfig.fixed /home/miguel/ncs/v3.0.2/zephyr/drivers/regulator/Kconfig.gpio /home/miguel/ncs/v3.0.2/zephyr/drivers/regulator/Kconfig.max20335 /home/miguel/ncs/v3.0.2/zephyr/drivers/regulator/Kconfig.mpm54304 /home/miguel/ncs/v3.0.2/zephyr/drivers/regulator/Kconfig.npm1100 /home/miguel/ncs/v3.0.2/zephyr/drivers/regulator/Kconfig.npm1300 /home/miguel/ncs/v3.0.2/zephyr/drivers/regulator/Kconfig.npm2100 /home/miguel/ncs/v3.0.2/zephyr/drivers/regulator/Kconfig.npm6001 /home/miguel/ncs/v3.0.2/zephyr/drivers/regulator/Kconfig.nxp_vref /home/miguel/ncs/v3.0.2/zephyr/drivers/regulator/Kconfig.pca9420 /home/miguel/ncs/v3.0.2/zephyr/drivers/regulator/Kconfig.rpi_pico /home/miguel/ncs/v3.0.2/zephyr/drivers/reset/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/reset/Kconfig.aspeed /home/miguel/ncs/v3.0.2/zephyr/drivers/reset/Kconfig.gd32 /home/miguel/ncs/v3.0.2/zephyr/drivers/reset/Kconfig.intel_socfpga /home/miguel/ncs/v3.0.2/zephyr/drivers/reset/Kconfig.lpc_syscon /home/miguel/ncs/v3.0.2/zephyr/drivers/reset/Kconfig.npcx /home/miguel/ncs/v3.0.2/zephyr/drivers/reset/Kconfig.numaker /home/miguel/ncs/v3.0.2/zephyr/drivers/reset/Kconfig.nxp_rstctl /home/miguel/ncs/v3.0.2/zephyr/drivers/reset/Kconfig.rpi_pico /home/miguel/ncs/v3.0.2/zephyr/drivers/reset/Kconfig.stm32 /home/miguel/ncs/v3.0.2/zephyr/drivers/retained_mem/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/retained_mem/Kconfig.nrf /home/miguel/ncs/v3.0.2/zephyr/drivers/retained_mem/Kconfig.zephyr /home/miguel/ncs/v3.0.2/zephyr/drivers/rtc/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/rtc/Kconfig.am1805 /home/miguel/ncs/v3.0.2/zephyr/drivers/rtc/Kconfig.ambiq /home/miguel/ncs/v3.0.2/zephyr/drivers/rtc/Kconfig.ds1307 /home/miguel/ncs/v3.0.2/zephyr/drivers/rtc/Kconfig.ds3231 /home/miguel/ncs/v3.0.2/zephyr/drivers/rtc/Kconfig.emul /home/miguel/ncs/v3.0.2/zephyr/drivers/rtc/Kconfig.fake /home/miguel/ncs/v3.0.2/zephyr/drivers/rtc/Kconfig.ifx_cat1 /home/miguel/ncs/v3.0.2/zephyr/drivers/rtc/Kconfig.mc146818 /home/miguel/ncs/v3.0.2/zephyr/drivers/rtc/Kconfig.numaker /home/miguel/ncs/v3.0.2/zephyr/drivers/rtc/Kconfig.nxp_irtc /home/miguel/ncs/v3.0.2/zephyr/drivers/rtc/Kconfig.pcf8523 /home/miguel/ncs/v3.0.2/zephyr/drivers/rtc/Kconfig.pcf8563 /home/miguel/ncs/v3.0.2/zephyr/drivers/rtc/Kconfig.rpi_pico /home/miguel/ncs/v3.0.2/zephyr/drivers/rtc/Kconfig.rv3028 /home/miguel/ncs/v3.0.2/zephyr/drivers/rtc/Kconfig.rv8263 /home/miguel/ncs/v3.0.2/zephyr/drivers/rtc/Kconfig.sam /home/miguel/ncs/v3.0.2/zephyr/drivers/rtc/Kconfig.smartbond /home/miguel/ncs/v3.0.2/zephyr/drivers/rtc/Kconfig.stm32 /home/miguel/ncs/v3.0.2/zephyr/drivers/rtc/Kconfig.xmc4xxx /home/miguel/ncs/v3.0.2/zephyr/drivers/sdhc/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sdhc/Kconfig.esp32 /home/miguel/ncs/v3.0.2/zephyr/drivers/sdhc/Kconfig.ifx_cat1 /home/miguel/ncs/v3.0.2/zephyr/drivers/sdhc/Kconfig.imx /home/miguel/ncs/v3.0.2/zephyr/drivers/sdhc/Kconfig.intel /home/miguel/ncs/v3.0.2/zephyr/drivers/sdhc/Kconfig.mcux_sdif /home/miguel/ncs/v3.0.2/zephyr/drivers/sdhc/Kconfig.rcar /home/miguel/ncs/v3.0.2/zephyr/drivers/sdhc/Kconfig.renesas_ra /home/miguel/ncs/v3.0.2/zephyr/drivers/sdhc/Kconfig.sam_hsmci /home/miguel/ncs/v3.0.2/zephyr/drivers/sdhc/Kconfig.sdhc_cdns /home/miguel/ncs/v3.0.2/zephyr/drivers/sdhc/Kconfig.spi /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/Kconfig.trigger_template /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/a01nyub/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/adi/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/adi/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/adi/adltc2990/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/adi/adt7310/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/adi/adt7420/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/adi/adxl345/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/adi/adxl362/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/adi/adxl367/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/adi/adxl372/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/amd_sb_tsi/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/amg88xx/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ams/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ams/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ams/ams_as5600/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ams/ams_iAQcore/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ams/ccs811/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ams/ens210/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ams/tcs3400/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ams/tmd2620/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ams/tsl2540/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ams/tsl2561/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ams/tsl2591/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/aosong/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/aosong/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/aosong/ags10/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/aosong/dht/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/aosong/dht20/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/apds9253/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/apds9306/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/apds9960/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/asahi_kasei/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/asahi_kasei/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/asahi_kasei/ak8975/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/asahi_kasei/akm09918c/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/bosch/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/bosch/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/bosch/bma280/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/bosch/bma4xx/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/bosch/bmc150_magn/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/bosch/bme280/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/bosch/bme680/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/bosch/bmg160/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/bosch/bmi08x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/bosch/bmi160/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/bosch/bmi270/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/bosch/bmi323/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/bosch/bmm150/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/bosch/bmm350/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/bosch/bmp180/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/bosch/bmp388/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/bosch/bmp581/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/current_amp/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ene_tach_kb1200/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ens160/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/espressif/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/espressif/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/espressif/esp32_temp/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/espressif/pcnt_esp32/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/explorir_m/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/f75303/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/fcx_mldx5/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/grow_r502a/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/hc_sr04/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/honeywell/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/honeywell/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/honeywell/hmc5883l/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/honeywell/mpr/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/honeywell/sm351lt/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/hp206c/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/infineon/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/infineon/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/infineon/dps310/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/infineon/tle9104/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/infineon/xmc4xxx_temp/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ist8310/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ite/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ite/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ite/ite_tach_it8xxx2/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ite/ite_vcmp_it8xxx2/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/jedec/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/jedec/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/jedec/jc42/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/lm35/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/lm75/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/lm77/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ltrf216a/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/maxim/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/maxim/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/maxim/ds18b20/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/maxim/ds3231/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/maxim/max17055/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/maxim/max17262/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/maxim/max30101/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/maxim/max31790/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/maxim/max31855/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/maxim/max31865/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/maxim/max31875/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/maxim/max44009/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/maxim/max6675/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/meas/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/meas/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/meas/ms5607/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/meas/ms5837/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/memsic/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/memsic/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/memsic/mc3419/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/memsic/mmc56x3/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/mhz19b/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/microchip/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/microchip/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/microchip/mchp_tach_xec/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/microchip/mcp9600/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/microchip/mcp970x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/microchip/tcn75a/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/nct75/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/nordic/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/nordic/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/nordic/npm1300_charger/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/nordic/npm2100_vbat/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/nordic/qdec_nrfx/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/nordic/temp/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/nordic/temp/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ntc_thermistor/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/nuvoton/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/nuvoton/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/nuvoton/nuvoton_adc_cmp_npcx/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/nuvoton/nuvoton_tach_npcx/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/nxp/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/nxp/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/nxp/fxas21002/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/nxp/fxls8974/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/nxp/fxos8700/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/nxp/mcux_acmp/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/nxp/mcux_lpcmp/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/nxp/nxp_kinetis_temp/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/nxp/nxp_tempmon/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/nxp/p3t1755/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/nxp/qdec_mcux/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/nxp/qdec_nxp_s32/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/pms7003/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/qdec_sam/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/renesas/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/renesas/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/renesas/hs300x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/renesas/hs400x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/renesas/isl29035/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/rohm/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/rohm/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/rohm/bd8lb600fs/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/rohm/bh1750/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/rpi_pico_temp/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/s11059/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/sbs_gauge/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/seeed/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/seeed/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/seeed/grove/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/seeed/hm330x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/sensirion/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/sensirion/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/sensirion/scd4x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/sensirion/sgp40/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/sensirion/sht3xd/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/sensirion/sht4x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/sensirion/shtcx/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/sensirion/sts4x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/silabs/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/silabs/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/silabs/si7006/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/silabs/si7055/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/silabs/si7060/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/silabs/si7210/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/hts221/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/i3g4250d/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/iis2dh/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/iis2dlpc/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/iis2iclx/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/iis2mdc/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/iis328dq/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/iis3dhhc/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/ism330dhcx/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/lis2de12/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/lis2dh/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/lis2ds12/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/lis2du12/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/lis2dux12/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/lis2dw12/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/lis2mdl/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/lis3mdl/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/lps22hb/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/lps22hh/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/lps25hb/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/lps2xdf/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/lsm303dlhc_magn/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/lsm6ds0/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/lsm6dsl/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/lsm6dso/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/lsm6dso16is/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/lsm6dsv16x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/lsm9ds0_gyro/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/lsm9ds0_mfd/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/lsm9ds1/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/qdec_stm32/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/stm32_digi_temp/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/stm32_temp/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/stm32_vbat/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/stm32_vref/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/stts22h/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/stts751/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/vl53l0x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/vl53l1x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/sx9500/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/tdk/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/tdk/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/tdk/icm42605/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/tdk/icm42670/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/tdk/icm42688/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/tdk/icp10125/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/tdk/mpu6050/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/tdk/mpu9250/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/th02/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ti/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ti/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ti/bq274xx/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ti/fdc2x1x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ti/ina219/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ti/ina226/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ti/ina23x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ti/ina3221/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ti/lm95234/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ti/opt3001/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ti/ti_hdc/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ti/ti_hdc20xx/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ti/tmag5170/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ti/tmag5273/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ti/tmp007/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ti/tmp1075/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ti/tmp108/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ti/tmp112/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ti/tmp114/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ti/tmp116/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ti/tmp435/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/tsic_xx6/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/veaa_x_3/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/vishay/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/vishay/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/vishay/vcnl36825t/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/vishay/vcnl4040/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/vishay/veml6031/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/vishay/veml7700/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/voltage_divider/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/wsen/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/wsen/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/wsen/wsen_hids_2525020210002/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/xbr818/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.altera /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.altera_jtag /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.apbuart /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.b91 /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.bcm2711 /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.bt /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.cc13xx_cc26xx /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.cc32xx /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.cdns /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.cmsdk_apb /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.efinix_sapphire /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.emul /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.ene /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.esp32 /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.gd32 /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.gecko /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.hostlink /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.ifx_cat1 /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.imx /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.intel_lw /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.it8xxx2 /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.leuart_gecko /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.litex /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.lpc11u6x /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.max32 /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.mcux /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.mcux_flexcomm /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.mcux_iuart /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.mcux_lpsci /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.mcux_lpuart /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.miv /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.msp432p4xx /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.native_posix /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.native_tty /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.neorv32 /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.npcx /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.nrfx /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.nrfx_uart_instance /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.ns16550 /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.numaker /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.numicro /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.nxp_s32 /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.opentitan /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.pl011 /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.psoc6 /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.ql_usbserialport_s3b /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.rcar /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.realtek_rts5912 /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.renesas_ra /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.renesas_ra8 /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.renesas_rz /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.rpi_pico /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.rtt /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.rv32m1_lpuart /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.rzt2m /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.sam0 /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.sedi /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.si32 /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.sifive /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.smartbond /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.stellaris /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.stm32 /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.sy1xx /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.test /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.uart_sam /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.usart_sam /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.wch_usart /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.xec /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.xen /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.xlnx /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.xmc4xxx /home/miguel/ncs/v3.0.2/zephyr/drivers/sip_svc/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sip_svc/Kconfig.sip_smc_agilex /home/miguel/ncs/v3.0.2/zephyr/drivers/smbus/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.ambiq /home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.andes_atcspi200 /home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.b91 /home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.bitbang /home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.cc13xx_cc26xx /home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.dw /home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.esp32 /home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.gd32 /home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.gecko_eusart /home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.gecko_usart /home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.grlib_spimctrl /home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.ifx_cat1 /home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.it8xxx2 /home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.litex /home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.max32 /home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.mchp_mss /home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.mchp_mss_qspi /home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.mcux_dspi /home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.mcux_ecspi /home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.mcux_flexcomm /home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.mcux_flexio /home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.mcux_lpspi /home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.npcx /home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.nrfx /home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.numaker /home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.nxp_s32 /home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.oc_simple /home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.opentitan /home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.pl022 /home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.psoc6 /home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.pw /home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.renesas_ra /home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.renesas_ra8 /home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.rpi_pico /home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.rv32m1_lpspi /home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.sam /home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.sam0 /home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.sedi /home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.sifive /home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.smartbond /home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.spi_emul /home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.stm32 /home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.test /home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.xec_qmspi /home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.xlnx /home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.xmc4xxx /home/miguel/ncs/v3.0.2/zephyr/drivers/stepper/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/stepper/Kconfig.fake /home/miguel/ncs/v3.0.2/zephyr/drivers/stepper/Kconfig.gpio /home/miguel/ncs/v3.0.2/zephyr/drivers/stepper/Kconfig.stepper_event_template /home/miguel/ncs/v3.0.2/zephyr/drivers/stepper/adi_tmc/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/stepper/adi_tmc/Kconfig.tmc22xx /home/miguel/ncs/v3.0.2/zephyr/drivers/stepper/adi_tmc/Kconfig.tmc5041 /home/miguel/ncs/v3.0.2/zephyr/drivers/stepper/adi_tmc/Kconfig.tmc_rampgen_template /home/miguel/ncs/v3.0.2/zephyr/drivers/stepper/step_dir/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/stepper/ti/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/stepper/ti/Kconfig.drv8424 /home/miguel/ncs/v3.0.2/zephyr/drivers/syscon/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/tee/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/tee/optee/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/timer/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig.altera_avalon /home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig.ambiq /home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig.arcv2 /home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig.arm_arch /home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig.cavs /home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig.cc13xx_cc26xx_rtc /home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig.cortex_m_systick /home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig.esp32 /home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig.gecko /home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig.ite_it8xxx2 /home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig.leon_gptimer /home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig.litex /home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig.mchp_xec_rtos /home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig.mcux_gpt /home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig.mcux_lptmr /home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig.mcux_os /home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig.mec5 /home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig.mips_cp0 /home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig.mtk_adsp /home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig.native_posix /home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig.npcx_itim /home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig.nrf_grtc /home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig.nrf_rtc /home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig.nrf_xrtc /home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig.rcar_cmt /home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig.realtek_rts5912_rtmr /home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig.riscv_machine /home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig.rv32m1_lptmr /home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig.sam0_rtc /home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig.silabs /home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig.smartbond /home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig.stm32_lptim /home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig.sy1xx_sys_timer /home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig.ti_dm_timer /home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig.wch_ch32v00x /home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig.x86 /home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig.xlnx_psttc /home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig.xtensa /home/miguel/ncs/v3.0.2/zephyr/drivers/usb/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/drivers/usb/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/usb/bc12/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/usb/bc12/Kconfig.pi3usb9201 /home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/usb/device/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/drivers/usb/device/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/usb/udc/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/usb/udc/Kconfig.ambiq /home/miguel/ncs/v3.0.2/zephyr/drivers/usb/udc/Kconfig.dwc2 /home/miguel/ncs/v3.0.2/zephyr/drivers/usb/udc/Kconfig.it82xx2 /home/miguel/ncs/v3.0.2/zephyr/drivers/usb/udc/Kconfig.kinetis /home/miguel/ncs/v3.0.2/zephyr/drivers/usb/udc/Kconfig.mcux /home/miguel/ncs/v3.0.2/zephyr/drivers/usb/udc/Kconfig.nrf /home/miguel/ncs/v3.0.2/zephyr/drivers/usb/udc/Kconfig.numaker /home/miguel/ncs/v3.0.2/zephyr/drivers/usb/udc/Kconfig.renesas_ra /home/miguel/ncs/v3.0.2/zephyr/drivers/usb/udc/Kconfig.rpi_pico /home/miguel/ncs/v3.0.2/zephyr/drivers/usb/udc/Kconfig.skeleton /home/miguel/ncs/v3.0.2/zephyr/drivers/usb/udc/Kconfig.smartbond /home/miguel/ncs/v3.0.2/zephyr/drivers/usb/udc/Kconfig.stm32 /home/miguel/ncs/v3.0.2/zephyr/drivers/usb/udc/Kconfig.virtual /home/miguel/ncs/v3.0.2/zephyr/drivers/usb/uhc/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/usb/uhc/Kconfig.max3421e /home/miguel/ncs/v3.0.2/zephyr/drivers/usb/uhc/Kconfig.virtual /home/miguel/ncs/v3.0.2/zephyr/drivers/usb/uvb/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/usb_c/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/drivers/usb_c/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/usb_c/ppc/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/usb_c/ppc/Kconfig.numaker /home/miguel/ncs/v3.0.2/zephyr/drivers/usb_c/ppc/Kconfig.nxp /home/miguel/ncs/v3.0.2/zephyr/drivers/usb_c/tcpc/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/usb_c/tcpc/Kconfig.tcpc_numaker /home/miguel/ncs/v3.0.2/zephyr/drivers/usb_c/tcpc/Kconfig.tcpc_ps8xxx /home/miguel/ncs/v3.0.2/zephyr/drivers/usb_c/tcpc/Kconfig.tcpc_stm32 /home/miguel/ncs/v3.0.2/zephyr/drivers/usb_c/tcpc/Kconfig.tcpc_tcpci /home/miguel/ncs/v3.0.2/zephyr/drivers/usb_c/vbus/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/usb_c/vbus/Kconfig.numaker /home/miguel/ncs/v3.0.2/zephyr/drivers/usb_c/vbus/Kconfig.usbc_vbus_adc /home/miguel/ncs/v3.0.2/zephyr/drivers/usb_c/vbus/Kconfig.usbc_vbus_tcpci /home/miguel/ncs/v3.0.2/zephyr/drivers/video/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/video/Kconfig.emul_imager /home/miguel/ncs/v3.0.2/zephyr/drivers/video/Kconfig.emul_rx /home/miguel/ncs/v3.0.2/zephyr/drivers/video/Kconfig.esp32_dvp /home/miguel/ncs/v3.0.2/zephyr/drivers/video/Kconfig.gc2145 /home/miguel/ncs/v3.0.2/zephyr/drivers/video/Kconfig.mcux_csi /home/miguel/ncs/v3.0.2/zephyr/drivers/video/Kconfig.mcux_mipi_csi2rx /home/miguel/ncs/v3.0.2/zephyr/drivers/video/Kconfig.mcux_sdma /home/miguel/ncs/v3.0.2/zephyr/drivers/video/Kconfig.mt9m114 /home/miguel/ncs/v3.0.2/zephyr/drivers/video/Kconfig.ov2640 /home/miguel/ncs/v3.0.2/zephyr/drivers/video/Kconfig.ov5640 /home/miguel/ncs/v3.0.2/zephyr/drivers/video/Kconfig.ov7670 /home/miguel/ncs/v3.0.2/zephyr/drivers/video/Kconfig.ov7725 /home/miguel/ncs/v3.0.2/zephyr/drivers/video/Kconfig.stm32_dcmi /home/miguel/ncs/v3.0.2/zephyr/drivers/video/Kconfig.sw_generator /home/miguel/ncs/v3.0.2/zephyr/drivers/virtualization/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/w1/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/w1/Kconfig.ds2477_85 /home/miguel/ncs/v3.0.2/zephyr/drivers/w1/Kconfig.ds2482-800 /home/miguel/ncs/v3.0.2/zephyr/drivers/w1/Kconfig.ds2484 /home/miguel/ncs/v3.0.2/zephyr/drivers/w1/Kconfig.ds2485 /home/miguel/ncs/v3.0.2/zephyr/drivers/w1/Kconfig.max32 /home/miguel/ncs/v3.0.2/zephyr/drivers/w1/Kconfig.test /home/miguel/ncs/v3.0.2/zephyr/drivers/w1/Kconfig.zephyr_gpio /home/miguel/ncs/v3.0.2/zephyr/drivers/w1/Kconfig.zephyr_serial /home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig.ambiq /home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig.andes_atcwdt200 /home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig.cc13xx_cc26xx /home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig.cc32xx /home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig.cmsdk_apb /home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig.dw /home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig.ene /home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig.esp32 /home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig.gd32 /home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig.gecko /home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig.ifx_cat1 /home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig.intel_adsp /home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig.it8xxx2 /home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig.litex /home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig.max32 /home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig.mcux /home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig.mcux_imx /home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig.npcx /home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig.npm1300 /home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig.npm2100 /home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig.npm6001 /home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig.nrfx /home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig.numaker /home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig.nxp_fs26 /home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig.nxp_s32 /home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig.opentitan /home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig.rpi_pico /home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig.sam /home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig.sam0 /home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig.shell /home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig.sifive /home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig.smartbond /home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig.stm32 /home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig.tco /home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig.ti_tps382x /home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig.xec /home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig.xlnx /home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig.xmc4xxx /home/miguel/ncs/v3.0.2/zephyr/drivers/wifi/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/wifi/esp32/Kconfig.esp32 /home/miguel/ncs/v3.0.2/zephyr/drivers/wifi/esp_at/Kconfig.esp_at /home/miguel/ncs/v3.0.2/zephyr/drivers/wifi/eswifi/Kconfig.eswifi /home/miguel/ncs/v3.0.2/zephyr/drivers/wifi/infineon/Kconfig.airoc /home/miguel/ncs/v3.0.2/zephyr/drivers/wifi/nrf_wifi/Kconfig.nrfwifi /home/miguel/ncs/v3.0.2/zephyr/drivers/wifi/nxp/Kconfig.nxp /home/miguel/ncs/v3.0.2/zephyr/drivers/wifi/simplelink/Kconfig.simplelink /home/miguel/ncs/v3.0.2/zephyr/drivers/wifi/winc1500/Kconfig.winc1500 /home/miguel/ncs/v3.0.2/zephyr/drivers/xen/Kconfig /home/miguel/ncs/v3.0.2/zephyr/dts/Kconfig /home/miguel/ncs/v3.0.2/zephyr/dts/arm/armv7-m.dtsi /home/miguel/ncs/v3.0.2/zephyr/dts/arm/nordic/nrf52833.dtsi /home/miguel/ncs/v3.0.2/zephyr/dts/arm/nordic/nrf52833_qdaa.dtsi /home/miguel/ncs/v3.0.2/zephyr/dts/arm/nordic/override.dtsi /home/miguel/ncs/v3.0.2/zephyr/dts/common/freq.h /home/miguel/ncs/v3.0.2/zephyr/dts/common/mem.h /home/miguel/ncs/v3.0.2/zephyr/dts/common/nordic/nrf_common.dtsi /home/miguel/ncs/v3.0.2/zephyr/dts/common/skeleton.dtsi /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/arch/common/app_data_alignment.ld /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/adc/adc.h /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/adc/nrf-saadc-v2.h /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/adc/nrf-saadc-v3.h /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/adc/nrf-saadc.h /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/dt-util.h /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/gpio/gpio.h /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/i2c/i2c.h /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/input/input-event-codes.h /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/pinctrl/nrf-pinctrl.h /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/pwm/pwm.h /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/regulator/nrf5x.h /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/app_smem.ld /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/app_smem_aligned.ld /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/app_smem_unaligned.ld /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/sys/util_internal.h /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/sys/util_internal_is_eq.h /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/sys/util_internal_util_dec.h /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/sys/util_internal_util_inc.h /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/sys/util_internal_util_x2.h /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/sys/util_listify.h /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/sys/util_loops.h /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/sys/util_macro.h /home/miguel/ncs/v3.0.2/zephyr/kernel/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/kernel/Kconfig /home/miguel/ncs/v3.0.2/zephyr/kernel/Kconfig.device /home/miguel/ncs/v3.0.2/zephyr/kernel/Kconfig.init /home/miguel/ncs/v3.0.2/zephyr/kernel/Kconfig.mem_domain /home/miguel/ncs/v3.0.2/zephyr/kernel/Kconfig.obj_core /home/miguel/ncs/v3.0.2/zephyr/kernel/Kconfig.smp /home/miguel/ncs/v3.0.2/zephyr/kernel/Kconfig.vm /home/miguel/ncs/v3.0.2/zephyr/lib/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/lib/Kconfig /home/miguel/ncs/v3.0.2/zephyr/lib/acpi/Kconfig /home/miguel/ncs/v3.0.2/zephyr/lib/cpp/Kconfig /home/miguel/ncs/v3.0.2/zephyr/lib/crc/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/lib/crc/Kconfig /home/miguel/ncs/v3.0.2/zephyr/lib/hash/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/lib/hash/Kconfig /home/miguel/ncs/v3.0.2/zephyr/lib/hash/Kconfig.hash_func /home/miguel/ncs/v3.0.2/zephyr/lib/hash/Kconfig.hash_map /home/miguel/ncs/v3.0.2/zephyr/lib/heap/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/lib/heap/Kconfig /home/miguel/ncs/v3.0.2/zephyr/lib/libc/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/lib/libc/Kconfig /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/Kconfig /home/miguel/ncs/v3.0.2/zephyr/lib/libc/minimal/Kconfig /home/miguel/ncs/v3.0.2/zephyr/lib/libc/newlib/Kconfig /home/miguel/ncs/v3.0.2/zephyr/lib/libc/picolibc/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/lib/libc/picolibc/Kconfig /home/miguel/ncs/v3.0.2/zephyr/lib/mem_blocks/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/lib/mem_blocks/Kconfig /home/miguel/ncs/v3.0.2/zephyr/lib/net_buf/Kconfig /home/miguel/ncs/v3.0.2/zephyr/lib/open-amp/Kconfig /home/miguel/ncs/v3.0.2/zephyr/lib/os/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/lib/os/Kconfig /home/miguel/ncs/v3.0.2/zephyr/lib/os/Kconfig.cbprintf /home/miguel/ncs/v3.0.2/zephyr/lib/os/zvfs/Kconfig /home/miguel/ncs/v3.0.2/zephyr/lib/posix/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/lib/posix/Kconfig /home/miguel/ncs/v3.0.2/zephyr/lib/posix/options/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/lib/posix/options/Kconfig /home/miguel/ncs/v3.0.2/zephyr/lib/posix/options/Kconfig.aio /home/miguel/ncs/v3.0.2/zephyr/lib/posix/options/Kconfig.barrier /home/miguel/ncs/v3.0.2/zephyr/lib/posix/options/Kconfig.c_lang_r /home/miguel/ncs/v3.0.2/zephyr/lib/posix/options/Kconfig.c_lib_ext /home/miguel/ncs/v3.0.2/zephyr/lib/posix/options/Kconfig.compat /home/miguel/ncs/v3.0.2/zephyr/lib/posix/options/Kconfig.deprecated /home/miguel/ncs/v3.0.2/zephyr/lib/posix/options/Kconfig.device_io /home/miguel/ncs/v3.0.2/zephyr/lib/posix/options/Kconfig.fd_mgmt /home/miguel/ncs/v3.0.2/zephyr/lib/posix/options/Kconfig.file_system_r /home/miguel/ncs/v3.0.2/zephyr/lib/posix/options/Kconfig.fs /home/miguel/ncs/v3.0.2/zephyr/lib/posix/options/Kconfig.mem /home/miguel/ncs/v3.0.2/zephyr/lib/posix/options/Kconfig.mqueue /home/miguel/ncs/v3.0.2/zephyr/lib/posix/options/Kconfig.net /home/miguel/ncs/v3.0.2/zephyr/lib/posix/options/Kconfig.proc1 /home/miguel/ncs/v3.0.2/zephyr/lib/posix/options/Kconfig.procN /home/miguel/ncs/v3.0.2/zephyr/lib/posix/options/Kconfig.profile /home/miguel/ncs/v3.0.2/zephyr/lib/posix/options/Kconfig.pthread /home/miguel/ncs/v3.0.2/zephyr/lib/posix/options/Kconfig.rwlock /home/miguel/ncs/v3.0.2/zephyr/lib/posix/options/Kconfig.sched /home/miguel/ncs/v3.0.2/zephyr/lib/posix/options/Kconfig.semaphore /home/miguel/ncs/v3.0.2/zephyr/lib/posix/options/Kconfig.signal /home/miguel/ncs/v3.0.2/zephyr/lib/posix/options/Kconfig.spinlock /home/miguel/ncs/v3.0.2/zephyr/lib/posix/options/Kconfig.sync_io /home/miguel/ncs/v3.0.2/zephyr/lib/posix/options/Kconfig.timer /home/miguel/ncs/v3.0.2/zephyr/lib/posix/options/Kconfig.toolchain /home/miguel/ncs/v3.0.2/zephyr/lib/posix/options/Kconfig.xsi /home/miguel/ncs/v3.0.2/zephyr/lib/posix/shell/Kconfig /home/miguel/ncs/v3.0.2/zephyr/lib/posix/shell/Kconfig.env /home/miguel/ncs/v3.0.2/zephyr/lib/posix/shell/Kconfig.uname /home/miguel/ncs/v3.0.2/zephyr/lib/runtime/Kconfig /home/miguel/ncs/v3.0.2/zephyr/lib/smf/Kconfig /home/miguel/ncs/v3.0.2/zephyr/lib/utils/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/lib/utils/Kconfig /home/miguel/ncs/v3.0.2/zephyr/misc/empty_file.c /home/miguel/ncs/v3.0.2/zephyr/misc/generated/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/misc/generated/configs.c.in /home/miguel/ncs/v3.0.2/zephyr/modules/Kconfig /home/miguel/ncs/v3.0.2/zephyr/modules/Kconfig.altera /home/miguel/ncs/v3.0.2/zephyr/modules/Kconfig.atmel /home/miguel/ncs/v3.0.2/zephyr/modules/Kconfig.chre /home/miguel/ncs/v3.0.2/zephyr/modules/Kconfig.cypress /home/miguel/ncs/v3.0.2/zephyr/modules/Kconfig.eos_s3 /home/miguel/ncs/v3.0.2/zephyr/modules/Kconfig.esp32 /home/miguel/ncs/v3.0.2/zephyr/modules/Kconfig.imx /home/miguel/ncs/v3.0.2/zephyr/modules/Kconfig.infineon /home/miguel/ncs/v3.0.2/zephyr/modules/Kconfig.intel /home/miguel/ncs/v3.0.2/zephyr/modules/Kconfig.libmetal /home/miguel/ncs/v3.0.2/zephyr/modules/Kconfig.mcuboot /home/miguel/ncs/v3.0.2/zephyr/modules/Kconfig.mcux /home/miguel/ncs/v3.0.2/zephyr/modules/Kconfig.microchip /home/miguel/ncs/v3.0.2/zephyr/modules/Kconfig.nuvoton /home/miguel/ncs/v3.0.2/zephyr/modules/Kconfig.nxp_s32 /home/miguel/ncs/v3.0.2/zephyr/modules/Kconfig.open-amp /home/miguel/ncs/v3.0.2/zephyr/modules/Kconfig.picolibc /home/miguel/ncs/v3.0.2/zephyr/modules/Kconfig.renesas_fsp /home/miguel/ncs/v3.0.2/zephyr/modules/Kconfig.rust /home/miguel/ncs/v3.0.2/zephyr/modules/Kconfig.simplelink /home/miguel/ncs/v3.0.2/zephyr/modules/Kconfig.sof /home/miguel/ncs/v3.0.2/zephyr/modules/Kconfig.stm32 /home/miguel/ncs/v3.0.2/zephyr/modules/Kconfig.syst /home/miguel/ncs/v3.0.2/zephyr/modules/Kconfig.telink /home/miguel/ncs/v3.0.2/zephyr/modules/Kconfig.tinycrypt /home/miguel/ncs/v3.0.2/zephyr/modules/Kconfig.vega /home/miguel/ncs/v3.0.2/zephyr/modules/Kconfig.wurthelektronik /home/miguel/ncs/v3.0.2/zephyr/modules/Kconfig.xtensa /home/miguel/ncs/v3.0.2/zephyr/modules/acpica/Kconfig /home/miguel/ncs/v3.0.2/zephyr/modules/canopennode/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/modules/canopennode/Kconfig /home/miguel/ncs/v3.0.2/zephyr/modules/cmsis-dsp/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/modules/cmsis-dsp/Kconfig /home/miguel/ncs/v3.0.2/zephyr/modules/cmsis-nn/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/modules/cmsis-nn/Kconfig /home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/Kconfig /home/miguel/ncs/v3.0.2/zephyr/modules/fatfs/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/modules/fatfs/Kconfig /home/miguel/ncs/v3.0.2/zephyr/modules/hal_ambiq/Kconfig /home/miguel/ncs/v3.0.2/zephyr/modules/hal_ethos_u/Kconfig /home/miguel/ncs/v3.0.2/zephyr/modules/hal_gigadevice/Kconfig /home/miguel/ncs/v3.0.2/zephyr/modules/hal_infineon/Kconfig /home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/Kconfig /home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/Kconfig.nrf_regtool /home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfs/Kconfig /home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfs/backends/Kconfig /home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfs/dvfs/Kconfig /home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/Kconfig /home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/Kconfig.logging /home/miguel/ncs/v3.0.2/zephyr/modules/hal_nxp/Kconfig /home/miguel/ncs/v3.0.2/zephyr/modules/hal_rpi_pico/Kconfig /home/miguel/ncs/v3.0.2/zephyr/modules/hal_silabs/Kconfig /home/miguel/ncs/v3.0.2/zephyr/modules/hal_st/Kconfig /home/miguel/ncs/v3.0.2/zephyr/modules/hal_tdk/Kconfig /home/miguel/ncs/v3.0.2/zephyr/modules/hal_wch/Kconfig /home/miguel/ncs/v3.0.2/zephyr/modules/hostap/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/modules/hostap/Kconfig /home/miguel/ncs/v3.0.2/zephyr/modules/liblc3/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/modules/liblc3/Kconfig /home/miguel/ncs/v3.0.2/zephyr/modules/littlefs/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/modules/littlefs/Kconfig /home/miguel/ncs/v3.0.2/zephyr/modules/loramac-node/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/modules/loramac-node/Kconfig /home/miguel/ncs/v3.0.2/zephyr/modules/lvgl/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/modules/lvgl/Kconfig /home/miguel/ncs/v3.0.2/zephyr/modules/lvgl/Kconfig.input /home/miguel/ncs/v3.0.2/zephyr/modules/lvgl/Kconfig.memory /home/miguel/ncs/v3.0.2/zephyr/modules/lvgl/Kconfig.shell /home/miguel/ncs/v3.0.2/zephyr/modules/lz4/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/modules/lz4/Kconfig /home/miguel/ncs/v3.0.2/zephyr/modules/mbedtls/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/modules/mbedtls/Kconfig /home/miguel/ncs/v3.0.2/zephyr/modules/mbedtls/Kconfig.psa.auto /home/miguel/ncs/v3.0.2/zephyr/modules/mbedtls/Kconfig.psa.logic /home/miguel/ncs/v3.0.2/zephyr/modules/mbedtls/Kconfig.tls-generic /home/miguel/ncs/v3.0.2/zephyr/modules/modules.cmake /home/miguel/ncs/v3.0.2/zephyr/modules/nanopb/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/modules/nanopb/Kconfig /home/miguel/ncs/v3.0.2/zephyr/modules/nrf_wifi/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/modules/nrf_wifi/Kconfig /home/miguel/ncs/v3.0.2/zephyr/modules/nrf_wifi/bus/Kconfig /home/miguel/ncs/v3.0.2/zephyr/modules/openthread/Kconfig /home/miguel/ncs/v3.0.2/zephyr/modules/openthread/Kconfig.features /home/miguel/ncs/v3.0.2/zephyr/modules/openthread/Kconfig.thread /home/miguel/ncs/v3.0.2/zephyr/modules/percepio/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/modules/percepio/Kconfig /home/miguel/ncs/v3.0.2/zephyr/modules/segger/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/modules/segger/Kconfig /home/miguel/ncs/v3.0.2/zephyr/modules/tflite-micro/Kconfig /home/miguel/ncs/v3.0.2/zephyr/modules/thrift/Kconfig /home/miguel/ncs/v3.0.2/zephyr/modules/trusted-firmware-a/Kconfig /home/miguel/ncs/v3.0.2/zephyr/modules/trusted-firmware-m/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/modules/trusted-firmware-m/Kconfig /home/miguel/ncs/v3.0.2/zephyr/modules/trusted-firmware-m/Kconfig.tfm /home/miguel/ncs/v3.0.2/zephyr/modules/trusted-firmware-m/Kconfig.tfm.crypto_modules /home/miguel/ncs/v3.0.2/zephyr/modules/trusted-firmware-m/Kconfig.tfm.partitions /home/miguel/ncs/v3.0.2/zephyr/modules/uoscore-uedhoc/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/modules/uoscore-uedhoc/Kconfig /home/miguel/ncs/v3.0.2/zephyr/modules/zcbor/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/modules/zcbor/Kconfig /home/miguel/ncs/v3.0.2/zephyr/scripts/dts/gen_defines.py /home/miguel/ncs/v3.0.2/zephyr/scripts/dts/gen_driver_kconfig_dts.py /home/miguel/ncs/v3.0.2/zephyr/scripts/dts/gen_dts_cmake.py /home/miguel/ncs/v3.0.2/zephyr/scripts/dts/gen_edt.py /home/miguel/ncs/v3.0.2/zephyr/scripts/snippets.py /home/miguel/ncs/v3.0.2/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake /home/miguel/ncs/v3.0.2/zephyr/share/zephyr-package/cmake/ZephyrConfigVersion.cmake /home/miguel/ncs/v3.0.2/zephyr/share/zephyr-package/cmake/zephyr_package_search.cmake /home/miguel/ncs/v3.0.2/zephyr/snippets/bt-ll-sw-split/snippet.yml /home/miguel/ncs/v3.0.2/zephyr/snippets/cdc-acm-console/snippet.yml /home/miguel/ncs/v3.0.2/zephyr/snippets/nordic-flpr-xip/snippet.yml /home/miguel/ncs/v3.0.2/zephyr/snippets/nordic-flpr/snippet.yml /home/miguel/ncs/v3.0.2/zephyr/snippets/nordic-log-stm-dict/snippet.yml /home/miguel/ncs/v3.0.2/zephyr/snippets/nordic-log-stm/snippet.yml /home/miguel/ncs/v3.0.2/zephyr/snippets/nordic-ppr-xip/snippet.yml /home/miguel/ncs/v3.0.2/zephyr/snippets/nordic-ppr/snippet.yml /home/miguel/ncs/v3.0.2/zephyr/snippets/nus-console/snippet.yml /home/miguel/ncs/v3.0.2/zephyr/snippets/ram-console/snippet.yml /home/miguel/ncs/v3.0.2/zephyr/snippets/rtt-console/snippet.yml /home/miguel/ncs/v3.0.2/zephyr/snippets/rtt-tracing/snippet.yml /home/miguel/ncs/v3.0.2/zephyr/snippets/serial-console/snippet.yml /home/miguel/ncs/v3.0.2/zephyr/snippets/wifi-enterprise/snippet.yml /home/miguel/ncs/v3.0.2/zephyr/snippets/wifi-ipv4/snippet.yml /home/miguel/ncs/v3.0.2/zephyr/snippets/xen_dom0/snippet.yml /home/miguel/ncs/v3.0.2/zephyr/soc/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/soc/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/Kconfig.v2 /home/miguel/ncs/v3.0.2/zephyr/soc/adi/max32/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/adi/max32/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/adi/max32/Kconfig.defconfig.max32655 /home/miguel/ncs/v3.0.2/zephyr/soc/adi/max32/Kconfig.defconfig.max32662 /home/miguel/ncs/v3.0.2/zephyr/soc/adi/max32/Kconfig.defconfig.max32666 /home/miguel/ncs/v3.0.2/zephyr/soc/adi/max32/Kconfig.defconfig.max32670 /home/miguel/ncs/v3.0.2/zephyr/soc/adi/max32/Kconfig.defconfig.max32672 /home/miguel/ncs/v3.0.2/zephyr/soc/adi/max32/Kconfig.defconfig.max32675 /home/miguel/ncs/v3.0.2/zephyr/soc/adi/max32/Kconfig.defconfig.max32680 /home/miguel/ncs/v3.0.2/zephyr/soc/adi/max32/Kconfig.defconfig.max32690 /home/miguel/ncs/v3.0.2/zephyr/soc/adi/max32/Kconfig.defconfig.max78002 /home/miguel/ncs/v3.0.2/zephyr/soc/adi/max32/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/altr/qemu_nios2/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/altr/qemu_nios2/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/altr/qemu_nios2/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/altr/zephyr_nios2f/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/altr/zephyr_nios2f/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/altr/zephyr_nios2f/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/ambiq/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/ambiq/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/ambiq/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/ambiq/apollo3x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/ambiq/apollo3x/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/ambiq/apollo3x/Kconfig.defconfig.apollo3_blue /home/miguel/ncs/v3.0.2/zephyr/soc/ambiq/apollo3x/Kconfig.defconfig.apollo3p_blue /home/miguel/ncs/v3.0.2/zephyr/soc/ambiq/apollo3x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/ambiq/apollo4x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/ambiq/apollo4x/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/ambiq/apollo4x/Kconfig.defconfig.apollo4p /home/miguel/ncs/v3.0.2/zephyr/soc/ambiq/apollo4x/Kconfig.defconfig.apollo4p_blue /home/miguel/ncs/v3.0.2/zephyr/soc/ambiq/apollo4x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/amd/acp_6_0/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/amd/acp_6_0/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/amd/acp_6_0/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/andestech/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/andestech/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/andestech/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/andestech/ae350/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/andestech/ae350/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/andestech/ae350/Kconfig.defconfig.ae350 /home/miguel/ncs/v3.0.2/zephyr/soc/andestech/ae350/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/arm/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/arm/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/arm/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/arm/beetle/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/arm/beetle/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/arm/beetle/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/arm/designstart/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/arm/designstart/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/arm/fvp_aemv8a/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/arm/fvp_aemv8a/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/arm/fvp_aemv8a/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/arm/fvp_aemv8r/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/arm/fvp_aemv8r/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/arm/fvp_aemv8r/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/arm/mps2/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/arm/mps2/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/arm/mps2/Kconfig.defconfig.an385 /home/miguel/ncs/v3.0.2/zephyr/soc/arm/mps2/Kconfig.defconfig.an521 /home/miguel/ncs/v3.0.2/zephyr/soc/arm/mps2/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/arm/mps3/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/arm/mps3/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/arm/mps3/Kconfig.defconfig.mps3_corstone300 /home/miguel/ncs/v3.0.2/zephyr/soc/arm/mps3/Kconfig.defconfig.mps3_corstone310 /home/miguel/ncs/v3.0.2/zephyr/soc/arm/mps3/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/arm/musca/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/arm/musca/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/arm/musca/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/arm/qemu_cortex_a53/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/arm/qemu_cortex_a53/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/arm/qemu_cortex_a53/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/arm/qemu_virt_arm64/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/arm/qemu_virt_arm64/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/arm/qemu_virt_arm64/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/aspeed/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/aspeed/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/aspeed/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/aspeed/ast10x0/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/aspeed/ast10x0/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/aspeed/ast10x0/Kconfig.defconfig.ast1030 /home/miguel/ncs/v3.0.2/zephyr/soc/aspeed/ast10x0/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam/common/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam/sam3x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam/sam3x/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam/sam3x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam/sam4e/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam/sam4e/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam/sam4e/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam/sam4l/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam/sam4l/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam/sam4l/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam/sam4s/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam/sam4s/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam/sam4s/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam/same70/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam/same70/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam/same70/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam/samv71/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam/samv71/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam/samv71/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/common/Kconfig.samd2x /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/common/Kconfig.samd5x /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/common/Kconfig.saml2x /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/samc20/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/samc20/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/samc20/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/samc21/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/samc21/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/samc21/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/samd20/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/samd20/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/samd20/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/samd21/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/samd21/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/samd21/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/samd51/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/samd51/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/samd51/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/same51/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/same51/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/same51/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/same53/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/same53/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/same53/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/same54/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/same54/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/same54/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/saml21/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/saml21/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/saml21/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/samr21/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/samr21/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/samr21/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/samr34/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/samr34/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/samr34/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/samr35/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/samr35/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/samr35/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/brcm/bcm2711/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/brcm/bcm2711/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/brcm/bcm2711/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/brcm/bcm2712/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/brcm/bcm2712/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/brcm/bcm2712/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/brcm/bcmvk/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/brcm/bcmvk/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/brcm/bcmvk/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/brcm/bcmvk/valkyrie/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/brcm/bcmvk/valkyrie/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/brcm/bcmvk/valkyrie/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/brcm/bcmvk/viper/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/brcm/bcmvk/viper/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/brcm/bcmvk/viper/Kconfig.defconfig.viper_bcm58402_a72 /home/miguel/ncs/v3.0.2/zephyr/soc/brcm/bcmvk/viper/Kconfig.defconfig.viper_bcm58402_m7 /home/miguel/ncs/v3.0.2/zephyr/soc/brcm/bcmvk/viper/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/cdns/dc233c/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/cdns/dc233c/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/cdns/dc233c/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/cdns/sample_controller32/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/cdns/sample_controller32/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/cdns/xtensa_sample_controller/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/cdns/xtensa_sample_controller/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/common/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/soc/common/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/common/riscv-privileged/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/efinix/sapphire/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/efinix/sapphire/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/efinix/sapphire/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/ene/kb1200/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/ene/kb1200/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/ene/kb1200/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/espressif/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/espressif/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/espressif/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/espressif/common/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/espressif/common/Kconfig.amp /home/miguel/ncs/v3.0.2/zephyr/soc/espressif/common/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/espressif/common/Kconfig.esptool /home/miguel/ncs/v3.0.2/zephyr/soc/espressif/common/Kconfig.flash /home/miguel/ncs/v3.0.2/zephyr/soc/espressif/common/Kconfig.spiram /home/miguel/ncs/v3.0.2/zephyr/soc/espressif/esp32/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/espressif/esp32/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/espressif/esp32/Kconfig.mac /home/miguel/ncs/v3.0.2/zephyr/soc/espressif/esp32/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/espressif/esp32c2/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/espressif/esp32c2/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/espressif/esp32c2/Kconfig.mac /home/miguel/ncs/v3.0.2/zephyr/soc/espressif/esp32c2/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/espressif/esp32c3/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/espressif/esp32c3/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/espressif/esp32c3/Kconfig.mac /home/miguel/ncs/v3.0.2/zephyr/soc/espressif/esp32c3/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/espressif/esp32c6/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/espressif/esp32c6/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/espressif/esp32c6/Kconfig.mac /home/miguel/ncs/v3.0.2/zephyr/soc/espressif/esp32c6/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/espressif/esp32s2/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/espressif/esp32s2/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/espressif/esp32s2/Kconfig.mac /home/miguel/ncs/v3.0.2/zephyr/soc/espressif/esp32s2/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/espressif/esp32s3/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/espressif/esp32s3/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/espressif/esp32s3/Kconfig.mac /home/miguel/ncs/v3.0.2/zephyr/soc/espressif/esp32s3/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/gaisler/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/gaisler/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/gaisler/gr716a/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/gaisler/gr716a/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/gaisler/gr716a/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/gaisler/leon3/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/gaisler/leon3/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/gaisler/leon3/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32a50x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32a50x/Kconfig.defconfig.gd32a503 /home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32a50x/Kconfig.defconfig.series /home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32a50x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32e10x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32e10x/Kconfig.defconfig.gd32e103 /home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32e10x/Kconfig.defconfig.series /home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32e10x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32e50x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32e50x/Kconfig.defconfig.gd32e507 /home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32e50x/Kconfig.defconfig.series /home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32e50x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32f3x0/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32f3x0/Kconfig.defconfig.gd32f350 /home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32f3x0/Kconfig.defconfig.series /home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32f3x0/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32f403/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32f403/Kconfig.defconfig.gd32f403 /home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32f403/Kconfig.defconfig.series /home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32f403/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32f4xx/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32f4xx/Kconfig.defconfig.gd32f405 /home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32f4xx/Kconfig.defconfig.gd32f407 /home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32f4xx/Kconfig.defconfig.gd32f450 /home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32f4xx/Kconfig.defconfig.gd32f470 /home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32f4xx/Kconfig.defconfig.series /home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32f4xx/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32l23x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32l23x/Kconfig.defconfig.gd32l233 /home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32l23x/Kconfig.defconfig.series /home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32l23x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32vf103/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32vf103/Kconfig.defconfig.gd32vf103 /home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32vf103/Kconfig.defconfig.series /home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32vf103/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat1a/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat1a/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat1a/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat1a/psoc6_01/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat1a/psoc6_01/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat1a/psoc6_02/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat1a/psoc6_02/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat1a/psoc6_03/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat1a/psoc6_03/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat1a/psoc6_04/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat1a/psoc6_04/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat1a/psoc6_legacy/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat1a/psoc6_legacy/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat1b/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat1b/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat1b/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat1b/cyw20829/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat1b/cyw20829/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat1b/cyw20829/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat3/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat3/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat3/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat3/xmc4xxx/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat3/xmc4xxx/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat3/xmc4xxx/Kconfig.defconfig.xmc4500 /home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat3/xmc4xxx/Kconfig.defconfig.xmc4700 /home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat3/xmc4xxx/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/intel/alder_lake/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/intel/alder_lake/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/intel/alder_lake/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/intel/apollo_lake/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/intel/apollo_lake/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/intel/apollo_lake/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/intel/atom/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/intel/atom/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/intel/atom/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/intel/elkhart_lake/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/intel/elkhart_lake/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/intel/elkhart_lake/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_adsp/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_adsp/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_adsp/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_adsp/ace/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_adsp/ace/Kconfig.defconfig.ace15_mtpm /home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_adsp/ace/Kconfig.defconfig.ace20_lnl /home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_adsp/ace/Kconfig.defconfig.ace30 /home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_adsp/ace/Kconfig.defconfig.series /home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_adsp/ace/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_adsp/cavs/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_adsp/cavs/Kconfig.defconfig.cavs_v25 /home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_adsp/cavs/Kconfig.defconfig.series /home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_adsp/cavs/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_ish/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_ish/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_ish/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_ish/intel_ish5/Kconfig.defconfig.series /home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_ish/intel_ish5/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_ish/intel_ish5/pm/Kconfig.pm /home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_niosv/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_niosv/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_niosv/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_niosv/niosv/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_niosv/niosv/Kconfig.defconfig.series /home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_niosv/niosv/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_socfpga/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_socfpga/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_socfpga/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_socfpga/agilex/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_socfpga/agilex/Kconfig.defconfig.agilex /home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_socfpga/agilex/Kconfig.defconfig.series /home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_socfpga/agilex/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_socfpga/agilex5/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_socfpga/agilex5/Kconfig.defconfig.agilex5 /home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_socfpga/agilex5/Kconfig.defconfig.series /home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_socfpga/agilex5/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_socfpga_std/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_socfpga_std/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_socfpga_std/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_socfpga_std/cyclonev/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_socfpga_std/cyclonev/Kconfig.defconfig.cyclonev /home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_socfpga_std/cyclonev/Kconfig.defconfig.series /home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_socfpga_std/cyclonev/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/intel/lakemont/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/intel/lakemont/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/intel/lakemont/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/intel/raptor_lake/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/intel/raptor_lake/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/intel/raptor_lake/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/ite/ec/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/ite/ec/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/ite/ec/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/ite/ec/it8xxx2/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/ite/ec/it8xxx2/Kconfig.defconfig.it81202bx /home/miguel/ncs/v3.0.2/zephyr/soc/ite/ec/it8xxx2/Kconfig.defconfig.it81202cx /home/miguel/ncs/v3.0.2/zephyr/soc/ite/ec/it8xxx2/Kconfig.defconfig.it81202dx /home/miguel/ncs/v3.0.2/zephyr/soc/ite/ec/it8xxx2/Kconfig.defconfig.it81302bx /home/miguel/ncs/v3.0.2/zephyr/soc/ite/ec/it8xxx2/Kconfig.defconfig.it81302cx /home/miguel/ncs/v3.0.2/zephyr/soc/ite/ec/it8xxx2/Kconfig.defconfig.it81302dx /home/miguel/ncs/v3.0.2/zephyr/soc/ite/ec/it8xxx2/Kconfig.defconfig.it82002aw /home/miguel/ncs/v3.0.2/zephyr/soc/ite/ec/it8xxx2/Kconfig.defconfig.it82002bw /home/miguel/ncs/v3.0.2/zephyr/soc/ite/ec/it8xxx2/Kconfig.defconfig.it82202ax /home/miguel/ncs/v3.0.2/zephyr/soc/ite/ec/it8xxx2/Kconfig.defconfig.it82202bw /home/miguel/ncs/v3.0.2/zephyr/soc/ite/ec/it8xxx2/Kconfig.defconfig.it82302ax /home/miguel/ncs/v3.0.2/zephyr/soc/ite/ec/it8xxx2/Kconfig.defconfig.it82302bw /home/miguel/ncs/v3.0.2/zephyr/soc/ite/ec/it8xxx2/Kconfig.defconfig.series /home/miguel/ncs/v3.0.2/zephyr/soc/ite/ec/it8xxx2/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/litex/litex_vexriscv/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/litex/litex_vexriscv/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/litex/litex_vexriscv/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/lowrisc/opentitan/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/lowrisc/opentitan/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/lowrisc/opentitan/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/mediatek/mt8xxx/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/mediatek/mt8xxx/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/mediatek/mt8xxx/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/mediatek/mt8xxx/mt8186/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/mediatek/mt8xxx/mt8188/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/mediatek/mt8xxx/mt8195/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/mediatek/mt8xxx/mt8196/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/microchip/mec/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/microchip/mec/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/microchip/mec/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/microchip/mec/mec15xx/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/microchip/mec/mec15xx/Kconfig.defconfig.mec1501hsz /home/miguel/ncs/v3.0.2/zephyr/soc/microchip/mec/mec15xx/Kconfig.defconfig.series /home/miguel/ncs/v3.0.2/zephyr/soc/microchip/mec/mec15xx/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/microchip/mec/mec172x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/microchip/mec/mec172x/Kconfig.defconfig.mec172xnlj /home/miguel/ncs/v3.0.2/zephyr/soc/microchip/mec/mec172x/Kconfig.defconfig.mec172xnsz /home/miguel/ncs/v3.0.2/zephyr/soc/microchip/mec/mec172x/Kconfig.defconfig.series /home/miguel/ncs/v3.0.2/zephyr/soc/microchip/mec/mec172x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/microchip/mec/mec174x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/microchip/mec/mec174x/Kconfig.defconfig.series /home/miguel/ncs/v3.0.2/zephyr/soc/microchip/mec/mec174x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/microchip/mec/mec175x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/microchip/mec/mec175x/Kconfig.defconfig.series /home/miguel/ncs/v3.0.2/zephyr/soc/microchip/mec/mec175x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/microchip/mec/mech172x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/microchip/mec/mech172x/Kconfig.defconfig.series /home/miguel/ncs/v3.0.2/zephyr/soc/microchip/mec/mech172x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/microchip/miv/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/microchip/miv/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/microchip/miv/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/microchip/miv/miv/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/microchip/miv/miv/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/microchip/miv/miv/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/microchip/miv/polarfire/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/microchip/miv/polarfire/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/microchip/miv/polarfire/Kconfig.defconfig.polarfire_u54 /home/miguel/ncs/v3.0.2/zephyr/soc/microchip/miv/polarfire/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/native/inf_clock/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/native/inf_clock/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/neorv32/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/neorv32/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/neorv32/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/Kconfig.peripherals /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/vpr/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/vpr/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf51/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf51/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf51/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/Kconfig.defconfig.nrf52805_CAAA /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/Kconfig.defconfig.nrf52810_QFAA /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/Kconfig.defconfig.nrf52811_QFAA /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/Kconfig.defconfig.nrf52820_QDAA /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/Kconfig.defconfig.nrf52832_CIAA /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/Kconfig.defconfig.nrf52832_QFAA /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/Kconfig.defconfig.nrf52832_QFAB /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/Kconfig.defconfig.nrf52833_QDAA /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/Kconfig.defconfig.nrf52833_QIAA /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/Kconfig.defconfig.nrf52840_QFAA /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/Kconfig.defconfig.nrf52840_QIAA /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf53/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf53/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf53/Kconfig.defconfig.nrf5340_CPUAPP_QKAA /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf53/Kconfig.defconfig.nrf5340_CPUNET_QKAA /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf53/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf53/Kconfig.sync_rtc /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf53/Kconfig.sync_rtc_ipm /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf54h/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf54h/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf54h/Kconfig.defconfig.nrf54h20_cpuapp /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf54h/Kconfig.defconfig.nrf54h20_cpuflpr /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf54h/Kconfig.defconfig.nrf54h20_cpuppr /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf54h/Kconfig.defconfig.nrf54h20_cpurad /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf54h/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf54h/bicr/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf54h/gpd/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf54l/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf54l/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf54l/Kconfig.defconfig.nrf54l09_enga_cpuapp /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf54l/Kconfig.defconfig.nrf54l09_enga_cpuflpr /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf54l/Kconfig.defconfig.nrf54l20_enga_cpuapp /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf54l/Kconfig.defconfig.nrf54l20_enga_cpuflpr /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf54l/Kconfig.defconfig.nrf54l_05_10_15_cpuapp /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf54l/Kconfig.defconfig.nrf54l_05_10_15_cpuflpr /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf54l/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf91/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf91/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf91/Kconfig.defconfig.nrf9131_LACA /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf91/Kconfig.defconfig.nrf9151_LACA /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf91/Kconfig.defconfig.nrf9160_SICA /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf91/Kconfig.defconfig.nrf9161_LACA /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf91/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf92/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf92/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf92/Kconfig.defconfig.nrf9280_cpuapp /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf92/Kconfig.defconfig.nrf9280_cpuppr /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf92/Kconfig.defconfig.nrf9280_cpurad /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf92/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/soc.yml /home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/npcm/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/npcm/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/npcm/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/npcm/npcm4/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/npcm/npcm4/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/npcm/npcm4/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/npcx/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/npcx/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/npcx/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/npcx/npcx4/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/npcx/npcx4/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/npcx/npcx4/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/npcx/npcx7/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/npcx/npcx7/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/npcx/npcx7/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/npcx/npcx9/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/npcx/npcx9/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/npcx/npcx9/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/numaker/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/numaker/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/numaker/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/numaker/m2l31x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/numaker/m2l31x/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/numaker/m2l31x/Kconfig.defconfig.m2l31xxx /home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/numaker/m2l31x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/numaker/m46x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/numaker/m46x/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/numaker/m46x/Kconfig.defconfig.m467 /home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/numaker/m46x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/numicro/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/numicro/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/numicro/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/numicro/m48x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/numicro/m48x/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/numicro/m48x/Kconfig.defconfig.m487 /home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/numicro/m48x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/common/Kconfig.flexspi_xip /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/common/Kconfig.nbu /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/common/Kconfig.rom_loader /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx6sx/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx6sx/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx6sx/Kconfig.defconfig.mcimx6x_m4 /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx6sx/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx7d/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx7d/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx7d/Kconfig.defconfig.mcimx7d_m4 /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx7d/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx8/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx8/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx8/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx8m/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx8m/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx8m/Kconfig.defconfig.mimx8ml8_a53 /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx8m/Kconfig.defconfig.mimx8ml8_adsp /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx8m/Kconfig.defconfig.mimx8ml8_m7 /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx8m/Kconfig.defconfig.mimx8mm6_a53 /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx8m/Kconfig.defconfig.mimx8mm6_m4 /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx8m/Kconfig.defconfig.mimx8mn6_a53 /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx8m/Kconfig.defconfig.mimx8mq6_m4 /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx8m/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx8ulp/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx8ulp/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx8ulp/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx8x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx8x/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx8x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx9/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx9/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx9/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx9/imx93/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx9/imx93/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx9/imx93/Kconfig.defconfig.mimx93.a55 /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx9/imx93/Kconfig.defconfig.mimx93.m33 /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx9/imx93/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx9/imx95/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx9/imx95/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx9/imx95/Kconfig.defconfig.mimx95.a55 /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx9/imx95/Kconfig.defconfig.mimx95.m7 /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx9/imx95/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imxrt/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imxrt/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imxrt/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imxrt/imxrt10xx/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imxrt/imxrt10xx/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imxrt/imxrt10xx/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imxrt/imxrt118x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imxrt/imxrt118x/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imxrt/imxrt118x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imxrt/imxrt11xx/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imxrt/imxrt11xx/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imxrt/imxrt11xx/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imxrt/imxrt5xx/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imxrt/imxrt5xx/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imxrt/imxrt5xx/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imxrt/imxrt6xx/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imxrt/imxrt6xx/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imxrt/imxrt6xx/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/k2x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/k2x/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/k2x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/k6x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/k6x/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/k6x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/k8x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/k8x/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/k8x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/ke1xf/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/ke1xf/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/ke1xf/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/ke1xz/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/ke1xz/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/ke1xz/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/kl2x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/kl2x/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/kl2x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/kv5x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/kv5x/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/kv5x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/kwx/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/kwx/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/kwx/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/layerscape/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/layerscape/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/layerscape/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/layerscape/ls1046a/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/layerscape/ls1046a/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/layerscape/ls1046a/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/lpc/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/lpc/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/lpc/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/lpc/lpc11u6x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/lpc/lpc11u6x/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/lpc/lpc11u6x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/lpc/lpc51u68/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/lpc/lpc51u68/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/lpc/lpc51u68/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/lpc/lpc54xxx/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/lpc/lpc54xxx/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/lpc/lpc54xxx/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/lpc/lpc55xxx/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/lpc/lpc55xxx/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/lpc/lpc55xxx/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/mcx/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/mcx/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/mcx/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/mcx/mcxa/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/mcx/mcxa/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/mcx/mcxa/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/mcx/mcxc/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/mcx/mcxc/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/mcx/mcxc/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/mcx/mcxn/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/mcx/mcxn/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/mcx/mcxn/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/mcx/mcxw/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/mcx/mcxw/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/mcx/mcxw/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/rw/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/rw/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/rw/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/s32/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/s32/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/s32/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/s32/s32k1/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/s32/s32k1/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/s32/s32k1/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/s32/s32k3/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/s32/s32k3/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/s32/s32k3/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/s32/s32ze/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/s32/s32ze/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/s32/s32ze/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/openisa/rv32m1/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/openisa/rv32m1/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/openisa/rv32m1/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/qemu/malta/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/qemu/malta/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/qemu/malta/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/qemu/virt_riscv/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/qemu/virt_riscv/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/qemu/virt_riscv/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/qemu/virt_riscv/qemu_virt_riscv32/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/qemu/virt_riscv/qemu_virt_riscv32/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/qemu/virt_riscv/qemu_virt_riscv32e/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/qemu/virt_riscv/qemu_virt_riscv32e/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/qemu/virt_riscv/qemu_virt_riscv64/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/qemu/virt_riscv/qemu_virt_riscv64/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/quicklogic/eos_s3/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/quicklogic/eos_s3/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/quicklogic/eos_s3/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/raspberrypi/rpi_pico/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/raspberrypi/rpi_pico/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/raspberrypi/rpi_pico/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/raspberrypi/rpi_pico/rp2040/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/raspberrypi/rpi_pico/rp2040/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/raspberrypi/rpi_pico/rp2040/Kconfig.defconfig.rp2040 /home/miguel/ncs/v3.0.2/zephyr/soc/raspberrypi/rpi_pico/rp2040/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/raspberrypi/rpi_pico/rp2350/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/raspberrypi/rpi_pico/rp2350/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/raspberrypi/rpi_pico/rp2350/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/realtek/ec/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/realtek/ec/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/realtek/ec/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/realtek/ec/rts5912/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/realtek/ec/rts5912/Kconfig.defconfig.rts5912 /home/miguel/ncs/v3.0.2/zephyr/soc/realtek/ec/rts5912/Kconfig.defconfig.series /home/miguel/ncs/v3.0.2/zephyr/soc/realtek/ec/rts5912/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra2a1/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra2a1/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra2a1/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra4e2/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra4e2/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra4e2/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra4m1/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra4m1/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra4m1/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra4m2/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra4m2/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra4m2/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra4m3/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra4m3/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra4m3/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra4w1/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra4w1/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra4w1/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra6e1/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra6e1/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra6e1/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra6e2/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra6e2/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra6e2/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra6m1/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra6m1/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra6m1/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra6m2/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra6m2/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra6m2/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra6m3/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra6m3/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra6m3/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra6m4/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra6m4/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra6m4/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra6m5/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra6m5/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra6m5/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra8d1/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra8d1/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra8d1/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra8m1/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra8m1/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra8m1/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra8t1/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra8t1/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra8t1/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/rcar/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/rcar/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/rcar/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/rcar/rcar_gen3/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/rcar/rcar_gen3/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/rcar/rcar_gen3/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/rcar/rcar_gen4/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/rcar/rcar_gen4/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/rcar/rcar_gen4/Kconfig.defconfig.r8a779f0 /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/rcar/rcar_gen4/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/rz/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/rz/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/rz/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/rz/rzg3s/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/rz/rzg3s/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/rz/rzg3s/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/rzt2m/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/rzt2m/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/rzt2m/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/smartbond/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/smartbond/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/smartbond/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/smartbond/da1469x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/smartbond/da1469x/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/smartbond/da1469x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/renode/cortex_r8_virtual/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/renode/cortex_r8_virtual/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/renode/cortex_r8_virtual/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/renode/riscv_virtual/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/renode/riscv_virtual/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/renode/riscv_virtual/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/rockchip/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/rockchip/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/rockchip/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/rockchip/rk3399/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/rockchip/rk3399/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/rockchip/rk3399/Kconfig.defconfig.rk3399 /home/miguel/ncs/v3.0.2/zephyr/soc/rockchip/rk3399/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/rockchip/rk3568/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/rockchip/rk3568/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/rockchip/rk3568/Kconfig.defconfig.rk3568 /home/miguel/ncs/v3.0.2/zephyr/soc/rockchip/rk3568/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/sensry/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/sensry/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/sensry/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/sensry/ganymed/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/sensry/ganymed/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/sensry/ganymed/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/sensry/ganymed/sy1xx/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/sensry/ganymed/sy1xx/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/sensry/ganymed/sy1xx/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/sifive/sifive_freedom/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/sifive/sifive_freedom/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/sifive/sifive_freedom/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/sifive/sifive_freedom/fe300/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/sifive/sifive_freedom/fe300/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/sifive/sifive_freedom/fe300/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/sifive/sifive_freedom/fu500/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/sifive/sifive_freedom/fu500/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/sifive/sifive_freedom/fu500/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/sifive/sifive_freedom/fu700/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/sifive/sifive_freedom/fu700/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/sifive/sifive_freedom/fu700/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s0/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s0/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s0/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s0/efm32hg/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s0/efm32hg/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s0/efm32hg/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s0/efm32wg/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s0/efm32wg/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s0/efm32wg/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/efm32gg11b/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/efm32gg11b/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/efm32gg11b/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/efm32gg12b/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/efm32gg12b/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/efm32gg12b/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/efm32jg12b/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/efm32jg12b/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/efm32jg12b/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/efm32pg12b/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/efm32pg12b/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/efm32pg12b/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/efm32pg1b/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/efm32pg1b/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/efm32pg1b/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/efr32bg13p/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/efr32bg13p/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/efr32bg13p/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/efr32fg13p/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/efr32fg13p/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/efr32fg13p/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/efr32fg1p/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/efr32fg1p/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/efr32fg1p/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/efr32mg12p/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/efr32mg12p/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/efr32mg12p/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s2/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s2/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s2/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s2/efr32bg22/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s2/efr32bg22/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s2/efr32bg22/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s2/efr32bg27/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s2/efr32bg27/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s2/efr32bg27/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s2/efr32mg21/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s2/efr32mg21/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s2/efr32mg21/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s2/efr32mg24/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s2/efr32mg24/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s2/efr32mg24/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s2/efr32zg23/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s2/efr32zg23/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s2/efr32zg23/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_sim3/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_sim3/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_sim3/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_sim3/sim3u/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_sim3/sim3u/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_sim3/sim3u/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/snps/arc_iot/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/snps/arc_iot/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/snps/arc_iot/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/snps/emsdp/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/snps/emsdp/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/snps/emsdp/Kconfig.defconfig.em11d /home/miguel/ncs/v3.0.2/zephyr/soc/snps/emsdp/Kconfig.defconfig.em4 /home/miguel/ncs/v3.0.2/zephyr/soc/snps/emsdp/Kconfig.defconfig.em5d /home/miguel/ncs/v3.0.2/zephyr/soc/snps/emsdp/Kconfig.defconfig.em6 /home/miguel/ncs/v3.0.2/zephyr/soc/snps/emsdp/Kconfig.defconfig.em7d /home/miguel/ncs/v3.0.2/zephyr/soc/snps/emsdp/Kconfig.defconfig.em7d_esp /home/miguel/ncs/v3.0.2/zephyr/soc/snps/emsdp/Kconfig.defconfig.em9d /home/miguel/ncs/v3.0.2/zephyr/soc/snps/emsdp/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/snps/emsk/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/snps/emsk/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/snps/emsk/Kconfig.defconfig.em11d /home/miguel/ncs/v3.0.2/zephyr/soc/snps/emsk/Kconfig.defconfig.em7d /home/miguel/ncs/v3.0.2/zephyr/soc/snps/emsk/Kconfig.defconfig.em9d /home/miguel/ncs/v3.0.2/zephyr/soc/snps/emsk/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/snps/hsdk/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/snps/hsdk/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/snps/hsdk/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/snps/hsdk4xd/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/snps/hsdk4xd/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/snps/hsdk4xd/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_classic/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_classic/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_classic/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_classic/em/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_classic/em/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_classic/em/Kconfig.defconfig.em /home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_classic/em/Kconfig.defconfig.em11d /home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_classic/em/Kconfig.defconfig.em7d_v22 /home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_classic/em/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_classic/hs/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_classic/hs/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_classic/hs/Kconfig.defconfig.hs /home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_classic/hs/Kconfig.defconfig.hs5x /home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_classic/hs/Kconfig.defconfig.hs5x_smp /home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_classic/hs/Kconfig.defconfig.hs6x /home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_classic/hs/Kconfig.defconfig.hs6x_smp /home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_classic/hs/Kconfig.defconfig.hs_mpuv6 /home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_classic/hs/Kconfig.defconfig.hs_smp /home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_classic/hs/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_classic/sem/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_classic/sem/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_classic/sem/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_classic/vpx5/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_classic/vpx5/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_classic/vpx5/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_v/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_v/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_v/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_v/rmx/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_v/rmx/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_v/rmx/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/snps/qemu_arc/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/snps/qemu_arc/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/snps/qemu_arc/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32c0x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32c0x/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32c0x/Kconfig.defconfig.stm32c011xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32c0x/Kconfig.defconfig.stm32c031xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32c0x/Kconfig.defconfig.stm32c071xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32c0x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f0x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f0x/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f0x/Kconfig.defconfig.stm32f030x4 /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f0x/Kconfig.defconfig.stm32f030x6 /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f0x/Kconfig.defconfig.stm32f030x8 /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f0x/Kconfig.defconfig.stm32f030xc /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f0x/Kconfig.defconfig.stm32f031x6 /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f0x/Kconfig.defconfig.stm32f042x6 /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f0x/Kconfig.defconfig.stm32f051x8 /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f0x/Kconfig.defconfig.stm32f070xb /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f0x/Kconfig.defconfig.stm32f072xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f0x/Kconfig.defconfig.stm32f091xc /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f0x/Kconfig.defconfig.stm32f098xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f0x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f1x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f1x/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f1x/Kconfig.defconfig.stm32f100xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f1x/Kconfig.defconfig.stm32f103xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f1x/Kconfig.defconfig.stm32f105xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f1x/Kconfig.defconfig.stm32f107xc /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f1x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f2x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f2x/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f2x/Kconfig.defconfig.stm32f205xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f2x/Kconfig.defconfig.stm32f207xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f2x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f3x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f3x/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f3x/Kconfig.defconfig.stm32f302x8 /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f3x/Kconfig.defconfig.stm32f302xc /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f3x/Kconfig.defconfig.stm32f303x(b-c) /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f3x/Kconfig.defconfig.stm32f303x8 /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f3x/Kconfig.defconfig.stm32f303xe /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f3x/Kconfig.defconfig.stm32f334x8 /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f3x/Kconfig.defconfig.stm32f373xc /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f3x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f4x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f4x/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f4x/Kconfig.defconfig.stm32f401xc /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f4x/Kconfig.defconfig.stm32f401xe /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f4x/Kconfig.defconfig.stm32f405xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f4x/Kconfig.defconfig.stm32f407xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f4x/Kconfig.defconfig.stm32f410xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f4x/Kconfig.defconfig.stm32f411xe /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f4x/Kconfig.defconfig.stm32f412rx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f4x/Kconfig.defconfig.stm32f412xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f4x/Kconfig.defconfig.stm32f413xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f4x/Kconfig.defconfig.stm32f415xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f4x/Kconfig.defconfig.stm32f417xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f4x/Kconfig.defconfig.stm32f423xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f4x/Kconfig.defconfig.stm32f427xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f4x/Kconfig.defconfig.stm32f429xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f4x/Kconfig.defconfig.stm32f437xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f4x/Kconfig.defconfig.stm32f446xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f4x/Kconfig.defconfig.stm32f469xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f4x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f7x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f7x/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f7x/Kconfig.defconfig.stm32f722xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f7x/Kconfig.defconfig.stm32f723xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f7x/Kconfig.defconfig.stm32f745xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f7x/Kconfig.defconfig.stm32f746xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f7x/Kconfig.defconfig.stm32f750xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f7x/Kconfig.defconfig.stm32f756xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f7x/Kconfig.defconfig.stm32f765xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f7x/Kconfig.defconfig.stm32f767xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f7x/Kconfig.defconfig.stm32f769xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f7x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32g0x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32g0x/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32g0x/Kconfig.defconfig.stm32g030xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32g0x/Kconfig.defconfig.stm32g031xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32g0x/Kconfig.defconfig.stm32g041xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32g0x/Kconfig.defconfig.stm32g050xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32g0x/Kconfig.defconfig.stm32g051xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32g0x/Kconfig.defconfig.stm32g061xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32g0x/Kconfig.defconfig.stm32g070xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32g0x/Kconfig.defconfig.stm32g071xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32g0x/Kconfig.defconfig.stm32g081xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32g0x/Kconfig.defconfig.stm32g0b0xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32g0x/Kconfig.defconfig.stm32g0b1xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32g0x/Kconfig.defconfig.stm32g0c1xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32g0x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32g4x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32g4x/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32g4x/Kconfig.defconfig.stm32g431xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32g4x/Kconfig.defconfig.stm32g441xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32g4x/Kconfig.defconfig.stm32g473xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32g4x/Kconfig.defconfig.stm32g474xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32g4x/Kconfig.defconfig.stm32g483xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32g4x/Kconfig.defconfig.stm32g484xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32g4x/Kconfig.defconfig.stm32g491xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32g4x/Kconfig.defconfig.stm32g4a1xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32g4x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32h5x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32h5x/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32h5x/Kconfig.defconfig.stm32h503xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32h5x/Kconfig.defconfig.stm32h533xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32h5x/Kconfig.defconfig.stm32h562xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32h5x/Kconfig.defconfig.stm32h563xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32h5x/Kconfig.defconfig.stm32h573xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32h5x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32h7rsx/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32h7rsx/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32h7rsx/Kconfig.defconfig.stm32h7r3xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32h7rsx/Kconfig.defconfig.stm32h7r7xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32h7rsx/Kconfig.defconfig.stm32h7s3xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32h7rsx/Kconfig.defconfig.stm32h7s7xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32h7rsx/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32h7x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32h7x/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32h7x/Kconfig.defconfig.stm32h723xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32h7x/Kconfig.defconfig.stm32h725xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32h7x/Kconfig.defconfig.stm32h730xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32h7x/Kconfig.defconfig.stm32h735xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32h7x/Kconfig.defconfig.stm32h743xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32h7x/Kconfig.defconfig.stm32h745xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32h7x/Kconfig.defconfig.stm32h747xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32h7x/Kconfig.defconfig.stm32h750xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32h7x/Kconfig.defconfig.stm32h753xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32h7x/Kconfig.defconfig.stm32h755xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32h7x/Kconfig.defconfig.stm32h757xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32h7x/Kconfig.defconfig.stm32h7a3xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32h7x/Kconfig.defconfig.stm32h7b0xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32h7x/Kconfig.defconfig.stm32h7b3xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32h7x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l0x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l0x/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l0x/Kconfig.defconfig.stm32l010x4 /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l0x/Kconfig.defconfig.stm32l010x6 /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l0x/Kconfig.defconfig.stm32l010x8 /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l0x/Kconfig.defconfig.stm32l010xb /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l0x/Kconfig.defconfig.stm32l011xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l0x/Kconfig.defconfig.stm32l031xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l0x/Kconfig.defconfig.stm32l051xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l0x/Kconfig.defconfig.stm32l053xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l0x/Kconfig.defconfig.stm32l071xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l0x/Kconfig.defconfig.stm32l072xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l0x/Kconfig.defconfig.stm32l073xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l0x/Kconfig.defconfig.stm32l081xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l0x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l1x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l1x/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l1x/Kconfig.defconfig.stm32l151xb /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l1x/Kconfig.defconfig.stm32l151xba /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l1x/Kconfig.defconfig.stm32l151xc /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l1x/Kconfig.defconfig.stm32l152xc /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l1x/Kconfig.defconfig.stm32l152xe /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l1x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l4x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l4x/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l4x/Kconfig.defconfig.stm32l412xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l4x/Kconfig.defconfig.stm32l422xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l4x/Kconfig.defconfig.stm32l431xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l4x/Kconfig.defconfig.stm32l432xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l4x/Kconfig.defconfig.stm32l433xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l4x/Kconfig.defconfig.stm32l451xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l4x/Kconfig.defconfig.stm32l452xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l4x/Kconfig.defconfig.stm32l462xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l4x/Kconfig.defconfig.stm32l471xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l4x/Kconfig.defconfig.stm32l475xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l4x/Kconfig.defconfig.stm32l476xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l4x/Kconfig.defconfig.stm32l486xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l4x/Kconfig.defconfig.stm32l496xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l4x/Kconfig.defconfig.stm32l4a6xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l4x/Kconfig.defconfig.stm32l4p5xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l4x/Kconfig.defconfig.stm32l4q5xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l4x/Kconfig.defconfig.stm32l4r5xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l4x/Kconfig.defconfig.stm32l4r9xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l4x/Kconfig.defconfig.stm32l4s5xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l4x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l5x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l5x/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l5x/Kconfig.defconfig.stm32l552xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l5x/Kconfig.defconfig.stm32l562xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l5x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32mp1x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32mp1x/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32mp1x/Kconfig.defconfig.stm32mp15_m4 /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32mp1x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32u0x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32u0x/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32u0x/Kconfig.defconfig.stm32u031xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32u0x/Kconfig.defconfig.stm32u073xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32u0x/Kconfig.defconfig.stm32u083xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32u0x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32u5x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32u5x/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32u5x/Kconfig.defconfig.stm32u545xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32u5x/Kconfig.defconfig.stm32u575xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32u5x/Kconfig.defconfig.stm32u585xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32u5x/Kconfig.defconfig.stm32u595xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32u5x/Kconfig.defconfig.stm32u599xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32u5x/Kconfig.defconfig.stm32u5a5xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32u5x/Kconfig.defconfig.stm32u5a9xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32u5x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32wb0x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32wb0x/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32wb0x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32wbax/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32wbax/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32wbax/Kconfig.defconfig.stm32wba52xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32wbax/Kconfig.defconfig.stm32wba55xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32wbax/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32wbx/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32wbx/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32wbx/Kconfig.defconfig.stm32wb55xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32wbx/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32wlx/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32wlx/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32wlx/Kconfig.defconfig.stm32wl54xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32wlx/Kconfig.defconfig.stm32wl55xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32wlx/Kconfig.defconfig.stm32wle4xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32wlx/Kconfig.defconfig.stm32wle5xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32wlx/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/starfive/jh71xx/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/starfive/jh71xx/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/starfive/jh71xx/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/telink/tlsr/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/telink/tlsr/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/telink/tlsr/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/telink/tlsr/tlsr951x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/telink/tlsr/tlsr951x/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/telink/tlsr/tlsr951x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/ti/k3/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/ti/k3/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/ti/k3/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/ti/k3/am6x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/ti/k3/am6x/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/ti/k3/am6x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/ti/lm3s6965/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/ti/lm3s6965/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/ti/lm3s6965/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/ti/simplelink/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/ti/simplelink/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/ti/simplelink/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/ti/simplelink/cc13x2_cc26x2/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/ti/simplelink/cc13x2_cc26x2/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/ti/simplelink/cc13x2_cc26x2/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/ti/simplelink/cc13x2x7_cc26x2x7/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/ti/simplelink/cc13x2x7_cc26x2x7/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/ti/simplelink/cc13x2x7_cc26x2x7/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/ti/simplelink/cc32xx/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/ti/simplelink/cc32xx/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/ti/simplelink/cc32xx/Kconfig.defconfig.cc3220sf /home/miguel/ncs/v3.0.2/zephyr/soc/ti/simplelink/cc32xx/Kconfig.defconfig.cc3235sf /home/miguel/ncs/v3.0.2/zephyr/soc/ti/simplelink/cc32xx/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/ti/simplelink/msp432p4xx/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/ti/simplelink/msp432p4xx/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/ti/simplelink/msp432p4xx/Kconfig.defconfig.msp432p401r /home/miguel/ncs/v3.0.2/zephyr/soc/ti/simplelink/msp432p4xx/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/wch/ch32v00x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/wch/ch32v00x/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/wch/ch32v00x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/xen/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/xen/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/xen/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/xlnx/zynq7000/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/xlnx/zynq7000/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/xlnx/zynq7000/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/xlnx/zynq7000/xc7zxxx/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/xlnx/zynq7000/xc7zxxx/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/xlnx/zynq7000/xc7zxxx/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/xlnx/zynq7000/xc7zxxxs/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/xlnx/zynq7000/xc7zxxxs/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/xlnx/zynq7000/xc7zxxxs/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/xlnx/zynqmp/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/xlnx/zynqmp/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/xlnx/zynqmp/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/subsys/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/subsys/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/bindesc/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/bindesc/Kconfig.build_time /home/miguel/ncs/v3.0.2/zephyr/subsys/bindesc/Kconfig.host_info /home/miguel/ncs/v3.0.2/zephyr/subsys/bindesc/Kconfig.version /home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/Kconfig.adv /home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/Kconfig.iso /home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/Kconfig.logging /home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/audio/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/audio/Kconfig.aics /home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/audio/Kconfig.ascs /home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/audio/Kconfig.bap /home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/audio/Kconfig.cap /home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/audio/Kconfig.ccp /home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/audio/Kconfig.csip /home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/audio/Kconfig.gmap /home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/audio/Kconfig.has /home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/audio/Kconfig.mcs /home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/audio/Kconfig.mctl /home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/audio/Kconfig.micp /home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/audio/Kconfig.mpl /home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/audio/Kconfig.pacs /home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/audio/Kconfig.pbp /home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/audio/Kconfig.tbs /home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/audio/Kconfig.tmap /home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/audio/Kconfig.vcp /home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/audio/Kconfig.vocs /home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/common/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/controller/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/controller/Kconfig.df /home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/controller/Kconfig.dtm /home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/controller/Kconfig.ll_sw_split /home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/controller/coex/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/crypto/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/host/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/host/Kconfig.gatt /home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/host/Kconfig.l2cap /home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/host/classic/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/lib/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/mesh/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/mesh/shell/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/services/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/services/Kconfig.cts /home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/services/Kconfig.dis /home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/services/Kconfig.hrs /home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/services/Kconfig.tps /home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/services/bas/Kconfig.bas /home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/services/ias/Kconfig.ias /home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/services/nus/Kconfig.nus /home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/services/ots/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/canbus/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/subsys/canbus/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/canbus/Kconfig.canopen /home/miguel/ncs/v3.0.2/zephyr/subsys/canbus/isotp/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/console/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/dap/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/debug/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/subsys/debug/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/debug/coredump/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/debug/gdbstub/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/debug/symtab/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/demand_paging/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/demand_paging/backing_store/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/demand_paging/eviction/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/dfu/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/disk/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/dsp/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/emul/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/emul/espi/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/fb/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/subsys/fb/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/fs/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/subsys/fs/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/fs/Kconfig.fatfs /home/miguel/ncs/v3.0.2/zephyr/subsys/fs/Kconfig.littlefs /home/miguel/ncs/v3.0.2/zephyr/subsys/fs/ext2/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/fs/fcb/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/fs/nvs/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/fs/zms/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/input/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/ipc/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/subsys/ipc/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/ipc/ipc_service/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/ipc/ipc_service/backends/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/ipc/ipc_service/backends/Kconfig.icbmsg /home/miguel/ncs/v3.0.2/zephyr/subsys/ipc/ipc_service/backends/Kconfig.icmsg_me /home/miguel/ncs/v3.0.2/zephyr/subsys/ipc/ipc_service/backends/Kconfig.rpmsg /home/miguel/ncs/v3.0.2/zephyr/subsys/ipc/ipc_service/lib/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/ipc/ipc_service/lib/Kconfig.icmsg /home/miguel/ncs/v3.0.2/zephyr/subsys/ipc/rpmsg_service/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/jwt/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/llext/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/logging/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/subsys/logging/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/logging/Kconfig.filtering /home/miguel/ncs/v3.0.2/zephyr/subsys/logging/Kconfig.formatting /home/miguel/ncs/v3.0.2/zephyr/subsys/logging/Kconfig.links /home/miguel/ncs/v3.0.2/zephyr/subsys/logging/Kconfig.misc /home/miguel/ncs/v3.0.2/zephyr/subsys/logging/Kconfig.mode /home/miguel/ncs/v3.0.2/zephyr/subsys/logging/Kconfig.processing /home/miguel/ncs/v3.0.2/zephyr/subsys/logging/Kconfig.template.log_config /home/miguel/ncs/v3.0.2/zephyr/subsys/logging/Kconfig.template.log_config_inherit /home/miguel/ncs/v3.0.2/zephyr/subsys/logging/Kconfig.template.log_format_config /home/miguel/ncs/v3.0.2/zephyr/subsys/logging/backends/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/subsys/logging/backends/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/logging/backends/Kconfig.adsp /home/miguel/ncs/v3.0.2/zephyr/subsys/logging/backends/Kconfig.adsp_mtrace /home/miguel/ncs/v3.0.2/zephyr/subsys/logging/backends/Kconfig.ble /home/miguel/ncs/v3.0.2/zephyr/subsys/logging/backends/Kconfig.efi_console /home/miguel/ncs/v3.0.2/zephyr/subsys/logging/backends/Kconfig.fs /home/miguel/ncs/v3.0.2/zephyr/subsys/logging/backends/Kconfig.multidomain /home/miguel/ncs/v3.0.2/zephyr/subsys/logging/backends/Kconfig.native_posix /home/miguel/ncs/v3.0.2/zephyr/subsys/logging/backends/Kconfig.net /home/miguel/ncs/v3.0.2/zephyr/subsys/logging/backends/Kconfig.rtt /home/miguel/ncs/v3.0.2/zephyr/subsys/logging/backends/Kconfig.semihost /home/miguel/ncs/v3.0.2/zephyr/subsys/logging/backends/Kconfig.spinel /home/miguel/ncs/v3.0.2/zephyr/subsys/logging/backends/Kconfig.swo /home/miguel/ncs/v3.0.2/zephyr/subsys/logging/backends/Kconfig.uart /home/miguel/ncs/v3.0.2/zephyr/subsys/logging/backends/Kconfig.ws /home/miguel/ncs/v3.0.2/zephyr/subsys/logging/backends/Kconfig.xtensa_sim /home/miguel/ncs/v3.0.2/zephyr/subsys/logging/frontends/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/subsys/logging/frontends/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/lorawan/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/lorawan/nvm/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/lorawan/services/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/mem_mgmt/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/subsys/mem_mgmt/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/mgmt/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/subsys/mgmt/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/mgmt/ec_host_cmd/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/mgmt/ec_host_cmd/Kconfig.logging /home/miguel/ncs/v3.0.2/zephyr/subsys/mgmt/ec_host_cmd/backends/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/mgmt/hawkbit/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/mgmt/mcumgr/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/mgmt/mcumgr/grp/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/mgmt/mcumgr/grp/enum_mgmt/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/mgmt/mcumgr/grp/fs_mgmt/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/mgmt/mcumgr/grp/img_mgmt/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/mgmt/mcumgr/grp/img_mgmt_client/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/mgmt/mcumgr/grp/os_mgmt/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/mgmt/mcumgr/grp/os_mgmt_client/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/mgmt/mcumgr/grp/settings_mgmt/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/mgmt/mcumgr/grp/shell_mgmt/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/mgmt/mcumgr/grp/stat_mgmt/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/mgmt/mcumgr/grp/zephyr_basic/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/mgmt/mcumgr/mgmt/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/mgmt/mcumgr/smp/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/mgmt/mcumgr/smp_client/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/mgmt/mcumgr/transport/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/mgmt/mcumgr/transport/Kconfig.bluetooth /home/miguel/ncs/v3.0.2/zephyr/subsys/mgmt/mcumgr/transport/Kconfig.dummy /home/miguel/ncs/v3.0.2/zephyr/subsys/mgmt/mcumgr/transport/Kconfig.lorawan /home/miguel/ncs/v3.0.2/zephyr/subsys/mgmt/mcumgr/transport/Kconfig.shell /home/miguel/ncs/v3.0.2/zephyr/subsys/mgmt/mcumgr/transport/Kconfig.uart /home/miguel/ncs/v3.0.2/zephyr/subsys/mgmt/mcumgr/transport/Kconfig.udp /home/miguel/ncs/v3.0.2/zephyr/subsys/mgmt/osdp/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/mgmt/osdp/Kconfig.cp /home/miguel/ncs/v3.0.2/zephyr/subsys/mgmt/osdp/Kconfig.pd /home/miguel/ncs/v3.0.2/zephyr/subsys/mgmt/updatehub/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/modbus/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/subsys/modbus/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/modem/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/modem/backends/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/net/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/net/Kconfig.hostname /home/miguel/ncs/v3.0.2/zephyr/subsys/net/Kconfig.template.log_config.net /home/miguel/ncs/v3.0.2/zephyr/subsys/net/conn_mgr/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/net/ip/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/net/ip/Kconfig.debug /home/miguel/ncs/v3.0.2/zephyr/subsys/net/ip/Kconfig.ipv4 /home/miguel/ncs/v3.0.2/zephyr/subsys/net/ip/Kconfig.ipv6 /home/miguel/ncs/v3.0.2/zephyr/subsys/net/ip/Kconfig.mgmt /home/miguel/ncs/v3.0.2/zephyr/subsys/net/ip/Kconfig.stack /home/miguel/ncs/v3.0.2/zephyr/subsys/net/ip/Kconfig.stats /home/miguel/ncs/v3.0.2/zephyr/subsys/net/ip/Kconfig.tcp /home/miguel/ncs/v3.0.2/zephyr/subsys/net/l2/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/net/l2/canbus/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/net/l2/dummy/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/net/l2/dummy/any/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/net/l2/ethernet/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/net/l2/ethernet/gptp/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/net/l2/ethernet/lldp/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/net/l2/ieee802154/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/net/l2/ieee802154/Kconfig.radio /home/miguel/ncs/v3.0.2/zephyr/subsys/net/l2/openthread/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/net/l2/ppp/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/net/l2/virtual/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/net/l2/virtual/ipip/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/net/l2/wifi/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/net/lib/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/net/lib/capture/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/net/lib/coap/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/net/lib/config/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/net/lib/dhcpv4/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/net/lib/dhcpv6/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/net/lib/dns/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/net/lib/http/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/net/lib/lwm2m/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/net/lib/lwm2m/Kconfig.ipso /home/miguel/ncs/v3.0.2/zephyr/subsys/net/lib/lwm2m/Kconfig.ucifi /home/miguel/ncs/v3.0.2/zephyr/subsys/net/lib/mqtt/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/net/lib/mqtt_sn/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/net/lib/prometheus/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/net/lib/ptp/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/net/lib/sntp/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/net/lib/sockets/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/net/lib/socks/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/net/lib/tftp/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/net/lib/tls_credentials/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/net/lib/tls_credentials/Kconfig.shell /home/miguel/ncs/v3.0.2/zephyr/subsys/net/lib/trickle/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/net/lib/websocket/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/net/lib/wifi_credentials/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/net/lib/zperf/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/net/pkt_filter/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/pm/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/subsys/pm/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/pm/policy/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/subsys/pm/policy/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/portability/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/subsys/portability/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/portability/cmsis_rtos_v1/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/portability/cmsis_rtos_v2/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/profiling/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/profiling/perf/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/profiling/perf/backends/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/random/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/subsys/random/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/retention/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/retention/Kconfig.blinfo /home/miguel/ncs/v3.0.2/zephyr/subsys/rtio/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/subsys/rtio/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/rtio/Kconfig.workq /home/miguel/ncs/v3.0.2/zephyr/subsys/sd/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/subsys/sd/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/secure_storage/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/secure_storage/Kconfig.its_store /home/miguel/ncs/v3.0.2/zephyr/subsys/secure_storage/Kconfig.its_transform /home/miguel/ncs/v3.0.2/zephyr/subsys/sensing/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/sensing/sensor/hinge_angle/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/sensing/sensor/phy_3d_sensor/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/settings/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/shell/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/shell/Kconfig.template.shell_log_queue_size /home/miguel/ncs/v3.0.2/zephyr/subsys/shell/Kconfig.template.shell_log_queue_timeout /home/miguel/ncs/v3.0.2/zephyr/subsys/shell/backends/Kconfig.backends /home/miguel/ncs/v3.0.2/zephyr/subsys/shell/modules/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/shell/modules/kernel_service/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/shell/modules/kernel_service/thread/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/sip_svc/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/stats/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/subsys/stats/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/storage/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/subsys/storage/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/storage/flash_map/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/storage/stream/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/task_wdt/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/subsys/task_wdt/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/testsuite/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/subsys/testsuite/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/testsuite/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/testsuite/ztest/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/timing/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/tracing/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/subsys/tracing/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/tracing/sysview/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/usb/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device/class/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device/class/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device/class/Kconfig.bt /home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device/class/Kconfig.cdc /home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device/class/Kconfig.msc /home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device/class/Kconfig.template.composite_device_number /home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device/class/Kconfig.test /home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device/class/audio/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device/class/dfu/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device/class/hid/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device/class/netusb/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device_next/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device_next/app/Kconfig.cdc_acm_serial /home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device_next/class/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device_next/class/Kconfig.bt /home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device_next/class/Kconfig.cdc_acm /home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device_next/class/Kconfig.cdc_ecm /home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device_next/class/Kconfig.cdc_ncm /home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device_next/class/Kconfig.hid /home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device_next/class/Kconfig.loopback /home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device_next/class/Kconfig.msc /home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device_next/class/Kconfig.template.instances_count /home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device_next/class/Kconfig.uac2 /home/miguel/ncs/v3.0.2/zephyr/subsys/usb/host/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/usb/usb_c/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/zbus/Kconfig CMakeCache.txt CMakeFiles/3.21.0/CMakeASMCompiler.cmake CMakeFiles/3.21.0/CMakeCCompiler.cmake CMakeFiles/3.21.0/CMakeCXXCompiler.cmake CMakeFiles/3.21.0/CMakeSystem.cmake Kconfig/Kconfig.dts Kconfig/Kconfig.modules Kconfig/Kconfig.shield Kconfig/Kconfig.shield.defconfig Kconfig/arch/Kconfig Kconfig/boards/Kconfig Kconfig/boards/Kconfig.defconfig Kconfig/boards/Kconfig.phf000_board Kconfig/soc/Kconfig Kconfig/soc/Kconfig.defconfig Kconfig/soc/Kconfig.soc zephyr/.config zephyr/dts.cmake zephyr/include/generated/zephyr/autoconf.h zephyr/misc/generated/extra_kconfig_options.conf zephyr/misc/generated/syscalls_subdirs.txt zephyr/snippets_generated.cmake + pool = console + + +############################################# +# A missing CMake input file is not an error. + +build ../../CMakeLists.txt ../../boards/Mi_labs/phf000_board/Kconfig.phf000_board ../../boards/Mi_labs/phf000_board/board.cmake ../../boards/Mi_labs/phf000_board/board.yml ../../boards/Mi_labs/phf000_board/phf000_board-pinctrl.dtsi ../../boards/Mi_labs/phf000_board/phf000_board.dts ../../boards/Mi_labs/phf000_board/phf000_board_defconfig ../../boards/Mi_labs/phf000_board/pre_dt_board.cmake ../../prj.conf /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/cmake/Zephyr-sdkConfig.cmake /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/cmake/Zephyr-sdkConfigVersion.cmake /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/cmake/zephyr/Kconfig /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/cmake/zephyr/generic.cmake /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/cmake/zephyr/host-tools.cmake /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/cmake/zephyr/target.cmake /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/share/cmake-3.21/Modules/CMakeASMInformation.cmake /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/share/cmake-3.21/Modules/CMakeCInformation.cmake /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/share/cmake-3.21/Modules/CMakeCXXInformation.cmake /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/share/cmake-3.21/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/share/cmake-3.21/Modules/CMakeCommonLanguageInclude.cmake /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/share/cmake-3.21/Modules/CMakeGenericSystem.cmake /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/share/cmake-3.21/Modules/CMakeInitializeConfigs.cmake /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/share/cmake-3.21/Modules/CMakeLanguageInformation.cmake /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/share/cmake-3.21/Modules/CMakeSystemSpecificInformation.cmake /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/share/cmake-3.21/Modules/CMakeSystemSpecificInitialize.cmake /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/share/cmake-3.21/Modules/CheckCCompilerFlag.cmake /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/share/cmake-3.21/Modules/CheckCSourceCompiles.cmake /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/share/cmake-3.21/Modules/CheckCXXCompilerFlag.cmake /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/share/cmake-3.21/Modules/CheckCXXSourceCompiles.cmake /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/share/cmake-3.21/Modules/Compiler/CMakeCommonCompilerMacros.cmake /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/share/cmake-3.21/Modules/Compiler/GNU-ASM.cmake /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/share/cmake-3.21/Modules/Compiler/GNU-C.cmake /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/share/cmake-3.21/Modules/Compiler/GNU-CXX.cmake /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/share/cmake-3.21/Modules/Compiler/GNU.cmake /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/share/cmake-3.21/Modules/FindGit.cmake /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/share/cmake-3.21/Modules/FindPackageHandleStandardArgs.cmake /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/share/cmake-3.21/Modules/FindPackageMessage.cmake /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/share/cmake-3.21/Modules/FindPython/Support.cmake /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/share/cmake-3.21/Modules/FindPython3.cmake /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/share/cmake-3.21/Modules/Internal/CheckCompilerFlag.cmake /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/share/cmake-3.21/Modules/Internal/CheckSourceCompiles.cmake /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/share/cmake-3.21/Modules/Platform/Generic.cmake /home/miguel/ncs/v3.0.2/bootloader/mcuboot/boot/bootutil/zephyr/CMakeLists.txt /home/miguel/ncs/v3.0.2/modules/bsim_hw_models/nrf_hw_models/CMakeLists.txt /home/miguel/ncs/v3.0.2/modules/crypto/oberon-psa-crypto/Kconfig.oberon_psa_crypto /home/miguel/ncs/v3.0.2/modules/crypto/tinycrypt/CMakeLists.txt /home/miguel/ncs/v3.0.2/modules/debug/mipi-sys-t/CMakeLists.txt /home/miguel/ncs/v3.0.2/modules/debug/percepio/DFM/kernelports/Zephyr/Kconfig /home/miguel/ncs/v3.0.2/modules/debug/percepio/DFM/kernelports/Zephyr/storageports/Filesystem/Kconfig /home/miguel/ncs/v3.0.2/modules/debug/percepio/DFM/kernelports/Zephyr/storageports/Flash/Kconfig /home/miguel/ncs/v3.0.2/modules/debug/percepio/TraceRecorder/config/Kconfig /home/miguel/ncs/v3.0.2/modules/debug/percepio/TraceRecorder/kernelports/Zephyr/Kconfig /home/miguel/ncs/v3.0.2/modules/debug/percepio/TraceRecorder/kernelports/Zephyr/streamports/Semihost/Kconfig /home/miguel/ncs/v3.0.2/modules/debug/percepio/TraceRecorder/streamports/ARM_ITM/Kconfig /home/miguel/ncs/v3.0.2/modules/debug/percepio/TraceRecorder/streamports/File/Kconfig /home/miguel/ncs/v3.0.2/modules/debug/percepio/TraceRecorder/streamports/Jlink_RTT/Kconfig /home/miguel/ncs/v3.0.2/modules/debug/percepio/TraceRecorder/streamports/RingBuffer/Kconfig /home/miguel/ncs/v3.0.2/modules/debug/percepio/zephyr/Kconfig /home/miguel/ncs/v3.0.2/modules/hal/cirrus-logic/CMakeLists.txt /home/miguel/ncs/v3.0.2/modules/hal/cirrus-logic/Kconfig /home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/CMakeLists.txt /home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/CMakeLists.txt /home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMakeLists.txt /home/miguel/ncs/v3.0.2/modules/hal/libmetal/CMakeLists.txt /home/miguel/ncs/v3.0.2/modules/hal/st/CMakeLists.txt /home/miguel/ncs/v3.0.2/modules/hal/tdk/CMakeLists.txt /home/miguel/ncs/v3.0.2/modules/hal/wurthelektronik/CMakeLists.txt /home/miguel/ncs/v3.0.2/modules/lib/chre/platform/zephyr/CMakeLists.txt /home/miguel/ncs/v3.0.2/modules/lib/chre/platform/zephyr/Kconfig /home/miguel/ncs/v3.0.2/modules/lib/gui/lvgl/Kconfig /home/miguel/ncs/v3.0.2/modules/lib/gui/lvgl/zephyr/Kconfig /home/miguel/ncs/v3.0.2/modules/lib/matter/config/nrfconnect/chip-module/CMakeLists.txt /home/miguel/ncs/v3.0.2/modules/lib/matter/config/nrfconnect/chip-module/Kconfig /home/miguel/ncs/v3.0.2/modules/lib/matter/config/zephyr/Kconfig /home/miguel/ncs/v3.0.2/modules/lib/memfault-firmware-sdk/ports/zephyr/CMakeLists.txt /home/miguel/ncs/v3.0.2/modules/lib/memfault-firmware-sdk/ports/zephyr/Kconfig /home/miguel/ncs/v3.0.2/modules/lib/memfault-firmware-sdk/ports/zephyr/ncs/Kconfig /home/miguel/ncs/v3.0.2/modules/lib/open-amp/CMakeLists.txt /home/miguel/ncs/v3.0.2/modules/lib/picolibc/CMakeLists.txt /home/miguel/ncs/v3.0.2/modules/lib/picolibc/zephyr/Kconfig /home/miguel/ncs/v3.0.2/modules/lib/suit-generator/ncs/Kconfig /home/miguel/ncs/v3.0.2/modules/lib/suit-processor/Kconfig /home/miguel/ncs/v3.0.2/modules/lib/suit-processor/ncs/CMakeLists.txt /home/miguel/ncs/v3.0.2/modules/lib/zscilib/CMakeLists.txt /home/miguel/ncs/v3.0.2/modules/lib/zscilib/Kconfig.zscilib /home/miguel/ncs/v3.0.2/nrf/CMakeLists.txt /home/miguel/ncs/v3.0.2/nrf/Kconfig.nrf /home/miguel/ncs/v3.0.2/nrf/boards/deprecated.cmake /home/miguel/ncs/v3.0.2/nrf/boards/shields/coverage_support/Kconfig.shield /home/miguel/ncs/v3.0.2/nrf/boards/shields/nrf21540ek/Kconfig.shield /home/miguel/ncs/v3.0.2/nrf/boards/shields/nrf2220ek/Kconfig.shield /home/miguel/ncs/v3.0.2/nrf/boards/shields/nrf2240ek/Kconfig.shield /home/miguel/ncs/v3.0.2/nrf/boards/shields/nrf7002eb2/Kconfig.shield /home/miguel/ncs/v3.0.2/nrf/boards/shields/nrf7002eb_interposer_p1/Kconfig.shield /home/miguel/ncs/v3.0.2/nrf/boards/shields/pca63565/Kconfig.shield /home/miguel/ncs/v3.0.2/nrf/boards/shields/pca63566/Kconfig.shield /home/miguel/ncs/v3.0.2/nrf/cmake/boilerplate.cmake /home/miguel/ncs/v3.0.2/nrf/cmake/extensions.cmake /home/miguel/ncs/v3.0.2/nrf/cmake/hpf.cmake /home/miguel/ncs/v3.0.2/nrf/cmake/modules/kconfig.cmake /home/miguel/ncs/v3.0.2/nrf/cmake/partition_manager.cmake /home/miguel/ncs/v3.0.2/nrf/cmake/version.cmake /home/miguel/ncs/v3.0.2/nrf/cmake/version_app.cmake /home/miguel/ncs/v3.0.2/nrf/drivers/CMakeLists.txt /home/miguel/ncs/v3.0.2/nrf/drivers/Kconfig /home/miguel/ncs/v3.0.2/nrf/drivers/bluetooth/Kconfig /home/miguel/ncs/v3.0.2/nrf/drivers/bluetooth/hci/Kconfig /home/miguel/ncs/v3.0.2/nrf/drivers/entropy/CMakeLists.txt /home/miguel/ncs/v3.0.2/nrf/drivers/entropy/Kconfig /home/miguel/ncs/v3.0.2/nrf/drivers/flash/CMakeLists.txt /home/miguel/ncs/v3.0.2/nrf/drivers/flash/Kconfig /home/miguel/ncs/v3.0.2/nrf/drivers/gpio/CMakeLists.txt /home/miguel/ncs/v3.0.2/nrf/drivers/gpio/Kconfig /home/miguel/ncs/v3.0.2/nrf/drivers/hw_cc3xx/CMakeLists.txt /home/miguel/ncs/v3.0.2/nrf/drivers/hw_cc3xx/Kconfig /home/miguel/ncs/v3.0.2/nrf/drivers/mpsl/CMakeLists.txt /home/miguel/ncs/v3.0.2/nrf/drivers/mpsl/Kconfig /home/miguel/ncs/v3.0.2/nrf/drivers/mpsl/clock_control/Kconfig /home/miguel/ncs/v3.0.2/nrf/drivers/mpsl/flash_sync/CMakeLists.txt /home/miguel/ncs/v3.0.2/nrf/drivers/mpsl/flash_sync/Kconfig /home/miguel/ncs/v3.0.2/nrf/drivers/mpsl/temp_nrf5/Kconfig /home/miguel/ncs/v3.0.2/nrf/drivers/mspi/Kconfig /home/miguel/ncs/v3.0.2/nrf/drivers/mspi/Kconfig.hpf /home/miguel/ncs/v3.0.2/nrf/drivers/mspi/Kconfig.sqspi /home/miguel/ncs/v3.0.2/nrf/drivers/net/Kconfig /home/miguel/ncs/v3.0.2/nrf/drivers/sensor/CMakeLists.txt /home/miguel/ncs/v3.0.2/nrf/drivers/sensor/Kconfig /home/miguel/ncs/v3.0.2/nrf/drivers/sensor/bh1749/Kconfig /home/miguel/ncs/v3.0.2/nrf/drivers/sensor/bme68x_iaq/Kconfig /home/miguel/ncs/v3.0.2/nrf/drivers/sensor/paw3212/Kconfig /home/miguel/ncs/v3.0.2/nrf/drivers/sensor/pmw3360/Kconfig /home/miguel/ncs/v3.0.2/nrf/drivers/sensor/sensor_sim/Kconfig /home/miguel/ncs/v3.0.2/nrf/drivers/sensor/sensor_stub/Kconfig /home/miguel/ncs/v3.0.2/nrf/drivers/serial/CMakeLists.txt /home/miguel/ncs/v3.0.2/nrf/drivers/serial/Kconfig /home/miguel/ncs/v3.0.2/nrf/drivers/serial/Kconfig.ipc /home/miguel/ncs/v3.0.2/nrf/drivers/serial/Kconfig.nrf_sw_lpuart /home/miguel/ncs/v3.0.2/nrf/ext/CMakeLists.txt /home/miguel/ncs/v3.0.2/nrf/ext/Kconfig /home/miguel/ncs/v3.0.2/nrf/ext/curl/Kconfig /home/miguel/ncs/v3.0.2/nrf/ext/freebsd-getopt/Kconfig /home/miguel/ncs/v3.0.2/nrf/ext/iperf3/Kconfig /home/miguel/ncs/v3.0.2/nrf/lib/CMakeLists.txt /home/miguel/ncs/v3.0.2/nrf/lib/Kconfig /home/miguel/ncs/v3.0.2/nrf/lib/adp536x/Kconfig /home/miguel/ncs/v3.0.2/nrf/lib/app_jwt/Kconfig /home/miguel/ncs/v3.0.2/nrf/lib/at_cmd_custom/Kconfig /home/miguel/ncs/v3.0.2/nrf/lib/at_cmd_parser/Kconfig /home/miguel/ncs/v3.0.2/nrf/lib/at_host/Kconfig /home/miguel/ncs/v3.0.2/nrf/lib/at_monitor/Kconfig /home/miguel/ncs/v3.0.2/nrf/lib/at_parser/Kconfig /home/miguel/ncs/v3.0.2/nrf/lib/at_shell/Kconfig /home/miguel/ncs/v3.0.2/nrf/lib/bin/CMakeLists.txt /home/miguel/ncs/v3.0.2/nrf/lib/bin/Kconfig /home/miguel/ncs/v3.0.2/nrf/lib/bin/lwm2m_carrier/Kconfig /home/miguel/ncs/v3.0.2/nrf/lib/boot_banner/CMakeLists.txt /home/miguel/ncs/v3.0.2/nrf/lib/boot_banner/Kconfig /home/miguel/ncs/v3.0.2/nrf/lib/contin_array/Kconfig /home/miguel/ncs/v3.0.2/nrf/lib/data_fifo/Kconfig /home/miguel/ncs/v3.0.2/nrf/lib/date_time/Kconfig /home/miguel/ncs/v3.0.2/nrf/lib/dk_buttons_and_leds/Kconfig /home/miguel/ncs/v3.0.2/nrf/lib/edge_impulse/Kconfig /home/miguel/ncs/v3.0.2/nrf/lib/fatal_error/CMakeLists.txt /home/miguel/ncs/v3.0.2/nrf/lib/fatal_error/Kconfig /home/miguel/ncs/v3.0.2/nrf/lib/fem_al/Kconfig /home/miguel/ncs/v3.0.2/nrf/lib/flash_patch/CMakeLists.txt /home/miguel/ncs/v3.0.2/nrf/lib/flash_patch/Kconfig /home/miguel/ncs/v3.0.2/nrf/lib/fprotect/Kconfig /home/miguel/ncs/v3.0.2/nrf/lib/gcf_sms/Kconfig /home/miguel/ncs/v3.0.2/nrf/lib/hw_id/Kconfig /home/miguel/ncs/v3.0.2/nrf/lib/hw_unique_key/Kconfig /home/miguel/ncs/v3.0.2/nrf/lib/identity_key/Kconfig /home/miguel/ncs/v3.0.2/nrf/lib/location/Kconfig /home/miguel/ncs/v3.0.2/nrf/lib/lte_link_control/Kconfig /home/miguel/ncs/v3.0.2/nrf/lib/modem_antenna/Kconfig /home/miguel/ncs/v3.0.2/nrf/lib/modem_attest_token/Kconfig /home/miguel/ncs/v3.0.2/nrf/lib/modem_battery/Kconfig /home/miguel/ncs/v3.0.2/nrf/lib/modem_info/Kconfig /home/miguel/ncs/v3.0.2/nrf/lib/modem_jwt/Kconfig /home/miguel/ncs/v3.0.2/nrf/lib/modem_key_mgmt/Kconfig /home/miguel/ncs/v3.0.2/nrf/lib/modem_slm/Kconfig /home/miguel/ncs/v3.0.2/nrf/lib/multithreading_lock/Kconfig /home/miguel/ncs/v3.0.2/nrf/lib/nrf_modem_lib/Kconfig /home/miguel/ncs/v3.0.2/nrf/lib/nrf_modem_lib/Kconfig.modemlib /home/miguel/ncs/v3.0.2/nrf/lib/nrf_modem_lib/lte_net_if/Kconfig /home/miguel/ncs/v3.0.2/nrf/lib/nrf_modem_lib/shell/Kconfig /home/miguel/ncs/v3.0.2/nrf/lib/nrf_modem_lib/trace_backends/Kconfig /home/miguel/ncs/v3.0.2/nrf/lib/nrf_modem_lib/trace_backends/flash/Kconfig /home/miguel/ncs/v3.0.2/nrf/lib/nrf_modem_lib/trace_backends/ram/Kconfig /home/miguel/ncs/v3.0.2/nrf/lib/nrf_modem_lib/trace_backends/rtt/Kconfig /home/miguel/ncs/v3.0.2/nrf/lib/nrf_modem_lib/trace_backends/uart/Kconfig /home/miguel/ncs/v3.0.2/nrf/lib/pcm_mix/Kconfig /home/miguel/ncs/v3.0.2/nrf/lib/pcm_stream_channel_modifier/Kconfig /home/miguel/ncs/v3.0.2/nrf/lib/pdn/Kconfig /home/miguel/ncs/v3.0.2/nrf/lib/qos/Kconfig /home/miguel/ncs/v3.0.2/nrf/lib/ram_pwrdn/Kconfig /home/miguel/ncs/v3.0.2/nrf/lib/sample_rate_converter/Kconfig /home/miguel/ncs/v3.0.2/nrf/lib/sfloat/Kconfig /home/miguel/ncs/v3.0.2/nrf/lib/sms/Kconfig /home/miguel/ncs/v3.0.2/nrf/lib/st25r3911b/Kconfig /home/miguel/ncs/v3.0.2/nrf/lib/supl/Kconfig /home/miguel/ncs/v3.0.2/nrf/lib/tone/Kconfig /home/miguel/ncs/v3.0.2/nrf/lib/uicc_lwm2m/Kconfig /home/miguel/ncs/v3.0.2/nrf/lib/wave_gen/Kconfig /home/miguel/ncs/v3.0.2/nrf/modules/CMakeLists.txt /home/miguel/ncs/v3.0.2/nrf/modules/Kconfig /home/miguel/ncs/v3.0.2/nrf/modules/azure-sdk-for-c/CMakeLists.txt /home/miguel/ncs/v3.0.2/nrf/modules/azure-sdk-for-c/Kconfig /home/miguel/ncs/v3.0.2/nrf/modules/cjson/CMakeLists.txt /home/miguel/ncs/v3.0.2/nrf/modules/cjson/Kconfig /home/miguel/ncs/v3.0.2/nrf/modules/coremark/Kconfig /home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/CMakeLists.txt /home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/nrfx/CMakeLists.txt /home/miguel/ncs/v3.0.2/nrf/modules/mcuboot/CMakeLists.txt /home/miguel/ncs/v3.0.2/nrf/modules/mcuboot/Kconfig /home/miguel/ncs/v3.0.2/nrf/modules/memfault-firmware-sdk/Kconfig /home/miguel/ncs/v3.0.2/nrf/modules/modules.cmake /home/miguel/ncs/v3.0.2/nrf/modules/nrfxlib/CMakeLists.txt /home/miguel/ncs/v3.0.2/nrf/modules/nrfxlib/nrf_802154/CMakeLists.txt /home/miguel/ncs/v3.0.2/nrf/modules/openthread/CMakeLists.txt /home/miguel/ncs/v3.0.2/nrf/modules/openthread/Kconfig /home/miguel/ncs/v3.0.2/nrf/modules/openthread/Kconfig.features /home/miguel/ncs/v3.0.2/nrf/modules/openthread/Kconfig.thread /home/miguel/ncs/v3.0.2/nrf/modules/trusted-firmware-m/Kconfig /home/miguel/ncs/v3.0.2/nrf/modules/trusted-firmware-m/Kconfig.mbedtls.defconfig /home/miguel/ncs/v3.0.2/nrf/modules/trusted-firmware-m/Kconfig.mbedtls_minimal.defconfig /home/miguel/ncs/v3.0.2/nrf/modules/trusted-firmware-m/Kconfig.peripheral_secure /home/miguel/ncs/v3.0.2/nrf/modules/trusted-firmware-m/Kconfig.psa.defconfig /home/miguel/ncs/v3.0.2/nrf/modules/trusted-firmware-m/Kconfig.template.peripheral_secure /home/miguel/ncs/v3.0.2/nrf/modules/trusted-firmware-m/Kconfig.tfm.defconfig /home/miguel/ncs/v3.0.2/nrf/modules/trusted-firmware-m/Kconfig.tfm.pm /home/miguel/ncs/v3.0.2/nrf/modules/trusted-firmware-m/Kconfig.tfm_minimal.defconfig /home/miguel/ncs/v3.0.2/nrf/modules/wfa-qt/CMakeLists.txt /home/miguel/ncs/v3.0.2/nrf/modules/wfa-qt/Kconfig /home/miguel/ncs/v3.0.2/nrf/samples/CMakeLists.txt /home/miguel/ncs/v3.0.2/nrf/samples/Kconfig /home/miguel/ncs/v3.0.2/nrf/samples/common/CMakeLists.txt /home/miguel/ncs/v3.0.2/nrf/samples/common/Kconfig /home/miguel/ncs/v3.0.2/nrf/samples/common/mcumgr_bt_ota_dfu/CMakeLists.txt /home/miguel/ncs/v3.0.2/nrf/samples/common/mcumgr_bt_ota_dfu/Kconfig /home/miguel/ncs/v3.0.2/nrf/share/ncs-package/cmake/NcsConfig.cmake /home/miguel/ncs/v3.0.2/nrf/share/zephyrbuild-package/cmake/ZephyrBuildConfig.cmake /home/miguel/ncs/v3.0.2/nrf/snippets/ci-shell/snippet.yml /home/miguel/ncs/v3.0.2/nrf/snippets/hpf/gpio/icbmsg/snippet.yml /home/miguel/ncs/v3.0.2/nrf/snippets/hpf/gpio/icmsg/snippet.yml /home/miguel/ncs/v3.0.2/nrf/snippets/hpf/gpio/mbox/snippet.yml /home/miguel/ncs/v3.0.2/nrf/snippets/hpf/mspi/snippet.yml /home/miguel/ncs/v3.0.2/nrf/snippets/hw-flow-control/snippet.yml /home/miguel/ncs/v3.0.2/nrf/snippets/matter-debug/snippet.yml /home/miguel/ncs/v3.0.2/nrf/snippets/matter-diagnostic-logs/snippet.yml /home/miguel/ncs/v3.0.2/nrf/snippets/matter-power-consumption-tests/snippet.yml /home/miguel/ncs/v3.0.2/nrf/snippets/nordic-bt-rpc/snippet.yml /home/miguel/ncs/v3.0.2/nrf/snippets/nrf54l09-switch-uart/snippet.yml /home/miguel/ncs/v3.0.2/nrf/snippets/nrf70-driver-debug/snippet.yml /home/miguel/ncs/v3.0.2/nrf/snippets/nrf70-driver-verbose-debug/snippet.yml /home/miguel/ncs/v3.0.2/nrf/snippets/nrf70-fw-patch-ext-flash/snippet.yml /home/miguel/ncs/v3.0.2/nrf/snippets/nrf70-wifi/snippet.yml /home/miguel/ncs/v3.0.2/nrf/snippets/nrf91-modem-trace-ext-flash/snippet.yml /home/miguel/ncs/v3.0.2/nrf/snippets/nrf91-modem-trace-ram/snippet.yml /home/miguel/ncs/v3.0.2/nrf/snippets/nrf91-modem-trace-rtt/snippet.yml /home/miguel/ncs/v3.0.2/nrf/snippets/nrf91-modem-trace-uart/snippet.yml /home/miguel/ncs/v3.0.2/nrf/snippets/tfm-enable-share-uart/snippet.yml /home/miguel/ncs/v3.0.2/nrf/snippets/wpa-supplicant-debug/snippet.yml /home/miguel/ncs/v3.0.2/nrf/snippets/zperf/snippet.yml /home/miguel/ncs/v3.0.2/nrf/soc/nordic/Kconfig /home/miguel/ncs/v3.0.2/nrf/soc/nordic/Kconfig.defconfig /home/miguel/ncs/v3.0.2/nrf/soc/nordic/Kconfig.soc /home/miguel/ncs/v3.0.2/nrf/soc/nordic/nrf54l/Kconfig /home/miguel/ncs/v3.0.2/nrf/soc/nordic/nrf54l/Kconfig.defconfig /home/miguel/ncs/v3.0.2/nrf/soc/nordic/nrf54l/Kconfig.defconfig.nrf54lm20a_enga_cpuapp /home/miguel/ncs/v3.0.2/nrf/soc/nordic/nrf54l/Kconfig.defconfig.nrf54lv10a_enga_cpuapp /home/miguel/ncs/v3.0.2/nrf/soc/nordic/nrf54l/Kconfig.soc /home/miguel/ncs/v3.0.2/nrf/soc/nordic/nrf71/Kconfig /home/miguel/ncs/v3.0.2/nrf/soc/nordic/nrf71/Kconfig.defconfig /home/miguel/ncs/v3.0.2/nrf/soc/nordic/nrf71/Kconfig.defconfig.nrf7120_enga_cpuapp /home/miguel/ncs/v3.0.2/nrf/soc/nordic/nrf71/Kconfig.defconfig.nrf7120_enga_cpuflpr /home/miguel/ncs/v3.0.2/nrf/soc/nordic/nrf71/Kconfig.soc /home/miguel/ncs/v3.0.2/nrf/subsys/CMakeLists.txt /home/miguel/ncs/v3.0.2/nrf/subsys/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/app_event_manager/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/app_event_manager_profiler_tracer/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/audio/audio_module_template/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/audio_module/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/Kconfig.discovery /home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/Kconfig.enocean /home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/Kconfig.link /home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/Kconfig.pool /home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/Kconfig.scan /home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/adv_prov/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/adv_prov/providers/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/adv_prov/providers/Kconfig.device_name /home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/adv_prov/providers/Kconfig.fast_pair /home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/adv_prov/providers/Kconfig.flags /home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/adv_prov/providers/Kconfig.gap_appearance /home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/adv_prov/providers/Kconfig.swift_pair /home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/adv_prov/providers/Kconfig.tx_power /home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/controller/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/cs_de/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/host_extensions/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/mesh/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/mesh/Kconfig.dk_prov /home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/mesh/Kconfig.models /home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/mesh/Kconfig.rpl /home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/mesh/Kconfig.sensor /home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/mesh/shell/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/mesh/vnd/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/rpc/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/services/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/services/Kconfig.ams_client /home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/services/Kconfig.ancs_client /home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/services/Kconfig.bas_client /home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/services/Kconfig.bms /home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/services/Kconfig.cts_client /home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/services/Kconfig.ddfs /home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/services/Kconfig.dfu_smp /home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/services/Kconfig.gattp /home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/services/Kconfig.hids /home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/services/Kconfig.hogp /home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/services/Kconfig.hrs_client /home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/services/Kconfig.latency /home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/services/Kconfig.latency_c /home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/services/Kconfig.lbs /home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/services/Kconfig.mds /home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/services/Kconfig.nsms /home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/services/Kconfig.nus /home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/services/Kconfig.nus_client /home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/services/Kconfig.rscs /home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/services/Kconfig.throughput /home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/services/cgms/Kconfig.cgms /home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/services/fast_pair/Kconfig.fast_pair /home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/services/fast_pair/fmdn/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/services/fast_pair/fp_crypto/Kconfig.fp_crypto /home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/services/fast_pair/fp_storage/Kconfig.fp_storage /home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/services/fast_pair/use_case/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/services/ras/Kconfig.ras /home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/services/ras/rreq/Kconfig.ras_rreq /home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/services/ras/rrsp/Kconfig.ras_rrsp /home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/services/wifi_prov/Kconfig.wifi_prov /home/miguel/ncs/v3.0.2/nrf/subsys/bootloader/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/bootloader/bl_crypto/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/bootloader/bl_storage/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/bootloader/bl_validation/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/caf/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/caf/events/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/caf/events/Kconfig.factory_reset_event /home/miguel/ncs/v3.0.2/nrf/subsys/caf/events/Kconfig.force_power_down_event /home/miguel/ncs/v3.0.2/nrf/subsys/caf/events/Kconfig.keep_alive_event /home/miguel/ncs/v3.0.2/nrf/subsys/caf/events/Kconfig.module_state_event /home/miguel/ncs/v3.0.2/nrf/subsys/caf/events/Kconfig.power_manager_event /home/miguel/ncs/v3.0.2/nrf/subsys/caf/events/Kconfig.sensor_event /home/miguel/ncs/v3.0.2/nrf/subsys/caf/modules/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/caf/modules/Kconfig.ble_adv /home/miguel/ncs/v3.0.2/nrf/subsys/caf/modules/Kconfig.ble_bond /home/miguel/ncs/v3.0.2/nrf/subsys/caf/modules/Kconfig.ble_smp /home/miguel/ncs/v3.0.2/nrf/subsys/caf/modules/Kconfig.ble_state /home/miguel/ncs/v3.0.2/nrf/subsys/caf/modules/Kconfig.buttons /home/miguel/ncs/v3.0.2/nrf/subsys/caf/modules/Kconfig.caf_shell /home/miguel/ncs/v3.0.2/nrf/subsys/caf/modules/Kconfig.click_detector /home/miguel/ncs/v3.0.2/nrf/subsys/caf/modules/Kconfig.factory_reset_request /home/miguel/ncs/v3.0.2/nrf/subsys/caf/modules/Kconfig.leds /home/miguel/ncs/v3.0.2/nrf/subsys/caf/modules/Kconfig.net_state /home/miguel/ncs/v3.0.2/nrf/subsys/caf/modules/Kconfig.power_manager /home/miguel/ncs/v3.0.2/nrf/subsys/caf/modules/Kconfig.sensor_data_aggregator /home/miguel/ncs/v3.0.2/nrf/subsys/caf/modules/Kconfig.sensor_manager /home/miguel/ncs/v3.0.2/nrf/subsys/caf/modules/Kconfig.settings_loader /home/miguel/ncs/v3.0.2/nrf/subsys/debug/CMakeLists.txt /home/miguel/ncs/v3.0.2/nrf/subsys/debug/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/debug/cpu_load/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/debug/etb_trace/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/debug/ppi_trace/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/dfu/CMakeLists.txt /home/miguel/ncs/v3.0.2/nrf/subsys/dfu/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/dfu/dfu_multi_image/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/dfu/dfu_target/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/dfu/fmfu_fdev/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/dm/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/dm/rpc/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/dult/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/emds/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/esb/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/event_manager_proxy/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/fw_info/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/fw_info/Kconfig.template.fw_info_ext_api /home/miguel/ncs/v3.0.2/nrf/subsys/gazell/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/ieee802154/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/logging/CMakeLists.txt /home/miguel/ncs/v3.0.2/nrf/subsys/logging/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/mcuboot_ids/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/mgmt/fmfu/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/mgmt/mcumgr/CMakeLists.txt /home/miguel/ncs/v3.0.2/nrf/subsys/mgmt/mcumgr/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/mgmt/mcumgr/grp/CMakeLists.txt /home/miguel/ncs/v3.0.2/nrf/subsys/mgmt/mcumgr/grp/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/mgmt/mcumgr/grp/os_mgmt/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/mgmt/suitfu/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/mpsl/CMakeLists.txt /home/miguel/ncs/v3.0.2/nrf/subsys/mpsl/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/mpsl/clock_ctrl/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/mpsl/cx/CMakeLists.txt /home/miguel/ncs/v3.0.2/nrf/subsys/mpsl/cx/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/mpsl/fem/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/mpsl/init/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/mpsl/pin_debug/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/mpsl/pm/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/net/CMakeLists.txt /home/miguel/ncs/v3.0.2/nrf/subsys/net/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/net/l2_wifi_if_conn/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/CMakeLists.txt /home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/aws_fota/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/aws_iot/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/aws_jobs/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/azure_fota/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/azure_iot_hub/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/coap_utils/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/download_client/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/downloader/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/fota_download/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/ftp_client/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/hostap_crypto/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/icalendar_parser/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/lwm2m_client_utils/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/mcumgr_smp_client/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/mqtt_helper/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/nrf70_fw_ext/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/nrf_cloud/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/nrf_cloud/Kconfig.nrf_cloud_agnss /home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/nrf_cloud/Kconfig.nrf_cloud_alert /home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/nrf_cloud/Kconfig.nrf_cloud_client_id /home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/nrf_cloud/Kconfig.nrf_cloud_coap /home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/nrf_cloud/Kconfig.nrf_cloud_fota /home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/nrf_cloud/Kconfig.nrf_cloud_location /home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/nrf_cloud/Kconfig.nrf_cloud_log /home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/nrf_cloud/Kconfig.nrf_cloud_mqtt /home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/nrf_cloud/Kconfig.nrf_cloud_pgps /home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/nrf_cloud/Kconfig.nrf_cloud_rest /home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/nrf_cloud/Kconfig.nrf_cloud_shadow_info /home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/nrf_provisioning/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/nrf_provisioning/Kconfig.nrf_provisioning_cbor /home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/nrf_provisioning/Kconfig.nrf_provisioning_coap /home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/nrf_provisioning/Kconfig.nrf_provisioning_codec /home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/nrf_provisioning/Kconfig.nrf_provisioning_http /home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/rest_client/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/softap_wifi_provision/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/tls_credentials/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/wifi_ready/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/zzhc/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/net/openthread/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/net/openthread/Kconfig.defconfig /home/miguel/ncs/v3.0.2/nrf/subsys/net/openthread/report/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/net/openthread/rpc/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/net_core_monitor/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/nfc/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/nfc/lib/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/nfc/ndef/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/nfc/rpc/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/nfc/t2t/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/nfc/t4t/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/nfc/tnep/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/nfc/tnep/ch/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/nrf_compress/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/nrf_profiler/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/nrf_rpc/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/nrf_rpc/dev_info/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/nrf_security/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/nrf_security/Kconfig.legacy /home/miguel/ncs/v3.0.2/nrf/subsys/nrf_security/Kconfig.psa /home/miguel/ncs/v3.0.2/nrf/subsys/nrf_security/Kconfig.psa.nordic /home/miguel/ncs/v3.0.2/nrf/subsys/nrf_security/Kconfig.tls /home/miguel/ncs/v3.0.2/nrf/subsys/nrf_security/src/core/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/nrf_security/src/drivers/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/nrf_security/src/drivers/Kconfig.psa_accel /home/miguel/ncs/v3.0.2/nrf/subsys/nrf_security/src/drivers/cracen/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/nrf_security/src/drivers/cracen/psa_driver.Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/nrf_security/src/drivers/nrf_cc3xx/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/nrf_security/src/drivers/nrf_oberon/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/nrf_security/src/drivers/zephyr/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/nrf_security/src/ssf_secdom/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/partition_manager/CMakeLists.txt /home/miguel/ncs/v3.0.2/nrf/subsys/partition_manager/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/partition_manager/Kconfig.template.partition_config /home/miguel/ncs/v3.0.2/nrf/subsys/partition_manager/Kconfig.template.partition_region /home/miguel/ncs/v3.0.2/nrf/subsys/pcd/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/sdfw_services/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/sdfw_services/services/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/sdfw_services/services/Kconfig.template.service /home/miguel/ncs/v3.0.2/nrf/subsys/sdfw_services/services/device_info/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/sdfw_services/services/enc_fw/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/sdfw_services/services/extmem/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/sdfw_services/services/psa_crypto/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/sdfw_services/services/suit_service/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/sdfw_services/transport/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/sdfw_services/transport/nrf_rpc/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/settings/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/shell/CMakeLists.txt /home/miguel/ncs/v3.0.2/nrf/subsys/shell/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/suit/CMakeLists.txt /home/miguel/ncs/v3.0.2/nrf/subsys/suit/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/suit/app_tools/CMakeLists.txt /home/miguel/ncs/v3.0.2/nrf/subsys/suit/app_tools/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/suit/app_tools/recovery_button/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/suit/cache/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/suit/envelope_info/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/suit/events/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/suit/execution_mode/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/suit/ipuc/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/suit/manifest_variables/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/suit/mci/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/suit/memory_layout/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/suit/memptr_storage/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/suit/metadata/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/suit/orchestrator/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/suit/orchestrator_app/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/suit/platform/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/suit/platform/sdfw/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/suit/platform/sink_selector/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/suit/storage/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/suit/stream/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/suit/utils/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/suit/validator/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/trusted_storage/Kconfig /home/miguel/ncs/v3.0.2/nrf/subsys/uart_async_adapter/Kconfig /home/miguel/ncs/v3.0.2/nrf/tests/CMakeLists.txt /home/miguel/ncs/v3.0.2/nrf/tests/Kconfig /home/miguel/ncs/v3.0.2/nrf/tests/mocks/CMakeLists.txt /home/miguel/ncs/v3.0.2/nrf/tests/mocks/Kconfig /home/miguel/ncs/v3.0.2/nrf/tests/mocks/nrf_modem_at/Kconfig /home/miguel/ncs/v3.0.2/nrf/tests/mocks/nrf_rpc/Kconfig /home/miguel/ncs/v3.0.2/nrf/tests/unity/Kconfig /home/miguel/ncs/v3.0.2/nrfxlib/CMakeLists.txt /home/miguel/ncs/v3.0.2/nrfxlib/Kconfig.nrfxlib /home/miguel/ncs/v3.0.2/nrfxlib/common.cmake /home/miguel/ncs/v3.0.2/nrfxlib/crypto/Kconfig /home/miguel/ncs/v3.0.2/nrfxlib/gzll/Kconfig /home/miguel/ncs/v3.0.2/nrfxlib/lc3/Kconfig /home/miguel/ncs/v3.0.2/nrfxlib/mpsl/Kconfig /home/miguel/ncs/v3.0.2/nrfxlib/nfc/Kconfig /home/miguel/ncs/v3.0.2/nrfxlib/nrf_802154/zephyr/Kconfig.nrfxlib /home/miguel/ncs/v3.0.2/nrfxlib/nrf_dm/Kconfig /home/miguel/ncs/v3.0.2/nrfxlib/nrf_fuel_gauge/Kconfig /home/miguel/ncs/v3.0.2/nrfxlib/nrf_modem/Kconfig /home/miguel/ncs/v3.0.2/nrfxlib/nrf_rpc/Kconfig /home/miguel/ncs/v3.0.2/nrfxlib/openthread/Kconfig /home/miguel/ncs/v3.0.2/zephyr/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/Kconfig /home/miguel/ncs/v3.0.2/zephyr/Kconfig.constants /home/miguel/ncs/v3.0.2/zephyr/Kconfig.zephyr /home/miguel/ncs/v3.0.2/zephyr/VERSION /home/miguel/ncs/v3.0.2/zephyr/arch/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/arch/Kconfig /home/miguel/ncs/v3.0.2/zephyr/arch/Kconfig.v2 /home/miguel/ncs/v3.0.2/zephyr/arch/arc/Kconfig /home/miguel/ncs/v3.0.2/zephyr/arch/arc/core/dsp/Kconfig /home/miguel/ncs/v3.0.2/zephyr/arch/arc/core/mpu/Kconfig /home/miguel/ncs/v3.0.2/zephyr/arch/arm/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/arch/arm/Kconfig /home/miguel/ncs/v3.0.2/zephyr/arch/arm/core/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/arch/arm/core/Kconfig /home/miguel/ncs/v3.0.2/zephyr/arch/arm/core/Kconfig.vfp /home/miguel/ncs/v3.0.2/zephyr/arch/arm/core/cortex_a_r/Kconfig /home/miguel/ncs/v3.0.2/zephyr/arch/arm/core/cortex_m/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/arch/arm/core/cortex_m/Kconfig /home/miguel/ncs/v3.0.2/zephyr/arch/arm/core/cortex_m/tz/Kconfig /home/miguel/ncs/v3.0.2/zephyr/arch/arm/core/mmu/Kconfig /home/miguel/ncs/v3.0.2/zephyr/arch/arm/core/mpu/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/arch/arm/core/mpu/Kconfig /home/miguel/ncs/v3.0.2/zephyr/arch/arm64/Kconfig /home/miguel/ncs/v3.0.2/zephyr/arch/arm64/core/Kconfig /home/miguel/ncs/v3.0.2/zephyr/arch/arm64/core/cortex_r/Kconfig /home/miguel/ncs/v3.0.2/zephyr/arch/arm64/core/xen/Kconfig /home/miguel/ncs/v3.0.2/zephyr/arch/common/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/arch/common/Kconfig /home/miguel/ncs/v3.0.2/zephyr/arch/mips/Kconfig /home/miguel/ncs/v3.0.2/zephyr/arch/nios2/Kconfig /home/miguel/ncs/v3.0.2/zephyr/arch/posix/Kconfig /home/miguel/ncs/v3.0.2/zephyr/arch/riscv/Kconfig /home/miguel/ncs/v3.0.2/zephyr/arch/riscv/Kconfig.isa /home/miguel/ncs/v3.0.2/zephyr/arch/sparc/Kconfig /home/miguel/ncs/v3.0.2/zephyr/arch/x86/Kconfig /home/miguel/ncs/v3.0.2/zephyr/arch/x86/core/Kconfig.ia32 /home/miguel/ncs/v3.0.2/zephyr/arch/x86/core/Kconfig.intel64 /home/miguel/ncs/v3.0.2/zephyr/arch/xtensa/Kconfig /home/miguel/ncs/v3.0.2/zephyr/boards/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/boards/Kconfig /home/miguel/ncs/v3.0.2/zephyr/boards/Kconfig.v2 /home/miguel/ncs/v3.0.2/zephyr/boards/common/jlink.board.cmake /home/miguel/ncs/v3.0.2/zephyr/boards/common/nrfjprog.board.cmake /home/miguel/ncs/v3.0.2/zephyr/boards/common/nrfutil.board.cmake /home/miguel/ncs/v3.0.2/zephyr/boards/common/openocd-nrf5.board.cmake /home/miguel/ncs/v3.0.2/zephyr/boards/common/openocd.board.cmake /home/miguel/ncs/v3.0.2/zephyr/boards/common/pyocd.board.cmake /home/miguel/ncs/v3.0.2/zephyr/boards/deprecated.cmake /home/miguel/ncs/v3.0.2/zephyr/boards/shields/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/boards/shields/adafruit_2_8_tft_touch_v2/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/boards/shields/adafruit_2_8_tft_touch_v2/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/adafruit_adalogger_featherwing/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/adafruit_aw9523/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/adafruit_data_logger/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/adafruit_neopixel_grid_bff/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/boards/shields/adafruit_neopixel_grid_bff/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/adafruit_pca9685/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/adafruit_winc1500/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/boards/shields/adafruit_winc1500/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/amg88xx/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/arceli_eth_w5500/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/boards/shields/arceli_eth_w5500/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/arduino_uno_click/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/atmel_rf2xx/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/boards/shields/atmel_rf2xx/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/boostxl_ulpsense/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/buydisplay_2_8_tft_touch_arduino/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/boards/shields/buydisplay_2_8_tft_touch_arduino/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/buydisplay_3_5_tft_touch_arduino/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/boards/shields/buydisplay_3_5_tft_touch_arduino/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/dac80508_evm/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/dvp_fpc24_mt9m114/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/esp_8266/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/boards/shields/esp_8266/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/esp_8266/boards/disco_l475_iot1.defconfig /home/miguel/ncs/v3.0.2/zephyr/boards/shields/esp_8266/boards/sam4e_xpro.defconfig /home/miguel/ncs/v3.0.2/zephyr/boards/shields/eval_adxl362_ardz/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/eval_adxl372_ardz/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/frdm_cr20a/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/boards/shields/frdm_cr20a/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/frdm_cr20a/boards/frdm_k64f.defconfig /home/miguel/ncs/v3.0.2/zephyr/boards/shields/frdm_kw41z/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/frdm_stbc_agm01/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/ftdi_vm800c/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/g1120b0mipi/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/boards/shields/g1120b0mipi/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/inventek_eswifi/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/boards/shields/inventek_eswifi/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/inventek_eswifi/boards/frdm_k64f.defconfig /home/miguel/ncs/v3.0.2/zephyr/boards/shields/inventek_eswifi/boards/nucleo_f767zi.defconfig /home/miguel/ncs/v3.0.2/zephyr/boards/shields/lcd_par_s035/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/boards/shields/lcd_par_s035/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/link_board_eth/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/boards/shields/link_board_eth/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/lmp90100_evb/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/boards/shields/lmp90100_evb/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/ls0xx_generic/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/boards/shields/ls0xx_generic/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/m5stack_core2_ext/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/max3421e/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/max7219/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/mcp2515/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/mikroe_accel13_click/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/mikroe_adc_click/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/boards/shields/mikroe_adc_click/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/mikroe_ble_tiny_click/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/boards/shields/mikroe_ble_tiny_click/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/mikroe_eth3_click/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/boards/shields/mikroe_eth3_click/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/mikroe_eth_click/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/boards/shields/mikroe_eth_click/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/mikroe_mcp2518fd_click/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/mikroe_weather_click/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/mikroe_wifi_bt_click/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/boards/shields/mikroe_wifi_bt_click/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/npm1100_ek/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/npm1300_ek/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/npm6001_ek/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/nrf7002eb/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/nrf7002ek/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/nxp_btb44_ov5640/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/p3t1755dp_ard_i2c/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/p3t1755dp_ard_i3c/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/pmod_acl/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/pmod_sd/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/renesas_us159_da14531evz/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/reyax_lora/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/rk043fn02h_ct/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/boards/shields/rk043fn02h_ct/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/rk043fn66hs_ctg/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/boards/shields/rk043fn66hs_ctg/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/rk055hdmipi4m/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/boards/shields/rk055hdmipi4m/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/rk055hdmipi4ma0/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/boards/shields/rk055hdmipi4ma0/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/rpi_pico_uno_flexypin/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/rtkmipilcdb00000be/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/boards/shields/rtkmipilcdb00000be/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/seeed_w5500/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/boards/shields/seeed_w5500/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/seeed_xiao_expansion_board/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/boards/shields/seeed_xiao_expansion_board/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/seeed_xiao_round_display/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/boards/shields/seeed_xiao_round_display/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/semtech_sx1262mb2das/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/semtech_sx1272mb2das/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/semtech_sx1276mb1mas/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/sparkfun_carrier_asset_tracker/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/sparkfun_sara_r4/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/boards/shields/sparkfun_sara_r4/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/ssd1306/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/boards/shields/ssd1306/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/st7735r/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/boards/shields/st7735r/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/st7789v_generic/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/boards/shields/st7789v_generic/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/st_b_lcd40_dsi1_mb1166/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/boards/shields/st_b_lcd40_dsi1_mb1166/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/st_b_lcd40_dsi1_mb1166/boards/stm32h747i_disco_stm32h747xx_m7.defconfig /home/miguel/ncs/v3.0.2/zephyr/boards/shields/tcan4550evm/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/ti_bp_bassensorsmkii/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/v2c_daplink/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/waveshare_epaper/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/boards/shields/waveshare_epaper/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/waveshare_ups/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/weact_ov2640_cam_module/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/wnc_m14a2a/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/boards/shields/wnc_m14a2a/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/x_nucleo_53l0a1/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/boards/shields/x_nucleo_53l0a1/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/x_nucleo_bnrg2a1/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/boards/shields/x_nucleo_bnrg2a1/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/x_nucleo_eeprma2/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/boards/shields/x_nucleo_eeprma2/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/x_nucleo_idb05a1/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/boards/shields/x_nucleo_idb05a1/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/x_nucleo_iks01a1/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/x_nucleo_iks01a2/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/x_nucleo_iks01a3/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/x_nucleo_iks02a1/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/x_nucleo_iks4a1/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/boards/shields/x_nucleo_wb05kn1/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/boards/shields/x_nucleo_wb05kn1/Kconfig.shield /home/miguel/ncs/v3.0.2/zephyr/cmake/bintools/bintools_template.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/bintools/gnu/target.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/bintools/gnu/target_bintools.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/compiler/compiler_features.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/compiler/compiler_flags_template.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/compiler/gcc/compiler_flags.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/compiler/gcc/generic.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/compiler/gcc/target.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/compiler/gcc/target_arm.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/extra_flags.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/flash/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/cmake/gcc-m-cpu.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/gcc-m-fpu.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/kobj.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/linker/ld/gcc/linker_flags.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/linker/ld/linker_flags.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/linker/ld/linker_libraries.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/linker/ld/target.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/linker/ld/target_configure.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/linker/ld/target_relocation.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/linker/linker_flags_template.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/linker/linker_libraries_template.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/linker/target_template.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/linker_script/arm/linker.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/linker_script/common/common-ram.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/linker_script/common/common-rom.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/linker_script/common/debug-sections.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/linker_script/common/ram-end.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/linker_script/common/thread-local-storage.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/modules/FindDeprecated.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/modules/FindDtc.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/modules/FindGnuLd.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/modules/FindHostTools.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/modules/FindScaTools.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/modules/FindTargetTools.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/modules/FindZephyr-sdk.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/modules/arch_v1.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/modules/arch_v2.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/modules/basic_settings.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/modules/boards.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/modules/ccache.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/modules/configuration_files.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/modules/dts.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/modules/extensions.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/modules/generated_file_directories.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/modules/hwm_v2.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/modules/kconfig.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/modules/kernel.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/modules/pre_dt.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/modules/python.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/modules/root.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/modules/shields.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/modules/snippets.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/modules/soc_v1.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/modules/soc_v2.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/modules/user_cache.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/modules/version.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/modules/west.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/modules/yaml.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/modules/zephyr_default.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/modules/zephyr_module.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/reports/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/cmake/target_toolchain_flags.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/toolchain/zephyr/generic.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/toolchain/zephyr/target.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/usage/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/drivers/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/drivers/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/adc/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.ad559x /home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.adc_emul /home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.ads1112 /home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.ads1119 /home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.ads114s0x /home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.ads131m02 /home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.ads1x1x /home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.ads7052 /home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.ambiq /home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.b91 /home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.cc13xx_cc26xx /home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.cc32xx /home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.ene /home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.esp32 /home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.gd32 /home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.gecko /home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.ifx_cat1 /home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.it8xxx2 /home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.lmp90xxx /home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.ltc2451 /home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.max11102_17 /home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.max1125x /home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.max32 /home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.mcp320x /home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.mcux /home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.npcx /home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.nrfx /home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.numaker /home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.nxp_s32 /home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.renesas_ra /home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.rpi_pico /home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.sam /home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.sam0 /home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.sam_afec /home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.smartbond /home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.stm32 /home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.test /home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.tla202x /home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.vf610 /home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.xec /home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.xmc4xxx /home/miguel/ncs/v3.0.2/zephyr/drivers/audio/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/audio/Kconfig.dmic_mcux /home/miguel/ncs/v3.0.2/zephyr/drivers/audio/Kconfig.dmic_pdm_nrfx /home/miguel/ncs/v3.0.2/zephyr/drivers/audio/Kconfig.mpxxdtyy /home/miguel/ncs/v3.0.2/zephyr/drivers/audio/Kconfig.tas6422dac /home/miguel/ncs/v3.0.2/zephyr/drivers/audio/Kconfig.tlv320dac /home/miguel/ncs/v3.0.2/zephyr/drivers/audio/Kconfig.wm8904 /home/miguel/ncs/v3.0.2/zephyr/drivers/auxdisplay/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/auxdisplay/Kconfig.hd44780 /home/miguel/ncs/v3.0.2/zephyr/drivers/auxdisplay/Kconfig.itron /home/miguel/ncs/v3.0.2/zephyr/drivers/auxdisplay/Kconfig.jhd1313 /home/miguel/ncs/v3.0.2/zephyr/drivers/auxdisplay/Kconfig.pt6314 /home/miguel/ncs/v3.0.2/zephyr/drivers/auxdisplay/Kconfig.serlcd /home/miguel/ncs/v3.0.2/zephyr/drivers/bbram/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/bbram/Kconfig.bbram_emul /home/miguel/ncs/v3.0.2/zephyr/drivers/bbram/Kconfig.it8xxx2 /home/miguel/ncs/v3.0.2/zephyr/drivers/bbram/Kconfig.microchip /home/miguel/ncs/v3.0.2/zephyr/drivers/bbram/Kconfig.npcx /home/miguel/ncs/v3.0.2/zephyr/drivers/bbram/Kconfig.stm32 /home/miguel/ncs/v3.0.2/zephyr/drivers/bbram/Kconfig.xec /home/miguel/ncs/v3.0.2/zephyr/drivers/bluetooth/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/bluetooth/hci/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/bluetooth/hci/Kconfig.esp32 /home/miguel/ncs/v3.0.2/zephyr/drivers/bluetooth/hci/Kconfig.infineon /home/miguel/ncs/v3.0.2/zephyr/drivers/bluetooth/hci/Kconfig.nxp /home/miguel/ncs/v3.0.2/zephyr/drivers/cache/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/cache/Kconfig.andes /home/miguel/ncs/v3.0.2/zephyr/drivers/cache/Kconfig.aspeed /home/miguel/ncs/v3.0.2/zephyr/drivers/cache/Kconfig.nrf /home/miguel/ncs/v3.0.2/zephyr/drivers/can/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/can/Kconfig.esp32 /home/miguel/ncs/v3.0.2/zephyr/drivers/can/Kconfig.fake /home/miguel/ncs/v3.0.2/zephyr/drivers/can/Kconfig.kvaser /home/miguel/ncs/v3.0.2/zephyr/drivers/can/Kconfig.loopback /home/miguel/ncs/v3.0.2/zephyr/drivers/can/Kconfig.mcan /home/miguel/ncs/v3.0.2/zephyr/drivers/can/Kconfig.mcp2515 /home/miguel/ncs/v3.0.2/zephyr/drivers/can/Kconfig.mcp251xfd /home/miguel/ncs/v3.0.2/zephyr/drivers/can/Kconfig.mcux /home/miguel/ncs/v3.0.2/zephyr/drivers/can/Kconfig.native_linux /home/miguel/ncs/v3.0.2/zephyr/drivers/can/Kconfig.nrf /home/miguel/ncs/v3.0.2/zephyr/drivers/can/Kconfig.numaker /home/miguel/ncs/v3.0.2/zephyr/drivers/can/Kconfig.nxp_s32 /home/miguel/ncs/v3.0.2/zephyr/drivers/can/Kconfig.rcar /home/miguel/ncs/v3.0.2/zephyr/drivers/can/Kconfig.renesas_ra /home/miguel/ncs/v3.0.2/zephyr/drivers/can/Kconfig.sam /home/miguel/ncs/v3.0.2/zephyr/drivers/can/Kconfig.sam0 /home/miguel/ncs/v3.0.2/zephyr/drivers/can/Kconfig.sja1000 /home/miguel/ncs/v3.0.2/zephyr/drivers/can/Kconfig.stm32 /home/miguel/ncs/v3.0.2/zephyr/drivers/can/Kconfig.tcan4x5x /home/miguel/ncs/v3.0.2/zephyr/drivers/can/Kconfig.xmc4xxx /home/miguel/ncs/v3.0.2/zephyr/drivers/can/transceiver/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/charger/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/charger/Kconfig.bq24190 /home/miguel/ncs/v3.0.2/zephyr/drivers/charger/Kconfig.bq25180 /home/miguel/ncs/v3.0.2/zephyr/drivers/charger/Kconfig.max20335 /home/miguel/ncs/v3.0.2/zephyr/drivers/charger/Kconfig.sbs_charger /home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.agilex5 /home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.ambiq /home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.arm_scmi /home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.aspeed /home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.beetle /home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.cavs /home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.esp32 /home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.fixed /home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.gd32 /home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.ifx_cat1 /home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.litex /home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.lpc11u6x /home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.max32 /home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.mcux_ccm /home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.mcux_ccm_rev2 /home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.mcux_mcg /home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.mcux_pcc /home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.mcux_scg /home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.mcux_sim /home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.mcux_syscon /home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.npcm /home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.npcx /home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.nrf /home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.nrf_auxpll /home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.numaker /home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.nxp_s32 /home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.pwm /home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.rcar /home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.renesas_ra_cgc /home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.rpi_pico /home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.rts5912 /home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.rv32m1 /home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.sam /home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.si32 /home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.silabs /home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.smartbond /home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.stm32 /home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.wch_rcc /home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.xec /home/miguel/ncs/v3.0.2/zephyr/drivers/comparator/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/comparator/Kconfig.fake_comp /home/miguel/ncs/v3.0.2/zephyr/drivers/comparator/Kconfig.mcux_acmp /home/miguel/ncs/v3.0.2/zephyr/drivers/comparator/Kconfig.nrf_comp /home/miguel/ncs/v3.0.2/zephyr/drivers/comparator/Kconfig.nrf_lpcomp /home/miguel/ncs/v3.0.2/zephyr/drivers/comparator/Kconfig.shell /home/miguel/ncs/v3.0.2/zephyr/drivers/console/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/drivers/console/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/coredump/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.ace /home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.ambiq /home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.andes_atcpit100 /home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.cmos /home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.dtmr_cmsdk_apb /home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.dw /home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.esp32_rtc /home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.esp32_tmr /home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.gd32 /home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.gecko /home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.ifx_cat1 /home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.imx_epit /home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.max32_rtc /home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.max32_timer /home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.maxim_ds3231 /home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.mcp7940n /home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.mcux_ctimer /home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.mcux_gpt /home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.mcux_lpc_rtc /home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.mcux_lptmr /home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.mcux_qtmr /home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.mcux_rtc /home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.mcux_snvs /home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.mcux_tpm /home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.native_posix /home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.nrfx /home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.nxp_mrt /home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.nxp_pit /home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.nxp_s32 /home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.renesas_ra /home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.rpi_pico /home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.sam /home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.sam0 /home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.smartbond_timer /home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.stm32_rtc /home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.stm32_timer /home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.tmr_cmsdk_apb /home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.xec /home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.xlnx /home/miguel/ncs/v3.0.2/zephyr/drivers/crypto/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/crypto/Kconfig.ataes132a /home/miguel/ncs/v3.0.2/zephyr/drivers/crypto/Kconfig.intel /home/miguel/ncs/v3.0.2/zephyr/drivers/crypto/Kconfig.it8xxx2 /home/miguel/ncs/v3.0.2/zephyr/drivers/crypto/Kconfig.mcux_dcp /home/miguel/ncs/v3.0.2/zephyr/drivers/crypto/Kconfig.npcx /home/miguel/ncs/v3.0.2/zephyr/drivers/crypto/Kconfig.nrf_ecb /home/miguel/ncs/v3.0.2/zephyr/drivers/crypto/Kconfig.si32 /home/miguel/ncs/v3.0.2/zephyr/drivers/crypto/Kconfig.smartbond /home/miguel/ncs/v3.0.2/zephyr/drivers/crypto/Kconfig.stm32 /home/miguel/ncs/v3.0.2/zephyr/drivers/crypto/Kconfig.xec /home/miguel/ncs/v3.0.2/zephyr/drivers/dac/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/dac/Kconfig.ad559x /home/miguel/ncs/v3.0.2/zephyr/drivers/dac/Kconfig.ad569x /home/miguel/ncs/v3.0.2/zephyr/drivers/dac/Kconfig.ad56xx /home/miguel/ncs/v3.0.2/zephyr/drivers/dac/Kconfig.dacx0501 /home/miguel/ncs/v3.0.2/zephyr/drivers/dac/Kconfig.dacx0508 /home/miguel/ncs/v3.0.2/zephyr/drivers/dac/Kconfig.dacx3608 /home/miguel/ncs/v3.0.2/zephyr/drivers/dac/Kconfig.esp32 /home/miguel/ncs/v3.0.2/zephyr/drivers/dac/Kconfig.gd32 /home/miguel/ncs/v3.0.2/zephyr/drivers/dac/Kconfig.ltc166x /home/miguel/ncs/v3.0.2/zephyr/drivers/dac/Kconfig.mcp4725 /home/miguel/ncs/v3.0.2/zephyr/drivers/dac/Kconfig.mcp4728 /home/miguel/ncs/v3.0.2/zephyr/drivers/dac/Kconfig.mcux /home/miguel/ncs/v3.0.2/zephyr/drivers/dac/Kconfig.sam /home/miguel/ncs/v3.0.2/zephyr/drivers/dac/Kconfig.sam0 /home/miguel/ncs/v3.0.2/zephyr/drivers/dac/Kconfig.stm32 /home/miguel/ncs/v3.0.2/zephyr/drivers/dac/Kconfig.test /home/miguel/ncs/v3.0.2/zephyr/drivers/dai/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/dai/intel/alh/Kconfig.alh /home/miguel/ncs/v3.0.2/zephyr/drivers/dai/intel/dmic/Kconfig.dmic /home/miguel/ncs/v3.0.2/zephyr/drivers/dai/intel/hda/Kconfig.hda /home/miguel/ncs/v3.0.2/zephyr/drivers/dai/intel/ssp/Kconfig.ssp /home/miguel/ncs/v3.0.2/zephyr/drivers/dai/nxp/esai/Kconfig.esai /home/miguel/ncs/v3.0.2/zephyr/drivers/dai/nxp/sai/Kconfig.sai /home/miguel/ncs/v3.0.2/zephyr/drivers/disk/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/drivers/disk/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/disk/Kconfig.flash /home/miguel/ncs/v3.0.2/zephyr/drivers/disk/Kconfig.loopback /home/miguel/ncs/v3.0.2/zephyr/drivers/disk/Kconfig.mmc /home/miguel/ncs/v3.0.2/zephyr/drivers/disk/Kconfig.ram /home/miguel/ncs/v3.0.2/zephyr/drivers/disk/Kconfig.sdmmc /home/miguel/ncs/v3.0.2/zephyr/drivers/disk/nvme/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/display/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/display/Kconfig.dummy /home/miguel/ncs/v3.0.2/zephyr/drivers/display/Kconfig.gc9x01x /home/miguel/ncs/v3.0.2/zephyr/drivers/display/Kconfig.hx8394 /home/miguel/ncs/v3.0.2/zephyr/drivers/display/Kconfig.ili9806e_dsi /home/miguel/ncs/v3.0.2/zephyr/drivers/display/Kconfig.ili9xxx /home/miguel/ncs/v3.0.2/zephyr/drivers/display/Kconfig.intel_multibootfb /home/miguel/ncs/v3.0.2/zephyr/drivers/display/Kconfig.ist3931 /home/miguel/ncs/v3.0.2/zephyr/drivers/display/Kconfig.led_strip_matrix /home/miguel/ncs/v3.0.2/zephyr/drivers/display/Kconfig.ls0xx /home/miguel/ncs/v3.0.2/zephyr/drivers/display/Kconfig.max7219 /home/miguel/ncs/v3.0.2/zephyr/drivers/display/Kconfig.mcux_dcnano_lcdif /home/miguel/ncs/v3.0.2/zephyr/drivers/display/Kconfig.mcux_elcdif /home/miguel/ncs/v3.0.2/zephyr/drivers/display/Kconfig.microbit /home/miguel/ncs/v3.0.2/zephyr/drivers/display/Kconfig.nrf_led_matrix /home/miguel/ncs/v3.0.2/zephyr/drivers/display/Kconfig.nt35510 /home/miguel/ncs/v3.0.2/zephyr/drivers/display/Kconfig.otm8009a /home/miguel/ncs/v3.0.2/zephyr/drivers/display/Kconfig.renesas_lcdc /home/miguel/ncs/v3.0.2/zephyr/drivers/display/Kconfig.renesas_ra /home/miguel/ncs/v3.0.2/zephyr/drivers/display/Kconfig.rm67162 /home/miguel/ncs/v3.0.2/zephyr/drivers/display/Kconfig.rm68200 /home/miguel/ncs/v3.0.2/zephyr/drivers/display/Kconfig.sdl /home/miguel/ncs/v3.0.2/zephyr/drivers/display/Kconfig.ssd1306 /home/miguel/ncs/v3.0.2/zephyr/drivers/display/Kconfig.ssd1322 /home/miguel/ncs/v3.0.2/zephyr/drivers/display/Kconfig.ssd1327 /home/miguel/ncs/v3.0.2/zephyr/drivers/display/Kconfig.ssd16xx /home/miguel/ncs/v3.0.2/zephyr/drivers/display/Kconfig.st7735r /home/miguel/ncs/v3.0.2/zephyr/drivers/display/Kconfig.st7789v /home/miguel/ncs/v3.0.2/zephyr/drivers/display/Kconfig.st7796s /home/miguel/ncs/v3.0.2/zephyr/drivers/display/Kconfig.stm32_ltdc /home/miguel/ncs/v3.0.2/zephyr/drivers/display/Kconfig.uc81xx /home/miguel/ncs/v3.0.2/zephyr/drivers/dma/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/dma/Kconfig.andes_atcdmac300 /home/miguel/ncs/v3.0.2/zephyr/drivers/dma/Kconfig.dma_pl330 /home/miguel/ncs/v3.0.2/zephyr/drivers/dma/Kconfig.dw /home/miguel/ncs/v3.0.2/zephyr/drivers/dma/Kconfig.dw_axi_dmac /home/miguel/ncs/v3.0.2/zephyr/drivers/dma/Kconfig.dw_common /home/miguel/ncs/v3.0.2/zephyr/drivers/dma/Kconfig.emul /home/miguel/ncs/v3.0.2/zephyr/drivers/dma/Kconfig.esp32 /home/miguel/ncs/v3.0.2/zephyr/drivers/dma/Kconfig.gd32 /home/miguel/ncs/v3.0.2/zephyr/drivers/dma/Kconfig.intel_adsp_gpdma /home/miguel/ncs/v3.0.2/zephyr/drivers/dma/Kconfig.intel_adsp_hda /home/miguel/ncs/v3.0.2/zephyr/drivers/dma/Kconfig.intel_lpss /home/miguel/ncs/v3.0.2/zephyr/drivers/dma/Kconfig.iproc_pax /home/miguel/ncs/v3.0.2/zephyr/drivers/dma/Kconfig.max32 /home/miguel/ncs/v3.0.2/zephyr/drivers/dma/Kconfig.mcux_edma /home/miguel/ncs/v3.0.2/zephyr/drivers/dma/Kconfig.mcux_lpc /home/miguel/ncs/v3.0.2/zephyr/drivers/dma/Kconfig.mcux_pxp /home/miguel/ncs/v3.0.2/zephyr/drivers/dma/Kconfig.mcux_smartdma /home/miguel/ncs/v3.0.2/zephyr/drivers/dma/Kconfig.nios2_msgdma /home/miguel/ncs/v3.0.2/zephyr/drivers/dma/Kconfig.nxp_edma /home/miguel/ncs/v3.0.2/zephyr/drivers/dma/Kconfig.nxp_sdma /home/miguel/ncs/v3.0.2/zephyr/drivers/dma/Kconfig.nxp_sof_host_dma /home/miguel/ncs/v3.0.2/zephyr/drivers/dma/Kconfig.rpi_pico /home/miguel/ncs/v3.0.2/zephyr/drivers/dma/Kconfig.sam0 /home/miguel/ncs/v3.0.2/zephyr/drivers/dma/Kconfig.sam_xdmac /home/miguel/ncs/v3.0.2/zephyr/drivers/dma/Kconfig.sedi /home/miguel/ncs/v3.0.2/zephyr/drivers/dma/Kconfig.si32 /home/miguel/ncs/v3.0.2/zephyr/drivers/dma/Kconfig.silabs /home/miguel/ncs/v3.0.2/zephyr/drivers/dma/Kconfig.smartbond /home/miguel/ncs/v3.0.2/zephyr/drivers/dma/Kconfig.stm32 /home/miguel/ncs/v3.0.2/zephyr/drivers/dma/Kconfig.xec /home/miguel/ncs/v3.0.2/zephyr/drivers/dma/Kconfig.xilinx_axi_dma /home/miguel/ncs/v3.0.2/zephyr/drivers/dma/Kconfig.xmc4xxx /home/miguel/ncs/v3.0.2/zephyr/drivers/dp/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/edac/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/eeprom/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/eeprom/Kconfig.eeprom_emu /home/miguel/ncs/v3.0.2/zephyr/drivers/eeprom/Kconfig.lpc11u6x /home/miguel/ncs/v3.0.2/zephyr/drivers/eeprom/Kconfig.mb85rcxx /home/miguel/ncs/v3.0.2/zephyr/drivers/eeprom/Kconfig.mb85rsxx /home/miguel/ncs/v3.0.2/zephyr/drivers/eeprom/Kconfig.stm32 /home/miguel/ncs/v3.0.2/zephyr/drivers/eeprom/Kconfig.tmp116 /home/miguel/ncs/v3.0.2/zephyr/drivers/eeprom/Kconfig.xec /home/miguel/ncs/v3.0.2/zephyr/drivers/entropy/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/entropy/Kconfig.b91 /home/miguel/ncs/v3.0.2/zephyr/drivers/entropy/Kconfig.bt_hci /home/miguel/ncs/v3.0.2/zephyr/drivers/entropy/Kconfig.cc13xx_cc26xx /home/miguel/ncs/v3.0.2/zephyr/drivers/entropy/Kconfig.esp32 /home/miguel/ncs/v3.0.2/zephyr/drivers/entropy/Kconfig.gecko /home/miguel/ncs/v3.0.2/zephyr/drivers/entropy/Kconfig.litex /home/miguel/ncs/v3.0.2/zephyr/drivers/entropy/Kconfig.max32 /home/miguel/ncs/v3.0.2/zephyr/drivers/entropy/Kconfig.mcux /home/miguel/ncs/v3.0.2/zephyr/drivers/entropy/Kconfig.native_posix /home/miguel/ncs/v3.0.2/zephyr/drivers/entropy/Kconfig.neorv32 /home/miguel/ncs/v3.0.2/zephyr/drivers/entropy/Kconfig.npcx /home/miguel/ncs/v3.0.2/zephyr/drivers/entropy/Kconfig.nrf5 /home/miguel/ncs/v3.0.2/zephyr/drivers/entropy/Kconfig.nrf_prng /home/miguel/ncs/v3.0.2/zephyr/drivers/entropy/Kconfig.psa_crypto /home/miguel/ncs/v3.0.2/zephyr/drivers/entropy/Kconfig.renesas_ra /home/miguel/ncs/v3.0.2/zephyr/drivers/entropy/Kconfig.rv32m1 /home/miguel/ncs/v3.0.2/zephyr/drivers/entropy/Kconfig.sam /home/miguel/ncs/v3.0.2/zephyr/drivers/entropy/Kconfig.smartbond /home/miguel/ncs/v3.0.2/zephyr/drivers/entropy/Kconfig.stm32 /home/miguel/ncs/v3.0.2/zephyr/drivers/espi/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/espi/Kconfig.espi_emul /home/miguel/ncs/v3.0.2/zephyr/drivers/espi/Kconfig.it8xxx2 /home/miguel/ncs/v3.0.2/zephyr/drivers/espi/Kconfig.npcx /home/miguel/ncs/v3.0.2/zephyr/drivers/espi/Kconfig.xec /home/miguel/ncs/v3.0.2/zephyr/drivers/ethernet/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/ethernet/Kconfig.adin2111 /home/miguel/ncs/v3.0.2/zephyr/drivers/ethernet/Kconfig.cyclonev /home/miguel/ncs/v3.0.2/zephyr/drivers/ethernet/Kconfig.dsa /home/miguel/ncs/v3.0.2/zephyr/drivers/ethernet/Kconfig.dwmac /home/miguel/ncs/v3.0.2/zephyr/drivers/ethernet/Kconfig.e1000 /home/miguel/ncs/v3.0.2/zephyr/drivers/ethernet/Kconfig.enc28j60 /home/miguel/ncs/v3.0.2/zephyr/drivers/ethernet/Kconfig.enc424j600 /home/miguel/ncs/v3.0.2/zephyr/drivers/ethernet/Kconfig.esp32 /home/miguel/ncs/v3.0.2/zephyr/drivers/ethernet/Kconfig.gecko /home/miguel/ncs/v3.0.2/zephyr/drivers/ethernet/Kconfig.ivshmem /home/miguel/ncs/v3.0.2/zephyr/drivers/ethernet/Kconfig.lan865x /home/miguel/ncs/v3.0.2/zephyr/drivers/ethernet/Kconfig.lan9250 /home/miguel/ncs/v3.0.2/zephyr/drivers/ethernet/Kconfig.litex /home/miguel/ncs/v3.0.2/zephyr/drivers/ethernet/Kconfig.native_posix /home/miguel/ncs/v3.0.2/zephyr/drivers/ethernet/Kconfig.numaker /home/miguel/ncs/v3.0.2/zephyr/drivers/ethernet/Kconfig.nxp_imx_netc /home/miguel/ncs/v3.0.2/zephyr/drivers/ethernet/Kconfig.nxp_s32_gmac /home/miguel/ncs/v3.0.2/zephyr/drivers/ethernet/Kconfig.nxp_s32_netc /home/miguel/ncs/v3.0.2/zephyr/drivers/ethernet/Kconfig.renesas_ra /home/miguel/ncs/v3.0.2/zephyr/drivers/ethernet/Kconfig.sam_gmac /home/miguel/ncs/v3.0.2/zephyr/drivers/ethernet/Kconfig.smsc911x /home/miguel/ncs/v3.0.2/zephyr/drivers/ethernet/Kconfig.smsc91x /home/miguel/ncs/v3.0.2/zephyr/drivers/ethernet/Kconfig.stellaris /home/miguel/ncs/v3.0.2/zephyr/drivers/ethernet/Kconfig.stm32_hal /home/miguel/ncs/v3.0.2/zephyr/drivers/ethernet/Kconfig.test /home/miguel/ncs/v3.0.2/zephyr/drivers/ethernet/Kconfig.w5500 /home/miguel/ncs/v3.0.2/zephyr/drivers/ethernet/Kconfig.xlnx_gem /home/miguel/ncs/v3.0.2/zephyr/drivers/ethernet/Kconfig.xmc4xxx /home/miguel/ncs/v3.0.2/zephyr/drivers/ethernet/dwc_xgmac/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/ethernet/eth_nxp_enet_qos/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/ethernet/nxp_enet/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/ethernet/phy/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/ethernet/phy/Kconfig.dm8806 /home/miguel/ncs/v3.0.2/zephyr/drivers/ethernet/phy/Kconfig.tja1103 /home/miguel/ncs/v3.0.2/zephyr/drivers/firmware/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/drivers/firmware/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/firmware/scmi/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.ambiq /home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.andes /home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.at45 /home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.b91 /home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.cadence_nand /home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.cadence_qspi_nor /home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.cc13xx_cc26xx /home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.esp32 /home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.gd32 /home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.gecko /home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.ifx_cat1 /home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.it8xxx2 /home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.lpc /home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.max32 /home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.mcux /home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.mspi /home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.nios2_qspi /home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.nor /home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.nordic_qspi_nor /home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.npcx_fiu /home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.nrf /home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.nrf_mram /home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.nrf_rram /home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.numaker /home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.numaker_rmc /home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.nxp_s32 /home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.renesas_ra /home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.rpi_pico /home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.rv32m1 /home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.sam /home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.sam0 /home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.si32 /home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.simulator /home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.smartbond /home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.stm32 /home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.stm32_ospi /home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.stm32_qspi /home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.stm32_xspi /home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.xmc4xxx /home/miguel/ncs/v3.0.2/zephyr/drivers/fpga/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/fpga/Kconfig.altera_agilex_bridge /home/miguel/ncs/v3.0.2/zephyr/drivers/fpga/Kconfig.eos_s3 /home/miguel/ncs/v3.0.2/zephyr/drivers/fpga/Kconfig.ice40 /home/miguel/ncs/v3.0.2/zephyr/drivers/fpga/Kconfig.mpfs /home/miguel/ncs/v3.0.2/zephyr/drivers/fpga/Kconfig.slg471x5 /home/miguel/ncs/v3.0.2/zephyr/drivers/fpga/Kconfig.zynqmp /home/miguel/ncs/v3.0.2/zephyr/drivers/fuel_gauge/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/fuel_gauge/bq27z746/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/fuel_gauge/composite/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/fuel_gauge/max17048/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/fuel_gauge/sbs_gauge/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/fuel_gauge/sbs_gauge/Kconfig.emul_sbs_gauge /home/miguel/ncs/v3.0.2/zephyr/drivers/gnss/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/gnss/Kconfig.emul /home/miguel/ncs/v3.0.2/zephyr/drivers/gnss/Kconfig.generic /home/miguel/ncs/v3.0.2/zephyr/drivers/gnss/Kconfig.luatos_air530z /home/miguel/ncs/v3.0.2/zephyr/drivers/gnss/Kconfig.quectel_lcx6g /home/miguel/ncs/v3.0.2/zephyr/drivers/gnss/Kconfig.u_blox_m8 /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.ad559x /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.adp5585 /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.ads114s0x /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.altera /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.ambiq /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.andes_atcgpio100 /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.aw9523b /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.axp192 /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.b91 /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.bcm2711 /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.bd8lb600fs /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.brcmstb /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.cc13xx_cc26xx /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.cc32xx /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.cmsdk_ahb /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.creg_gpio /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.cy8c95xx /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.davinci /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.dw /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.efinix_sapphire /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.emul /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.emul_sdl /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.ene /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.eos_s3 /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.esp32 /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.fxl6408 /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.gd32 /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.gecko /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.grgpio /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.ifx_cat1 /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.imx /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.intel /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.iproc /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.it8801 /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.it8xxx2 /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.litex /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.lmp90xxx /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.lpc11u6x /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.max14906 /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.max14916 /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.max22190 /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.max32 /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.mchp_mss /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.mcp23xxx /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.mcux /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.mcux_igpio /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.mcux_lpc /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.mcux_rgpio /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.mec5 /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.mmio32 /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.nct38xx /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.neorv32 /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.npcx /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.npm1300 /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.npm2100 /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.npm6001 /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.nrfx /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.numaker /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.numicro /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.nxp_s32 /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.pca953x /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.pca95xx /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.pca_series /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.pcal64xxa /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.pcf857x /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.psoc6 /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.rcar /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.renesas_ra /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.renesas_ra_ioport /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.renesas_rz /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.rp1 /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.rpi_pico /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.rt1718s /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.rts5912 /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.rv32m1 /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.rzt2m /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.sam /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.sam0 /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.sc18im704 /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.sedi /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.si32 /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.sifive /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.smartbond /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.sn74hc595 /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.stellaris /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.stm32 /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.stmpe1600 /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.sx1509b /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.tca6424a /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.test /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.tle9104 /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.wch_ch32v00x /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.xec /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.xlnx /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.xlnx_ps /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.xmc4xxx /home/miguel/ncs/v3.0.2/zephyr/drivers/haptics/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/haptics/Kconfig.drv2605 /home/miguel/ncs/v3.0.2/zephyr/drivers/hdlc_rcp_if/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/hdlc_rcp_if/Kconfig.nxp /home/miguel/ncs/v3.0.2/zephyr/drivers/hdlc_rcp_if/Kconfig.uart /home/miguel/ncs/v3.0.2/zephyr/drivers/hwinfo/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/drivers/hwinfo/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/hwspinlock/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/hwspinlock/Kconfig.sqn /home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/Kconfig.ambiq /home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/Kconfig.andes_atciic100 /home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/Kconfig.b91 /home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/Kconfig.bcm_iproc /home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/Kconfig.cc13xx_cc26xx /home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/Kconfig.dw /home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/Kconfig.ene /home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/Kconfig.esp32 /home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/Kconfig.gd32 /home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/Kconfig.gpio /home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/Kconfig.i2c_emul /home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/Kconfig.ifx_cat1 /home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/Kconfig.ifx_xmc4 /home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/Kconfig.it8xxx2 /home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/Kconfig.litex /home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/Kconfig.lpc11u6x /home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/Kconfig.max32 /home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/Kconfig.mchp_mss /home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/Kconfig.mcux /home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/Kconfig.npcx /home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/Kconfig.nrfx /home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/Kconfig.numaker /home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/Kconfig.rcar /home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/Kconfig.renesas_ra /home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/Kconfig.sam0 /home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/Kconfig.sam_twihs /home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/Kconfig.sbcon /home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/Kconfig.sc18im704 /home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/Kconfig.sedi /home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/Kconfig.sifive /home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/Kconfig.smartbond /home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/Kconfig.stm32 /home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/Kconfig.tca954x /home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/Kconfig.test /home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/Kconfig.xec /home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/Kconfig.xilinx_axi /home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/target/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/target/Kconfig.eeprom /home/miguel/ncs/v3.0.2/zephyr/drivers/i2s/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/i2s/Kconfig.esp32 /home/miguel/ncs/v3.0.2/zephyr/drivers/i2s/Kconfig.litex /home/miguel/ncs/v3.0.2/zephyr/drivers/i2s/Kconfig.mcux /home/miguel/ncs/v3.0.2/zephyr/drivers/i2s/Kconfig.mcux_flexcomm /home/miguel/ncs/v3.0.2/zephyr/drivers/i2s/Kconfig.nrfx /home/miguel/ncs/v3.0.2/zephyr/drivers/i2s/Kconfig.sam_ssc /home/miguel/ncs/v3.0.2/zephyr/drivers/i2s/Kconfig.stm32 /home/miguel/ncs/v3.0.2/zephyr/drivers/i2s/Kconfig.test /home/miguel/ncs/v3.0.2/zephyr/drivers/i3c/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/i3c/Kconfig.cdns /home/miguel/ncs/v3.0.2/zephyr/drivers/i3c/Kconfig.npcx /home/miguel/ncs/v3.0.2/zephyr/drivers/i3c/Kconfig.nxp /home/miguel/ncs/v3.0.2/zephyr/drivers/i3c/Kconfig.stm32 /home/miguel/ncs/v3.0.2/zephyr/drivers/i3c/Kconfig.test /home/miguel/ncs/v3.0.2/zephyr/drivers/ieee802154/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/ieee802154/Kconfig.b91 /home/miguel/ncs/v3.0.2/zephyr/drivers/ieee802154/Kconfig.cc1200 /home/miguel/ncs/v3.0.2/zephyr/drivers/ieee802154/Kconfig.cc13xx_cc26xx /home/miguel/ncs/v3.0.2/zephyr/drivers/ieee802154/Kconfig.cc2520 /home/miguel/ncs/v3.0.2/zephyr/drivers/ieee802154/Kconfig.dw1000 /home/miguel/ncs/v3.0.2/zephyr/drivers/ieee802154/Kconfig.kw41z /home/miguel/ncs/v3.0.2/zephyr/drivers/ieee802154/Kconfig.mcr20a /home/miguel/ncs/v3.0.2/zephyr/drivers/ieee802154/Kconfig.nrf5 /home/miguel/ncs/v3.0.2/zephyr/drivers/ieee802154/Kconfig.rf2xx /home/miguel/ncs/v3.0.2/zephyr/drivers/ieee802154/Kconfig.uart_pipe /home/miguel/ncs/v3.0.2/zephyr/drivers/input/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/input/Kconfig.adc_keys /home/miguel/ncs/v3.0.2/zephyr/drivers/input/Kconfig.analog_axis /home/miguel/ncs/v3.0.2/zephyr/drivers/input/Kconfig.cap12xx /home/miguel/ncs/v3.0.2/zephyr/drivers/input/Kconfig.cf1133 /home/miguel/ncs/v3.0.2/zephyr/drivers/input/Kconfig.chsc6x /home/miguel/ncs/v3.0.2/zephyr/drivers/input/Kconfig.cst816s /home/miguel/ncs/v3.0.2/zephyr/drivers/input/Kconfig.esp32 /home/miguel/ncs/v3.0.2/zephyr/drivers/input/Kconfig.evdev /home/miguel/ncs/v3.0.2/zephyr/drivers/input/Kconfig.ft5336 /home/miguel/ncs/v3.0.2/zephyr/drivers/input/Kconfig.gpio_kbd_matrix /home/miguel/ncs/v3.0.2/zephyr/drivers/input/Kconfig.gpio_keys /home/miguel/ncs/v3.0.2/zephyr/drivers/input/Kconfig.gpio_qdec /home/miguel/ncs/v3.0.2/zephyr/drivers/input/Kconfig.gt911 /home/miguel/ncs/v3.0.2/zephyr/drivers/input/Kconfig.ili2132a /home/miguel/ncs/v3.0.2/zephyr/drivers/input/Kconfig.it8801 /home/miguel/ncs/v3.0.2/zephyr/drivers/input/Kconfig.it8xxx2 /home/miguel/ncs/v3.0.2/zephyr/drivers/input/Kconfig.kbd_matrix /home/miguel/ncs/v3.0.2/zephyr/drivers/input/Kconfig.npcx /home/miguel/ncs/v3.0.2/zephyr/drivers/input/Kconfig.nunchuk /home/miguel/ncs/v3.0.2/zephyr/drivers/input/Kconfig.pat912x /home/miguel/ncs/v3.0.2/zephyr/drivers/input/Kconfig.paw32xx /home/miguel/ncs/v3.0.2/zephyr/drivers/input/Kconfig.pinnacle /home/miguel/ncs/v3.0.2/zephyr/drivers/input/Kconfig.pmw3610 /home/miguel/ncs/v3.0.2/zephyr/drivers/input/Kconfig.sbus /home/miguel/ncs/v3.0.2/zephyr/drivers/input/Kconfig.sdl /home/miguel/ncs/v3.0.2/zephyr/drivers/input/Kconfig.stmpe811 /home/miguel/ncs/v3.0.2/zephyr/drivers/input/Kconfig.touch /home/miguel/ncs/v3.0.2/zephyr/drivers/input/Kconfig.xec /home/miguel/ncs/v3.0.2/zephyr/drivers/input/Kconfig.xpt2046 /home/miguel/ncs/v3.0.2/zephyr/drivers/interrupt_controller/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/drivers/interrupt_controller/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/interrupt_controller/Kconfig.cavs /home/miguel/ncs/v3.0.2/zephyr/drivers/interrupt_controller/Kconfig.clic /home/miguel/ncs/v3.0.2/zephyr/drivers/interrupt_controller/Kconfig.dw /home/miguel/ncs/v3.0.2/zephyr/drivers/interrupt_controller/Kconfig.esp32 /home/miguel/ncs/v3.0.2/zephyr/drivers/interrupt_controller/Kconfig.esp32c3 /home/miguel/ncs/v3.0.2/zephyr/drivers/interrupt_controller/Kconfig.gd32_exti /home/miguel/ncs/v3.0.2/zephyr/drivers/interrupt_controller/Kconfig.gic /home/miguel/ncs/v3.0.2/zephyr/drivers/interrupt_controller/Kconfig.intel_vtd /home/miguel/ncs/v3.0.2/zephyr/drivers/interrupt_controller/Kconfig.it8xxx2 /home/miguel/ncs/v3.0.2/zephyr/drivers/interrupt_controller/Kconfig.loapic /home/miguel/ncs/v3.0.2/zephyr/drivers/interrupt_controller/Kconfig.mtk_adsp /home/miguel/ncs/v3.0.2/zephyr/drivers/interrupt_controller/Kconfig.multilevel /home/miguel/ncs/v3.0.2/zephyr/drivers/interrupt_controller/Kconfig.multilevel.aggregator_template /home/miguel/ncs/v3.0.2/zephyr/drivers/interrupt_controller/Kconfig.npcx /home/miguel/ncs/v3.0.2/zephyr/drivers/interrupt_controller/Kconfig.nxp_irqsteer /home/miguel/ncs/v3.0.2/zephyr/drivers/interrupt_controller/Kconfig.nxp_pint /home/miguel/ncs/v3.0.2/zephyr/drivers/interrupt_controller/Kconfig.nxp_s32 /home/miguel/ncs/v3.0.2/zephyr/drivers/interrupt_controller/Kconfig.plic /home/miguel/ncs/v3.0.2/zephyr/drivers/interrupt_controller/Kconfig.renesas_ra /home/miguel/ncs/v3.0.2/zephyr/drivers/interrupt_controller/Kconfig.rv32m1 /home/miguel/ncs/v3.0.2/zephyr/drivers/interrupt_controller/Kconfig.sam0 /home/miguel/ncs/v3.0.2/zephyr/drivers/interrupt_controller/Kconfig.shared_irq /home/miguel/ncs/v3.0.2/zephyr/drivers/interrupt_controller/Kconfig.stm32 /home/miguel/ncs/v3.0.2/zephyr/drivers/interrupt_controller/Kconfig.vim /home/miguel/ncs/v3.0.2/zephyr/drivers/interrupt_controller/Kconfig.wch_pfic /home/miguel/ncs/v3.0.2/zephyr/drivers/interrupt_controller/Kconfig.xec /home/miguel/ncs/v3.0.2/zephyr/drivers/interrupt_controller/Kconfig.xmc4xxx /home/miguel/ncs/v3.0.2/zephyr/drivers/ipm/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/ipm/Kconfig.imx /home/miguel/ncs/v3.0.2/zephyr/drivers/ipm/Kconfig.intel_adsp /home/miguel/ncs/v3.0.2/zephyr/drivers/ipm/Kconfig.ivshmem /home/miguel/ncs/v3.0.2/zephyr/drivers/ipm/Kconfig.nrfx /home/miguel/ncs/v3.0.2/zephyr/drivers/ipm/Kconfig.nrfx_ipc_channel /home/miguel/ncs/v3.0.2/zephyr/drivers/ipm/Kconfig.sedi /home/miguel/ncs/v3.0.2/zephyr/drivers/ipm/Kconfig.stm32 /home/miguel/ncs/v3.0.2/zephyr/drivers/kscan/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/kscan/Kconfig.input /home/miguel/ncs/v3.0.2/zephyr/drivers/led/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/led/Kconfig.gpio /home/miguel/ncs/v3.0.2/zephyr/drivers/led/Kconfig.ht16k33 /home/miguel/ncs/v3.0.2/zephyr/drivers/led/Kconfig.is31fl3194 /home/miguel/ncs/v3.0.2/zephyr/drivers/led/Kconfig.is31fl3216a /home/miguel/ncs/v3.0.2/zephyr/drivers/led/Kconfig.is31fl3733 /home/miguel/ncs/v3.0.2/zephyr/drivers/led/Kconfig.lp3943 /home/miguel/ncs/v3.0.2/zephyr/drivers/led/Kconfig.lp50xx /home/miguel/ncs/v3.0.2/zephyr/drivers/led/Kconfig.lp5562 /home/miguel/ncs/v3.0.2/zephyr/drivers/led/Kconfig.lp5569 /home/miguel/ncs/v3.0.2/zephyr/drivers/led/Kconfig.ncp5623 /home/miguel/ncs/v3.0.2/zephyr/drivers/led/Kconfig.npm1300 /home/miguel/ncs/v3.0.2/zephyr/drivers/led/Kconfig.pca9633 /home/miguel/ncs/v3.0.2/zephyr/drivers/led/Kconfig.pwm /home/miguel/ncs/v3.0.2/zephyr/drivers/led/Kconfig.tlc59108 /home/miguel/ncs/v3.0.2/zephyr/drivers/led/Kconfig.xec /home/miguel/ncs/v3.0.2/zephyr/drivers/led_strip/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/led_strip/Kconfig.apa102 /home/miguel/ncs/v3.0.2/zephyr/drivers/led_strip/Kconfig.lpd880x /home/miguel/ncs/v3.0.2/zephyr/drivers/led_strip/Kconfig.tlc5971 /home/miguel/ncs/v3.0.2/zephyr/drivers/led_strip/Kconfig.tlc59731 /home/miguel/ncs/v3.0.2/zephyr/drivers/led_strip/Kconfig.ws2812 /home/miguel/ncs/v3.0.2/zephyr/drivers/lora/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/lora/Kconfig.rylrxxx /home/miguel/ncs/v3.0.2/zephyr/drivers/lora/Kconfig.sx12xx /home/miguel/ncs/v3.0.2/zephyr/drivers/mbox/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/mbox/Kconfig.andes /home/miguel/ncs/v3.0.2/zephyr/drivers/mbox/Kconfig.esp32 /home/miguel/ncs/v3.0.2/zephyr/drivers/mbox/Kconfig.ivshmem /home/miguel/ncs/v3.0.2/zephyr/drivers/mbox/Kconfig.nrf_bellboard /home/miguel/ncs/v3.0.2/zephyr/drivers/mbox/Kconfig.nrf_vevif_event /home/miguel/ncs/v3.0.2/zephyr/drivers/mbox/Kconfig.nrf_vevif_task /home/miguel/ncs/v3.0.2/zephyr/drivers/mbox/Kconfig.nrfx /home/miguel/ncs/v3.0.2/zephyr/drivers/mbox/Kconfig.nxp_imx /home/miguel/ncs/v3.0.2/zephyr/drivers/mbox/Kconfig.nxp_mailbox /home/miguel/ncs/v3.0.2/zephyr/drivers/mbox/Kconfig.nxp_s32 /home/miguel/ncs/v3.0.2/zephyr/drivers/mbox/Kconfig.stm32_hsem /home/miguel/ncs/v3.0.2/zephyr/drivers/mdio/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/mdio/Kconfig.adin2111 /home/miguel/ncs/v3.0.2/zephyr/drivers/mdio/Kconfig.dwcxgmac /home/miguel/ncs/v3.0.2/zephyr/drivers/mdio/Kconfig.esp32 /home/miguel/ncs/v3.0.2/zephyr/drivers/mdio/Kconfig.gpio /home/miguel/ncs/v3.0.2/zephyr/drivers/mdio/Kconfig.litex /home/miguel/ncs/v3.0.2/zephyr/drivers/mdio/Kconfig.nxp_enet /home/miguel/ncs/v3.0.2/zephyr/drivers/mdio/Kconfig.nxp_enet_qos /home/miguel/ncs/v3.0.2/zephyr/drivers/mdio/Kconfig.nxp_imx_netc /home/miguel/ncs/v3.0.2/zephyr/drivers/mdio/Kconfig.nxp_s32_gmac /home/miguel/ncs/v3.0.2/zephyr/drivers/mdio/Kconfig.nxp_s32_netc /home/miguel/ncs/v3.0.2/zephyr/drivers/mdio/Kconfig.renesas_ra /home/miguel/ncs/v3.0.2/zephyr/drivers/mdio/Kconfig.sam /home/miguel/ncs/v3.0.2/zephyr/drivers/mdio/Kconfig.stm32_hal /home/miguel/ncs/v3.0.2/zephyr/drivers/mdio/Kconfig.xmc4xxx /home/miguel/ncs/v3.0.2/zephyr/drivers/memc/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/memc/Kconfig.mcux /home/miguel/ncs/v3.0.2/zephyr/drivers/memc/Kconfig.mspi /home/miguel/ncs/v3.0.2/zephyr/drivers/memc/Kconfig.nxp_s32 /home/miguel/ncs/v3.0.2/zephyr/drivers/memc/Kconfig.renesas_ra /home/miguel/ncs/v3.0.2/zephyr/drivers/memc/Kconfig.sam /home/miguel/ncs/v3.0.2/zephyr/drivers/memc/Kconfig.sifive /home/miguel/ncs/v3.0.2/zephyr/drivers/memc/Kconfig.smartbond /home/miguel/ncs/v3.0.2/zephyr/drivers/memc/Kconfig.stm32 /home/miguel/ncs/v3.0.2/zephyr/drivers/mfd/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/mfd/Kconfig.ad559x /home/miguel/ncs/v3.0.2/zephyr/drivers/mfd/Kconfig.adp5585 /home/miguel/ncs/v3.0.2/zephyr/drivers/mfd/Kconfig.aw9523b /home/miguel/ncs/v3.0.2/zephyr/drivers/mfd/Kconfig.axp192 /home/miguel/ncs/v3.0.2/zephyr/drivers/mfd/Kconfig.bd8lb600fs /home/miguel/ncs/v3.0.2/zephyr/drivers/mfd/Kconfig.ds3231 /home/miguel/ncs/v3.0.2/zephyr/drivers/mfd/Kconfig.it8801 /home/miguel/ncs/v3.0.2/zephyr/drivers/mfd/Kconfig.lpflexcomm /home/miguel/ncs/v3.0.2/zephyr/drivers/mfd/Kconfig.max20335 /home/miguel/ncs/v3.0.2/zephyr/drivers/mfd/Kconfig.max31790 /home/miguel/ncs/v3.0.2/zephyr/drivers/mfd/Kconfig.nct38xx /home/miguel/ncs/v3.0.2/zephyr/drivers/mfd/Kconfig.npm1300 /home/miguel/ncs/v3.0.2/zephyr/drivers/mfd/Kconfig.npm2100 /home/miguel/ncs/v3.0.2/zephyr/drivers/mfd/Kconfig.npm6001 /home/miguel/ncs/v3.0.2/zephyr/drivers/mfd/Kconfig.tle9104 /home/miguel/ncs/v3.0.2/zephyr/drivers/mipi_dbi/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/mipi_dbi/Kconfig.bitbang /home/miguel/ncs/v3.0.2/zephyr/drivers/mipi_dbi/Kconfig.nxp_flexio_lcdif /home/miguel/ncs/v3.0.2/zephyr/drivers/mipi_dbi/Kconfig.nxp_lcdic /home/miguel/ncs/v3.0.2/zephyr/drivers/mipi_dbi/Kconfig.smartbond /home/miguel/ncs/v3.0.2/zephyr/drivers/mipi_dbi/Kconfig.spi /home/miguel/ncs/v3.0.2/zephyr/drivers/mipi_dbi/Kconfig.stm32_fmc /home/miguel/ncs/v3.0.2/zephyr/drivers/mipi_dsi/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/mipi_dsi/Kconfig.mcux /home/miguel/ncs/v3.0.2/zephyr/drivers/mipi_dsi/Kconfig.renesas_ra /home/miguel/ncs/v3.0.2/zephyr/drivers/mipi_dsi/Kconfig.stm32 /home/miguel/ncs/v3.0.2/zephyr/drivers/mipi_dsi/Kconfig.test /home/miguel/ncs/v3.0.2/zephyr/drivers/misc/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/drivers/misc/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/misc/coresight/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/drivers/misc/coresight/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/misc/devmux/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/misc/ft8xx/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/misc/grove_lcd_rgb/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/misc/mcux_flexio/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/misc/nordic_vpr_launcher/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/misc/nxp_s32_emios/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/misc/pio_rpi_pico/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/misc/renesas_ra_external_interrupt/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/misc/timeaware_gpio/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/misc/timeaware_gpio/Kconfig.timeaware_gpio_intel /home/miguel/ncs/v3.0.2/zephyr/drivers/mm/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/modem/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/modem/Kconfig.at_shell /home/miguel/ncs/v3.0.2/zephyr/drivers/modem/Kconfig.cellular /home/miguel/ncs/v3.0.2/zephyr/drivers/modem/Kconfig.hl7800 /home/miguel/ncs/v3.0.2/zephyr/drivers/modem/Kconfig.quectel-bg9x /home/miguel/ncs/v3.0.2/zephyr/drivers/modem/Kconfig.simcom-sim7080 /home/miguel/ncs/v3.0.2/zephyr/drivers/modem/Kconfig.ublox-sara-r4 /home/miguel/ncs/v3.0.2/zephyr/drivers/modem/Kconfig.wncm14a2a /home/miguel/ncs/v3.0.2/zephyr/drivers/mspi/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/mspi/Kconfig.ambiq /home/miguel/ncs/v3.0.2/zephyr/drivers/mspi/Kconfig.dw /home/miguel/ncs/v3.0.2/zephyr/drivers/mspi/Kconfig.mspi_emul /home/miguel/ncs/v3.0.2/zephyr/drivers/net/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/pcie/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/drivers/pcie/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/pcie/endpoint/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/pcie/endpoint/Kconfig.iproc /home/miguel/ncs/v3.0.2/zephyr/drivers/pcie/host/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/peci/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/peci/Kconfig.it8xxx2 /home/miguel/ncs/v3.0.2/zephyr/drivers/peci/Kconfig.npcx /home/miguel/ncs/v3.0.2/zephyr/drivers/peci/Kconfig.xec /home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig.ambiq /home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig.b91 /home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig.cc13xx_cc26xx /home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig.emsdp /home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig.ene /home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig.eos_s3 /home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig.esp32 /home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig.gd32 /home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig.gecko /home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig.ifx_cat1 /home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig.imx /home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig.it8xxx2 /home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig.lpc_iocon /home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig.max32 /home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig.mci_io_mux /home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig.mec5 /home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig.npcx /home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig.nrf /home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig.numaker /home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig.numicro /home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig.nxp_port /home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig.nxp_s32 /home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig.realtek_rts5912 /home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig.rpi_pico /home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig.rv32m1 /home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig.sam /home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig.sam0 /home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig.sifive /home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig.silabs_dbus /home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig.stm32 /home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig.sy1xx /home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig.ti_cc32xx /home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig.ti_k3 /home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig.wch_afio /home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig.xec /home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig.xlnx /home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig.xmc4xxx /home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig.zynqmp /home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/renesas/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/renesas/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/renesas/ra/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/renesas/rcar/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/renesas/rz/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/renesas/smartbond/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/pm_cpu_ops/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/power_domain/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/ps2/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/ps2/Kconfig.npcx /home/miguel/ncs/v3.0.2/zephyr/drivers/ps2/Kconfig.xec /home/miguel/ncs/v3.0.2/zephyr/drivers/ptp_clock/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/ptp_clock/Kconfig.nxp_enet /home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.b91 /home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.cc13xx_cc26xx_timer /home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.ene /home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.esp32 /home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.fake /home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.gd32 /home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.gecko /home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.ifx_cat1 /home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.imx /home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.intel_blinky /home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.it8801 /home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.it8xxx2 /home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.litex /home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.max31790 /home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.max32 /home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.mcux /home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.mcux_ctimer /home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.mcux_ftm /home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.mcux_pwt /home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.mcux_qtmr /home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.mcux_sctimer /home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.mcux_tpm /home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.npcx /home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.nrf_sw /home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.nrfx /home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.numaker /home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.nxp_flexio /home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.nxp_s32_emios /home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.pca9685 /home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.rcar /home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.renesas_ra /home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.rpi_pico /home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.rv32m1_tpm /home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.sam /home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.sam0 /home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.sam0_tc /home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.sifive /home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.stm32 /home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.test /home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.xec /home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.xlnx /home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.xmc4xxx_ccu4 /home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.xmc4xxx_ccu8 /home/miguel/ncs/v3.0.2/zephyr/drivers/regulator/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/regulator/Kconfig.adp5360 /home/miguel/ncs/v3.0.2/zephyr/drivers/regulator/Kconfig.axp192 /home/miguel/ncs/v3.0.2/zephyr/drivers/regulator/Kconfig.cp9314 /home/miguel/ncs/v3.0.2/zephyr/drivers/regulator/Kconfig.da1469x /home/miguel/ncs/v3.0.2/zephyr/drivers/regulator/Kconfig.fake /home/miguel/ncs/v3.0.2/zephyr/drivers/regulator/Kconfig.fixed /home/miguel/ncs/v3.0.2/zephyr/drivers/regulator/Kconfig.gpio /home/miguel/ncs/v3.0.2/zephyr/drivers/regulator/Kconfig.max20335 /home/miguel/ncs/v3.0.2/zephyr/drivers/regulator/Kconfig.mpm54304 /home/miguel/ncs/v3.0.2/zephyr/drivers/regulator/Kconfig.npm1100 /home/miguel/ncs/v3.0.2/zephyr/drivers/regulator/Kconfig.npm1300 /home/miguel/ncs/v3.0.2/zephyr/drivers/regulator/Kconfig.npm2100 /home/miguel/ncs/v3.0.2/zephyr/drivers/regulator/Kconfig.npm6001 /home/miguel/ncs/v3.0.2/zephyr/drivers/regulator/Kconfig.nxp_vref /home/miguel/ncs/v3.0.2/zephyr/drivers/regulator/Kconfig.pca9420 /home/miguel/ncs/v3.0.2/zephyr/drivers/regulator/Kconfig.rpi_pico /home/miguel/ncs/v3.0.2/zephyr/drivers/reset/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/reset/Kconfig.aspeed /home/miguel/ncs/v3.0.2/zephyr/drivers/reset/Kconfig.gd32 /home/miguel/ncs/v3.0.2/zephyr/drivers/reset/Kconfig.intel_socfpga /home/miguel/ncs/v3.0.2/zephyr/drivers/reset/Kconfig.lpc_syscon /home/miguel/ncs/v3.0.2/zephyr/drivers/reset/Kconfig.npcx /home/miguel/ncs/v3.0.2/zephyr/drivers/reset/Kconfig.numaker /home/miguel/ncs/v3.0.2/zephyr/drivers/reset/Kconfig.nxp_rstctl /home/miguel/ncs/v3.0.2/zephyr/drivers/reset/Kconfig.rpi_pico /home/miguel/ncs/v3.0.2/zephyr/drivers/reset/Kconfig.stm32 /home/miguel/ncs/v3.0.2/zephyr/drivers/retained_mem/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/retained_mem/Kconfig.nrf /home/miguel/ncs/v3.0.2/zephyr/drivers/retained_mem/Kconfig.zephyr /home/miguel/ncs/v3.0.2/zephyr/drivers/rtc/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/rtc/Kconfig.am1805 /home/miguel/ncs/v3.0.2/zephyr/drivers/rtc/Kconfig.ambiq /home/miguel/ncs/v3.0.2/zephyr/drivers/rtc/Kconfig.ds1307 /home/miguel/ncs/v3.0.2/zephyr/drivers/rtc/Kconfig.ds3231 /home/miguel/ncs/v3.0.2/zephyr/drivers/rtc/Kconfig.emul /home/miguel/ncs/v3.0.2/zephyr/drivers/rtc/Kconfig.fake /home/miguel/ncs/v3.0.2/zephyr/drivers/rtc/Kconfig.ifx_cat1 /home/miguel/ncs/v3.0.2/zephyr/drivers/rtc/Kconfig.mc146818 /home/miguel/ncs/v3.0.2/zephyr/drivers/rtc/Kconfig.numaker /home/miguel/ncs/v3.0.2/zephyr/drivers/rtc/Kconfig.nxp_irtc /home/miguel/ncs/v3.0.2/zephyr/drivers/rtc/Kconfig.pcf8523 /home/miguel/ncs/v3.0.2/zephyr/drivers/rtc/Kconfig.pcf8563 /home/miguel/ncs/v3.0.2/zephyr/drivers/rtc/Kconfig.rpi_pico /home/miguel/ncs/v3.0.2/zephyr/drivers/rtc/Kconfig.rv3028 /home/miguel/ncs/v3.0.2/zephyr/drivers/rtc/Kconfig.rv8263 /home/miguel/ncs/v3.0.2/zephyr/drivers/rtc/Kconfig.sam /home/miguel/ncs/v3.0.2/zephyr/drivers/rtc/Kconfig.smartbond /home/miguel/ncs/v3.0.2/zephyr/drivers/rtc/Kconfig.stm32 /home/miguel/ncs/v3.0.2/zephyr/drivers/rtc/Kconfig.xmc4xxx /home/miguel/ncs/v3.0.2/zephyr/drivers/sdhc/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sdhc/Kconfig.esp32 /home/miguel/ncs/v3.0.2/zephyr/drivers/sdhc/Kconfig.ifx_cat1 /home/miguel/ncs/v3.0.2/zephyr/drivers/sdhc/Kconfig.imx /home/miguel/ncs/v3.0.2/zephyr/drivers/sdhc/Kconfig.intel /home/miguel/ncs/v3.0.2/zephyr/drivers/sdhc/Kconfig.mcux_sdif /home/miguel/ncs/v3.0.2/zephyr/drivers/sdhc/Kconfig.rcar /home/miguel/ncs/v3.0.2/zephyr/drivers/sdhc/Kconfig.renesas_ra /home/miguel/ncs/v3.0.2/zephyr/drivers/sdhc/Kconfig.sam_hsmci /home/miguel/ncs/v3.0.2/zephyr/drivers/sdhc/Kconfig.sdhc_cdns /home/miguel/ncs/v3.0.2/zephyr/drivers/sdhc/Kconfig.spi /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/Kconfig.trigger_template /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/a01nyub/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/adi/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/adi/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/adi/adltc2990/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/adi/adt7310/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/adi/adt7420/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/adi/adxl345/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/adi/adxl362/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/adi/adxl367/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/adi/adxl372/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/amd_sb_tsi/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/amg88xx/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ams/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ams/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ams/ams_as5600/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ams/ams_iAQcore/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ams/ccs811/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ams/ens210/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ams/tcs3400/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ams/tmd2620/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ams/tsl2540/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ams/tsl2561/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ams/tsl2591/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/aosong/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/aosong/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/aosong/ags10/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/aosong/dht/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/aosong/dht20/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/apds9253/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/apds9306/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/apds9960/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/asahi_kasei/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/asahi_kasei/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/asahi_kasei/ak8975/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/asahi_kasei/akm09918c/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/bosch/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/bosch/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/bosch/bma280/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/bosch/bma4xx/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/bosch/bmc150_magn/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/bosch/bme280/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/bosch/bme680/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/bosch/bmg160/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/bosch/bmi08x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/bosch/bmi160/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/bosch/bmi270/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/bosch/bmi323/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/bosch/bmm150/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/bosch/bmm350/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/bosch/bmp180/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/bosch/bmp388/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/bosch/bmp581/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/current_amp/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ene_tach_kb1200/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ens160/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/espressif/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/espressif/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/espressif/esp32_temp/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/espressif/pcnt_esp32/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/explorir_m/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/f75303/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/fcx_mldx5/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/grow_r502a/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/hc_sr04/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/honeywell/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/honeywell/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/honeywell/hmc5883l/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/honeywell/mpr/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/honeywell/sm351lt/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/hp206c/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/infineon/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/infineon/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/infineon/dps310/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/infineon/tle9104/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/infineon/xmc4xxx_temp/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ist8310/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ite/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ite/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ite/ite_tach_it8xxx2/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ite/ite_vcmp_it8xxx2/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/jedec/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/jedec/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/jedec/jc42/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/lm35/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/lm75/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/lm77/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ltrf216a/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/maxim/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/maxim/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/maxim/ds18b20/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/maxim/ds3231/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/maxim/max17055/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/maxim/max17262/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/maxim/max30101/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/maxim/max31790/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/maxim/max31855/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/maxim/max31865/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/maxim/max31875/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/maxim/max44009/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/maxim/max6675/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/meas/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/meas/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/meas/ms5607/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/meas/ms5837/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/memsic/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/memsic/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/memsic/mc3419/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/memsic/mmc56x3/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/mhz19b/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/microchip/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/microchip/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/microchip/mchp_tach_xec/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/microchip/mcp9600/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/microchip/mcp970x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/microchip/tcn75a/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/nct75/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/nordic/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/nordic/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/nordic/npm1300_charger/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/nordic/npm2100_vbat/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/nordic/qdec_nrfx/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/nordic/temp/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/nordic/temp/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ntc_thermistor/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/nuvoton/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/nuvoton/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/nuvoton/nuvoton_adc_cmp_npcx/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/nuvoton/nuvoton_tach_npcx/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/nxp/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/nxp/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/nxp/fxas21002/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/nxp/fxls8974/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/nxp/fxos8700/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/nxp/mcux_acmp/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/nxp/mcux_lpcmp/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/nxp/nxp_kinetis_temp/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/nxp/nxp_tempmon/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/nxp/p3t1755/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/nxp/qdec_mcux/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/nxp/qdec_nxp_s32/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/pms7003/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/qdec_sam/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/renesas/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/renesas/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/renesas/hs300x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/renesas/hs400x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/renesas/isl29035/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/rohm/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/rohm/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/rohm/bd8lb600fs/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/rohm/bh1750/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/rpi_pico_temp/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/s11059/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/sbs_gauge/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/seeed/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/seeed/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/seeed/grove/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/seeed/hm330x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/sensirion/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/sensirion/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/sensirion/scd4x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/sensirion/sgp40/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/sensirion/sht3xd/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/sensirion/sht4x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/sensirion/shtcx/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/sensirion/sts4x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/silabs/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/silabs/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/silabs/si7006/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/silabs/si7055/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/silabs/si7060/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/silabs/si7210/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/hts221/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/i3g4250d/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/iis2dh/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/iis2dlpc/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/iis2iclx/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/iis2mdc/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/iis328dq/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/iis3dhhc/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/ism330dhcx/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/lis2de12/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/lis2dh/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/lis2ds12/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/lis2du12/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/lis2dux12/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/lis2dw12/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/lis2mdl/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/lis3mdl/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/lps22hb/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/lps22hh/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/lps25hb/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/lps2xdf/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/lsm303dlhc_magn/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/lsm6ds0/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/lsm6dsl/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/lsm6dso/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/lsm6dso16is/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/lsm6dsv16x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/lsm9ds0_gyro/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/lsm9ds0_mfd/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/lsm9ds1/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/qdec_stm32/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/stm32_digi_temp/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/stm32_temp/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/stm32_vbat/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/stm32_vref/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/stts22h/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/stts751/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/vl53l0x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/vl53l1x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/sx9500/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/tdk/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/tdk/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/tdk/icm42605/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/tdk/icm42670/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/tdk/icm42688/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/tdk/icp10125/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/tdk/mpu6050/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/tdk/mpu9250/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/th02/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ti/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ti/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ti/bq274xx/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ti/fdc2x1x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ti/ina219/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ti/ina226/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ti/ina23x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ti/ina3221/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ti/lm95234/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ti/opt3001/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ti/ti_hdc/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ti/ti_hdc20xx/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ti/tmag5170/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ti/tmag5273/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ti/tmp007/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ti/tmp1075/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ti/tmp108/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ti/tmp112/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ti/tmp114/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ti/tmp116/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ti/tmp435/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/tsic_xx6/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/veaa_x_3/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/vishay/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/vishay/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/vishay/vcnl36825t/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/vishay/vcnl4040/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/vishay/veml6031/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/vishay/veml7700/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/voltage_divider/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/wsen/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/wsen/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/wsen/wsen_hids_2525020210002/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/xbr818/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.altera /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.altera_jtag /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.apbuart /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.b91 /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.bcm2711 /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.bt /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.cc13xx_cc26xx /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.cc32xx /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.cdns /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.cmsdk_apb /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.efinix_sapphire /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.emul /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.ene /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.esp32 /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.gd32 /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.gecko /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.hostlink /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.ifx_cat1 /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.imx /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.intel_lw /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.it8xxx2 /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.leuart_gecko /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.litex /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.lpc11u6x /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.max32 /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.mcux /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.mcux_flexcomm /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.mcux_iuart /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.mcux_lpsci /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.mcux_lpuart /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.miv /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.msp432p4xx /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.native_posix /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.native_tty /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.neorv32 /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.npcx /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.nrfx /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.nrfx_uart_instance /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.ns16550 /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.numaker /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.numicro /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.nxp_s32 /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.opentitan /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.pl011 /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.psoc6 /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.ql_usbserialport_s3b /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.rcar /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.realtek_rts5912 /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.renesas_ra /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.renesas_ra8 /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.renesas_rz /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.rpi_pico /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.rtt /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.rv32m1_lpuart /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.rzt2m /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.sam0 /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.sedi /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.si32 /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.sifive /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.smartbond /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.stellaris /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.stm32 /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.sy1xx /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.test /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.uart_sam /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.usart_sam /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.wch_usart /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.xec /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.xen /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.xlnx /home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.xmc4xxx /home/miguel/ncs/v3.0.2/zephyr/drivers/sip_svc/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/sip_svc/Kconfig.sip_smc_agilex /home/miguel/ncs/v3.0.2/zephyr/drivers/smbus/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.ambiq /home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.andes_atcspi200 /home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.b91 /home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.bitbang /home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.cc13xx_cc26xx /home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.dw /home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.esp32 /home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.gd32 /home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.gecko_eusart /home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.gecko_usart /home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.grlib_spimctrl /home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.ifx_cat1 /home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.it8xxx2 /home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.litex /home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.max32 /home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.mchp_mss /home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.mchp_mss_qspi /home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.mcux_dspi /home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.mcux_ecspi /home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.mcux_flexcomm /home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.mcux_flexio /home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.mcux_lpspi /home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.npcx /home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.nrfx /home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.numaker /home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.nxp_s32 /home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.oc_simple /home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.opentitan /home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.pl022 /home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.psoc6 /home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.pw /home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.renesas_ra /home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.renesas_ra8 /home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.rpi_pico /home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.rv32m1_lpspi /home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.sam /home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.sam0 /home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.sedi /home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.sifive /home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.smartbond /home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.spi_emul /home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.stm32 /home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.test /home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.xec_qmspi /home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.xlnx /home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.xmc4xxx /home/miguel/ncs/v3.0.2/zephyr/drivers/stepper/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/stepper/Kconfig.fake /home/miguel/ncs/v3.0.2/zephyr/drivers/stepper/Kconfig.gpio /home/miguel/ncs/v3.0.2/zephyr/drivers/stepper/Kconfig.stepper_event_template /home/miguel/ncs/v3.0.2/zephyr/drivers/stepper/adi_tmc/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/stepper/adi_tmc/Kconfig.tmc22xx /home/miguel/ncs/v3.0.2/zephyr/drivers/stepper/adi_tmc/Kconfig.tmc5041 /home/miguel/ncs/v3.0.2/zephyr/drivers/stepper/adi_tmc/Kconfig.tmc_rampgen_template /home/miguel/ncs/v3.0.2/zephyr/drivers/stepper/step_dir/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/stepper/ti/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/stepper/ti/Kconfig.drv8424 /home/miguel/ncs/v3.0.2/zephyr/drivers/syscon/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/tee/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/tee/optee/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/timer/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig.altera_avalon /home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig.ambiq /home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig.arcv2 /home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig.arm_arch /home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig.cavs /home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig.cc13xx_cc26xx_rtc /home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig.cortex_m_systick /home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig.esp32 /home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig.gecko /home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig.ite_it8xxx2 /home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig.leon_gptimer /home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig.litex /home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig.mchp_xec_rtos /home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig.mcux_gpt /home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig.mcux_lptmr /home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig.mcux_os /home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig.mec5 /home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig.mips_cp0 /home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig.mtk_adsp /home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig.native_posix /home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig.npcx_itim /home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig.nrf_grtc /home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig.nrf_rtc /home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig.nrf_xrtc /home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig.rcar_cmt /home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig.realtek_rts5912_rtmr /home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig.riscv_machine /home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig.rv32m1_lptmr /home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig.sam0_rtc /home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig.silabs /home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig.smartbond /home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig.stm32_lptim /home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig.sy1xx_sys_timer /home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig.ti_dm_timer /home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig.wch_ch32v00x /home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig.x86 /home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig.xlnx_psttc /home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig.xtensa /home/miguel/ncs/v3.0.2/zephyr/drivers/usb/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/drivers/usb/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/usb/bc12/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/usb/bc12/Kconfig.pi3usb9201 /home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/usb/device/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/drivers/usb/device/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/usb/udc/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/usb/udc/Kconfig.ambiq /home/miguel/ncs/v3.0.2/zephyr/drivers/usb/udc/Kconfig.dwc2 /home/miguel/ncs/v3.0.2/zephyr/drivers/usb/udc/Kconfig.it82xx2 /home/miguel/ncs/v3.0.2/zephyr/drivers/usb/udc/Kconfig.kinetis /home/miguel/ncs/v3.0.2/zephyr/drivers/usb/udc/Kconfig.mcux /home/miguel/ncs/v3.0.2/zephyr/drivers/usb/udc/Kconfig.nrf /home/miguel/ncs/v3.0.2/zephyr/drivers/usb/udc/Kconfig.numaker /home/miguel/ncs/v3.0.2/zephyr/drivers/usb/udc/Kconfig.renesas_ra /home/miguel/ncs/v3.0.2/zephyr/drivers/usb/udc/Kconfig.rpi_pico /home/miguel/ncs/v3.0.2/zephyr/drivers/usb/udc/Kconfig.skeleton /home/miguel/ncs/v3.0.2/zephyr/drivers/usb/udc/Kconfig.smartbond /home/miguel/ncs/v3.0.2/zephyr/drivers/usb/udc/Kconfig.stm32 /home/miguel/ncs/v3.0.2/zephyr/drivers/usb/udc/Kconfig.virtual /home/miguel/ncs/v3.0.2/zephyr/drivers/usb/uhc/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/usb/uhc/Kconfig.max3421e /home/miguel/ncs/v3.0.2/zephyr/drivers/usb/uhc/Kconfig.virtual /home/miguel/ncs/v3.0.2/zephyr/drivers/usb/uvb/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/usb_c/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/drivers/usb_c/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/usb_c/ppc/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/usb_c/ppc/Kconfig.numaker /home/miguel/ncs/v3.0.2/zephyr/drivers/usb_c/ppc/Kconfig.nxp /home/miguel/ncs/v3.0.2/zephyr/drivers/usb_c/tcpc/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/usb_c/tcpc/Kconfig.tcpc_numaker /home/miguel/ncs/v3.0.2/zephyr/drivers/usb_c/tcpc/Kconfig.tcpc_ps8xxx /home/miguel/ncs/v3.0.2/zephyr/drivers/usb_c/tcpc/Kconfig.tcpc_stm32 /home/miguel/ncs/v3.0.2/zephyr/drivers/usb_c/tcpc/Kconfig.tcpc_tcpci /home/miguel/ncs/v3.0.2/zephyr/drivers/usb_c/vbus/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/usb_c/vbus/Kconfig.numaker /home/miguel/ncs/v3.0.2/zephyr/drivers/usb_c/vbus/Kconfig.usbc_vbus_adc /home/miguel/ncs/v3.0.2/zephyr/drivers/usb_c/vbus/Kconfig.usbc_vbus_tcpci /home/miguel/ncs/v3.0.2/zephyr/drivers/video/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/video/Kconfig.emul_imager /home/miguel/ncs/v3.0.2/zephyr/drivers/video/Kconfig.emul_rx /home/miguel/ncs/v3.0.2/zephyr/drivers/video/Kconfig.esp32_dvp /home/miguel/ncs/v3.0.2/zephyr/drivers/video/Kconfig.gc2145 /home/miguel/ncs/v3.0.2/zephyr/drivers/video/Kconfig.mcux_csi /home/miguel/ncs/v3.0.2/zephyr/drivers/video/Kconfig.mcux_mipi_csi2rx /home/miguel/ncs/v3.0.2/zephyr/drivers/video/Kconfig.mcux_sdma /home/miguel/ncs/v3.0.2/zephyr/drivers/video/Kconfig.mt9m114 /home/miguel/ncs/v3.0.2/zephyr/drivers/video/Kconfig.ov2640 /home/miguel/ncs/v3.0.2/zephyr/drivers/video/Kconfig.ov5640 /home/miguel/ncs/v3.0.2/zephyr/drivers/video/Kconfig.ov7670 /home/miguel/ncs/v3.0.2/zephyr/drivers/video/Kconfig.ov7725 /home/miguel/ncs/v3.0.2/zephyr/drivers/video/Kconfig.stm32_dcmi /home/miguel/ncs/v3.0.2/zephyr/drivers/video/Kconfig.sw_generator /home/miguel/ncs/v3.0.2/zephyr/drivers/virtualization/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/w1/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/w1/Kconfig.ds2477_85 /home/miguel/ncs/v3.0.2/zephyr/drivers/w1/Kconfig.ds2482-800 /home/miguel/ncs/v3.0.2/zephyr/drivers/w1/Kconfig.ds2484 /home/miguel/ncs/v3.0.2/zephyr/drivers/w1/Kconfig.ds2485 /home/miguel/ncs/v3.0.2/zephyr/drivers/w1/Kconfig.max32 /home/miguel/ncs/v3.0.2/zephyr/drivers/w1/Kconfig.test /home/miguel/ncs/v3.0.2/zephyr/drivers/w1/Kconfig.zephyr_gpio /home/miguel/ncs/v3.0.2/zephyr/drivers/w1/Kconfig.zephyr_serial /home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig.ambiq /home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig.andes_atcwdt200 /home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig.cc13xx_cc26xx /home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig.cc32xx /home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig.cmsdk_apb /home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig.dw /home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig.ene /home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig.esp32 /home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig.gd32 /home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig.gecko /home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig.ifx_cat1 /home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig.intel_adsp /home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig.it8xxx2 /home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig.litex /home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig.max32 /home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig.mcux /home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig.mcux_imx /home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig.npcx /home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig.npm1300 /home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig.npm2100 /home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig.npm6001 /home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig.nrfx /home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig.numaker /home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig.nxp_fs26 /home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig.nxp_s32 /home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig.opentitan /home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig.rpi_pico /home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig.sam /home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig.sam0 /home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig.shell /home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig.sifive /home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig.smartbond /home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig.stm32 /home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig.tco /home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig.ti_tps382x /home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig.xec /home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig.xlnx /home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig.xmc4xxx /home/miguel/ncs/v3.0.2/zephyr/drivers/wifi/Kconfig /home/miguel/ncs/v3.0.2/zephyr/drivers/wifi/esp32/Kconfig.esp32 /home/miguel/ncs/v3.0.2/zephyr/drivers/wifi/esp_at/Kconfig.esp_at /home/miguel/ncs/v3.0.2/zephyr/drivers/wifi/eswifi/Kconfig.eswifi /home/miguel/ncs/v3.0.2/zephyr/drivers/wifi/infineon/Kconfig.airoc /home/miguel/ncs/v3.0.2/zephyr/drivers/wifi/nrf_wifi/Kconfig.nrfwifi /home/miguel/ncs/v3.0.2/zephyr/drivers/wifi/nxp/Kconfig.nxp /home/miguel/ncs/v3.0.2/zephyr/drivers/wifi/simplelink/Kconfig.simplelink /home/miguel/ncs/v3.0.2/zephyr/drivers/wifi/winc1500/Kconfig.winc1500 /home/miguel/ncs/v3.0.2/zephyr/drivers/xen/Kconfig /home/miguel/ncs/v3.0.2/zephyr/dts/Kconfig /home/miguel/ncs/v3.0.2/zephyr/dts/arm/armv7-m.dtsi /home/miguel/ncs/v3.0.2/zephyr/dts/arm/nordic/nrf52833.dtsi /home/miguel/ncs/v3.0.2/zephyr/dts/arm/nordic/nrf52833_qdaa.dtsi /home/miguel/ncs/v3.0.2/zephyr/dts/arm/nordic/override.dtsi /home/miguel/ncs/v3.0.2/zephyr/dts/common/freq.h /home/miguel/ncs/v3.0.2/zephyr/dts/common/mem.h /home/miguel/ncs/v3.0.2/zephyr/dts/common/nordic/nrf_common.dtsi /home/miguel/ncs/v3.0.2/zephyr/dts/common/skeleton.dtsi /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/arch/common/app_data_alignment.ld /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/adc/adc.h /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/adc/nrf-saadc-v2.h /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/adc/nrf-saadc-v3.h /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/adc/nrf-saadc.h /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/dt-util.h /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/gpio/gpio.h /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/i2c/i2c.h /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/input/input-event-codes.h /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/pinctrl/nrf-pinctrl.h /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/pwm/pwm.h /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/regulator/nrf5x.h /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/app_smem.ld /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/app_smem_aligned.ld /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/app_smem_unaligned.ld /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/sys/util_internal.h /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/sys/util_internal_is_eq.h /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/sys/util_internal_util_dec.h /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/sys/util_internal_util_inc.h /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/sys/util_internal_util_x2.h /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/sys/util_listify.h /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/sys/util_loops.h /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/sys/util_macro.h /home/miguel/ncs/v3.0.2/zephyr/kernel/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/kernel/Kconfig /home/miguel/ncs/v3.0.2/zephyr/kernel/Kconfig.device /home/miguel/ncs/v3.0.2/zephyr/kernel/Kconfig.init /home/miguel/ncs/v3.0.2/zephyr/kernel/Kconfig.mem_domain /home/miguel/ncs/v3.0.2/zephyr/kernel/Kconfig.obj_core /home/miguel/ncs/v3.0.2/zephyr/kernel/Kconfig.smp /home/miguel/ncs/v3.0.2/zephyr/kernel/Kconfig.vm /home/miguel/ncs/v3.0.2/zephyr/lib/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/lib/Kconfig /home/miguel/ncs/v3.0.2/zephyr/lib/acpi/Kconfig /home/miguel/ncs/v3.0.2/zephyr/lib/cpp/Kconfig /home/miguel/ncs/v3.0.2/zephyr/lib/crc/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/lib/crc/Kconfig /home/miguel/ncs/v3.0.2/zephyr/lib/hash/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/lib/hash/Kconfig /home/miguel/ncs/v3.0.2/zephyr/lib/hash/Kconfig.hash_func /home/miguel/ncs/v3.0.2/zephyr/lib/hash/Kconfig.hash_map /home/miguel/ncs/v3.0.2/zephyr/lib/heap/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/lib/heap/Kconfig /home/miguel/ncs/v3.0.2/zephyr/lib/libc/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/lib/libc/Kconfig /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/Kconfig /home/miguel/ncs/v3.0.2/zephyr/lib/libc/minimal/Kconfig /home/miguel/ncs/v3.0.2/zephyr/lib/libc/newlib/Kconfig /home/miguel/ncs/v3.0.2/zephyr/lib/libc/picolibc/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/lib/libc/picolibc/Kconfig /home/miguel/ncs/v3.0.2/zephyr/lib/mem_blocks/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/lib/mem_blocks/Kconfig /home/miguel/ncs/v3.0.2/zephyr/lib/net_buf/Kconfig /home/miguel/ncs/v3.0.2/zephyr/lib/open-amp/Kconfig /home/miguel/ncs/v3.0.2/zephyr/lib/os/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/lib/os/Kconfig /home/miguel/ncs/v3.0.2/zephyr/lib/os/Kconfig.cbprintf /home/miguel/ncs/v3.0.2/zephyr/lib/os/zvfs/Kconfig /home/miguel/ncs/v3.0.2/zephyr/lib/posix/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/lib/posix/Kconfig /home/miguel/ncs/v3.0.2/zephyr/lib/posix/options/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/lib/posix/options/Kconfig /home/miguel/ncs/v3.0.2/zephyr/lib/posix/options/Kconfig.aio /home/miguel/ncs/v3.0.2/zephyr/lib/posix/options/Kconfig.barrier /home/miguel/ncs/v3.0.2/zephyr/lib/posix/options/Kconfig.c_lang_r /home/miguel/ncs/v3.0.2/zephyr/lib/posix/options/Kconfig.c_lib_ext /home/miguel/ncs/v3.0.2/zephyr/lib/posix/options/Kconfig.compat /home/miguel/ncs/v3.0.2/zephyr/lib/posix/options/Kconfig.deprecated /home/miguel/ncs/v3.0.2/zephyr/lib/posix/options/Kconfig.device_io /home/miguel/ncs/v3.0.2/zephyr/lib/posix/options/Kconfig.fd_mgmt /home/miguel/ncs/v3.0.2/zephyr/lib/posix/options/Kconfig.file_system_r /home/miguel/ncs/v3.0.2/zephyr/lib/posix/options/Kconfig.fs /home/miguel/ncs/v3.0.2/zephyr/lib/posix/options/Kconfig.mem /home/miguel/ncs/v3.0.2/zephyr/lib/posix/options/Kconfig.mqueue /home/miguel/ncs/v3.0.2/zephyr/lib/posix/options/Kconfig.net /home/miguel/ncs/v3.0.2/zephyr/lib/posix/options/Kconfig.proc1 /home/miguel/ncs/v3.0.2/zephyr/lib/posix/options/Kconfig.procN /home/miguel/ncs/v3.0.2/zephyr/lib/posix/options/Kconfig.profile /home/miguel/ncs/v3.0.2/zephyr/lib/posix/options/Kconfig.pthread /home/miguel/ncs/v3.0.2/zephyr/lib/posix/options/Kconfig.rwlock /home/miguel/ncs/v3.0.2/zephyr/lib/posix/options/Kconfig.sched /home/miguel/ncs/v3.0.2/zephyr/lib/posix/options/Kconfig.semaphore /home/miguel/ncs/v3.0.2/zephyr/lib/posix/options/Kconfig.signal /home/miguel/ncs/v3.0.2/zephyr/lib/posix/options/Kconfig.spinlock /home/miguel/ncs/v3.0.2/zephyr/lib/posix/options/Kconfig.sync_io /home/miguel/ncs/v3.0.2/zephyr/lib/posix/options/Kconfig.timer /home/miguel/ncs/v3.0.2/zephyr/lib/posix/options/Kconfig.toolchain /home/miguel/ncs/v3.0.2/zephyr/lib/posix/options/Kconfig.xsi /home/miguel/ncs/v3.0.2/zephyr/lib/posix/shell/Kconfig /home/miguel/ncs/v3.0.2/zephyr/lib/posix/shell/Kconfig.env /home/miguel/ncs/v3.0.2/zephyr/lib/posix/shell/Kconfig.uname /home/miguel/ncs/v3.0.2/zephyr/lib/runtime/Kconfig /home/miguel/ncs/v3.0.2/zephyr/lib/smf/Kconfig /home/miguel/ncs/v3.0.2/zephyr/lib/utils/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/lib/utils/Kconfig /home/miguel/ncs/v3.0.2/zephyr/misc/empty_file.c /home/miguel/ncs/v3.0.2/zephyr/misc/generated/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/misc/generated/configs.c.in /home/miguel/ncs/v3.0.2/zephyr/modules/Kconfig /home/miguel/ncs/v3.0.2/zephyr/modules/Kconfig.altera /home/miguel/ncs/v3.0.2/zephyr/modules/Kconfig.atmel /home/miguel/ncs/v3.0.2/zephyr/modules/Kconfig.chre /home/miguel/ncs/v3.0.2/zephyr/modules/Kconfig.cypress /home/miguel/ncs/v3.0.2/zephyr/modules/Kconfig.eos_s3 /home/miguel/ncs/v3.0.2/zephyr/modules/Kconfig.esp32 /home/miguel/ncs/v3.0.2/zephyr/modules/Kconfig.imx /home/miguel/ncs/v3.0.2/zephyr/modules/Kconfig.infineon /home/miguel/ncs/v3.0.2/zephyr/modules/Kconfig.intel /home/miguel/ncs/v3.0.2/zephyr/modules/Kconfig.libmetal /home/miguel/ncs/v3.0.2/zephyr/modules/Kconfig.mcuboot /home/miguel/ncs/v3.0.2/zephyr/modules/Kconfig.mcux /home/miguel/ncs/v3.0.2/zephyr/modules/Kconfig.microchip /home/miguel/ncs/v3.0.2/zephyr/modules/Kconfig.nuvoton /home/miguel/ncs/v3.0.2/zephyr/modules/Kconfig.nxp_s32 /home/miguel/ncs/v3.0.2/zephyr/modules/Kconfig.open-amp /home/miguel/ncs/v3.0.2/zephyr/modules/Kconfig.picolibc /home/miguel/ncs/v3.0.2/zephyr/modules/Kconfig.renesas_fsp /home/miguel/ncs/v3.0.2/zephyr/modules/Kconfig.rust /home/miguel/ncs/v3.0.2/zephyr/modules/Kconfig.simplelink /home/miguel/ncs/v3.0.2/zephyr/modules/Kconfig.sof /home/miguel/ncs/v3.0.2/zephyr/modules/Kconfig.stm32 /home/miguel/ncs/v3.0.2/zephyr/modules/Kconfig.syst /home/miguel/ncs/v3.0.2/zephyr/modules/Kconfig.telink /home/miguel/ncs/v3.0.2/zephyr/modules/Kconfig.tinycrypt /home/miguel/ncs/v3.0.2/zephyr/modules/Kconfig.vega /home/miguel/ncs/v3.0.2/zephyr/modules/Kconfig.wurthelektronik /home/miguel/ncs/v3.0.2/zephyr/modules/Kconfig.xtensa /home/miguel/ncs/v3.0.2/zephyr/modules/acpica/Kconfig /home/miguel/ncs/v3.0.2/zephyr/modules/canopennode/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/modules/canopennode/Kconfig /home/miguel/ncs/v3.0.2/zephyr/modules/cmsis-dsp/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/modules/cmsis-dsp/Kconfig /home/miguel/ncs/v3.0.2/zephyr/modules/cmsis-nn/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/modules/cmsis-nn/Kconfig /home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/Kconfig /home/miguel/ncs/v3.0.2/zephyr/modules/fatfs/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/modules/fatfs/Kconfig /home/miguel/ncs/v3.0.2/zephyr/modules/hal_ambiq/Kconfig /home/miguel/ncs/v3.0.2/zephyr/modules/hal_ethos_u/Kconfig /home/miguel/ncs/v3.0.2/zephyr/modules/hal_gigadevice/Kconfig /home/miguel/ncs/v3.0.2/zephyr/modules/hal_infineon/Kconfig /home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/Kconfig /home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/Kconfig.nrf_regtool /home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfs/Kconfig /home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfs/backends/Kconfig /home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfs/dvfs/Kconfig /home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/Kconfig /home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/Kconfig.logging /home/miguel/ncs/v3.0.2/zephyr/modules/hal_nxp/Kconfig /home/miguel/ncs/v3.0.2/zephyr/modules/hal_rpi_pico/Kconfig /home/miguel/ncs/v3.0.2/zephyr/modules/hal_silabs/Kconfig /home/miguel/ncs/v3.0.2/zephyr/modules/hal_st/Kconfig /home/miguel/ncs/v3.0.2/zephyr/modules/hal_tdk/Kconfig /home/miguel/ncs/v3.0.2/zephyr/modules/hal_wch/Kconfig /home/miguel/ncs/v3.0.2/zephyr/modules/hostap/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/modules/hostap/Kconfig /home/miguel/ncs/v3.0.2/zephyr/modules/liblc3/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/modules/liblc3/Kconfig /home/miguel/ncs/v3.0.2/zephyr/modules/littlefs/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/modules/littlefs/Kconfig /home/miguel/ncs/v3.0.2/zephyr/modules/loramac-node/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/modules/loramac-node/Kconfig /home/miguel/ncs/v3.0.2/zephyr/modules/lvgl/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/modules/lvgl/Kconfig /home/miguel/ncs/v3.0.2/zephyr/modules/lvgl/Kconfig.input /home/miguel/ncs/v3.0.2/zephyr/modules/lvgl/Kconfig.memory /home/miguel/ncs/v3.0.2/zephyr/modules/lvgl/Kconfig.shell /home/miguel/ncs/v3.0.2/zephyr/modules/lz4/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/modules/lz4/Kconfig /home/miguel/ncs/v3.0.2/zephyr/modules/mbedtls/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/modules/mbedtls/Kconfig /home/miguel/ncs/v3.0.2/zephyr/modules/mbedtls/Kconfig.psa.auto /home/miguel/ncs/v3.0.2/zephyr/modules/mbedtls/Kconfig.psa.logic /home/miguel/ncs/v3.0.2/zephyr/modules/mbedtls/Kconfig.tls-generic /home/miguel/ncs/v3.0.2/zephyr/modules/modules.cmake /home/miguel/ncs/v3.0.2/zephyr/modules/nanopb/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/modules/nanopb/Kconfig /home/miguel/ncs/v3.0.2/zephyr/modules/nrf_wifi/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/modules/nrf_wifi/Kconfig /home/miguel/ncs/v3.0.2/zephyr/modules/nrf_wifi/bus/Kconfig /home/miguel/ncs/v3.0.2/zephyr/modules/openthread/Kconfig /home/miguel/ncs/v3.0.2/zephyr/modules/openthread/Kconfig.features /home/miguel/ncs/v3.0.2/zephyr/modules/openthread/Kconfig.thread /home/miguel/ncs/v3.0.2/zephyr/modules/percepio/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/modules/percepio/Kconfig /home/miguel/ncs/v3.0.2/zephyr/modules/segger/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/modules/segger/Kconfig /home/miguel/ncs/v3.0.2/zephyr/modules/tflite-micro/Kconfig /home/miguel/ncs/v3.0.2/zephyr/modules/thrift/Kconfig /home/miguel/ncs/v3.0.2/zephyr/modules/trusted-firmware-a/Kconfig /home/miguel/ncs/v3.0.2/zephyr/modules/trusted-firmware-m/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/modules/trusted-firmware-m/Kconfig /home/miguel/ncs/v3.0.2/zephyr/modules/trusted-firmware-m/Kconfig.tfm /home/miguel/ncs/v3.0.2/zephyr/modules/trusted-firmware-m/Kconfig.tfm.crypto_modules /home/miguel/ncs/v3.0.2/zephyr/modules/trusted-firmware-m/Kconfig.tfm.partitions /home/miguel/ncs/v3.0.2/zephyr/modules/uoscore-uedhoc/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/modules/uoscore-uedhoc/Kconfig /home/miguel/ncs/v3.0.2/zephyr/modules/zcbor/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/modules/zcbor/Kconfig /home/miguel/ncs/v3.0.2/zephyr/scripts/dts/gen_defines.py /home/miguel/ncs/v3.0.2/zephyr/scripts/dts/gen_driver_kconfig_dts.py /home/miguel/ncs/v3.0.2/zephyr/scripts/dts/gen_dts_cmake.py /home/miguel/ncs/v3.0.2/zephyr/scripts/dts/gen_edt.py /home/miguel/ncs/v3.0.2/zephyr/scripts/snippets.py /home/miguel/ncs/v3.0.2/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake /home/miguel/ncs/v3.0.2/zephyr/share/zephyr-package/cmake/ZephyrConfigVersion.cmake /home/miguel/ncs/v3.0.2/zephyr/share/zephyr-package/cmake/zephyr_package_search.cmake /home/miguel/ncs/v3.0.2/zephyr/snippets/bt-ll-sw-split/snippet.yml /home/miguel/ncs/v3.0.2/zephyr/snippets/cdc-acm-console/snippet.yml /home/miguel/ncs/v3.0.2/zephyr/snippets/nordic-flpr-xip/snippet.yml /home/miguel/ncs/v3.0.2/zephyr/snippets/nordic-flpr/snippet.yml /home/miguel/ncs/v3.0.2/zephyr/snippets/nordic-log-stm-dict/snippet.yml /home/miguel/ncs/v3.0.2/zephyr/snippets/nordic-log-stm/snippet.yml /home/miguel/ncs/v3.0.2/zephyr/snippets/nordic-ppr-xip/snippet.yml /home/miguel/ncs/v3.0.2/zephyr/snippets/nordic-ppr/snippet.yml /home/miguel/ncs/v3.0.2/zephyr/snippets/nus-console/snippet.yml /home/miguel/ncs/v3.0.2/zephyr/snippets/ram-console/snippet.yml /home/miguel/ncs/v3.0.2/zephyr/snippets/rtt-console/snippet.yml /home/miguel/ncs/v3.0.2/zephyr/snippets/rtt-tracing/snippet.yml /home/miguel/ncs/v3.0.2/zephyr/snippets/serial-console/snippet.yml /home/miguel/ncs/v3.0.2/zephyr/snippets/wifi-enterprise/snippet.yml /home/miguel/ncs/v3.0.2/zephyr/snippets/wifi-ipv4/snippet.yml /home/miguel/ncs/v3.0.2/zephyr/snippets/xen_dom0/snippet.yml /home/miguel/ncs/v3.0.2/zephyr/soc/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/soc/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/Kconfig.v2 /home/miguel/ncs/v3.0.2/zephyr/soc/adi/max32/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/adi/max32/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/adi/max32/Kconfig.defconfig.max32655 /home/miguel/ncs/v3.0.2/zephyr/soc/adi/max32/Kconfig.defconfig.max32662 /home/miguel/ncs/v3.0.2/zephyr/soc/adi/max32/Kconfig.defconfig.max32666 /home/miguel/ncs/v3.0.2/zephyr/soc/adi/max32/Kconfig.defconfig.max32670 /home/miguel/ncs/v3.0.2/zephyr/soc/adi/max32/Kconfig.defconfig.max32672 /home/miguel/ncs/v3.0.2/zephyr/soc/adi/max32/Kconfig.defconfig.max32675 /home/miguel/ncs/v3.0.2/zephyr/soc/adi/max32/Kconfig.defconfig.max32680 /home/miguel/ncs/v3.0.2/zephyr/soc/adi/max32/Kconfig.defconfig.max32690 /home/miguel/ncs/v3.0.2/zephyr/soc/adi/max32/Kconfig.defconfig.max78002 /home/miguel/ncs/v3.0.2/zephyr/soc/adi/max32/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/altr/qemu_nios2/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/altr/qemu_nios2/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/altr/qemu_nios2/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/altr/zephyr_nios2f/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/altr/zephyr_nios2f/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/altr/zephyr_nios2f/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/ambiq/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/ambiq/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/ambiq/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/ambiq/apollo3x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/ambiq/apollo3x/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/ambiq/apollo3x/Kconfig.defconfig.apollo3_blue /home/miguel/ncs/v3.0.2/zephyr/soc/ambiq/apollo3x/Kconfig.defconfig.apollo3p_blue /home/miguel/ncs/v3.0.2/zephyr/soc/ambiq/apollo3x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/ambiq/apollo4x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/ambiq/apollo4x/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/ambiq/apollo4x/Kconfig.defconfig.apollo4p /home/miguel/ncs/v3.0.2/zephyr/soc/ambiq/apollo4x/Kconfig.defconfig.apollo4p_blue /home/miguel/ncs/v3.0.2/zephyr/soc/ambiq/apollo4x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/amd/acp_6_0/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/amd/acp_6_0/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/amd/acp_6_0/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/andestech/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/andestech/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/andestech/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/andestech/ae350/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/andestech/ae350/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/andestech/ae350/Kconfig.defconfig.ae350 /home/miguel/ncs/v3.0.2/zephyr/soc/andestech/ae350/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/arm/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/arm/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/arm/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/arm/beetle/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/arm/beetle/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/arm/beetle/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/arm/designstart/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/arm/designstart/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/arm/fvp_aemv8a/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/arm/fvp_aemv8a/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/arm/fvp_aemv8a/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/arm/fvp_aemv8r/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/arm/fvp_aemv8r/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/arm/fvp_aemv8r/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/arm/mps2/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/arm/mps2/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/arm/mps2/Kconfig.defconfig.an385 /home/miguel/ncs/v3.0.2/zephyr/soc/arm/mps2/Kconfig.defconfig.an521 /home/miguel/ncs/v3.0.2/zephyr/soc/arm/mps2/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/arm/mps3/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/arm/mps3/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/arm/mps3/Kconfig.defconfig.mps3_corstone300 /home/miguel/ncs/v3.0.2/zephyr/soc/arm/mps3/Kconfig.defconfig.mps3_corstone310 /home/miguel/ncs/v3.0.2/zephyr/soc/arm/mps3/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/arm/musca/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/arm/musca/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/arm/musca/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/arm/qemu_cortex_a53/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/arm/qemu_cortex_a53/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/arm/qemu_cortex_a53/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/arm/qemu_virt_arm64/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/arm/qemu_virt_arm64/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/arm/qemu_virt_arm64/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/aspeed/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/aspeed/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/aspeed/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/aspeed/ast10x0/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/aspeed/ast10x0/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/aspeed/ast10x0/Kconfig.defconfig.ast1030 /home/miguel/ncs/v3.0.2/zephyr/soc/aspeed/ast10x0/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam/common/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam/sam3x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam/sam3x/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam/sam3x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam/sam4e/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam/sam4e/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam/sam4e/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam/sam4l/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam/sam4l/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam/sam4l/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam/sam4s/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam/sam4s/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam/sam4s/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam/same70/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam/same70/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam/same70/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam/samv71/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam/samv71/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam/samv71/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/common/Kconfig.samd2x /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/common/Kconfig.samd5x /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/common/Kconfig.saml2x /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/samc20/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/samc20/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/samc20/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/samc21/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/samc21/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/samc21/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/samd20/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/samd20/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/samd20/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/samd21/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/samd21/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/samd21/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/samd51/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/samd51/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/samd51/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/same51/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/same51/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/same51/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/same53/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/same53/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/same53/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/same54/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/same54/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/same54/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/saml21/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/saml21/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/saml21/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/samr21/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/samr21/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/samr21/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/samr34/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/samr34/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/samr34/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/samr35/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/samr35/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/samr35/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/brcm/bcm2711/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/brcm/bcm2711/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/brcm/bcm2711/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/brcm/bcm2712/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/brcm/bcm2712/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/brcm/bcm2712/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/brcm/bcmvk/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/brcm/bcmvk/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/brcm/bcmvk/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/brcm/bcmvk/valkyrie/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/brcm/bcmvk/valkyrie/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/brcm/bcmvk/valkyrie/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/brcm/bcmvk/viper/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/brcm/bcmvk/viper/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/brcm/bcmvk/viper/Kconfig.defconfig.viper_bcm58402_a72 /home/miguel/ncs/v3.0.2/zephyr/soc/brcm/bcmvk/viper/Kconfig.defconfig.viper_bcm58402_m7 /home/miguel/ncs/v3.0.2/zephyr/soc/brcm/bcmvk/viper/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/cdns/dc233c/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/cdns/dc233c/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/cdns/dc233c/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/cdns/sample_controller32/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/cdns/sample_controller32/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/cdns/xtensa_sample_controller/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/cdns/xtensa_sample_controller/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/common/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/soc/common/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/common/riscv-privileged/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/efinix/sapphire/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/efinix/sapphire/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/efinix/sapphire/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/ene/kb1200/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/ene/kb1200/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/ene/kb1200/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/espressif/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/espressif/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/espressif/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/espressif/common/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/espressif/common/Kconfig.amp /home/miguel/ncs/v3.0.2/zephyr/soc/espressif/common/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/espressif/common/Kconfig.esptool /home/miguel/ncs/v3.0.2/zephyr/soc/espressif/common/Kconfig.flash /home/miguel/ncs/v3.0.2/zephyr/soc/espressif/common/Kconfig.spiram /home/miguel/ncs/v3.0.2/zephyr/soc/espressif/esp32/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/espressif/esp32/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/espressif/esp32/Kconfig.mac /home/miguel/ncs/v3.0.2/zephyr/soc/espressif/esp32/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/espressif/esp32c2/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/espressif/esp32c2/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/espressif/esp32c2/Kconfig.mac /home/miguel/ncs/v3.0.2/zephyr/soc/espressif/esp32c2/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/espressif/esp32c3/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/espressif/esp32c3/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/espressif/esp32c3/Kconfig.mac /home/miguel/ncs/v3.0.2/zephyr/soc/espressif/esp32c3/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/espressif/esp32c6/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/espressif/esp32c6/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/espressif/esp32c6/Kconfig.mac /home/miguel/ncs/v3.0.2/zephyr/soc/espressif/esp32c6/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/espressif/esp32s2/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/espressif/esp32s2/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/espressif/esp32s2/Kconfig.mac /home/miguel/ncs/v3.0.2/zephyr/soc/espressif/esp32s2/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/espressif/esp32s3/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/espressif/esp32s3/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/espressif/esp32s3/Kconfig.mac /home/miguel/ncs/v3.0.2/zephyr/soc/espressif/esp32s3/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/gaisler/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/gaisler/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/gaisler/gr716a/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/gaisler/gr716a/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/gaisler/gr716a/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/gaisler/leon3/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/gaisler/leon3/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/gaisler/leon3/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32a50x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32a50x/Kconfig.defconfig.gd32a503 /home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32a50x/Kconfig.defconfig.series /home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32a50x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32e10x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32e10x/Kconfig.defconfig.gd32e103 /home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32e10x/Kconfig.defconfig.series /home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32e10x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32e50x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32e50x/Kconfig.defconfig.gd32e507 /home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32e50x/Kconfig.defconfig.series /home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32e50x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32f3x0/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32f3x0/Kconfig.defconfig.gd32f350 /home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32f3x0/Kconfig.defconfig.series /home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32f3x0/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32f403/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32f403/Kconfig.defconfig.gd32f403 /home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32f403/Kconfig.defconfig.series /home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32f403/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32f4xx/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32f4xx/Kconfig.defconfig.gd32f405 /home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32f4xx/Kconfig.defconfig.gd32f407 /home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32f4xx/Kconfig.defconfig.gd32f450 /home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32f4xx/Kconfig.defconfig.gd32f470 /home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32f4xx/Kconfig.defconfig.series /home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32f4xx/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32l23x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32l23x/Kconfig.defconfig.gd32l233 /home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32l23x/Kconfig.defconfig.series /home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32l23x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32vf103/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32vf103/Kconfig.defconfig.gd32vf103 /home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32vf103/Kconfig.defconfig.series /home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32vf103/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat1a/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat1a/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat1a/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat1a/psoc6_01/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat1a/psoc6_01/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat1a/psoc6_02/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat1a/psoc6_02/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat1a/psoc6_03/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat1a/psoc6_03/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat1a/psoc6_04/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat1a/psoc6_04/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat1a/psoc6_legacy/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat1a/psoc6_legacy/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat1b/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat1b/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat1b/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat1b/cyw20829/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat1b/cyw20829/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat1b/cyw20829/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat3/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat3/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat3/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat3/xmc4xxx/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat3/xmc4xxx/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat3/xmc4xxx/Kconfig.defconfig.xmc4500 /home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat3/xmc4xxx/Kconfig.defconfig.xmc4700 /home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat3/xmc4xxx/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/intel/alder_lake/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/intel/alder_lake/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/intel/alder_lake/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/intel/apollo_lake/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/intel/apollo_lake/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/intel/apollo_lake/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/intel/atom/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/intel/atom/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/intel/atom/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/intel/elkhart_lake/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/intel/elkhart_lake/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/intel/elkhart_lake/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_adsp/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_adsp/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_adsp/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_adsp/ace/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_adsp/ace/Kconfig.defconfig.ace15_mtpm /home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_adsp/ace/Kconfig.defconfig.ace20_lnl /home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_adsp/ace/Kconfig.defconfig.ace30 /home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_adsp/ace/Kconfig.defconfig.series /home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_adsp/ace/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_adsp/cavs/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_adsp/cavs/Kconfig.defconfig.cavs_v25 /home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_adsp/cavs/Kconfig.defconfig.series /home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_adsp/cavs/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_ish/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_ish/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_ish/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_ish/intel_ish5/Kconfig.defconfig.series /home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_ish/intel_ish5/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_ish/intel_ish5/pm/Kconfig.pm /home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_niosv/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_niosv/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_niosv/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_niosv/niosv/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_niosv/niosv/Kconfig.defconfig.series /home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_niosv/niosv/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_socfpga/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_socfpga/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_socfpga/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_socfpga/agilex/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_socfpga/agilex/Kconfig.defconfig.agilex /home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_socfpga/agilex/Kconfig.defconfig.series /home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_socfpga/agilex/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_socfpga/agilex5/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_socfpga/agilex5/Kconfig.defconfig.agilex5 /home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_socfpga/agilex5/Kconfig.defconfig.series /home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_socfpga/agilex5/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_socfpga_std/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_socfpga_std/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_socfpga_std/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_socfpga_std/cyclonev/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_socfpga_std/cyclonev/Kconfig.defconfig.cyclonev /home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_socfpga_std/cyclonev/Kconfig.defconfig.series /home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_socfpga_std/cyclonev/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/intel/lakemont/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/intel/lakemont/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/intel/lakemont/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/intel/raptor_lake/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/intel/raptor_lake/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/intel/raptor_lake/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/ite/ec/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/ite/ec/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/ite/ec/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/ite/ec/it8xxx2/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/ite/ec/it8xxx2/Kconfig.defconfig.it81202bx /home/miguel/ncs/v3.0.2/zephyr/soc/ite/ec/it8xxx2/Kconfig.defconfig.it81202cx /home/miguel/ncs/v3.0.2/zephyr/soc/ite/ec/it8xxx2/Kconfig.defconfig.it81202dx /home/miguel/ncs/v3.0.2/zephyr/soc/ite/ec/it8xxx2/Kconfig.defconfig.it81302bx /home/miguel/ncs/v3.0.2/zephyr/soc/ite/ec/it8xxx2/Kconfig.defconfig.it81302cx /home/miguel/ncs/v3.0.2/zephyr/soc/ite/ec/it8xxx2/Kconfig.defconfig.it81302dx /home/miguel/ncs/v3.0.2/zephyr/soc/ite/ec/it8xxx2/Kconfig.defconfig.it82002aw /home/miguel/ncs/v3.0.2/zephyr/soc/ite/ec/it8xxx2/Kconfig.defconfig.it82002bw /home/miguel/ncs/v3.0.2/zephyr/soc/ite/ec/it8xxx2/Kconfig.defconfig.it82202ax /home/miguel/ncs/v3.0.2/zephyr/soc/ite/ec/it8xxx2/Kconfig.defconfig.it82202bw /home/miguel/ncs/v3.0.2/zephyr/soc/ite/ec/it8xxx2/Kconfig.defconfig.it82302ax /home/miguel/ncs/v3.0.2/zephyr/soc/ite/ec/it8xxx2/Kconfig.defconfig.it82302bw /home/miguel/ncs/v3.0.2/zephyr/soc/ite/ec/it8xxx2/Kconfig.defconfig.series /home/miguel/ncs/v3.0.2/zephyr/soc/ite/ec/it8xxx2/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/litex/litex_vexriscv/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/litex/litex_vexriscv/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/litex/litex_vexriscv/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/lowrisc/opentitan/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/lowrisc/opentitan/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/lowrisc/opentitan/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/mediatek/mt8xxx/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/mediatek/mt8xxx/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/mediatek/mt8xxx/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/mediatek/mt8xxx/mt8186/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/mediatek/mt8xxx/mt8188/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/mediatek/mt8xxx/mt8195/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/mediatek/mt8xxx/mt8196/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/microchip/mec/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/microchip/mec/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/microchip/mec/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/microchip/mec/mec15xx/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/microchip/mec/mec15xx/Kconfig.defconfig.mec1501hsz /home/miguel/ncs/v3.0.2/zephyr/soc/microchip/mec/mec15xx/Kconfig.defconfig.series /home/miguel/ncs/v3.0.2/zephyr/soc/microchip/mec/mec15xx/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/microchip/mec/mec172x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/microchip/mec/mec172x/Kconfig.defconfig.mec172xnlj /home/miguel/ncs/v3.0.2/zephyr/soc/microchip/mec/mec172x/Kconfig.defconfig.mec172xnsz /home/miguel/ncs/v3.0.2/zephyr/soc/microchip/mec/mec172x/Kconfig.defconfig.series /home/miguel/ncs/v3.0.2/zephyr/soc/microchip/mec/mec172x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/microchip/mec/mec174x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/microchip/mec/mec174x/Kconfig.defconfig.series /home/miguel/ncs/v3.0.2/zephyr/soc/microchip/mec/mec174x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/microchip/mec/mec175x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/microchip/mec/mec175x/Kconfig.defconfig.series /home/miguel/ncs/v3.0.2/zephyr/soc/microchip/mec/mec175x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/microchip/mec/mech172x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/microchip/mec/mech172x/Kconfig.defconfig.series /home/miguel/ncs/v3.0.2/zephyr/soc/microchip/mec/mech172x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/microchip/miv/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/microchip/miv/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/microchip/miv/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/microchip/miv/miv/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/microchip/miv/miv/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/microchip/miv/miv/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/microchip/miv/polarfire/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/microchip/miv/polarfire/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/microchip/miv/polarfire/Kconfig.defconfig.polarfire_u54 /home/miguel/ncs/v3.0.2/zephyr/soc/microchip/miv/polarfire/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/native/inf_clock/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/native/inf_clock/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/neorv32/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/neorv32/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/neorv32/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/Kconfig.peripherals /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/vpr/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/vpr/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf51/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf51/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf51/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/Kconfig.defconfig.nrf52805_CAAA /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/Kconfig.defconfig.nrf52810_QFAA /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/Kconfig.defconfig.nrf52811_QFAA /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/Kconfig.defconfig.nrf52820_QDAA /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/Kconfig.defconfig.nrf52832_CIAA /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/Kconfig.defconfig.nrf52832_QFAA /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/Kconfig.defconfig.nrf52832_QFAB /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/Kconfig.defconfig.nrf52833_QDAA /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/Kconfig.defconfig.nrf52833_QIAA /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/Kconfig.defconfig.nrf52840_QFAA /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/Kconfig.defconfig.nrf52840_QIAA /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf53/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf53/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf53/Kconfig.defconfig.nrf5340_CPUAPP_QKAA /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf53/Kconfig.defconfig.nrf5340_CPUNET_QKAA /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf53/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf53/Kconfig.sync_rtc /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf53/Kconfig.sync_rtc_ipm /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf54h/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf54h/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf54h/Kconfig.defconfig.nrf54h20_cpuapp /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf54h/Kconfig.defconfig.nrf54h20_cpuflpr /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf54h/Kconfig.defconfig.nrf54h20_cpuppr /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf54h/Kconfig.defconfig.nrf54h20_cpurad /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf54h/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf54h/bicr/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf54h/gpd/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf54l/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf54l/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf54l/Kconfig.defconfig.nrf54l09_enga_cpuapp /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf54l/Kconfig.defconfig.nrf54l09_enga_cpuflpr /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf54l/Kconfig.defconfig.nrf54l20_enga_cpuapp /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf54l/Kconfig.defconfig.nrf54l20_enga_cpuflpr /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf54l/Kconfig.defconfig.nrf54l_05_10_15_cpuapp /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf54l/Kconfig.defconfig.nrf54l_05_10_15_cpuflpr /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf54l/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf91/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf91/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf91/Kconfig.defconfig.nrf9131_LACA /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf91/Kconfig.defconfig.nrf9151_LACA /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf91/Kconfig.defconfig.nrf9160_SICA /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf91/Kconfig.defconfig.nrf9161_LACA /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf91/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf92/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf92/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf92/Kconfig.defconfig.nrf9280_cpuapp /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf92/Kconfig.defconfig.nrf9280_cpuppr /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf92/Kconfig.defconfig.nrf9280_cpurad /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf92/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/soc.yml /home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/npcm/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/npcm/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/npcm/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/npcm/npcm4/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/npcm/npcm4/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/npcm/npcm4/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/npcx/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/npcx/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/npcx/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/npcx/npcx4/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/npcx/npcx4/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/npcx/npcx4/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/npcx/npcx7/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/npcx/npcx7/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/npcx/npcx7/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/npcx/npcx9/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/npcx/npcx9/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/npcx/npcx9/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/numaker/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/numaker/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/numaker/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/numaker/m2l31x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/numaker/m2l31x/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/numaker/m2l31x/Kconfig.defconfig.m2l31xxx /home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/numaker/m2l31x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/numaker/m46x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/numaker/m46x/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/numaker/m46x/Kconfig.defconfig.m467 /home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/numaker/m46x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/numicro/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/numicro/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/numicro/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/numicro/m48x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/numicro/m48x/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/numicro/m48x/Kconfig.defconfig.m487 /home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/numicro/m48x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/common/Kconfig.flexspi_xip /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/common/Kconfig.nbu /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/common/Kconfig.rom_loader /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx6sx/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx6sx/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx6sx/Kconfig.defconfig.mcimx6x_m4 /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx6sx/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx7d/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx7d/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx7d/Kconfig.defconfig.mcimx7d_m4 /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx7d/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx8/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx8/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx8/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx8m/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx8m/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx8m/Kconfig.defconfig.mimx8ml8_a53 /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx8m/Kconfig.defconfig.mimx8ml8_adsp /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx8m/Kconfig.defconfig.mimx8ml8_m7 /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx8m/Kconfig.defconfig.mimx8mm6_a53 /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx8m/Kconfig.defconfig.mimx8mm6_m4 /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx8m/Kconfig.defconfig.mimx8mn6_a53 /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx8m/Kconfig.defconfig.mimx8mq6_m4 /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx8m/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx8ulp/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx8ulp/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx8ulp/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx8x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx8x/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx8x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx9/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx9/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx9/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx9/imx93/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx9/imx93/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx9/imx93/Kconfig.defconfig.mimx93.a55 /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx9/imx93/Kconfig.defconfig.mimx93.m33 /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx9/imx93/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx9/imx95/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx9/imx95/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx9/imx95/Kconfig.defconfig.mimx95.a55 /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx9/imx95/Kconfig.defconfig.mimx95.m7 /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx9/imx95/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imxrt/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imxrt/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imxrt/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imxrt/imxrt10xx/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imxrt/imxrt10xx/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imxrt/imxrt10xx/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imxrt/imxrt118x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imxrt/imxrt118x/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imxrt/imxrt118x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imxrt/imxrt11xx/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imxrt/imxrt11xx/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imxrt/imxrt11xx/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imxrt/imxrt5xx/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imxrt/imxrt5xx/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imxrt/imxrt5xx/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imxrt/imxrt6xx/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imxrt/imxrt6xx/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imxrt/imxrt6xx/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/k2x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/k2x/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/k2x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/k6x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/k6x/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/k6x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/k8x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/k8x/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/k8x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/ke1xf/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/ke1xf/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/ke1xf/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/ke1xz/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/ke1xz/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/ke1xz/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/kl2x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/kl2x/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/kl2x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/kv5x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/kv5x/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/kv5x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/kwx/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/kwx/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/kwx/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/layerscape/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/layerscape/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/layerscape/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/layerscape/ls1046a/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/layerscape/ls1046a/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/layerscape/ls1046a/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/lpc/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/lpc/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/lpc/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/lpc/lpc11u6x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/lpc/lpc11u6x/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/lpc/lpc11u6x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/lpc/lpc51u68/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/lpc/lpc51u68/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/lpc/lpc51u68/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/lpc/lpc54xxx/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/lpc/lpc54xxx/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/lpc/lpc54xxx/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/lpc/lpc55xxx/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/lpc/lpc55xxx/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/lpc/lpc55xxx/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/mcx/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/mcx/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/mcx/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/mcx/mcxa/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/mcx/mcxa/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/mcx/mcxa/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/mcx/mcxc/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/mcx/mcxc/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/mcx/mcxc/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/mcx/mcxn/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/mcx/mcxn/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/mcx/mcxn/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/mcx/mcxw/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/mcx/mcxw/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/mcx/mcxw/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/rw/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/rw/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/rw/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/s32/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/s32/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/s32/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/s32/s32k1/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/s32/s32k1/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/s32/s32k1/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/s32/s32k3/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/s32/s32k3/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/s32/s32k3/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/s32/s32ze/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/s32/s32ze/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/s32/s32ze/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/openisa/rv32m1/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/openisa/rv32m1/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/openisa/rv32m1/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/qemu/malta/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/qemu/malta/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/qemu/malta/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/qemu/virt_riscv/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/qemu/virt_riscv/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/qemu/virt_riscv/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/qemu/virt_riscv/qemu_virt_riscv32/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/qemu/virt_riscv/qemu_virt_riscv32/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/qemu/virt_riscv/qemu_virt_riscv32e/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/qemu/virt_riscv/qemu_virt_riscv32e/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/qemu/virt_riscv/qemu_virt_riscv64/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/qemu/virt_riscv/qemu_virt_riscv64/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/quicklogic/eos_s3/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/quicklogic/eos_s3/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/quicklogic/eos_s3/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/raspberrypi/rpi_pico/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/raspberrypi/rpi_pico/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/raspberrypi/rpi_pico/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/raspberrypi/rpi_pico/rp2040/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/raspberrypi/rpi_pico/rp2040/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/raspberrypi/rpi_pico/rp2040/Kconfig.defconfig.rp2040 /home/miguel/ncs/v3.0.2/zephyr/soc/raspberrypi/rpi_pico/rp2040/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/raspberrypi/rpi_pico/rp2350/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/raspberrypi/rpi_pico/rp2350/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/raspberrypi/rpi_pico/rp2350/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/realtek/ec/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/realtek/ec/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/realtek/ec/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/realtek/ec/rts5912/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/realtek/ec/rts5912/Kconfig.defconfig.rts5912 /home/miguel/ncs/v3.0.2/zephyr/soc/realtek/ec/rts5912/Kconfig.defconfig.series /home/miguel/ncs/v3.0.2/zephyr/soc/realtek/ec/rts5912/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra2a1/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra2a1/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra2a1/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra4e2/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra4e2/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra4e2/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra4m1/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra4m1/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra4m1/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra4m2/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra4m2/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra4m2/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra4m3/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra4m3/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra4m3/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra4w1/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra4w1/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra4w1/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra6e1/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra6e1/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra6e1/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra6e2/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra6e2/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra6e2/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra6m1/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra6m1/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra6m1/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra6m2/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra6m2/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra6m2/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra6m3/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra6m3/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra6m3/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra6m4/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra6m4/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra6m4/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra6m5/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra6m5/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra6m5/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra8d1/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra8d1/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra8d1/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra8m1/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra8m1/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra8m1/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra8t1/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra8t1/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra8t1/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/rcar/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/rcar/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/rcar/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/rcar/rcar_gen3/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/rcar/rcar_gen3/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/rcar/rcar_gen3/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/rcar/rcar_gen4/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/rcar/rcar_gen4/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/rcar/rcar_gen4/Kconfig.defconfig.r8a779f0 /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/rcar/rcar_gen4/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/rz/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/rz/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/rz/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/rz/rzg3s/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/rz/rzg3s/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/rz/rzg3s/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/rzt2m/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/rzt2m/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/rzt2m/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/smartbond/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/smartbond/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/smartbond/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/smartbond/da1469x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/smartbond/da1469x/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/smartbond/da1469x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/renode/cortex_r8_virtual/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/renode/cortex_r8_virtual/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/renode/cortex_r8_virtual/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/renode/riscv_virtual/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/renode/riscv_virtual/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/renode/riscv_virtual/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/rockchip/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/rockchip/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/rockchip/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/rockchip/rk3399/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/rockchip/rk3399/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/rockchip/rk3399/Kconfig.defconfig.rk3399 /home/miguel/ncs/v3.0.2/zephyr/soc/rockchip/rk3399/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/rockchip/rk3568/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/rockchip/rk3568/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/rockchip/rk3568/Kconfig.defconfig.rk3568 /home/miguel/ncs/v3.0.2/zephyr/soc/rockchip/rk3568/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/sensry/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/sensry/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/sensry/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/sensry/ganymed/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/sensry/ganymed/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/sensry/ganymed/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/sensry/ganymed/sy1xx/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/sensry/ganymed/sy1xx/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/sensry/ganymed/sy1xx/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/sifive/sifive_freedom/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/sifive/sifive_freedom/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/sifive/sifive_freedom/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/sifive/sifive_freedom/fe300/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/sifive/sifive_freedom/fe300/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/sifive/sifive_freedom/fe300/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/sifive/sifive_freedom/fu500/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/sifive/sifive_freedom/fu500/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/sifive/sifive_freedom/fu500/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/sifive/sifive_freedom/fu700/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/sifive/sifive_freedom/fu700/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/sifive/sifive_freedom/fu700/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s0/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s0/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s0/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s0/efm32hg/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s0/efm32hg/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s0/efm32hg/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s0/efm32wg/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s0/efm32wg/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s0/efm32wg/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/efm32gg11b/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/efm32gg11b/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/efm32gg11b/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/efm32gg12b/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/efm32gg12b/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/efm32gg12b/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/efm32jg12b/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/efm32jg12b/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/efm32jg12b/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/efm32pg12b/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/efm32pg12b/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/efm32pg12b/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/efm32pg1b/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/efm32pg1b/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/efm32pg1b/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/efr32bg13p/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/efr32bg13p/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/efr32bg13p/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/efr32fg13p/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/efr32fg13p/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/efr32fg13p/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/efr32fg1p/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/efr32fg1p/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/efr32fg1p/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/efr32mg12p/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/efr32mg12p/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/efr32mg12p/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s2/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s2/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s2/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s2/efr32bg22/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s2/efr32bg22/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s2/efr32bg22/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s2/efr32bg27/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s2/efr32bg27/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s2/efr32bg27/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s2/efr32mg21/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s2/efr32mg21/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s2/efr32mg21/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s2/efr32mg24/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s2/efr32mg24/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s2/efr32mg24/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s2/efr32zg23/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s2/efr32zg23/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s2/efr32zg23/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_sim3/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_sim3/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_sim3/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_sim3/sim3u/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_sim3/sim3u/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_sim3/sim3u/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/snps/arc_iot/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/snps/arc_iot/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/snps/arc_iot/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/snps/emsdp/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/snps/emsdp/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/snps/emsdp/Kconfig.defconfig.em11d /home/miguel/ncs/v3.0.2/zephyr/soc/snps/emsdp/Kconfig.defconfig.em4 /home/miguel/ncs/v3.0.2/zephyr/soc/snps/emsdp/Kconfig.defconfig.em5d /home/miguel/ncs/v3.0.2/zephyr/soc/snps/emsdp/Kconfig.defconfig.em6 /home/miguel/ncs/v3.0.2/zephyr/soc/snps/emsdp/Kconfig.defconfig.em7d /home/miguel/ncs/v3.0.2/zephyr/soc/snps/emsdp/Kconfig.defconfig.em7d_esp /home/miguel/ncs/v3.0.2/zephyr/soc/snps/emsdp/Kconfig.defconfig.em9d /home/miguel/ncs/v3.0.2/zephyr/soc/snps/emsdp/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/snps/emsk/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/snps/emsk/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/snps/emsk/Kconfig.defconfig.em11d /home/miguel/ncs/v3.0.2/zephyr/soc/snps/emsk/Kconfig.defconfig.em7d /home/miguel/ncs/v3.0.2/zephyr/soc/snps/emsk/Kconfig.defconfig.em9d /home/miguel/ncs/v3.0.2/zephyr/soc/snps/emsk/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/snps/hsdk/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/snps/hsdk/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/snps/hsdk/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/snps/hsdk4xd/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/snps/hsdk4xd/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/snps/hsdk4xd/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_classic/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_classic/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_classic/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_classic/em/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_classic/em/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_classic/em/Kconfig.defconfig.em /home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_classic/em/Kconfig.defconfig.em11d /home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_classic/em/Kconfig.defconfig.em7d_v22 /home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_classic/em/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_classic/hs/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_classic/hs/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_classic/hs/Kconfig.defconfig.hs /home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_classic/hs/Kconfig.defconfig.hs5x /home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_classic/hs/Kconfig.defconfig.hs5x_smp /home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_classic/hs/Kconfig.defconfig.hs6x /home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_classic/hs/Kconfig.defconfig.hs6x_smp /home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_classic/hs/Kconfig.defconfig.hs_mpuv6 /home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_classic/hs/Kconfig.defconfig.hs_smp /home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_classic/hs/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_classic/sem/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_classic/sem/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_classic/sem/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_classic/vpx5/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_classic/vpx5/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_classic/vpx5/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_v/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_v/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_v/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_v/rmx/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_v/rmx/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_v/rmx/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/snps/qemu_arc/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/snps/qemu_arc/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/snps/qemu_arc/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32c0x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32c0x/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32c0x/Kconfig.defconfig.stm32c011xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32c0x/Kconfig.defconfig.stm32c031xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32c0x/Kconfig.defconfig.stm32c071xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32c0x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f0x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f0x/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f0x/Kconfig.defconfig.stm32f030x4 /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f0x/Kconfig.defconfig.stm32f030x6 /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f0x/Kconfig.defconfig.stm32f030x8 /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f0x/Kconfig.defconfig.stm32f030xc /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f0x/Kconfig.defconfig.stm32f031x6 /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f0x/Kconfig.defconfig.stm32f042x6 /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f0x/Kconfig.defconfig.stm32f051x8 /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f0x/Kconfig.defconfig.stm32f070xb /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f0x/Kconfig.defconfig.stm32f072xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f0x/Kconfig.defconfig.stm32f091xc /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f0x/Kconfig.defconfig.stm32f098xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f0x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f1x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f1x/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f1x/Kconfig.defconfig.stm32f100xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f1x/Kconfig.defconfig.stm32f103xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f1x/Kconfig.defconfig.stm32f105xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f1x/Kconfig.defconfig.stm32f107xc /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f1x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f2x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f2x/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f2x/Kconfig.defconfig.stm32f205xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f2x/Kconfig.defconfig.stm32f207xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f2x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f3x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f3x/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f3x/Kconfig.defconfig.stm32f302x8 /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f3x/Kconfig.defconfig.stm32f302xc /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f3x/Kconfig.defconfig.stm32f303x(b-c) /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f3x/Kconfig.defconfig.stm32f303x8 /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f3x/Kconfig.defconfig.stm32f303xe /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f3x/Kconfig.defconfig.stm32f334x8 /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f3x/Kconfig.defconfig.stm32f373xc /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f3x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f4x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f4x/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f4x/Kconfig.defconfig.stm32f401xc /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f4x/Kconfig.defconfig.stm32f401xe /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f4x/Kconfig.defconfig.stm32f405xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f4x/Kconfig.defconfig.stm32f407xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f4x/Kconfig.defconfig.stm32f410xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f4x/Kconfig.defconfig.stm32f411xe /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f4x/Kconfig.defconfig.stm32f412rx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f4x/Kconfig.defconfig.stm32f412xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f4x/Kconfig.defconfig.stm32f413xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f4x/Kconfig.defconfig.stm32f415xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f4x/Kconfig.defconfig.stm32f417xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f4x/Kconfig.defconfig.stm32f423xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f4x/Kconfig.defconfig.stm32f427xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f4x/Kconfig.defconfig.stm32f429xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f4x/Kconfig.defconfig.stm32f437xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f4x/Kconfig.defconfig.stm32f446xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f4x/Kconfig.defconfig.stm32f469xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f4x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f7x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f7x/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f7x/Kconfig.defconfig.stm32f722xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f7x/Kconfig.defconfig.stm32f723xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f7x/Kconfig.defconfig.stm32f745xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f7x/Kconfig.defconfig.stm32f746xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f7x/Kconfig.defconfig.stm32f750xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f7x/Kconfig.defconfig.stm32f756xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f7x/Kconfig.defconfig.stm32f765xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f7x/Kconfig.defconfig.stm32f767xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f7x/Kconfig.defconfig.stm32f769xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f7x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32g0x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32g0x/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32g0x/Kconfig.defconfig.stm32g030xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32g0x/Kconfig.defconfig.stm32g031xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32g0x/Kconfig.defconfig.stm32g041xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32g0x/Kconfig.defconfig.stm32g050xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32g0x/Kconfig.defconfig.stm32g051xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32g0x/Kconfig.defconfig.stm32g061xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32g0x/Kconfig.defconfig.stm32g070xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32g0x/Kconfig.defconfig.stm32g071xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32g0x/Kconfig.defconfig.stm32g081xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32g0x/Kconfig.defconfig.stm32g0b0xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32g0x/Kconfig.defconfig.stm32g0b1xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32g0x/Kconfig.defconfig.stm32g0c1xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32g0x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32g4x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32g4x/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32g4x/Kconfig.defconfig.stm32g431xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32g4x/Kconfig.defconfig.stm32g441xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32g4x/Kconfig.defconfig.stm32g473xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32g4x/Kconfig.defconfig.stm32g474xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32g4x/Kconfig.defconfig.stm32g483xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32g4x/Kconfig.defconfig.stm32g484xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32g4x/Kconfig.defconfig.stm32g491xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32g4x/Kconfig.defconfig.stm32g4a1xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32g4x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32h5x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32h5x/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32h5x/Kconfig.defconfig.stm32h503xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32h5x/Kconfig.defconfig.stm32h533xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32h5x/Kconfig.defconfig.stm32h562xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32h5x/Kconfig.defconfig.stm32h563xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32h5x/Kconfig.defconfig.stm32h573xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32h5x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32h7rsx/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32h7rsx/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32h7rsx/Kconfig.defconfig.stm32h7r3xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32h7rsx/Kconfig.defconfig.stm32h7r7xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32h7rsx/Kconfig.defconfig.stm32h7s3xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32h7rsx/Kconfig.defconfig.stm32h7s7xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32h7rsx/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32h7x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32h7x/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32h7x/Kconfig.defconfig.stm32h723xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32h7x/Kconfig.defconfig.stm32h725xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32h7x/Kconfig.defconfig.stm32h730xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32h7x/Kconfig.defconfig.stm32h735xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32h7x/Kconfig.defconfig.stm32h743xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32h7x/Kconfig.defconfig.stm32h745xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32h7x/Kconfig.defconfig.stm32h747xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32h7x/Kconfig.defconfig.stm32h750xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32h7x/Kconfig.defconfig.stm32h753xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32h7x/Kconfig.defconfig.stm32h755xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32h7x/Kconfig.defconfig.stm32h757xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32h7x/Kconfig.defconfig.stm32h7a3xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32h7x/Kconfig.defconfig.stm32h7b0xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32h7x/Kconfig.defconfig.stm32h7b3xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32h7x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l0x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l0x/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l0x/Kconfig.defconfig.stm32l010x4 /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l0x/Kconfig.defconfig.stm32l010x6 /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l0x/Kconfig.defconfig.stm32l010x8 /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l0x/Kconfig.defconfig.stm32l010xb /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l0x/Kconfig.defconfig.stm32l011xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l0x/Kconfig.defconfig.stm32l031xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l0x/Kconfig.defconfig.stm32l051xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l0x/Kconfig.defconfig.stm32l053xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l0x/Kconfig.defconfig.stm32l071xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l0x/Kconfig.defconfig.stm32l072xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l0x/Kconfig.defconfig.stm32l073xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l0x/Kconfig.defconfig.stm32l081xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l0x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l1x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l1x/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l1x/Kconfig.defconfig.stm32l151xb /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l1x/Kconfig.defconfig.stm32l151xba /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l1x/Kconfig.defconfig.stm32l151xc /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l1x/Kconfig.defconfig.stm32l152xc /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l1x/Kconfig.defconfig.stm32l152xe /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l1x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l4x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l4x/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l4x/Kconfig.defconfig.stm32l412xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l4x/Kconfig.defconfig.stm32l422xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l4x/Kconfig.defconfig.stm32l431xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l4x/Kconfig.defconfig.stm32l432xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l4x/Kconfig.defconfig.stm32l433xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l4x/Kconfig.defconfig.stm32l451xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l4x/Kconfig.defconfig.stm32l452xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l4x/Kconfig.defconfig.stm32l462xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l4x/Kconfig.defconfig.stm32l471xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l4x/Kconfig.defconfig.stm32l475xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l4x/Kconfig.defconfig.stm32l476xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l4x/Kconfig.defconfig.stm32l486xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l4x/Kconfig.defconfig.stm32l496xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l4x/Kconfig.defconfig.stm32l4a6xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l4x/Kconfig.defconfig.stm32l4p5xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l4x/Kconfig.defconfig.stm32l4q5xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l4x/Kconfig.defconfig.stm32l4r5xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l4x/Kconfig.defconfig.stm32l4r9xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l4x/Kconfig.defconfig.stm32l4s5xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l4x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l5x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l5x/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l5x/Kconfig.defconfig.stm32l552xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l5x/Kconfig.defconfig.stm32l562xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l5x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32mp1x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32mp1x/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32mp1x/Kconfig.defconfig.stm32mp15_m4 /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32mp1x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32u0x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32u0x/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32u0x/Kconfig.defconfig.stm32u031xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32u0x/Kconfig.defconfig.stm32u073xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32u0x/Kconfig.defconfig.stm32u083xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32u0x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32u5x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32u5x/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32u5x/Kconfig.defconfig.stm32u545xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32u5x/Kconfig.defconfig.stm32u575xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32u5x/Kconfig.defconfig.stm32u585xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32u5x/Kconfig.defconfig.stm32u595xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32u5x/Kconfig.defconfig.stm32u599xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32u5x/Kconfig.defconfig.stm32u5a5xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32u5x/Kconfig.defconfig.stm32u5a9xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32u5x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32wb0x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32wb0x/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32wb0x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32wbax/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32wbax/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32wbax/Kconfig.defconfig.stm32wba52xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32wbax/Kconfig.defconfig.stm32wba55xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32wbax/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32wbx/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32wbx/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32wbx/Kconfig.defconfig.stm32wb55xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32wbx/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32wlx/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32wlx/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32wlx/Kconfig.defconfig.stm32wl54xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32wlx/Kconfig.defconfig.stm32wl55xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32wlx/Kconfig.defconfig.stm32wle4xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32wlx/Kconfig.defconfig.stm32wle5xx /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32wlx/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/starfive/jh71xx/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/starfive/jh71xx/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/starfive/jh71xx/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/telink/tlsr/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/telink/tlsr/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/telink/tlsr/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/telink/tlsr/tlsr951x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/telink/tlsr/tlsr951x/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/telink/tlsr/tlsr951x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/ti/k3/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/ti/k3/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/ti/k3/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/ti/k3/am6x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/ti/k3/am6x/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/ti/k3/am6x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/ti/lm3s6965/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/ti/lm3s6965/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/ti/lm3s6965/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/ti/simplelink/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/ti/simplelink/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/ti/simplelink/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/ti/simplelink/cc13x2_cc26x2/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/ti/simplelink/cc13x2_cc26x2/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/ti/simplelink/cc13x2_cc26x2/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/ti/simplelink/cc13x2x7_cc26x2x7/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/ti/simplelink/cc13x2x7_cc26x2x7/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/ti/simplelink/cc13x2x7_cc26x2x7/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/ti/simplelink/cc32xx/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/ti/simplelink/cc32xx/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/ti/simplelink/cc32xx/Kconfig.defconfig.cc3220sf /home/miguel/ncs/v3.0.2/zephyr/soc/ti/simplelink/cc32xx/Kconfig.defconfig.cc3235sf /home/miguel/ncs/v3.0.2/zephyr/soc/ti/simplelink/cc32xx/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/ti/simplelink/msp432p4xx/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/ti/simplelink/msp432p4xx/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/ti/simplelink/msp432p4xx/Kconfig.defconfig.msp432p401r /home/miguel/ncs/v3.0.2/zephyr/soc/ti/simplelink/msp432p4xx/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/wch/ch32v00x/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/wch/ch32v00x/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/wch/ch32v00x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/xen/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/xen/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/xen/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/xlnx/zynq7000/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/xlnx/zynq7000/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/xlnx/zynq7000/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/xlnx/zynq7000/xc7zxxx/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/xlnx/zynq7000/xc7zxxx/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/xlnx/zynq7000/xc7zxxx/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/xlnx/zynq7000/xc7zxxxs/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/xlnx/zynq7000/xc7zxxxs/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/xlnx/zynq7000/xc7zxxxs/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/xlnx/zynqmp/Kconfig /home/miguel/ncs/v3.0.2/zephyr/soc/xlnx/zynqmp/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/soc/xlnx/zynqmp/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/subsys/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/subsys/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/bindesc/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/bindesc/Kconfig.build_time /home/miguel/ncs/v3.0.2/zephyr/subsys/bindesc/Kconfig.host_info /home/miguel/ncs/v3.0.2/zephyr/subsys/bindesc/Kconfig.version /home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/Kconfig.adv /home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/Kconfig.iso /home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/Kconfig.logging /home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/audio/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/audio/Kconfig.aics /home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/audio/Kconfig.ascs /home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/audio/Kconfig.bap /home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/audio/Kconfig.cap /home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/audio/Kconfig.ccp /home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/audio/Kconfig.csip /home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/audio/Kconfig.gmap /home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/audio/Kconfig.has /home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/audio/Kconfig.mcs /home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/audio/Kconfig.mctl /home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/audio/Kconfig.micp /home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/audio/Kconfig.mpl /home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/audio/Kconfig.pacs /home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/audio/Kconfig.pbp /home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/audio/Kconfig.tbs /home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/audio/Kconfig.tmap /home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/audio/Kconfig.vcp /home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/audio/Kconfig.vocs /home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/common/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/controller/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/controller/Kconfig.df /home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/controller/Kconfig.dtm /home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/controller/Kconfig.ll_sw_split /home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/controller/coex/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/crypto/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/host/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/host/Kconfig.gatt /home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/host/Kconfig.l2cap /home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/host/classic/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/lib/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/mesh/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/mesh/shell/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/services/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/services/Kconfig.cts /home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/services/Kconfig.dis /home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/services/Kconfig.hrs /home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/services/Kconfig.tps /home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/services/bas/Kconfig.bas /home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/services/ias/Kconfig.ias /home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/services/nus/Kconfig.nus /home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/services/ots/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/canbus/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/subsys/canbus/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/canbus/Kconfig.canopen /home/miguel/ncs/v3.0.2/zephyr/subsys/canbus/isotp/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/console/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/dap/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/debug/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/subsys/debug/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/debug/coredump/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/debug/gdbstub/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/debug/symtab/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/demand_paging/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/demand_paging/backing_store/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/demand_paging/eviction/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/dfu/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/disk/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/dsp/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/emul/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/emul/espi/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/fb/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/subsys/fb/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/fs/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/subsys/fs/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/fs/Kconfig.fatfs /home/miguel/ncs/v3.0.2/zephyr/subsys/fs/Kconfig.littlefs /home/miguel/ncs/v3.0.2/zephyr/subsys/fs/ext2/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/fs/fcb/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/fs/nvs/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/fs/zms/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/input/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/ipc/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/subsys/ipc/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/ipc/ipc_service/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/ipc/ipc_service/backends/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/ipc/ipc_service/backends/Kconfig.icbmsg /home/miguel/ncs/v3.0.2/zephyr/subsys/ipc/ipc_service/backends/Kconfig.icmsg_me /home/miguel/ncs/v3.0.2/zephyr/subsys/ipc/ipc_service/backends/Kconfig.rpmsg /home/miguel/ncs/v3.0.2/zephyr/subsys/ipc/ipc_service/lib/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/ipc/ipc_service/lib/Kconfig.icmsg /home/miguel/ncs/v3.0.2/zephyr/subsys/ipc/rpmsg_service/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/jwt/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/llext/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/logging/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/subsys/logging/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/logging/Kconfig.filtering /home/miguel/ncs/v3.0.2/zephyr/subsys/logging/Kconfig.formatting /home/miguel/ncs/v3.0.2/zephyr/subsys/logging/Kconfig.links /home/miguel/ncs/v3.0.2/zephyr/subsys/logging/Kconfig.misc /home/miguel/ncs/v3.0.2/zephyr/subsys/logging/Kconfig.mode /home/miguel/ncs/v3.0.2/zephyr/subsys/logging/Kconfig.processing /home/miguel/ncs/v3.0.2/zephyr/subsys/logging/Kconfig.template.log_config /home/miguel/ncs/v3.0.2/zephyr/subsys/logging/Kconfig.template.log_config_inherit /home/miguel/ncs/v3.0.2/zephyr/subsys/logging/Kconfig.template.log_format_config /home/miguel/ncs/v3.0.2/zephyr/subsys/logging/backends/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/subsys/logging/backends/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/logging/backends/Kconfig.adsp /home/miguel/ncs/v3.0.2/zephyr/subsys/logging/backends/Kconfig.adsp_mtrace /home/miguel/ncs/v3.0.2/zephyr/subsys/logging/backends/Kconfig.ble /home/miguel/ncs/v3.0.2/zephyr/subsys/logging/backends/Kconfig.efi_console /home/miguel/ncs/v3.0.2/zephyr/subsys/logging/backends/Kconfig.fs /home/miguel/ncs/v3.0.2/zephyr/subsys/logging/backends/Kconfig.multidomain /home/miguel/ncs/v3.0.2/zephyr/subsys/logging/backends/Kconfig.native_posix /home/miguel/ncs/v3.0.2/zephyr/subsys/logging/backends/Kconfig.net /home/miguel/ncs/v3.0.2/zephyr/subsys/logging/backends/Kconfig.rtt /home/miguel/ncs/v3.0.2/zephyr/subsys/logging/backends/Kconfig.semihost /home/miguel/ncs/v3.0.2/zephyr/subsys/logging/backends/Kconfig.spinel /home/miguel/ncs/v3.0.2/zephyr/subsys/logging/backends/Kconfig.swo /home/miguel/ncs/v3.0.2/zephyr/subsys/logging/backends/Kconfig.uart /home/miguel/ncs/v3.0.2/zephyr/subsys/logging/backends/Kconfig.ws /home/miguel/ncs/v3.0.2/zephyr/subsys/logging/backends/Kconfig.xtensa_sim /home/miguel/ncs/v3.0.2/zephyr/subsys/logging/frontends/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/subsys/logging/frontends/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/lorawan/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/lorawan/nvm/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/lorawan/services/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/mem_mgmt/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/subsys/mem_mgmt/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/mgmt/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/subsys/mgmt/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/mgmt/ec_host_cmd/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/mgmt/ec_host_cmd/Kconfig.logging /home/miguel/ncs/v3.0.2/zephyr/subsys/mgmt/ec_host_cmd/backends/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/mgmt/hawkbit/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/mgmt/mcumgr/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/mgmt/mcumgr/grp/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/mgmt/mcumgr/grp/enum_mgmt/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/mgmt/mcumgr/grp/fs_mgmt/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/mgmt/mcumgr/grp/img_mgmt/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/mgmt/mcumgr/grp/img_mgmt_client/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/mgmt/mcumgr/grp/os_mgmt/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/mgmt/mcumgr/grp/os_mgmt_client/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/mgmt/mcumgr/grp/settings_mgmt/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/mgmt/mcumgr/grp/shell_mgmt/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/mgmt/mcumgr/grp/stat_mgmt/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/mgmt/mcumgr/grp/zephyr_basic/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/mgmt/mcumgr/mgmt/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/mgmt/mcumgr/smp/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/mgmt/mcumgr/smp_client/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/mgmt/mcumgr/transport/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/mgmt/mcumgr/transport/Kconfig.bluetooth /home/miguel/ncs/v3.0.2/zephyr/subsys/mgmt/mcumgr/transport/Kconfig.dummy /home/miguel/ncs/v3.0.2/zephyr/subsys/mgmt/mcumgr/transport/Kconfig.lorawan /home/miguel/ncs/v3.0.2/zephyr/subsys/mgmt/mcumgr/transport/Kconfig.shell /home/miguel/ncs/v3.0.2/zephyr/subsys/mgmt/mcumgr/transport/Kconfig.uart /home/miguel/ncs/v3.0.2/zephyr/subsys/mgmt/mcumgr/transport/Kconfig.udp /home/miguel/ncs/v3.0.2/zephyr/subsys/mgmt/osdp/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/mgmt/osdp/Kconfig.cp /home/miguel/ncs/v3.0.2/zephyr/subsys/mgmt/osdp/Kconfig.pd /home/miguel/ncs/v3.0.2/zephyr/subsys/mgmt/updatehub/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/modbus/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/subsys/modbus/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/modem/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/modem/backends/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/net/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/net/Kconfig.hostname /home/miguel/ncs/v3.0.2/zephyr/subsys/net/Kconfig.template.log_config.net /home/miguel/ncs/v3.0.2/zephyr/subsys/net/conn_mgr/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/net/ip/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/net/ip/Kconfig.debug /home/miguel/ncs/v3.0.2/zephyr/subsys/net/ip/Kconfig.ipv4 /home/miguel/ncs/v3.0.2/zephyr/subsys/net/ip/Kconfig.ipv6 /home/miguel/ncs/v3.0.2/zephyr/subsys/net/ip/Kconfig.mgmt /home/miguel/ncs/v3.0.2/zephyr/subsys/net/ip/Kconfig.stack /home/miguel/ncs/v3.0.2/zephyr/subsys/net/ip/Kconfig.stats /home/miguel/ncs/v3.0.2/zephyr/subsys/net/ip/Kconfig.tcp /home/miguel/ncs/v3.0.2/zephyr/subsys/net/l2/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/net/l2/canbus/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/net/l2/dummy/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/net/l2/dummy/any/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/net/l2/ethernet/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/net/l2/ethernet/gptp/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/net/l2/ethernet/lldp/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/net/l2/ieee802154/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/net/l2/ieee802154/Kconfig.radio /home/miguel/ncs/v3.0.2/zephyr/subsys/net/l2/openthread/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/net/l2/ppp/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/net/l2/virtual/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/net/l2/virtual/ipip/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/net/l2/wifi/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/net/lib/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/net/lib/capture/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/net/lib/coap/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/net/lib/config/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/net/lib/dhcpv4/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/net/lib/dhcpv6/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/net/lib/dns/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/net/lib/http/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/net/lib/lwm2m/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/net/lib/lwm2m/Kconfig.ipso /home/miguel/ncs/v3.0.2/zephyr/subsys/net/lib/lwm2m/Kconfig.ucifi /home/miguel/ncs/v3.0.2/zephyr/subsys/net/lib/mqtt/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/net/lib/mqtt_sn/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/net/lib/prometheus/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/net/lib/ptp/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/net/lib/sntp/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/net/lib/sockets/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/net/lib/socks/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/net/lib/tftp/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/net/lib/tls_credentials/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/net/lib/tls_credentials/Kconfig.shell /home/miguel/ncs/v3.0.2/zephyr/subsys/net/lib/trickle/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/net/lib/websocket/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/net/lib/wifi_credentials/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/net/lib/zperf/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/net/pkt_filter/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/pm/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/subsys/pm/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/pm/policy/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/subsys/pm/policy/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/portability/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/subsys/portability/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/portability/cmsis_rtos_v1/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/portability/cmsis_rtos_v2/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/profiling/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/profiling/perf/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/profiling/perf/backends/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/random/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/subsys/random/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/retention/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/retention/Kconfig.blinfo /home/miguel/ncs/v3.0.2/zephyr/subsys/rtio/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/subsys/rtio/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/rtio/Kconfig.workq /home/miguel/ncs/v3.0.2/zephyr/subsys/sd/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/subsys/sd/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/secure_storage/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/secure_storage/Kconfig.its_store /home/miguel/ncs/v3.0.2/zephyr/subsys/secure_storage/Kconfig.its_transform /home/miguel/ncs/v3.0.2/zephyr/subsys/sensing/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/sensing/sensor/hinge_angle/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/sensing/sensor/phy_3d_sensor/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/settings/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/shell/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/shell/Kconfig.template.shell_log_queue_size /home/miguel/ncs/v3.0.2/zephyr/subsys/shell/Kconfig.template.shell_log_queue_timeout /home/miguel/ncs/v3.0.2/zephyr/subsys/shell/backends/Kconfig.backends /home/miguel/ncs/v3.0.2/zephyr/subsys/shell/modules/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/shell/modules/kernel_service/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/shell/modules/kernel_service/thread/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/sip_svc/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/stats/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/subsys/stats/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/storage/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/subsys/storage/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/storage/flash_map/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/storage/stream/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/task_wdt/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/subsys/task_wdt/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/testsuite/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/subsys/testsuite/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/testsuite/Kconfig.defconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/testsuite/ztest/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/timing/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/tracing/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/subsys/tracing/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/tracing/sysview/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/usb/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device/class/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device/class/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device/class/Kconfig.bt /home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device/class/Kconfig.cdc /home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device/class/Kconfig.msc /home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device/class/Kconfig.template.composite_device_number /home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device/class/Kconfig.test /home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device/class/audio/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device/class/dfu/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device/class/hid/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device/class/netusb/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device_next/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device_next/app/Kconfig.cdc_acm_serial /home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device_next/class/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device_next/class/Kconfig.bt /home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device_next/class/Kconfig.cdc_acm /home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device_next/class/Kconfig.cdc_ecm /home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device_next/class/Kconfig.cdc_ncm /home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device_next/class/Kconfig.hid /home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device_next/class/Kconfig.loopback /home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device_next/class/Kconfig.msc /home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device_next/class/Kconfig.template.instances_count /home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device_next/class/Kconfig.uac2 /home/miguel/ncs/v3.0.2/zephyr/subsys/usb/host/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/usb/usb_c/Kconfig /home/miguel/ncs/v3.0.2/zephyr/subsys/zbus/Kconfig CMakeCache.txt CMakeFiles/3.21.0/CMakeASMCompiler.cmake CMakeFiles/3.21.0/CMakeCCompiler.cmake CMakeFiles/3.21.0/CMakeCXXCompiler.cmake CMakeFiles/3.21.0/CMakeSystem.cmake Kconfig/Kconfig.dts Kconfig/Kconfig.modules Kconfig/Kconfig.shield Kconfig/Kconfig.shield.defconfig Kconfig/arch/Kconfig Kconfig/boards/Kconfig Kconfig/boards/Kconfig.defconfig Kconfig/boards/Kconfig.phf000_board Kconfig/soc/Kconfig Kconfig/soc/Kconfig.defconfig Kconfig/soc/Kconfig.soc zephyr/.config zephyr/dts.cmake zephyr/include/generated/zephyr/autoconf.h zephyr/misc/generated/extra_kconfig_options.conf zephyr/misc/generated/syscalls_subdirs.txt zephyr/snippets_generated.cmake: phony + + +############################################# +# Clean additional files. + +build CMakeFiles/clean.additional: CLEAN_ADDITIONAL + + +############################################# +# Clean all the built files. + +build clean: CLEAN CMakeFiles/clean.additional + + +############################################# +# Print all primary targets available. + +build help: HELP + + +############################################# +# Make the all target the default. + +default all diff --git a/build/PHF000-Firmware/build_info.yml b/build/PHF000-Firmware/build_info.yml new file mode 100644 index 0000000..bf6e017 --- /dev/null +++ b/build/PHF000-Firmware/build_info.yml @@ -0,0 +1,53 @@ +cmake: + application: + configuration-dir: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware + source-dir: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware + board: + name: phf000_board + path: + - /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/boards/Mi_labs/phf000_board + qualifiers: nrf52833 + revision: + devicetree: + bindings-dirs: + - /home/miguel/ncs/v3.0.2/nrf/dts/bindings + - /home/miguel/ncs/v3.0.2/zephyr/dts/bindings + files: + - /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/boards/Mi_labs/phf000_board/phf000_board.dts + include-dirs: + - /home/miguel/ncs/v3.0.2/nrf/include + - /home/miguel/ncs/v3.0.2/nrf/dts/common + - /home/miguel/ncs/v3.0.2/nrf/dts/riscv + - /home/miguel/ncs/v3.0.2/nrf/dts/arm + - /home/miguel/ncs/v3.0.2/nrf/dts + - /home/miguel/ncs/v3.0.2/zephyr/include + - /home/miguel/ncs/v3.0.2/zephyr/include/zephyr + - /home/miguel/ncs/v3.0.2/zephyr/dts/common + - /home/miguel/ncs/v3.0.2/zephyr/dts/x86 + - /home/miguel/ncs/v3.0.2/zephyr/dts/xtensa + - /home/miguel/ncs/v3.0.2/zephyr/dts/sparc + - /home/miguel/ncs/v3.0.2/zephyr/dts/riscv + - /home/miguel/ncs/v3.0.2/zephyr/dts/posix + - /home/miguel/ncs/v3.0.2/zephyr/dts/nios2 + - /home/miguel/ncs/v3.0.2/zephyr/dts/arm64 + - /home/miguel/ncs/v3.0.2/zephyr/dts/arm + - /home/miguel/ncs/v3.0.2/zephyr/dts/arc + - /home/miguel/ncs/v3.0.2/zephyr/dts + kconfig: + files: + - /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/boards/Mi_labs/phf000_board/phf000_board_defconfig + - /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/prj.conf + - /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/extra_kconfig_options.conf + - /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/.config.sysbuild + user-files: + - prj.conf + toolchain: + name: zephyr + path: /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk + vendor-specific: + nordic: + svdfile: /home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk/nrf52833.svd + zephyr: + version: 4.0.99 + zephyr-base: /home/miguel/ncs/v3.0.2/zephyr +version: 0.1.0 diff --git a/build/PHF000-Firmware/build_info.yml.bak b/build/PHF000-Firmware/build_info.yml.bak new file mode 100644 index 0000000..bf6e017 --- /dev/null +++ b/build/PHF000-Firmware/build_info.yml.bak @@ -0,0 +1,53 @@ +cmake: + application: + configuration-dir: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware + source-dir: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware + board: + name: phf000_board + path: + - /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/boards/Mi_labs/phf000_board + qualifiers: nrf52833 + revision: + devicetree: + bindings-dirs: + - /home/miguel/ncs/v3.0.2/nrf/dts/bindings + - /home/miguel/ncs/v3.0.2/zephyr/dts/bindings + files: + - /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/boards/Mi_labs/phf000_board/phf000_board.dts + include-dirs: + - /home/miguel/ncs/v3.0.2/nrf/include + - /home/miguel/ncs/v3.0.2/nrf/dts/common + - /home/miguel/ncs/v3.0.2/nrf/dts/riscv + - /home/miguel/ncs/v3.0.2/nrf/dts/arm + - /home/miguel/ncs/v3.0.2/nrf/dts + - /home/miguel/ncs/v3.0.2/zephyr/include + - /home/miguel/ncs/v3.0.2/zephyr/include/zephyr + - /home/miguel/ncs/v3.0.2/zephyr/dts/common + - /home/miguel/ncs/v3.0.2/zephyr/dts/x86 + - /home/miguel/ncs/v3.0.2/zephyr/dts/xtensa + - /home/miguel/ncs/v3.0.2/zephyr/dts/sparc + - /home/miguel/ncs/v3.0.2/zephyr/dts/riscv + - /home/miguel/ncs/v3.0.2/zephyr/dts/posix + - /home/miguel/ncs/v3.0.2/zephyr/dts/nios2 + - /home/miguel/ncs/v3.0.2/zephyr/dts/arm64 + - /home/miguel/ncs/v3.0.2/zephyr/dts/arm + - /home/miguel/ncs/v3.0.2/zephyr/dts/arc + - /home/miguel/ncs/v3.0.2/zephyr/dts + kconfig: + files: + - /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/boards/Mi_labs/phf000_board/phf000_board_defconfig + - /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/prj.conf + - /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/extra_kconfig_options.conf + - /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/.config.sysbuild + user-files: + - prj.conf + toolchain: + name: zephyr + path: /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk + vendor-specific: + nordic: + svdfile: /home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk/nrf52833.svd + zephyr: + version: 4.0.99 + zephyr-base: /home/miguel/ncs/v3.0.2/zephyr +version: 0.1.0 diff --git a/build/PHF000-Firmware/cmake_install.cmake b/build/PHF000-Firmware/cmake_install.cmake new file mode 100644 index 0000000..758f621 --- /dev/null +++ b/build/PHF000-Firmware/cmake_install.cmake @@ -0,0 +1,54 @@ +# Install script for directory: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/cmake_install.cmake") +endif() + +if(CMAKE_INSTALL_COMPONENT) + set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") +else() + set(CMAKE_INSTALL_MANIFEST "install_manifest.txt") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +file(WRITE "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/${CMAKE_INSTALL_MANIFEST}" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") diff --git a/build/PHF000-Firmware/compile_commands.json b/build/PHF000-Firmware/compile_commands.json new file mode 100644 index 0000000..48a5ca1 --- /dev/null +++ b/build/PHF000-Firmware/compile_commands.json @@ -0,0 +1,682 @@ +[ +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/drivers/led -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/drivers/button -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/drivers/actuator -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/drivers/battery_adc -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/drivers/temperature -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/drivers/timer_count -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o CMakeFiles/app.dir/src/main.c.obj -c /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/src/main.c", + "file": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/src/main.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/drivers/led -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/drivers/button -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/drivers/actuator -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/drivers/battery_adc -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/drivers/temperature -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/drivers/timer_count -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o CMakeFiles/app.dir/drivers/led/led.c.obj -c /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/drivers/led/led.c", + "file": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/drivers/led/led.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/drivers/led -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/drivers/button -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/drivers/actuator -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/drivers/battery_adc -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/drivers/temperature -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/drivers/timer_count -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o CMakeFiles/app.dir/drivers/button/button.c.obj -c /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/drivers/button/button.c", + "file": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/drivers/button/button.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/drivers/led -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/drivers/button -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/drivers/actuator -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/drivers/battery_adc -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/drivers/temperature -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/drivers/timer_count -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o CMakeFiles/app.dir/drivers/actuator/actuator.c.obj -c /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/drivers/actuator/actuator.c", + "file": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/drivers/actuator/actuator.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/drivers/led -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/drivers/button -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/drivers/actuator -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/drivers/battery_adc -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/drivers/temperature -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/drivers/timer_count -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o CMakeFiles/app.dir/drivers/battery_adc/battery_adc.c.obj -c /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/drivers/battery_adc/battery_adc.c", + "file": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/drivers/battery_adc/battery_adc.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/drivers/led -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/drivers/button -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/drivers/actuator -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/drivers/battery_adc -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/drivers/temperature -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/drivers/timer_count -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o CMakeFiles/app.dir/drivers/temperature/temperature.c.obj -c /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/drivers/temperature/temperature.c", + "file": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/drivers/temperature/temperature.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/drivers/led -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/drivers/button -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/drivers/actuator -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/drivers/battery_adc -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/drivers/temperature -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/drivers/timer_count -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o CMakeFiles/app.dir/drivers/timer_count/timer_count.c.obj -c /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/drivers/timer_count/timer_count.c", + "file": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/drivers/timer_count/timer_count.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr/CMakeFiles/zephyr_final.dir/misc/empty_file.c.obj -c /home/miguel/ncs/v3.0.2/zephyr/misc/empty_file.c", + "file": "/home/miguel/ncs/v3.0.2/zephyr/misc/empty_file.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj -c /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/isr_tables.c", + "file": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/isr_tables.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr/CMakeFiles/zephyr.dir/lib/heap/heap.c.obj -c /home/miguel/ncs/v3.0.2/zephyr/lib/heap/heap.c", + "file": "/home/miguel/ncs/v3.0.2/zephyr/lib/heap/heap.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr/CMakeFiles/zephyr.dir/lib/os/cbprintf_packaged.c.obj -c /home/miguel/ncs/v3.0.2/zephyr/lib/os/cbprintf_packaged.c", + "file": "/home/miguel/ncs/v3.0.2/zephyr/lib/os/cbprintf_packaged.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr/CMakeFiles/zephyr.dir/lib/os/printk.c.obj -c /home/miguel/ncs/v3.0.2/zephyr/lib/os/printk.c", + "file": "/home/miguel/ncs/v3.0.2/zephyr/lib/os/printk.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr/CMakeFiles/zephyr.dir/lib/os/sem.c.obj -c /home/miguel/ncs/v3.0.2/zephyr/lib/os/sem.c", + "file": "/home/miguel/ncs/v3.0.2/zephyr/lib/os/sem.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr/CMakeFiles/zephyr.dir/lib/os/thread_entry.c.obj -c /home/miguel/ncs/v3.0.2/zephyr/lib/os/thread_entry.c", + "file": "/home/miguel/ncs/v3.0.2/zephyr/lib/os/thread_entry.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr/CMakeFiles/zephyr.dir/lib/os/cbprintf_complete.c.obj -c /home/miguel/ncs/v3.0.2/zephyr/lib/os/cbprintf_complete.c", + "file": "/home/miguel/ncs/v3.0.2/zephyr/lib/os/cbprintf_complete.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr/CMakeFiles/zephyr.dir/lib/os/assert.c.obj -c /home/miguel/ncs/v3.0.2/zephyr/lib/os/assert.c", + "file": "/home/miguel/ncs/v3.0.2/zephyr/lib/os/assert.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr/CMakeFiles/zephyr.dir/lib/utils/dec.c.obj -c /home/miguel/ncs/v3.0.2/zephyr/lib/utils/dec.c", + "file": "/home/miguel/ncs/v3.0.2/zephyr/lib/utils/dec.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr/CMakeFiles/zephyr.dir/lib/utils/hex.c.obj -c /home/miguel/ncs/v3.0.2/zephyr/lib/utils/hex.c", + "file": "/home/miguel/ncs/v3.0.2/zephyr/lib/utils/hex.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr/CMakeFiles/zephyr.dir/lib/utils/rb.c.obj -c /home/miguel/ncs/v3.0.2/zephyr/lib/utils/rb.c", + "file": "/home/miguel/ncs/v3.0.2/zephyr/lib/utils/rb.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr/CMakeFiles/zephyr.dir/lib/utils/timeutil.c.obj -c /home/miguel/ncs/v3.0.2/zephyr/lib/utils/timeutil.c", + "file": "/home/miguel/ncs/v3.0.2/zephyr/lib/utils/timeutil.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr/CMakeFiles/zephyr.dir/lib/utils/bitarray.c.obj -c /home/miguel/ncs/v3.0.2/zephyr/lib/utils/bitarray.c", + "file": "/home/miguel/ncs/v3.0.2/zephyr/lib/utils/bitarray.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr/CMakeFiles/zephyr.dir/lib/utils/onoff.c.obj -c /home/miguel/ncs/v3.0.2/zephyr/lib/utils/onoff.c", + "file": "/home/miguel/ncs/v3.0.2/zephyr/lib/utils/onoff.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr/CMakeFiles/zephyr.dir/lib/utils/notify.c.obj -c /home/miguel/ncs/v3.0.2/zephyr/lib/utils/notify.c", + "file": "/home/miguel/ncs/v3.0.2/zephyr/lib/utils/notify.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr/CMakeFiles/zephyr.dir/lib/utils/ring_buffer.c.obj -c /home/miguel/ncs/v3.0.2/zephyr/lib/utils/ring_buffer.c", + "file": "/home/miguel/ncs/v3.0.2/zephyr/lib/utils/ring_buffer.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr/CMakeFiles/zephyr.dir/lib/utils/last_section_id.c.obj -c /home/miguel/ncs/v3.0.2/zephyr/lib/utils/last_section_id.c", + "file": "/home/miguel/ncs/v3.0.2/zephyr/lib/utils/last_section_id.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr/CMakeFiles/zephyr.dir/misc/generated/configs.c.obj -c /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/configs.c", + "file": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/configs.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr/CMakeFiles/zephyr.dir/subsys/mem_mgmt/mem_attr.c.obj -c /home/miguel/ncs/v3.0.2/zephyr/subsys/mem_mgmt/mem_attr.c", + "file": "/home/miguel/ncs/v3.0.2/zephyr/subsys/mem_mgmt/mem_attr.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr/CMakeFiles/zephyr.dir/subsys/tracing/tracing_none.c.obj -c /home/miguel/ncs/v3.0.2/zephyr/subsys/tracing/tracing_none.c", + "file": "/home/miguel/ncs/v3.0.2/zephyr/subsys/tracing/tracing_none.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr/CMakeFiles/zephyr.dir/subsys/usb/device/usb_device.c.obj -c /home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device/usb_device.c", + "file": "/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device/usb_device.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr/CMakeFiles/zephyr.dir/subsys/usb/device/usb_descriptor.c.obj -c /home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device/usb_descriptor.c", + "file": "/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device/usb_descriptor.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr/CMakeFiles/zephyr.dir/subsys/usb/device/usb_transfer.c.obj -c /home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device/usb_transfer.c", + "file": "/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device/usb_transfer.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr/CMakeFiles/zephyr.dir/subsys/usb/device/class/cdc_acm.c.obj -c /home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device/class/cdc_acm.c", + "file": "/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device/class/cdc_acm.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr/CMakeFiles/zephyr.dir/subsys/usb/device/usb_work_q.c.obj -c /home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device/usb_work_q.c", + "file": "/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device/usb_work_q.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr/CMakeFiles/zephyr.dir/home/miguel/ncs/v3.0.2/nrf/lib/boot_banner/banner.c.obj -c /home/miguel/ncs/v3.0.2/nrf/lib/boot_banner/banner.c", + "file": "/home/miguel/ncs/v3.0.2/nrf/lib/boot_banner/banner.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr/CMakeFiles/zephyr.dir/home/miguel/ncs/v3.0.2/nrf/subsys/partition_manager/flash_map_partition_manager.c.obj -c /home/miguel/ncs/v3.0.2/nrf/subsys/partition_manager/flash_map_partition_manager.c", + "file": "/home/miguel/ncs/v3.0.2/nrf/subsys/partition_manager/flash_map_partition_manager.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr/CMakeFiles/zephyr_pre0.dir/misc/empty_file.c.obj -c /home/miguel/ncs/v3.0.2/zephyr/misc/empty_file.c", + "file": "/home/miguel/ncs/v3.0.2/zephyr/misc/empty_file.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -fno-lto -o zephyr/CMakeFiles/offsets.dir/arch/arm/core/offsets/offsets.c.obj -c /home/miguel/ncs/v3.0.2/zephyr/arch/arm/core/offsets/offsets.c", + "file": "/home/miguel/ncs/v3.0.2/zephyr/arch/arm/core/offsets/offsets.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr/arch/common/CMakeFiles/isr_tables.dir/isr_tables.c.obj -c /home/miguel/ncs/v3.0.2/zephyr/arch/common/isr_tables.c", + "file": "/home/miguel/ncs/v3.0.2/zephyr/arch/common/isr_tables.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/common/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr/arch/common/CMakeFiles/arch__common.dir/sw_isr_common.c.obj -c /home/miguel/ncs/v3.0.2/zephyr/arch/common/sw_isr_common.c", + "file": "/home/miguel/ncs/v3.0.2/zephyr/arch/common/sw_isr_common.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr/arch/arch/arm/core/CMakeFiles/arch__arm__core.dir/fatal.c.obj -c /home/miguel/ncs/v3.0.2/zephyr/arch/arm/core/fatal.c", + "file": "/home/miguel/ncs/v3.0.2/zephyr/arch/arm/core/fatal.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr/arch/arch/arm/core/CMakeFiles/arch__arm__core.dir/nmi.c.obj -c /home/miguel/ncs/v3.0.2/zephyr/arch/arm/core/nmi.c", + "file": "/home/miguel/ncs/v3.0.2/zephyr/arch/arm/core/nmi.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -Wshadow -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -xassembler-with-cpp -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -D_ASMLANGUAGE -Wno-unused-but-set-variable -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -o zephyr/arch/arch/arm/core/CMakeFiles/arch__arm__core.dir/nmi_on_reset.S.obj -c /home/miguel/ncs/v3.0.2/zephyr/arch/arm/core/nmi_on_reset.S", + "file": "/home/miguel/ncs/v3.0.2/zephyr/arch/arm/core/nmi_on_reset.S" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr/arch/arch/arm/core/CMakeFiles/arch__arm__core.dir/tls.c.obj -c /home/miguel/ncs/v3.0.2/zephyr/arch/arm/core/tls.c", + "file": "/home/miguel/ncs/v3.0.2/zephyr/arch/arm/core/tls.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/exc_exit.c.obj -c /home/miguel/ncs/v3.0.2/zephyr/arch/arm/core/cortex_m/exc_exit.c", + "file": "/home/miguel/ncs/v3.0.2/zephyr/arch/arm/core/cortex_m/exc_exit.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/fault.c.obj -c /home/miguel/ncs/v3.0.2/zephyr/arch/arm/core/cortex_m/fault.c", + "file": "/home/miguel/ncs/v3.0.2/zephyr/arch/arm/core/cortex_m/fault.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -Wshadow -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -xassembler-with-cpp -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -D_ASMLANGUAGE -Wno-unused-but-set-variable -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -o zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/fault_s.S.obj -c /home/miguel/ncs/v3.0.2/zephyr/arch/arm/core/cortex_m/fault_s.S", + "file": "/home/miguel/ncs/v3.0.2/zephyr/arch/arm/core/cortex_m/fault_s.S" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/fpu.c.obj -c /home/miguel/ncs/v3.0.2/zephyr/arch/arm/core/cortex_m/fpu.c", + "file": "/home/miguel/ncs/v3.0.2/zephyr/arch/arm/core/cortex_m/fpu.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -Wshadow -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -xassembler-with-cpp -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -D_ASMLANGUAGE -Wno-unused-but-set-variable -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -o zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/reset.S.obj -c /home/miguel/ncs/v3.0.2/zephyr/arch/arm/core/cortex_m/reset.S", + "file": "/home/miguel/ncs/v3.0.2/zephyr/arch/arm/core/cortex_m/reset.S" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/scb.c.obj -c /home/miguel/ncs/v3.0.2/zephyr/arch/arm/core/cortex_m/scb.c", + "file": "/home/miguel/ncs/v3.0.2/zephyr/arch/arm/core/cortex_m/scb.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/thread_abort.c.obj -c /home/miguel/ncs/v3.0.2/zephyr/arch/arm/core/cortex_m/thread_abort.c", + "file": "/home/miguel/ncs/v3.0.2/zephyr/arch/arm/core/cortex_m/thread_abort.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -Wshadow -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -xassembler-with-cpp -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -D_ASMLANGUAGE -Wno-unused-but-set-variable -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -o zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/vector_table.S.obj -c /home/miguel/ncs/v3.0.2/zephyr/arch/arm/core/cortex_m/vector_table.S", + "file": "/home/miguel/ncs/v3.0.2/zephyr/arch/arm/core/cortex_m/vector_table.S" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -Wshadow -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -xassembler-with-cpp -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -D_ASMLANGUAGE -Wno-unused-but-set-variable -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -o zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/swap_helper.S.obj -c /home/miguel/ncs/v3.0.2/zephyr/arch/arm/core/cortex_m/swap_helper.S", + "file": "/home/miguel/ncs/v3.0.2/zephyr/arch/arm/core/cortex_m/swap_helper.S" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/irq_manage.c.obj -c /home/miguel/ncs/v3.0.2/zephyr/arch/arm/core/cortex_m/irq_manage.c", + "file": "/home/miguel/ncs/v3.0.2/zephyr/arch/arm/core/cortex_m/irq_manage.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/prep_c.c.obj -c /home/miguel/ncs/v3.0.2/zephyr/arch/arm/core/cortex_m/prep_c.c", + "file": "/home/miguel/ncs/v3.0.2/zephyr/arch/arm/core/cortex_m/prep_c.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/thread.c.obj -c /home/miguel/ncs/v3.0.2/zephyr/arch/arm/core/cortex_m/thread.c", + "file": "/home/miguel/ncs/v3.0.2/zephyr/arch/arm/core/cortex_m/thread.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/cpu_idle.c.obj -c /home/miguel/ncs/v3.0.2/zephyr/arch/arm/core/cortex_m/cpu_idle.c", + "file": "/home/miguel/ncs/v3.0.2/zephyr/arch/arm/core/cortex_m/cpu_idle.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/irq_init.c.obj -c /home/miguel/ncs/v3.0.2/zephyr/arch/arm/core/cortex_m/irq_init.c", + "file": "/home/miguel/ncs/v3.0.2/zephyr/arch/arm/core/cortex_m/irq_init.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/isr_wrapper.c.obj -c /home/miguel/ncs/v3.0.2/zephyr/arch/arm/core/cortex_m/isr_wrapper.c", + "file": "/home/miguel/ncs/v3.0.2/zephyr/arch/arm/core/cortex_m/isr_wrapper.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -Wshadow -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -xassembler-with-cpp -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -D_ASMLANGUAGE -Wno-unused-but-set-variable -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -o zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/__aeabi_read_tp.S.obj -c /home/miguel/ncs/v3.0.2/zephyr/arch/arm/core/cortex_m/__aeabi_read_tp.S", + "file": "/home/miguel/ncs/v3.0.2/zephyr/arch/arm/core/cortex_m/__aeabi_read_tp.S" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/core/mpu/cortex_m -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr/arch/arch/arm/core/mpu/CMakeFiles/arch__arm__core__mpu.dir/arm_core_mpu.c.obj -c /home/miguel/ncs/v3.0.2/zephyr/arch/arm/core/mpu/arm_core_mpu.c", + "file": "/home/miguel/ncs/v3.0.2/zephyr/arch/arm/core/mpu/arm_core_mpu.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/core/mpu/cortex_m -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr/arch/arch/arm/core/mpu/CMakeFiles/arch__arm__core__mpu.dir/arm_mpu.c.obj -c /home/miguel/ncs/v3.0.2/zephyr/arch/arm/core/mpu/arm_mpu.c", + "file": "/home/miguel/ncs/v3.0.2/zephyr/arch/arm/core/mpu/arm_mpu.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/core/mpu/cortex_m -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr/arch/arch/arm/core/mpu/CMakeFiles/arch__arm__core__mpu.dir/arm_mpu_regions.c.obj -c /home/miguel/ncs/v3.0.2/zephyr/arch/arm/core/mpu/arm_mpu_regions.c", + "file": "/home/miguel/ncs/v3.0.2/zephyr/arch/arm/core/mpu/arm_mpu_regions.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -fno-lto -o zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/assert.c.obj -c /home/miguel/ncs/v3.0.2/zephyr/lib/libc/picolibc/assert.c", + "file": "/home/miguel/ncs/v3.0.2/zephyr/lib/libc/picolibc/assert.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -fno-lto -o zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/cbprintf.c.obj -c /home/miguel/ncs/v3.0.2/zephyr/lib/libc/picolibc/cbprintf.c", + "file": "/home/miguel/ncs/v3.0.2/zephyr/lib/libc/picolibc/cbprintf.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -fno-lto -o zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/chk_fail.c.obj -c /home/miguel/ncs/v3.0.2/zephyr/lib/libc/picolibc/chk_fail.c", + "file": "/home/miguel/ncs/v3.0.2/zephyr/lib/libc/picolibc/chk_fail.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -fno-lto -o zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/errno_wrap.c.obj -c /home/miguel/ncs/v3.0.2/zephyr/lib/libc/picolibc/errno_wrap.c", + "file": "/home/miguel/ncs/v3.0.2/zephyr/lib/libc/picolibc/errno_wrap.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -fno-lto -o zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/exit.c.obj -c /home/miguel/ncs/v3.0.2/zephyr/lib/libc/picolibc/exit.c", + "file": "/home/miguel/ncs/v3.0.2/zephyr/lib/libc/picolibc/exit.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -fno-lto -o zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/locks.c.obj -c /home/miguel/ncs/v3.0.2/zephyr/lib/libc/picolibc/locks.c", + "file": "/home/miguel/ncs/v3.0.2/zephyr/lib/libc/picolibc/locks.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -fno-lto -o zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/stdio.c.obj -c /home/miguel/ncs/v3.0.2/zephyr/lib/libc/picolibc/stdio.c", + "file": "/home/miguel/ncs/v3.0.2/zephyr/lib/libc/picolibc/stdio.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -fno-builtin-malloc -o zephyr/lib/libc/common/CMakeFiles/lib__libc__common.dir/source/stdlib/abort.c.obj -c /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/source/stdlib/abort.c", + "file": "/home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/source/stdlib/abort.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -fno-builtin-malloc -o zephyr/lib/libc/common/CMakeFiles/lib__libc__common.dir/source/stdlib/malloc.c.obj -c /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/source/stdlib/malloc.c", + "file": "/home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/source/stdlib/malloc.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -U_POSIX_C_SOURCE -D_POSIX_C_SOURCE=200809L -o zephyr/lib/posix/options/CMakeFiles/lib__posix__options.dir/home/miguel/ncs/v3.0.2/zephyr/misc/empty_file.c.obj -c /home/miguel/ncs/v3.0.2/zephyr/misc/empty_file.c", + "file": "/home/miguel/ncs/v3.0.2/zephyr/misc/empty_file.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr/soc/soc/nrf52833/CMakeFiles/soc__nordic.dir/validate_base_addresses.c.obj -c /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/validate_base_addresses.c", + "file": "/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/validate_base_addresses.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -include /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/adc/adc.h -include /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/dt-util.h -include /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/gpio/gpio.h -include /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/i2c/i2c.h -include /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/input/input-event-codes.h -include /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/pinctrl/nrf-pinctrl.h -include /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/pwm/pwm.h -include /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/adc/nrf-saadc-v3.h -include /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/adc/nrf-saadc-v2.h -include /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/adc/nrf-saadc.h -include /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/regulator/nrf5x.h -o zephyr/soc/soc/nrf52833/CMakeFiles/soc__nordic.dir/validate_binding_headers.c.obj -c /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/validate_binding_headers.c", + "file": "/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/validate_binding_headers.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr/soc/soc/nrf52833/CMakeFiles/soc__nordic.dir/validate_enabled_instances.c.obj -c /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/validate_enabled_instances.c", + "file": "/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/validate_enabled_instances.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr/soc/soc/nrf52833/CMakeFiles/soc__nordic.dir/nrf52/soc.c.obj -c /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/soc.c", + "file": "/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/soc.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr/soc/soc/nrf52833/CMakeFiles/soc__nordic.dir/common/reboot.c.obj -c /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/reboot.c", + "file": "/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/reboot.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/miguel/ncs/v3.0.2/zephyr/arch/common/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr/drivers/interrupt_controller/CMakeFiles/drivers__interrupt_controller.dir/home/miguel/ncs/v3.0.2/zephyr/misc/empty_file.c.obj -c /home/miguel/ncs/v3.0.2/zephyr/misc/empty_file.c", + "file": "/home/miguel/ncs/v3.0.2/zephyr/misc/empty_file.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr/drivers/usb/device/CMakeFiles/drivers__usb__device.dir/usb_dc_nrfx.c.obj -c /home/miguel/ncs/v3.0.2/zephyr/drivers/usb/device/usb_dc_nrfx.c", + "file": "/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/device/usb_dc_nrfx.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr/drivers/usb/common/nrf_usbd_common/CMakeFiles/drivers__usb__common__nrf_usbd_common.dir/nrf_usbd_common.c.obj -c /home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/nrf_usbd_common.c", + "file": "/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/nrf_usbd_common.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr/drivers/adc/CMakeFiles/drivers__adc.dir/adc_common.c.obj -c /home/miguel/ncs/v3.0.2/zephyr/drivers/adc/adc_common.c", + "file": "/home/miguel/ncs/v3.0.2/zephyr/drivers/adc/adc_common.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr/drivers/adc/CMakeFiles/drivers__adc.dir/adc_nrfx_saadc.c.obj -c /home/miguel/ncs/v3.0.2/zephyr/drivers/adc/adc_nrfx_saadc.c", + "file": "/home/miguel/ncs/v3.0.2/zephyr/drivers/adc/adc_nrfx_saadc.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr/drivers/clock_control/CMakeFiles/drivers__clock_control.dir/clock_control_nrf.c.obj -c /home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/clock_control_nrf.c", + "file": "/home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/clock_control_nrf.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr/drivers/console/CMakeFiles/drivers__console.dir/uart_console.c.obj -c /home/miguel/ncs/v3.0.2/zephyr/drivers/console/uart_console.c", + "file": "/home/miguel/ncs/v3.0.2/zephyr/drivers/console/uart_console.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr/drivers/gpio/CMakeFiles/drivers__gpio.dir/gpio_nrfx.c.obj -c /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/gpio_nrfx.c", + "file": "/home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/gpio_nrfx.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr/drivers/hwinfo/CMakeFiles/drivers__hwinfo.dir/hwinfo_weak_impl.c.obj -c /home/miguel/ncs/v3.0.2/zephyr/drivers/hwinfo/hwinfo_weak_impl.c", + "file": "/home/miguel/ncs/v3.0.2/zephyr/drivers/hwinfo/hwinfo_weak_impl.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr/drivers/hwinfo/CMakeFiles/drivers__hwinfo.dir/hwinfo_nrf.c.obj -c /home/miguel/ncs/v3.0.2/zephyr/drivers/hwinfo/hwinfo_nrf.c", + "file": "/home/miguel/ncs/v3.0.2/zephyr/drivers/hwinfo/hwinfo_nrf.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr/drivers/pinctrl/CMakeFiles/drivers__pinctrl.dir/common.c.obj -c /home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/common.c", + "file": "/home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/common.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr/drivers/pinctrl/CMakeFiles/drivers__pinctrl.dir/pinctrl_nrf.c.obj -c /home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/pinctrl_nrf.c", + "file": "/home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/pinctrl_nrf.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr/drivers/sensor/CMakeFiles/drivers__sensor.dir/home/miguel/ncs/v3.0.2/zephyr/misc/empty_file.c.obj -c /home/miguel/ncs/v3.0.2/zephyr/misc/empty_file.c", + "file": "/home/miguel/ncs/v3.0.2/zephyr/misc/empty_file.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr/drivers/sensor/nordic/temp/CMakeFiles/drivers__sensor__nordic__temp.dir/temp_nrf5.c.obj -c /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/nordic/temp/temp_nrf5.c", + "file": "/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/nordic/temp/temp_nrf5.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr/drivers/serial/CMakeFiles/drivers__serial.dir/home/miguel/ncs/v3.0.2/zephyr/misc/empty_file.c.obj -c /home/miguel/ncs/v3.0.2/zephyr/misc/empty_file.c", + "file": "/home/miguel/ncs/v3.0.2/zephyr/misc/empty_file.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr/drivers/timer/CMakeFiles/drivers__timer.dir/sys_clock_init.c.obj -c /home/miguel/ncs/v3.0.2/zephyr/drivers/timer/sys_clock_init.c", + "file": "/home/miguel/ncs/v3.0.2/zephyr/drivers/timer/sys_clock_init.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr/drivers/timer/CMakeFiles/drivers__timer.dir/nrf_rtc_timer.c.obj -c /home/miguel/ncs/v3.0.2/zephyr/drivers/timer/nrf_rtc_timer.c", + "file": "/home/miguel/ncs/v3.0.2/zephyr/drivers/timer/nrf_rtc_timer.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCONFIG_GPIO_AS_PINRESET -DCONFIG_NFCT_PINS_AS_GPIOS -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DNRF_CONFIG_NFCT_PINS_AS_GPIOS -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o modules/hal_nordic/modules/hal_nordic/nrfx/CMakeFiles/modules__hal_nordic__nrfx.dir/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk/system_nrf52833.c.obj -c /home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk/system_nrf52833.c", + "file": "/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk/system_nrf52833.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCONFIG_GPIO_AS_PINRESET -DCONFIG_NFCT_PINS_AS_GPIOS -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DNRF_CONFIG_NFCT_PINS_AS_GPIOS -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o modules/hal_nordic/modules/hal_nordic/nrfx/CMakeFiles/modules__hal_nordic__nrfx.dir/nrfx_glue.c.obj -c /home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/nrfx_glue.c", + "file": "/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/nrfx_glue.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCONFIG_GPIO_AS_PINRESET -DCONFIG_NFCT_PINS_AS_GPIOS -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DNRF_CONFIG_NFCT_PINS_AS_GPIOS -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o modules/hal_nordic/modules/hal_nordic/nrfx/CMakeFiles/modules__hal_nordic__nrfx.dir/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/helpers/nrfx_flag32_allocator.c.obj -c /home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/helpers/nrfx_flag32_allocator.c", + "file": "/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/helpers/nrfx_flag32_allocator.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCONFIG_GPIO_AS_PINRESET -DCONFIG_NFCT_PINS_AS_GPIOS -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DNRF_CONFIG_NFCT_PINS_AS_GPIOS -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o modules/hal_nordic/modules/hal_nordic/nrfx/CMakeFiles/modules__hal_nordic__nrfx.dir/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/helpers/nrfx_ram_ctrl.c.obj -c /home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/helpers/nrfx_ram_ctrl.c", + "file": "/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/helpers/nrfx_ram_ctrl.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCONFIG_GPIO_AS_PINRESET -DCONFIG_NFCT_PINS_AS_GPIOS -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DNRF_CONFIG_NFCT_PINS_AS_GPIOS -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o modules/hal_nordic/modules/hal_nordic/nrfx/CMakeFiles/modules__hal_nordic__nrfx.dir/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/src/nrfx_clock.c.obj -c /home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/src/nrfx_clock.c", + "file": "/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/src/nrfx_clock.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCONFIG_GPIO_AS_PINRESET -DCONFIG_NFCT_PINS_AS_GPIOS -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DNRF_CONFIG_NFCT_PINS_AS_GPIOS -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o modules/hal_nordic/modules/hal_nordic/nrfx/CMakeFiles/modules__hal_nordic__nrfx.dir/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/src/nrfx_gpiote.c.obj -c /home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/src/nrfx_gpiote.c", + "file": "/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/src/nrfx_gpiote.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCONFIG_GPIO_AS_PINRESET -DCONFIG_NFCT_PINS_AS_GPIOS -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DNRF_CONFIG_NFCT_PINS_AS_GPIOS -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o modules/hal_nordic/modules/hal_nordic/nrfx/CMakeFiles/modules__hal_nordic__nrfx.dir/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/src/nrfx_power.c.obj -c /home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/src/nrfx_power.c", + "file": "/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/src/nrfx_power.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCONFIG_GPIO_AS_PINRESET -DCONFIG_NFCT_PINS_AS_GPIOS -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DNRF_CONFIG_NFCT_PINS_AS_GPIOS -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o modules/hal_nordic/modules/hal_nordic/nrfx/CMakeFiles/modules__hal_nordic__nrfx.dir/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/src/nrfx_temp.c.obj -c /home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/src/nrfx_temp.c", + "file": "/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/src/nrfx_temp.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o modules/segger/CMakeFiles/modules__segger.dir/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER/SEGGER_RTT.c.obj -c /home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER/SEGGER_RTT.c", + "file": "/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER/SEGGER_RTT.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o modules/segger/CMakeFiles/modules__segger.dir/SEGGER_RTT_zephyr.c.obj -c /home/miguel/ncs/v3.0.2/zephyr/modules/segger/SEGGER_RTT_zephyr.c", + "file": "/home/miguel/ncs/v3.0.2/zephyr/modules/segger/SEGGER_RTT_zephyr.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr/kernel/CMakeFiles/kernel.dir/main_weak.c.obj -c /home/miguel/ncs/v3.0.2/zephyr/kernel/main_weak.c", + "file": "/home/miguel/ncs/v3.0.2/zephyr/kernel/main_weak.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr/kernel/CMakeFiles/kernel.dir/banner.c.obj -c /home/miguel/ncs/v3.0.2/zephyr/kernel/banner.c", + "file": "/home/miguel/ncs/v3.0.2/zephyr/kernel/banner.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr/kernel/CMakeFiles/kernel.dir/busy_wait.c.obj -c /home/miguel/ncs/v3.0.2/zephyr/kernel/busy_wait.c", + "file": "/home/miguel/ncs/v3.0.2/zephyr/kernel/busy_wait.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr/kernel/CMakeFiles/kernel.dir/device.c.obj -c /home/miguel/ncs/v3.0.2/zephyr/kernel/device.c", + "file": "/home/miguel/ncs/v3.0.2/zephyr/kernel/device.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr/kernel/CMakeFiles/kernel.dir/errno.c.obj -c /home/miguel/ncs/v3.0.2/zephyr/kernel/errno.c", + "file": "/home/miguel/ncs/v3.0.2/zephyr/kernel/errno.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr/kernel/CMakeFiles/kernel.dir/fatal.c.obj -c /home/miguel/ncs/v3.0.2/zephyr/kernel/fatal.c", + "file": "/home/miguel/ncs/v3.0.2/zephyr/kernel/fatal.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr/kernel/CMakeFiles/kernel.dir/init.c.obj -c /home/miguel/ncs/v3.0.2/zephyr/kernel/init.c", + "file": "/home/miguel/ncs/v3.0.2/zephyr/kernel/init.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr/kernel/CMakeFiles/kernel.dir/init_static.c.obj -c /home/miguel/ncs/v3.0.2/zephyr/kernel/init_static.c", + "file": "/home/miguel/ncs/v3.0.2/zephyr/kernel/init_static.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr/kernel/CMakeFiles/kernel.dir/kheap.c.obj -c /home/miguel/ncs/v3.0.2/zephyr/kernel/kheap.c", + "file": "/home/miguel/ncs/v3.0.2/zephyr/kernel/kheap.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr/kernel/CMakeFiles/kernel.dir/mem_slab.c.obj -c /home/miguel/ncs/v3.0.2/zephyr/kernel/mem_slab.c", + "file": "/home/miguel/ncs/v3.0.2/zephyr/kernel/mem_slab.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr/kernel/CMakeFiles/kernel.dir/float.c.obj -c /home/miguel/ncs/v3.0.2/zephyr/kernel/float.c", + "file": "/home/miguel/ncs/v3.0.2/zephyr/kernel/float.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr/kernel/CMakeFiles/kernel.dir/version.c.obj -c /home/miguel/ncs/v3.0.2/zephyr/kernel/version.c", + "file": "/home/miguel/ncs/v3.0.2/zephyr/kernel/version.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr/kernel/CMakeFiles/kernel.dir/idle.c.obj -c /home/miguel/ncs/v3.0.2/zephyr/kernel/idle.c", + "file": "/home/miguel/ncs/v3.0.2/zephyr/kernel/idle.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr/kernel/CMakeFiles/kernel.dir/mailbox.c.obj -c /home/miguel/ncs/v3.0.2/zephyr/kernel/mailbox.c", + "file": "/home/miguel/ncs/v3.0.2/zephyr/kernel/mailbox.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr/kernel/CMakeFiles/kernel.dir/msg_q.c.obj -c /home/miguel/ncs/v3.0.2/zephyr/kernel/msg_q.c", + "file": "/home/miguel/ncs/v3.0.2/zephyr/kernel/msg_q.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr/kernel/CMakeFiles/kernel.dir/mutex.c.obj -c /home/miguel/ncs/v3.0.2/zephyr/kernel/mutex.c", + "file": "/home/miguel/ncs/v3.0.2/zephyr/kernel/mutex.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr/kernel/CMakeFiles/kernel.dir/queue.c.obj -c /home/miguel/ncs/v3.0.2/zephyr/kernel/queue.c", + "file": "/home/miguel/ncs/v3.0.2/zephyr/kernel/queue.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr/kernel/CMakeFiles/kernel.dir/sem.c.obj -c /home/miguel/ncs/v3.0.2/zephyr/kernel/sem.c", + "file": "/home/miguel/ncs/v3.0.2/zephyr/kernel/sem.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr/kernel/CMakeFiles/kernel.dir/stack.c.obj -c /home/miguel/ncs/v3.0.2/zephyr/kernel/stack.c", + "file": "/home/miguel/ncs/v3.0.2/zephyr/kernel/stack.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr/kernel/CMakeFiles/kernel.dir/system_work_q.c.obj -c /home/miguel/ncs/v3.0.2/zephyr/kernel/system_work_q.c", + "file": "/home/miguel/ncs/v3.0.2/zephyr/kernel/system_work_q.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr/kernel/CMakeFiles/kernel.dir/work.c.obj -c /home/miguel/ncs/v3.0.2/zephyr/kernel/work.c", + "file": "/home/miguel/ncs/v3.0.2/zephyr/kernel/work.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr/kernel/CMakeFiles/kernel.dir/condvar.c.obj -c /home/miguel/ncs/v3.0.2/zephyr/kernel/condvar.c", + "file": "/home/miguel/ncs/v3.0.2/zephyr/kernel/condvar.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr/kernel/CMakeFiles/kernel.dir/priority_queues.c.obj -c /home/miguel/ncs/v3.0.2/zephyr/kernel/priority_queues.c", + "file": "/home/miguel/ncs/v3.0.2/zephyr/kernel/priority_queues.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr/kernel/CMakeFiles/kernel.dir/thread.c.obj -c /home/miguel/ncs/v3.0.2/zephyr/kernel/thread.c", + "file": "/home/miguel/ncs/v3.0.2/zephyr/kernel/thread.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr/kernel/CMakeFiles/kernel.dir/sched.c.obj -c /home/miguel/ncs/v3.0.2/zephyr/kernel/sched.c", + "file": "/home/miguel/ncs/v3.0.2/zephyr/kernel/sched.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr/kernel/CMakeFiles/kernel.dir/timeslicing.c.obj -c /home/miguel/ncs/v3.0.2/zephyr/kernel/timeslicing.c", + "file": "/home/miguel/ncs/v3.0.2/zephyr/kernel/timeslicing.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr/kernel/CMakeFiles/kernel.dir/spinlock_validate.c.obj -c /home/miguel/ncs/v3.0.2/zephyr/kernel/spinlock_validate.c", + "file": "/home/miguel/ncs/v3.0.2/zephyr/kernel/spinlock_validate.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr/kernel/CMakeFiles/kernel.dir/xip.c.obj -c /home/miguel/ncs/v3.0.2/zephyr/kernel/xip.c", + "file": "/home/miguel/ncs/v3.0.2/zephyr/kernel/xip.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr/kernel/CMakeFiles/kernel.dir/timeout.c.obj -c /home/miguel/ncs/v3.0.2/zephyr/kernel/timeout.c", + "file": "/home/miguel/ncs/v3.0.2/zephyr/kernel/timeout.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr/kernel/CMakeFiles/kernel.dir/timer.c.obj -c /home/miguel/ncs/v3.0.2/zephyr/kernel/timer.c", + "file": "/home/miguel/ncs/v3.0.2/zephyr/kernel/timer.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr/kernel/CMakeFiles/kernel.dir/mempool.c.obj -c /home/miguel/ncs/v3.0.2/zephyr/kernel/mempool.c", + "file": "/home/miguel/ncs/v3.0.2/zephyr/kernel/mempool.c" +}, +{ + "directory": "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware", + "command": "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DNRF52833_XXAA -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/miguel/ncs/v3.0.2/zephyr/kernel/include -I/home/miguel/ncs/v3.0.2/zephyr/arch/arm/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr -I/home/miguel/ncs/v3.0.2/zephyr/include -I/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/. -I/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/. -I/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device -I/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/. -I/home/miguel/ncs/v3.0.2/nrf/include -I/home/miguel/ncs/v3.0.2/nrf/tests/include -I/home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core/Include -I/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/. -I/home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/. -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/include -I/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk -I/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/. -I/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER -I/home/miguel/ncs/v3.0.2/modules/debug/segger/Config -isystem /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -O2 -imacros /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/miguel/ncs/v3.0.2/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/miguel/ncs/v3.0.2=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr/kernel/CMakeFiles/kernel.dir/dynamic_disabled.c.obj -c /home/miguel/ncs/v3.0.2/zephyr/kernel/dynamic_disabled.c", + "file": "/home/miguel/ncs/v3.0.2/zephyr/kernel/dynamic_disabled.c" +} +] \ No newline at end of file diff --git a/build/PHF000-Firmware/modules/azure-sdk-for-c/cmake_install.cmake b/build/PHF000-Firmware/modules/azure-sdk-for-c/cmake_install.cmake new file mode 100644 index 0000000..a0e6045 --- /dev/null +++ b/build/PHF000-Firmware/modules/azure-sdk-for-c/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/nrf/modules/azure-sdk-for-c + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/modules/canopennode/cmake_install.cmake b/build/PHF000-Firmware/modules/canopennode/cmake_install.cmake new file mode 100644 index 0000000..e6a23a7 --- /dev/null +++ b/build/PHF000-Firmware/modules/canopennode/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/modules/canopennode + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/modules/chre/cmake_install.cmake b/build/PHF000-Firmware/modules/chre/cmake_install.cmake new file mode 100644 index 0000000..d8d79ed --- /dev/null +++ b/build/PHF000-Firmware/modules/chre/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/modules/lib/chre/platform/zephyr + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/modules/cirrus-logic/cmake_install.cmake b/build/PHF000-Firmware/modules/cirrus-logic/cmake_install.cmake new file mode 100644 index 0000000..76f18b8 --- /dev/null +++ b/build/PHF000-Firmware/modules/cirrus-logic/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/modules/hal/cirrus-logic + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/modules/cjson/cmake_install.cmake b/build/PHF000-Firmware/modules/cjson/cmake_install.cmake new file mode 100644 index 0000000..a859707 --- /dev/null +++ b/build/PHF000-Firmware/modules/cjson/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/nrf/modules/cjson + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/modules/cmsis-dsp/cmake_install.cmake b/build/PHF000-Firmware/modules/cmsis-dsp/cmake_install.cmake new file mode 100644 index 0000000..6660c7e --- /dev/null +++ b/build/PHF000-Firmware/modules/cmsis-dsp/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/modules/cmsis-dsp + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/modules/cmsis-nn/cmake_install.cmake b/build/PHF000-Firmware/modules/cmsis-nn/cmake_install.cmake new file mode 100644 index 0000000..a5c4b42 --- /dev/null +++ b/build/PHF000-Firmware/modules/cmsis-nn/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/modules/cmsis-nn + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/modules/cmsis/cmake_install.cmake b/build/PHF000-Firmware/modules/cmsis/cmake_install.cmake new file mode 100644 index 0000000..1f68259 --- /dev/null +++ b/build/PHF000-Firmware/modules/cmsis/cmake_install.cmake @@ -0,0 +1,44 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/modules/cmsis + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/cmsis/cmsis/cmake_install.cmake") +endif() + diff --git a/build/PHF000-Firmware/modules/cmsis/cmsis/CMSIS/Core/cmake_install.cmake b/build/PHF000-Firmware/modules/cmsis/cmsis/CMSIS/Core/cmake_install.cmake new file mode 100644 index 0000000..fb367d9 --- /dev/null +++ b/build/PHF000-Firmware/modules/cmsis/cmsis/CMSIS/Core/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS/Core + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/modules/cmsis/cmsis/CMSIS/cmake_install.cmake b/build/PHF000-Firmware/modules/cmsis/cmsis/CMSIS/cmake_install.cmake new file mode 100644 index 0000000..57253cf --- /dev/null +++ b/build/PHF000-Firmware/modules/cmsis/cmsis/CMSIS/cmake_install.cmake @@ -0,0 +1,44 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/modules/hal/cmsis/CMSIS + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/cmsis/cmsis/CMSIS/Core/cmake_install.cmake") +endif() + diff --git a/build/PHF000-Firmware/modules/cmsis/cmsis/cmake_install.cmake b/build/PHF000-Firmware/modules/cmsis/cmsis/cmake_install.cmake new file mode 100644 index 0000000..de158f3 --- /dev/null +++ b/build/PHF000-Firmware/modules/cmsis/cmsis/cmake_install.cmake @@ -0,0 +1,44 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/modules/hal/cmsis + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/cmsis/cmsis/CMSIS/cmake_install.cmake") +endif() + diff --git a/build/PHF000-Firmware/modules/connectedhomeip/cmake_install.cmake b/build/PHF000-Firmware/modules/connectedhomeip/cmake_install.cmake new file mode 100644 index 0000000..42767b0 --- /dev/null +++ b/build/PHF000-Firmware/modules/connectedhomeip/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/modules/lib/matter/config/nrfconnect/chip-module + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/modules/fatfs/cmake_install.cmake b/build/PHF000-Firmware/modules/fatfs/cmake_install.cmake new file mode 100644 index 0000000..7ba0120 --- /dev/null +++ b/build/PHF000-Firmware/modules/fatfs/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/modules/fatfs + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/modules/hal_nordic/cmake_install.cmake b/build/PHF000-Firmware/modules/hal_nordic/cmake_install.cmake new file mode 100644 index 0000000..cd570a2 --- /dev/null +++ b/build/PHF000-Firmware/modules/hal_nordic/cmake_install.cmake @@ -0,0 +1,49 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/hal_nordic/modules/hal_nordic/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/hal_nordic/nrfx/cmake_install.cmake") +endif() + diff --git a/build/PHF000-Firmware/modules/hal_nordic/modules/hal_nordic/cmake_install.cmake b/build/PHF000-Firmware/modules/hal_nordic/modules/hal_nordic/cmake_install.cmake new file mode 100644 index 0000000..e024fa1 --- /dev/null +++ b/build/PHF000-Firmware/modules/hal_nordic/modules/hal_nordic/cmake_install.cmake @@ -0,0 +1,44 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/hal_nordic/modules/hal_nordic/nrfx/cmake_install.cmake") +endif() + diff --git a/build/PHF000-Firmware/modules/hal_nordic/modules/hal_nordic/nrfx/CMakeFiles/modules__hal_nordic__nrfx.dir/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/src/nrfx_clock.c.obj b/build/PHF000-Firmware/modules/hal_nordic/modules/hal_nordic/nrfx/CMakeFiles/modules__hal_nordic__nrfx.dir/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/src/nrfx_clock.c.obj new file mode 100644 index 0000000..2512838 Binary files /dev/null and b/build/PHF000-Firmware/modules/hal_nordic/modules/hal_nordic/nrfx/CMakeFiles/modules__hal_nordic__nrfx.dir/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/src/nrfx_clock.c.obj differ diff --git a/build/PHF000-Firmware/modules/hal_nordic/modules/hal_nordic/nrfx/CMakeFiles/modules__hal_nordic__nrfx.dir/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/src/nrfx_gpiote.c.obj b/build/PHF000-Firmware/modules/hal_nordic/modules/hal_nordic/nrfx/CMakeFiles/modules__hal_nordic__nrfx.dir/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/src/nrfx_gpiote.c.obj new file mode 100644 index 0000000..3c1d45e Binary files /dev/null and b/build/PHF000-Firmware/modules/hal_nordic/modules/hal_nordic/nrfx/CMakeFiles/modules__hal_nordic__nrfx.dir/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/src/nrfx_gpiote.c.obj differ diff --git a/build/PHF000-Firmware/modules/hal_nordic/modules/hal_nordic/nrfx/CMakeFiles/modules__hal_nordic__nrfx.dir/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/src/nrfx_power.c.obj b/build/PHF000-Firmware/modules/hal_nordic/modules/hal_nordic/nrfx/CMakeFiles/modules__hal_nordic__nrfx.dir/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/src/nrfx_power.c.obj new file mode 100644 index 0000000..16c5f52 Binary files /dev/null and b/build/PHF000-Firmware/modules/hal_nordic/modules/hal_nordic/nrfx/CMakeFiles/modules__hal_nordic__nrfx.dir/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/src/nrfx_power.c.obj differ diff --git a/build/PHF000-Firmware/modules/hal_nordic/modules/hal_nordic/nrfx/CMakeFiles/modules__hal_nordic__nrfx.dir/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/src/nrfx_temp.c.obj b/build/PHF000-Firmware/modules/hal_nordic/modules/hal_nordic/nrfx/CMakeFiles/modules__hal_nordic__nrfx.dir/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/src/nrfx_temp.c.obj new file mode 100644 index 0000000..9344c61 Binary files /dev/null and b/build/PHF000-Firmware/modules/hal_nordic/modules/hal_nordic/nrfx/CMakeFiles/modules__hal_nordic__nrfx.dir/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/drivers/src/nrfx_temp.c.obj differ diff --git a/build/PHF000-Firmware/modules/hal_nordic/modules/hal_nordic/nrfx/CMakeFiles/modules__hal_nordic__nrfx.dir/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/helpers/nrfx_flag32_allocator.c.obj b/build/PHF000-Firmware/modules/hal_nordic/modules/hal_nordic/nrfx/CMakeFiles/modules__hal_nordic__nrfx.dir/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/helpers/nrfx_flag32_allocator.c.obj new file mode 100644 index 0000000..8d06d4d Binary files /dev/null and b/build/PHF000-Firmware/modules/hal_nordic/modules/hal_nordic/nrfx/CMakeFiles/modules__hal_nordic__nrfx.dir/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/helpers/nrfx_flag32_allocator.c.obj differ diff --git a/build/PHF000-Firmware/modules/hal_nordic/modules/hal_nordic/nrfx/CMakeFiles/modules__hal_nordic__nrfx.dir/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/helpers/nrfx_ram_ctrl.c.obj b/build/PHF000-Firmware/modules/hal_nordic/modules/hal_nordic/nrfx/CMakeFiles/modules__hal_nordic__nrfx.dir/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/helpers/nrfx_ram_ctrl.c.obj new file mode 100644 index 0000000..590fb67 Binary files /dev/null and b/build/PHF000-Firmware/modules/hal_nordic/modules/hal_nordic/nrfx/CMakeFiles/modules__hal_nordic__nrfx.dir/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/helpers/nrfx_ram_ctrl.c.obj differ diff --git a/build/PHF000-Firmware/modules/hal_nordic/modules/hal_nordic/nrfx/CMakeFiles/modules__hal_nordic__nrfx.dir/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk/system_nrf52833.c.obj b/build/PHF000-Firmware/modules/hal_nordic/modules/hal_nordic/nrfx/CMakeFiles/modules__hal_nordic__nrfx.dir/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk/system_nrf52833.c.obj new file mode 100644 index 0000000..f2f6dfb Binary files /dev/null and b/build/PHF000-Firmware/modules/hal_nordic/modules/hal_nordic/nrfx/CMakeFiles/modules__hal_nordic__nrfx.dir/home/miguel/ncs/v3.0.2/modules/hal/nordic/nrfx/mdk/system_nrf52833.c.obj differ diff --git a/build/PHF000-Firmware/modules/hal_nordic/modules/hal_nordic/nrfx/CMakeFiles/modules__hal_nordic__nrfx.dir/nrfx_glue.c.obj b/build/PHF000-Firmware/modules/hal_nordic/modules/hal_nordic/nrfx/CMakeFiles/modules__hal_nordic__nrfx.dir/nrfx_glue.c.obj new file mode 100644 index 0000000..700c456 Binary files /dev/null and b/build/PHF000-Firmware/modules/hal_nordic/modules/hal_nordic/nrfx/CMakeFiles/modules__hal_nordic__nrfx.dir/nrfx_glue.c.obj differ diff --git a/build/PHF000-Firmware/modules/hal_nordic/modules/hal_nordic/nrfx/cmake_install.cmake b/build/PHF000-Firmware/modules/hal_nordic/modules/hal_nordic/nrfx/cmake_install.cmake new file mode 100644 index 0000000..b7524f1 --- /dev/null +++ b/build/PHF000-Firmware/modules/hal_nordic/modules/hal_nordic/nrfx/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a b/build/PHF000-Firmware/modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a new file mode 100644 index 0000000..dbb1d6e Binary files /dev/null and b/build/PHF000-Firmware/modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a differ diff --git a/build/PHF000-Firmware/modules/hal_nordic/nrfx/cmake_install.cmake b/build/PHF000-Firmware/modules/hal_nordic/nrfx/cmake_install.cmake new file mode 100644 index 0000000..bcd3d64 --- /dev/null +++ b/build/PHF000-Firmware/modules/hal_nordic/nrfx/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/nrf/modules/hal_nordic/nrfx + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/modules/hal_st/cmake_install.cmake b/build/PHF000-Firmware/modules/hal_st/cmake_install.cmake new file mode 100644 index 0000000..1728fe5 --- /dev/null +++ b/build/PHF000-Firmware/modules/hal_st/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/modules/hal/st + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/modules/hal_tdk/cmake_install.cmake b/build/PHF000-Firmware/modules/hal_tdk/cmake_install.cmake new file mode 100644 index 0000000..6745798 --- /dev/null +++ b/build/PHF000-Firmware/modules/hal_tdk/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/modules/hal/tdk + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/modules/hal_wurthelektronik/cmake_install.cmake b/build/PHF000-Firmware/modules/hal_wurthelektronik/cmake_install.cmake new file mode 100644 index 0000000..83b2634 --- /dev/null +++ b/build/PHF000-Firmware/modules/hal_wurthelektronik/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/modules/hal/wurthelektronik + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/modules/hostap/cmake_install.cmake b/build/PHF000-Firmware/modules/hostap/cmake_install.cmake new file mode 100644 index 0000000..d1269ed --- /dev/null +++ b/build/PHF000-Firmware/modules/hostap/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/modules/hostap + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/modules/liblc3/cmake_install.cmake b/build/PHF000-Firmware/modules/liblc3/cmake_install.cmake new file mode 100644 index 0000000..1058da9 --- /dev/null +++ b/build/PHF000-Firmware/modules/liblc3/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/modules/liblc3 + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/modules/libmetal/cmake_install.cmake b/build/PHF000-Firmware/modules/libmetal/cmake_install.cmake new file mode 100644 index 0000000..938fc9f --- /dev/null +++ b/build/PHF000-Firmware/modules/libmetal/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/modules/hal/libmetal + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/modules/littlefs/cmake_install.cmake b/build/PHF000-Firmware/modules/littlefs/cmake_install.cmake new file mode 100644 index 0000000..2008e25 --- /dev/null +++ b/build/PHF000-Firmware/modules/littlefs/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/modules/littlefs + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/modules/loramac-node/cmake_install.cmake b/build/PHF000-Firmware/modules/loramac-node/cmake_install.cmake new file mode 100644 index 0000000..2f2c4e3 --- /dev/null +++ b/build/PHF000-Firmware/modules/loramac-node/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/modules/loramac-node + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/modules/lvgl/cmake_install.cmake b/build/PHF000-Firmware/modules/lvgl/cmake_install.cmake new file mode 100644 index 0000000..737260c --- /dev/null +++ b/build/PHF000-Firmware/modules/lvgl/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/modules/lvgl + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/modules/lz4/cmake_install.cmake b/build/PHF000-Firmware/modules/lz4/cmake_install.cmake new file mode 100644 index 0000000..928be96 --- /dev/null +++ b/build/PHF000-Firmware/modules/lz4/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/modules/lz4 + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/modules/mbedtls/cmake_install.cmake b/build/PHF000-Firmware/modules/mbedtls/cmake_install.cmake new file mode 100644 index 0000000..e0a7667 --- /dev/null +++ b/build/PHF000-Firmware/modules/mbedtls/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/modules/mbedtls + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/modules/mcuboot/boot/bootutil/zephyr/cmake_install.cmake b/build/PHF000-Firmware/modules/mcuboot/boot/bootutil/zephyr/cmake_install.cmake new file mode 100644 index 0000000..3731d71 --- /dev/null +++ b/build/PHF000-Firmware/modules/mcuboot/boot/bootutil/zephyr/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/bootloader/mcuboot/boot/bootutil/zephyr + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/modules/mcuboot/cmake_install.cmake b/build/PHF000-Firmware/modules/mcuboot/cmake_install.cmake new file mode 100644 index 0000000..43343f4 --- /dev/null +++ b/build/PHF000-Firmware/modules/mcuboot/cmake_install.cmake @@ -0,0 +1,44 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/nrf/modules/mcuboot + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/mcuboot/boot/bootutil/zephyr/cmake_install.cmake") +endif() + diff --git a/build/PHF000-Firmware/modules/memfault-firmware-sdk/cmake_install.cmake b/build/PHF000-Firmware/modules/memfault-firmware-sdk/cmake_install.cmake new file mode 100644 index 0000000..d798a77 --- /dev/null +++ b/build/PHF000-Firmware/modules/memfault-firmware-sdk/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/modules/lib/memfault-firmware-sdk/ports/zephyr + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/modules/mipi-sys-t/cmake_install.cmake b/build/PHF000-Firmware/modules/mipi-sys-t/cmake_install.cmake new file mode 100644 index 0000000..2653ceb --- /dev/null +++ b/build/PHF000-Firmware/modules/mipi-sys-t/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/modules/debug/mipi-sys-t + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/modules/nanopb/cmake_install.cmake b/build/PHF000-Firmware/modules/nanopb/cmake_install.cmake new file mode 100644 index 0000000..2654579 --- /dev/null +++ b/build/PHF000-Firmware/modules/nanopb/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/modules/nanopb + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/modules/nrf/cmake_install.cmake b/build/PHF000-Firmware/modules/nrf/cmake_install.cmake new file mode 100644 index 0000000..aa16162 --- /dev/null +++ b/build/PHF000-Firmware/modules/nrf/cmake_install.cmake @@ -0,0 +1,74 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/nrf + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/ext/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/lib/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/samples/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/subsys/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/modules/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/drivers/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/tests/cmake_install.cmake") +endif() + diff --git a/build/PHF000-Firmware/modules/nrf/drivers/cmake_install.cmake b/build/PHF000-Firmware/modules/nrf/drivers/cmake_install.cmake new file mode 100644 index 0000000..fd3cc97 --- /dev/null +++ b/build/PHF000-Firmware/modules/nrf/drivers/cmake_install.cmake @@ -0,0 +1,74 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/nrf/drivers + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/drivers/entropy/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/drivers/flash/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/drivers/gpio/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/drivers/hw_cc3xx/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/drivers/mpsl/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/drivers/sensor/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/drivers/serial/cmake_install.cmake") +endif() + diff --git a/build/PHF000-Firmware/modules/nrf/drivers/entropy/cmake_install.cmake b/build/PHF000-Firmware/modules/nrf/drivers/entropy/cmake_install.cmake new file mode 100644 index 0000000..b39bdc9 --- /dev/null +++ b/build/PHF000-Firmware/modules/nrf/drivers/entropy/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/nrf/drivers/entropy + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/modules/nrf/drivers/flash/cmake_install.cmake b/build/PHF000-Firmware/modules/nrf/drivers/flash/cmake_install.cmake new file mode 100644 index 0000000..3420184 --- /dev/null +++ b/build/PHF000-Firmware/modules/nrf/drivers/flash/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/nrf/drivers/flash + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/modules/nrf/drivers/gpio/cmake_install.cmake b/build/PHF000-Firmware/modules/nrf/drivers/gpio/cmake_install.cmake new file mode 100644 index 0000000..3d3df85 --- /dev/null +++ b/build/PHF000-Firmware/modules/nrf/drivers/gpio/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/nrf/drivers/gpio + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/modules/nrf/drivers/hw_cc3xx/cmake_install.cmake b/build/PHF000-Firmware/modules/nrf/drivers/hw_cc3xx/cmake_install.cmake new file mode 100644 index 0000000..af490e2 --- /dev/null +++ b/build/PHF000-Firmware/modules/nrf/drivers/hw_cc3xx/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/nrf/drivers/hw_cc3xx + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/modules/nrf/drivers/mpsl/cmake_install.cmake b/build/PHF000-Firmware/modules/nrf/drivers/mpsl/cmake_install.cmake new file mode 100644 index 0000000..62da2b9 --- /dev/null +++ b/build/PHF000-Firmware/modules/nrf/drivers/mpsl/cmake_install.cmake @@ -0,0 +1,44 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/nrf/drivers/mpsl + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/drivers/mpsl/flash_sync/cmake_install.cmake") +endif() + diff --git a/build/PHF000-Firmware/modules/nrf/drivers/mpsl/flash_sync/cmake_install.cmake b/build/PHF000-Firmware/modules/nrf/drivers/mpsl/flash_sync/cmake_install.cmake new file mode 100644 index 0000000..c81f8b9 --- /dev/null +++ b/build/PHF000-Firmware/modules/nrf/drivers/mpsl/flash_sync/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/nrf/drivers/mpsl/flash_sync + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/modules/nrf/drivers/sensor/cmake_install.cmake b/build/PHF000-Firmware/modules/nrf/drivers/sensor/cmake_install.cmake new file mode 100644 index 0000000..9fda886 --- /dev/null +++ b/build/PHF000-Firmware/modules/nrf/drivers/sensor/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/nrf/drivers/sensor + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/modules/nrf/drivers/serial/cmake_install.cmake b/build/PHF000-Firmware/modules/nrf/drivers/serial/cmake_install.cmake new file mode 100644 index 0000000..171f333 --- /dev/null +++ b/build/PHF000-Firmware/modules/nrf/drivers/serial/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/nrf/drivers/serial + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/modules/nrf/ext/cmake_install.cmake b/build/PHF000-Firmware/modules/nrf/ext/cmake_install.cmake new file mode 100644 index 0000000..b6c73ad --- /dev/null +++ b/build/PHF000-Firmware/modules/nrf/ext/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/nrf/ext + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/modules/nrf/lib/bin/cmake_install.cmake b/build/PHF000-Firmware/modules/nrf/lib/bin/cmake_install.cmake new file mode 100644 index 0000000..5cf00c6 --- /dev/null +++ b/build/PHF000-Firmware/modules/nrf/lib/bin/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/nrf/lib/bin + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/modules/nrf/lib/boot_banner/cmake_install.cmake b/build/PHF000-Firmware/modules/nrf/lib/boot_banner/cmake_install.cmake new file mode 100644 index 0000000..42e13c9 --- /dev/null +++ b/build/PHF000-Firmware/modules/nrf/lib/boot_banner/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/nrf/lib/boot_banner + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/modules/nrf/lib/cmake_install.cmake b/build/PHF000-Firmware/modules/nrf/lib/cmake_install.cmake new file mode 100644 index 0000000..4ddf801 --- /dev/null +++ b/build/PHF000-Firmware/modules/nrf/lib/cmake_install.cmake @@ -0,0 +1,59 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/nrf/lib + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/lib/bin/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/lib/flash_patch/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/lib/fatal_error/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/lib/boot_banner/cmake_install.cmake") +endif() + diff --git a/build/PHF000-Firmware/modules/nrf/lib/fatal_error/cmake_install.cmake b/build/PHF000-Firmware/modules/nrf/lib/fatal_error/cmake_install.cmake new file mode 100644 index 0000000..8c6ad1d --- /dev/null +++ b/build/PHF000-Firmware/modules/nrf/lib/fatal_error/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/nrf/lib/fatal_error + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/modules/nrf/lib/flash_patch/cmake_install.cmake b/build/PHF000-Firmware/modules/nrf/lib/flash_patch/cmake_install.cmake new file mode 100644 index 0000000..9896c19 --- /dev/null +++ b/build/PHF000-Firmware/modules/nrf/lib/flash_patch/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/nrf/lib/flash_patch + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/modules/nrf/modules/cmake_install.cmake b/build/PHF000-Firmware/modules/nrf/modules/cmake_install.cmake new file mode 100644 index 0000000..3ca59f2 --- /dev/null +++ b/build/PHF000-Firmware/modules/nrf/modules/cmake_install.cmake @@ -0,0 +1,44 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/nrf/modules + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/modules/wfa-qt/cmake_install.cmake") +endif() + diff --git a/build/PHF000-Firmware/modules/nrf/modules/wfa-qt/cmake_install.cmake b/build/PHF000-Firmware/modules/nrf/modules/wfa-qt/cmake_install.cmake new file mode 100644 index 0000000..eabb7f9 --- /dev/null +++ b/build/PHF000-Firmware/modules/nrf/modules/wfa-qt/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/nrf/modules/wfa-qt + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/modules/nrf/samples/cmake_install.cmake b/build/PHF000-Firmware/modules/nrf/samples/cmake_install.cmake new file mode 100644 index 0000000..047dbbe --- /dev/null +++ b/build/PHF000-Firmware/modules/nrf/samples/cmake_install.cmake @@ -0,0 +1,44 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/nrf/samples + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/samples/common/cmake_install.cmake") +endif() + diff --git a/build/PHF000-Firmware/modules/nrf/samples/common/cmake_install.cmake b/build/PHF000-Firmware/modules/nrf/samples/common/cmake_install.cmake new file mode 100644 index 0000000..8775860 --- /dev/null +++ b/build/PHF000-Firmware/modules/nrf/samples/common/cmake_install.cmake @@ -0,0 +1,44 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/nrf/samples/common + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/samples/common/mcumgr_bt_ota_dfu/cmake_install.cmake") +endif() + diff --git a/build/PHF000-Firmware/modules/nrf/samples/common/mcumgr_bt_ota_dfu/cmake_install.cmake b/build/PHF000-Firmware/modules/nrf/samples/common/mcumgr_bt_ota_dfu/cmake_install.cmake new file mode 100644 index 0000000..94e70d7 --- /dev/null +++ b/build/PHF000-Firmware/modules/nrf/samples/common/mcumgr_bt_ota_dfu/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/nrf/samples/common/mcumgr_bt_ota_dfu + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/modules/nrf/subsys/cmake_install.cmake b/build/PHF000-Firmware/modules/nrf/subsys/cmake_install.cmake new file mode 100644 index 0000000..5cc75b8 --- /dev/null +++ b/build/PHF000-Firmware/modules/nrf/subsys/cmake_install.cmake @@ -0,0 +1,84 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/nrf/subsys + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/subsys/net/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/subsys/dfu/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/subsys/mpsl/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/subsys/logging/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/subsys/shell/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/subsys/debug/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/subsys/partition_manager/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/subsys/suit/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/subsys/mgmt/mcumgr/cmake_install.cmake") +endif() + diff --git a/build/PHF000-Firmware/modules/nrf/subsys/debug/cmake_install.cmake b/build/PHF000-Firmware/modules/nrf/subsys/debug/cmake_install.cmake new file mode 100644 index 0000000..efdfcb8 --- /dev/null +++ b/build/PHF000-Firmware/modules/nrf/subsys/debug/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/nrf/subsys/debug + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/modules/nrf/subsys/dfu/cmake_install.cmake b/build/PHF000-Firmware/modules/nrf/subsys/dfu/cmake_install.cmake new file mode 100644 index 0000000..4945efd --- /dev/null +++ b/build/PHF000-Firmware/modules/nrf/subsys/dfu/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/nrf/subsys/dfu + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/modules/nrf/subsys/logging/cmake_install.cmake b/build/PHF000-Firmware/modules/nrf/subsys/logging/cmake_install.cmake new file mode 100644 index 0000000..2119ffb --- /dev/null +++ b/build/PHF000-Firmware/modules/nrf/subsys/logging/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/nrf/subsys/logging + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/modules/nrf/subsys/mgmt/mcumgr/cmake_install.cmake b/build/PHF000-Firmware/modules/nrf/subsys/mgmt/mcumgr/cmake_install.cmake new file mode 100644 index 0000000..a48c691 --- /dev/null +++ b/build/PHF000-Firmware/modules/nrf/subsys/mgmt/mcumgr/cmake_install.cmake @@ -0,0 +1,44 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/nrf/subsys/mgmt/mcumgr + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/subsys/mgmt/mcumgr/grp/cmake_install.cmake") +endif() + diff --git a/build/PHF000-Firmware/modules/nrf/subsys/mgmt/mcumgr/grp/cmake_install.cmake b/build/PHF000-Firmware/modules/nrf/subsys/mgmt/mcumgr/grp/cmake_install.cmake new file mode 100644 index 0000000..46ccbaa --- /dev/null +++ b/build/PHF000-Firmware/modules/nrf/subsys/mgmt/mcumgr/grp/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/nrf/subsys/mgmt/mcumgr/grp + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/modules/nrf/subsys/mpsl/cmake_install.cmake b/build/PHF000-Firmware/modules/nrf/subsys/mpsl/cmake_install.cmake new file mode 100644 index 0000000..68d331f --- /dev/null +++ b/build/PHF000-Firmware/modules/nrf/subsys/mpsl/cmake_install.cmake @@ -0,0 +1,44 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/nrf/subsys/mpsl + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/subsys/mpsl/cx/cmake_install.cmake") +endif() + diff --git a/build/PHF000-Firmware/modules/nrf/subsys/mpsl/cx/cmake_install.cmake b/build/PHF000-Firmware/modules/nrf/subsys/mpsl/cx/cmake_install.cmake new file mode 100644 index 0000000..0453789 --- /dev/null +++ b/build/PHF000-Firmware/modules/nrf/subsys/mpsl/cx/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/nrf/subsys/mpsl/cx + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/modules/nrf/subsys/net/cmake_install.cmake b/build/PHF000-Firmware/modules/nrf/subsys/net/cmake_install.cmake new file mode 100644 index 0000000..d3960ed --- /dev/null +++ b/build/PHF000-Firmware/modules/nrf/subsys/net/cmake_install.cmake @@ -0,0 +1,44 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/nrf/subsys/net + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/subsys/net/lib/cmake_install.cmake") +endif() + diff --git a/build/PHF000-Firmware/modules/nrf/subsys/net/lib/cmake_install.cmake b/build/PHF000-Firmware/modules/nrf/subsys/net/lib/cmake_install.cmake new file mode 100644 index 0000000..e5a2b4e --- /dev/null +++ b/build/PHF000-Firmware/modules/nrf/subsys/net/lib/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/nrf/subsys/net/lib + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/modules/nrf/subsys/partition_manager/cmake_install.cmake b/build/PHF000-Firmware/modules/nrf/subsys/partition_manager/cmake_install.cmake new file mode 100644 index 0000000..47b54c8 --- /dev/null +++ b/build/PHF000-Firmware/modules/nrf/subsys/partition_manager/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/nrf/subsys/partition_manager + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/modules/nrf/subsys/shell/cmake_install.cmake b/build/PHF000-Firmware/modules/nrf/subsys/shell/cmake_install.cmake new file mode 100644 index 0000000..61f9339 --- /dev/null +++ b/build/PHF000-Firmware/modules/nrf/subsys/shell/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/nrf/subsys/shell + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/modules/nrf/subsys/suit/app_tools/cmake_install.cmake b/build/PHF000-Firmware/modules/nrf/subsys/suit/app_tools/cmake_install.cmake new file mode 100644 index 0000000..279c8b5 --- /dev/null +++ b/build/PHF000-Firmware/modules/nrf/subsys/suit/app_tools/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/nrf/subsys/suit/app_tools + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/modules/nrf/subsys/suit/cmake_install.cmake b/build/PHF000-Firmware/modules/nrf/subsys/suit/cmake_install.cmake new file mode 100644 index 0000000..845857d --- /dev/null +++ b/build/PHF000-Firmware/modules/nrf/subsys/suit/cmake_install.cmake @@ -0,0 +1,44 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/nrf/subsys/suit + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/subsys/suit/app_tools/cmake_install.cmake") +endif() + diff --git a/build/PHF000-Firmware/modules/nrf/tests/cmake_install.cmake b/build/PHF000-Firmware/modules/nrf/tests/cmake_install.cmake new file mode 100644 index 0000000..0a9952e --- /dev/null +++ b/build/PHF000-Firmware/modules/nrf/tests/cmake_install.cmake @@ -0,0 +1,44 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/nrf/tests + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/tests/mocks/cmake_install.cmake") +endif() + diff --git a/build/PHF000-Firmware/modules/nrf/tests/mocks/cmake_install.cmake b/build/PHF000-Firmware/modules/nrf/tests/mocks/cmake_install.cmake new file mode 100644 index 0000000..7266c09 --- /dev/null +++ b/build/PHF000-Firmware/modules/nrf/tests/mocks/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/nrf/tests/mocks + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/modules/nrf_hw_models/cmake_install.cmake b/build/PHF000-Firmware/modules/nrf_hw_models/cmake_install.cmake new file mode 100644 index 0000000..520efa2 --- /dev/null +++ b/build/PHF000-Firmware/modules/nrf_hw_models/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/modules/bsim_hw_models/nrf_hw_models + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/modules/nrf_wifi/cmake_install.cmake b/build/PHF000-Firmware/modules/nrf_wifi/cmake_install.cmake new file mode 100644 index 0000000..9e4a94f --- /dev/null +++ b/build/PHF000-Firmware/modules/nrf_wifi/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/modules/nrf_wifi + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/modules/nrfxlib/cmake_install.cmake b/build/PHF000-Firmware/modules/nrfxlib/cmake_install.cmake new file mode 100644 index 0000000..1a7e1e4 --- /dev/null +++ b/build/PHF000-Firmware/modules/nrfxlib/cmake_install.cmake @@ -0,0 +1,49 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/nrf/modules/nrfxlib + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrfxlib/nrfxlib/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrfxlib/nrf_802154/cmake_install.cmake") +endif() + diff --git a/build/PHF000-Firmware/modules/nrfxlib/nrf_802154/cmake_install.cmake b/build/PHF000-Firmware/modules/nrfxlib/nrf_802154/cmake_install.cmake new file mode 100644 index 0000000..2a467cb --- /dev/null +++ b/build/PHF000-Firmware/modules/nrfxlib/nrf_802154/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/nrf/modules/nrfxlib/nrf_802154 + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/modules/nrfxlib/nrfxlib/cmake_install.cmake b/build/PHF000-Firmware/modules/nrfxlib/nrfxlib/cmake_install.cmake new file mode 100644 index 0000000..5a13b76 --- /dev/null +++ b/build/PHF000-Firmware/modules/nrfxlib/nrfxlib/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/nrfxlib + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/modules/open-amp/cmake_install.cmake b/build/PHF000-Firmware/modules/open-amp/cmake_install.cmake new file mode 100644 index 0000000..21dbfef --- /dev/null +++ b/build/PHF000-Firmware/modules/open-amp/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/modules/lib/open-amp + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/modules/openthread/cmake_install.cmake b/build/PHF000-Firmware/modules/openthread/cmake_install.cmake new file mode 100644 index 0000000..f6eba3a --- /dev/null +++ b/build/PHF000-Firmware/modules/openthread/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/nrf/modules/openthread + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/modules/percepio/cmake_install.cmake b/build/PHF000-Firmware/modules/percepio/cmake_install.cmake new file mode 100644 index 0000000..7ae285f --- /dev/null +++ b/build/PHF000-Firmware/modules/percepio/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/modules/percepio + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/modules/picolibc/cmake_install.cmake b/build/PHF000-Firmware/modules/picolibc/cmake_install.cmake new file mode 100644 index 0000000..1ced010 --- /dev/null +++ b/build/PHF000-Firmware/modules/picolibc/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/modules/lib/picolibc + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/modules/segger/CMakeFiles/modules__segger.dir/SEGGER_RTT_zephyr.c.obj b/build/PHF000-Firmware/modules/segger/CMakeFiles/modules__segger.dir/SEGGER_RTT_zephyr.c.obj new file mode 100644 index 0000000..f643ec4 Binary files /dev/null and b/build/PHF000-Firmware/modules/segger/CMakeFiles/modules__segger.dir/SEGGER_RTT_zephyr.c.obj differ diff --git a/build/PHF000-Firmware/modules/segger/CMakeFiles/modules__segger.dir/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER/SEGGER_RTT.c.obj b/build/PHF000-Firmware/modules/segger/CMakeFiles/modules__segger.dir/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER/SEGGER_RTT.c.obj new file mode 100644 index 0000000..67d3c7d Binary files /dev/null and b/build/PHF000-Firmware/modules/segger/CMakeFiles/modules__segger.dir/home/miguel/ncs/v3.0.2/modules/debug/segger/SEGGER/SEGGER_RTT.c.obj differ diff --git a/build/PHF000-Firmware/modules/segger/cmake_install.cmake b/build/PHF000-Firmware/modules/segger/cmake_install.cmake new file mode 100644 index 0000000..a16b048 --- /dev/null +++ b/build/PHF000-Firmware/modules/segger/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/modules/segger + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/modules/segger/libmodules__segger.a b/build/PHF000-Firmware/modules/segger/libmodules__segger.a new file mode 100644 index 0000000..7170ba0 Binary files /dev/null and b/build/PHF000-Firmware/modules/segger/libmodules__segger.a differ diff --git a/build/PHF000-Firmware/modules/suit-processor/cmake_install.cmake b/build/PHF000-Firmware/modules/suit-processor/cmake_install.cmake new file mode 100644 index 0000000..faf96d4 --- /dev/null +++ b/build/PHF000-Firmware/modules/suit-processor/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/modules/lib/suit-processor/ncs + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/modules/tinycrypt/cmake_install.cmake b/build/PHF000-Firmware/modules/tinycrypt/cmake_install.cmake new file mode 100644 index 0000000..f9a46a2 --- /dev/null +++ b/build/PHF000-Firmware/modules/tinycrypt/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/modules/crypto/tinycrypt + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/modules/trusted-firmware-m/cmake_install.cmake b/build/PHF000-Firmware/modules/trusted-firmware-m/cmake_install.cmake new file mode 100644 index 0000000..d1722d4 --- /dev/null +++ b/build/PHF000-Firmware/modules/trusted-firmware-m/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/modules/trusted-firmware-m + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/modules/uoscore-uedhoc/cmake_install.cmake b/build/PHF000-Firmware/modules/uoscore-uedhoc/cmake_install.cmake new file mode 100644 index 0000000..ffa4de3 --- /dev/null +++ b/build/PHF000-Firmware/modules/uoscore-uedhoc/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/modules/uoscore-uedhoc + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/modules/zcbor/cmake_install.cmake b/build/PHF000-Firmware/modules/zcbor/cmake_install.cmake new file mode 100644 index 0000000..f838606 --- /dev/null +++ b/build/PHF000-Firmware/modules/zcbor/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/modules/zcbor + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/modules/zscilib/cmake_install.cmake b/build/PHF000-Firmware/modules/zscilib/cmake_install.cmake new file mode 100644 index 0000000..7f231c3 --- /dev/null +++ b/build/PHF000-Firmware/modules/zscilib/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/modules/lib/zscilib + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/sysbuild_modules.txt b/build/PHF000-Firmware/sysbuild_modules.txt new file mode 100644 index 0000000..3078428 --- /dev/null +++ b/build/PHF000-Firmware/sysbuild_modules.txt @@ -0,0 +1,2 @@ +"nrf":"/home/miguel/ncs/v3.0.2/nrf":"/home/miguel/ncs/v3.0.2/nrf/sysbuild" +"mcuboot":"/home/miguel/ncs/v3.0.2/bootloader/mcuboot":"/home/miguel/ncs/v3.0.2/bootloader/mcuboot/boot/zephyr/sysbuild" diff --git a/build/PHF000-Firmware/zephyr/.cmake.dotconfig.checksum b/build/PHF000-Firmware/zephyr/.cmake.dotconfig.checksum new file mode 100644 index 0000000..fe9a947 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/.cmake.dotconfig.checksum @@ -0,0 +1 @@ +ba9e7753de35e87ed9da22363fc205eb16563a4c120be69912c5551a07261dd2f7c9e67d9f4729ce64dbfe42975250c6 \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/.config b/build/PHF000-Firmware/zephyr/.config new file mode 100644 index 0000000..af92a4f --- /dev/null +++ b/build/PHF000-Firmware/zephyr/.config @@ -0,0 +1,2119 @@ +# CONFIG_INPUT is not set +# CONFIG_WIFI is not set +CONFIG_ADC_INIT_PRIORITY=50 +# CONFIG_MIPI_DSI is not set +# CONFIG_MODEM is not set +CONFIG_UART_INTERRUPT_DRIVEN=y +CONFIG_NUM_IRQS=48 +CONFIG_SYS_CLOCK_HW_CYCLES_PER_SEC=32768 +CONFIG_FLASH_SIZE=512 +CONFIG_FLASH_BASE_ADDRESS=0x0 +CONFIG_MP_MAX_NUM_CPUS=1 +CONFIG_SOC_RESET_HOOK=y +CONFIG_MAIN_STACK_SIZE=1024 +CONFIG_IDLE_STACK_SIZE=320 +CONFIG_ISR_STACK_SIZE=2048 +CONFIG_CLOCK_CONTROL=y +CONFIG_SYS_CLOCK_TICKS_PER_SEC=32768 +CONFIG_ROM_START_OFFSET=0 +CONFIG_KERNEL_ENTRY="__start" +CONFIG_BUILD_OUTPUT_BIN=y +CONFIG_XIP=y +CONFIG_HAS_FLASH_LOAD_OFFSET=y +# CONFIG_SRAM_VECTOR_TABLE is not set +CONFIG_CPU_HAS_ARM_MPU=y +# CONFIG_COUNTER is not set +# CONFIG_SHARED_INTERRUPTS is not set +# CONFIG_PM_DEVICE is not set +CONFIG_TICKLESS_KERNEL=y +# CONFIG_FPU is not set +CONFIG_SYSTEM_WORKQUEUE_STACK_SIZE=1024 +CONFIG_CLOCK_CONTROL_INIT_PRIORITY=30 +# CONFIG_USE_DT_CODE_PARTITION is not set +# CONFIG_MULTI_LEVEL_INTERRUPTS is not set +CONFIG_GEN_IRQ_VECTOR_TABLE=y +# CONFIG_DYNAMIC_INTERRUPTS is not set +CONFIG_GEN_ISR_TABLES=y +# CONFIG_INIT_STACKS is not set +CONFIG_TIMESLICE_SIZE=0 +CONFIG_FLASH_LOAD_OFFSET=0 +# CONFIG_REGULATOR is not set +CONFIG_SYS_CLOCK_EXISTS=y +CONFIG_INIT_ARCH_HW_AT_BOOT=y +# CONFIG_BUILD_OUTPUT_S19 is not set +CONFIG_ARCH_HAS_CUSTOM_BUSY_WAIT=y +CONFIG_HW_STACK_PROTECTION=y +# CONFIG_MFD is not set +CONFIG_GPIO=y +CONFIG_SERIAL=y +# CONFIG_CPU_HAS_CUSTOM_FIXED_SOC_MPU_REGIONS is not set +# CONFIG_SPI is not set +# CONFIG_CODE_DATA_RELOCATION_SRAM is not set +# CONFIG_MEMC is not set +# CONFIG_CACHE is not set +# CONFIG_LOG is not set +CONFIG_CMSIS_CORE_HAS_SYSTEM_CORE_CLOCK=y +# CONFIG_CODE_DATA_RELOCATION is not set +# CONFIG_ROMSTART_RELOCATION_ROM is not set +CONFIG_DCACHE_LINE_SIZE=32 +# CONFIG_RESET is not set +CONFIG_ARCH_SW_ISR_TABLE_ALIGN=4 +CONFIG_NRF_RTC_TIMER=y +CONFIG_ASSERT=y +CONFIG_BUILD_OUTPUT_HEX=y +CONFIG_SOC_HAS_TIMING_FUNCTIONS=y +# CONFIG_UART_USE_RUNTIME_CONFIGURE is not set +# CONFIG_SYSCON is not set +CONFIG_SERIAL_INIT_PRIORITY=50 +# CONFIG_INTC_MTK_ADSP is not set +# CONFIG_MTK_ADSP_TIMER is not set +CONFIG_CONSOLE=y +# CONFIG_WINSTREAM is not set +CONFIG_COMMON_LIBC_MALLOC_ARENA_SIZE=-1 +CONFIG_SOC_TOOLCHAIN_NAME="amd_acp_6_0_adsp" +CONFIG_GEN_SW_ISR_TABLE=y +# CONFIG_REBOOT is not set +CONFIG_GEN_IRQ_START_VECTOR=0 +CONFIG_SRAM_OFFSET=0 +# CONFIG_POWER_DOMAIN is not set +CONFIG_ARCH_IRQ_VECTOR_TABLE_ALIGN=4 +# CONFIG_BOOTLOADER_MCUBOOT is not set +# CONFIG_SCHED_CPU_MASK is not set +# CONFIG_WATCHDOG is not set +CONFIG_ICACHE_LINE_SIZE=32 +CONFIG_PRIVILEGED_STACK_SIZE=1024 + +# +# Devicetree Info +# +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_FIXED_PARTITIONS_ENABLED=y +CONFIG_DT_HAS_GPIO_KEYS_ENABLED=y +CONFIG_DT_HAS_GPIO_LEDS_ENABLED=y +CONFIG_DT_HAS_MMIO_SRAM_ENABLED=y +CONFIG_DT_HAS_NORDIC_BT_HCI_SDC_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_PINCTRL_ENABLED=y +CONFIG_DT_HAS_NORDIC_NRF_POWER_ENABLED=y +CONFIG_DT_HAS_NORDIC_NRF_PPI_ENABLED=y +CONFIG_DT_HAS_NORDIC_NRF_RADIO_ENABLED=y +CONFIG_DT_HAS_NORDIC_NRF_RNG_ENABLED=y +CONFIG_DT_HAS_NORDIC_NRF_SAADC_ENABLED=y +CONFIG_DT_HAS_NORDIC_NRF_SWI_ENABLED=y +CONFIG_DT_HAS_NORDIC_NRF_TEMP_ENABLED=y +CONFIG_DT_HAS_NORDIC_NRF_UICR_ENABLED=y +CONFIG_DT_HAS_NORDIC_NRF_USBD_ENABLED=y +CONFIG_DT_HAS_NORDIC_NRF_WDT_ENABLED=y +CONFIG_DT_HAS_NORDIC_NRF52_FLASH_CONTROLLER_ENABLED=y +CONFIG_DT_HAS_NORDIC_NRF52X_REGULATOR_HV_ENABLED=y +CONFIG_DT_HAS_NORDIC_NRF5X_REGULATOR_ENABLED=y +CONFIG_DT_HAS_SOC_NV_FLASH_ENABLED=y +CONFIG_DT_HAS_ZEPHYR_BT_HCI_ENTROPY_ENABLED=y +CONFIG_DT_HAS_ZEPHYR_CDC_ACM_UART_ENABLED=y +# end of Devicetree Info + +# +# Modules +# +# CONFIG_BUILD_ONLY_NO_BLOBS is not set + +# +# Available modules. +# + +# +# nrf (/home/miguel/ncs/v3.0.2/nrf) +# +CONFIG_NUM_METAIRQ_PRIORITIES=0 +CONFIG_MPSL_WORK_STACK_SIZE=1024 +# CONFIG_ZMS is not set +# CONFIG_MBEDTLS is not set + +# +# Nordic nRF Connect +# +CONFIG_WARN_EXPERIMENTAL=y +CONFIG_NORDIC_QSPI_NOR_FLASH_LAYOUT_PAGE_SIZE=4096 +# CONFIG_GETOPT is not set +CONFIG_NRF_SECURITY_ENABLER=y +# CONFIG_NCS_SAMPLES_DEFAULTS is not set + +# +# Image build variants +# +# CONFIG_NCS_MCUBOOT_IN_BUILD is not set +# end of Image build variants + +# +# Subsystems +# + +# +# Bootloader +# +# 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_IS_SECURE_BOOTLOADER 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_VALIDATION_STRUCT_HAS_HASH=y +CONFIG_SB_VALIDATION_STRUCT_HAS_PUBLIC_KEY=y +CONFIG_SB_VALIDATE_FW_SIGNATURE=y +# end of Secure Boot firmware validation + +# CONFIG_SECURE_BOOT_STORAGE is not set +# CONFIG_MCUBOOT_COMPRESSED_IMAGE_SUPPORT_ENABLED is not set +# CONFIG_MCUBOOT_BOOTLOADER_SIGNATURE_TYPE_ED25519 is not set +# CONFIG_MCUBOOT_BOOTLOADER_SIGNATURE_TYPE_PURE is not set +# end of Bootloader + +# +# Bluetooth Low Energy +# +CONFIG_SYSTEM_WORKQUEUE_PRIORITY=-1 + +# +# BLE over nRF RPC +# +CONFIG_HEAP_MEM_POOL_SIZE=0 +# 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_VERSION_PAGE_BUF_SIZE=2046 +# CONFIG_PCD_NET is not set +# end of Peripheral CPU DFU (PCD) + +# +# Networking +# + +# +# Application protocols +# +# CONFIG_NRF_CLOUD is not set +# CONFIG_REST_CLIENT is not set +# CONFIG_DOWNLOAD_CLIENT is not set +# CONFIG_DOWNLOADER 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_MQTT_HELPER is not set +# CONFIG_NRF_MCUMGR_SMP_CLIENT is not set +# end of Application protocols + +# CONFIG_OPENTHREAD_RPC is not set +# 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 +# CONFIG_NFC_RPC 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 + +# +# Multiprotocol service layer (MPSL) +# +# CONFIG_MPSL_FEM_ONLY is not set +# CONFIG_MPSL_FEM_DEVICE_CONFIG_254 is not set +CONFIG_MPSL_THREAD_COOP_PRIO=8 +CONFIG_MPSL_TIMESLOT_SESSION_COUNT=0 +# CONFIG_MPSL_ASSERT_HANDLER is not set +CONFIG_MPSL_LOW_PRIO_IRQN=25 +CONFIG_MPSL_HFCLK_LATENCY=1400 +CONFIG_MPSL_INIT_PRIORITY=40 +# end of Multiprotocol service layer (MPSL) + +# +# Partition Manager +# +CONFIG_PARTITION_MANAGER_ENABLED=y +CONFIG_FLASH_MAP_CUSTOM=y +CONFIG_SRAM_SIZE=128 +CONFIG_SRAM_BASE_ADDRESS=0x20000000 +CONFIG_NRF_TRUSTZONE_FLASH_REGION_SIZE=0 +CONFIG_NRF_TRUSTZONE_RAM_REGION_SIZE=0 + +# +# Zephyr subsystem configurations +# +# end of Zephyr subsystem configurations + +# +# NCS subsystem configurations +# +CONFIG_PM_EXTERNAL_FLASH_BASE=0 +CONFIG_PM_EXTERNAL_FLASH_PATH="" +CONFIG_PM_EXTERNAL_FLASH_SIZE_BITS=0 +# CONFIG_PM_OVERRIDE_EXTERNAL_DRIVER_CHECK is not set +CONFIG_PM_SRAM_BASE=0x20000000 +CONFIG_PM_SRAM_SIZE=0x20000 +# end of Partition Manager + +# +# nRF RPC (Remote Procedure Call) library +# +# end of nRF RPC (Remote Procedure Call) library + +# +# Full Modem Firmware Update Management(FMFU) +# +# end of Full Modem Firmware Update Management(FMFU) + +# +# Additional MCUmgr configuration +# + +# +# Additional MCUmgr group configuration +# + +# +# Additional MCUmgr OS group management functionality +# +# end of Additional MCUmgr OS group management functionality +# end of Additional MCUmgr group configuration +# end of Additional MCUmgr configuration + +# CONFIG_CAF is not set + +# +# Nordic IEEE 802.15.4 +# +# end of Nordic IEEE 802.15.4 + +# CONFIG_DM_MODULE is not set + +# +# nRF Security +# +# CONFIG_NORDIC_SECURITY_BACKEND is not set +# CONFIG_NRF_SECURITY is not set + +# +# Nordic-added meta types +# + +# +# Nordic added alg types +# +# CONFIG_PSA_WANT_ALG_ECDSA_ANY is not set +# CONFIG_PSA_WANT_ALG_ED25519PH is not set +# CONFIG_PSA_WANT_ALG_ED448PH is not set +# CONFIG_PSA_WANT_ALG_PURE_EDDSA is not set +# CONFIG_PSA_WANT_ALG_RSA_PKCS1V15_SIGN_RAW is not set +# CONFIG_PSA_WANT_ALG_RSA_PSS_ANY_SALT is not set +# CONFIG_PSA_WANT_ALG_SHA_512_224 is not set +# CONFIG_PSA_WANT_ALG_SHA_512_256 is not set +# CONFIG_PSA_WANT_ALG_SPAKE2P_HMAC is not set +# CONFIG_PSA_WANT_ALG_SPAKE2P_CMAC is not set +# CONFIG_PSA_WANT_ALG_SPAKE2P_MATTER is not set +# CONFIG_PSA_WANT_ALG_SP800_108_COUNTER_HMAC is not set +# CONFIG_PSA_WANT_ALG_SP800_108_COUNTER_CMAC is not set +# CONFIG_PSA_WANT_ALG_SRP_6 is not set +# CONFIG_PSA_WANT_ALG_SRP_PASSWORD_HASH is not set +# CONFIG_PSA_WANT_ALG_XTS is not set +# CONFIG_PSA_WANT_ALG_ECB_NO_PADDING is not set +# CONFIG_PSA_WANT_ALG_CHACHA20 is not set +# CONFIG_PSA_WANT_ALG_SHAKE256_512 is not set +# CONFIG_PSA_WANT_ALG_AES_KW is not set +# CONFIG_PSA_WANT_ALG_AES_KWP is not set +# CONFIG_PSA_WANT_ALG_WPA3_SAE_PT is not set +# CONFIG_PSA_WANT_ALG_WPA3_SAE is not set + +# +# Nordic added ECC curve types +# +# CONFIG_PSA_WANT_ECC_BRAINPOOL_P_R1_160 is not set +# CONFIG_PSA_WANT_ECC_BRAINPOOL_P_R1_192 is not set +# CONFIG_PSA_WANT_ECC_BRAINPOOL_P_R1_224 is not set +# CONFIG_PSA_WANT_ECC_BRAINPOOL_P_R1_320 is not set +# CONFIG_PSA_WANT_ECC_TWISTED_EDWARDS_255 is not set +# CONFIG_PSA_WANT_ECC_TWISTED_EDWARDS_448 is not set +# CONFIG_PSA_WANT_ECC_SECP_K1_224 is not set +# CONFIG_PSA_WANT_ECC_SECP_R2_160 is not set +# CONFIG_PSA_WANT_ECC_SECT_K1_163 is not set +# CONFIG_PSA_WANT_ECC_SECT_K1_233 is not set +# CONFIG_PSA_WANT_ECC_SECT_K1_239 is not set +# CONFIG_PSA_WANT_ECC_SECT_K1_283 is not set +# CONFIG_PSA_WANT_ECC_SECT_K1_409 is not set +# CONFIG_PSA_WANT_ECC_SECT_K1_571 is not set +# CONFIG_PSA_WANT_ECC_SECT_R1_163 is not set +# CONFIG_PSA_WANT_ECC_SECT_R1_233 is not set +# CONFIG_PSA_WANT_ECC_SECT_R1_283 is not set +# CONFIG_PSA_WANT_ECC_SECT_R1_409 is not set +# CONFIG_PSA_WANT_ECC_SECT_R1_571 is not set +# CONFIG_PSA_WANT_ECC_SECT_R2_163 is not set +# CONFIG_PSA_WANT_ECC_FRP_V1_256 is not set + +# +# Nordic addded RNG configuration +# +# CONFIG_PSA_WANT_GENERATE_RANDOM is not set + +# +# Nordic added key types +# +# CONFIG_PSA_WANT_KEY_TYPE_PEPPER is not set +# CONFIG_PSA_WANT_KEY_TYPE_SPAKE2P_KEY_PAIR_IMPORT is not set +# CONFIG_PSA_WANT_KEY_TYPE_SPAKE2P_KEY_PAIR_EXPORT is not set +# CONFIG_PSA_WANT_KEY_TYPE_SPAKE2P_KEY_PAIR_GENERATE is not set +# CONFIG_PSA_WANT_KEY_TYPE_SPAKE2P_KEY_PAIR_DERIVE is not set +# CONFIG_PSA_WANT_KEY_TYPE_SPAKE2P_PUBLIC_KEY is not set +# CONFIG_PSA_WANT_KEY_TYPE_SRP_KEY_PAIR_IMPORT is not set +# CONFIG_PSA_WANT_KEY_TYPE_SRP_KEY_PAIR_EXPORT is not set +# CONFIG_PSA_WANT_KEY_TYPE_SRP_KEY_PAIR_GENERATE is not set +# CONFIG_PSA_WANT_KEY_TYPE_SRP_KEY_PAIR_DERIVE is not set +# CONFIG_PSA_WANT_KEY_TYPE_SRP_PUBLIC_KEY is not set +# CONFIG_PSA_WANT_KEY_TYPE_WPA3_SAE_PT is not set +# end of nRF Security + +# +# Audio Modules +# +# CONFIG_AUDIO_MODULE_TEST is not set + +# +# Log levels +# +# end of Log levels +# end of Audio Modules + +# +# Audio Modules +# +# CONFIG_AUDIO_MODULE_TEMPLATE is not set +# end of Audio Modules + +# CONFIG_UART_ASYNC_ADAPTER is not set +# CONFIG_TRUSTED_STORAGE is not set + +# +# Logging over RPC +# +# end of Logging over RPC + +# CONFIG_SUIT is not set +# CONFIG_NRF_COMPRESS is not set + +# +# MCUboot IDs (informative only, do not change) +# +CONFIG_MCUBOOT_APPLICATION_IMAGE_NUMBER=-1 +CONFIG_MCUBOOT_NETWORK_CORE_IMAGE_NUMBER=-1 +CONFIG_MCUBOOT_WIFI_PATCHES_IMAGE_NUMBER=-1 +CONFIG_MCUBOOT_QSPI_XIP_IMAGE_NUMBER=-1 +CONFIG_MCUBOOT_MCUBOOT_IMAGE_NUMBER=-1 +# end of MCUboot IDs (informative only, do not change) +# end of Subsystems + +# CONFIG_WFA_QT_CONTROL_APP is not set +CONFIG_WFA_QT_THREAD_STACK_SIZE=5200 +CONFIG_WFA_QT_REBOOT_TIMEOUT_MS=1000 +CONFIG_WFA_QT_DEFAULT_INTERFACE="wlan0" +CONFIG_WPAS_READY_TIMEOUT_MS=10000 + +# +# Libraries +# +# CONFIG_APP_JWT is not set + +# +# Binary libraries +# +# end of Binary libraries + +# CONFIG_AT_MONITOR 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_AT_PARSER is not set +# CONFIG_RESET_ON_FATAL_ERROR is not set +# CONFIG_SMS 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_LOCATION 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 +# CONFIG_SAMPLE_RATE_CONVERTER is not set +CONFIG_NCS_BOOT_BANNER=y +CONFIG_NCS_NCS_BOOT_BANNER_STRING="nRF Connect SDK" +CONFIG_NCS_ZEPHYR_BOOT_BANNER_STRING="Zephyr OS" +# end of Libraries + +# +# Device Drivers +# +# CONFIG_BT_DRIVER_QUIRK_NO_AUTO_DLE is not set +# CONFIG_FLASH_RPC is not set +CONFIG_SOC_FLASH_NRF_RADIO_SYNC_MPSL_TIMESLOT_SESSION_COUNT=0 +# CONFIG_ETH_RTT is not set +CONFIG_SENSOR=y +# 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 +# end of Device Drivers + +# +# External libraries +# +# end of External libraries + +# +# Test +# +# CONFIG_UNITY is not set + +# +# Mocks +# +# CONFIG_MOCK_NRF_MODEM_AT is not set +# CONFIG_MOCK_NRF_RPC is not set +# end of Mocks +# end of Test +# end of Nordic nRF Connect + +CONFIG_ZEPHYR_NRF_MODULE=y +# end of nrf (/home/miguel/ncs/v3.0.2/nrf) + +# +# hostap (/home/miguel/ncs/v3.0.2/modules/lib/hostap) +# +# CONFIG_WIFI_NM_WPA_SUPPLICANT is not set +CONFIG_ZEPHYR_HOSTAP_MODULE=y +# end of hostap (/home/miguel/ncs/v3.0.2/modules/lib/hostap) + +# +# mcuboot (/home/miguel/ncs/v3.0.2/bootloader/mcuboot) +# + +# +# MCUboot +# +CONFIG_DT_FLASH_WRITE_BLOCK_SIZE=4 +CONFIG_MCUBOOT_USB_SUPPORT=y +# CONFIG_USE_NRF53_MULTI_IMAGE_WITHOUT_UPGRADE_ONLY is not set +# end of MCUboot + +CONFIG_ZEPHYR_MCUBOOT_MODULE=y +# end of mcuboot (/home/miguel/ncs/v3.0.2/bootloader/mcuboot) + +# +# mbedtls (/home/miguel/ncs/v3.0.2/modules/crypto/mbedtls) +# +CONFIG_ZEPHYR_MBEDTLS_MODULE=y +# end of mbedtls (/home/miguel/ncs/v3.0.2/modules/crypto/mbedtls) + +# +# oberon-psa-crypto (/home/miguel/ncs/v3.0.2/modules/crypto/oberon-psa-crypto) +# +CONFIG_ZEPHYR_OBERON_PSA_CRYPTO_MODULE=y +# end of oberon-psa-crypto (/home/miguel/ncs/v3.0.2/modules/crypto/oberon-psa-crypto) + +# +# trusted-firmware-m (/home/miguel/ncs/v3.0.2/modules/tee/tf-m/trusted-firmware-m) +# +CONFIG_ZEPHYR_TRUSTED_FIRMWARE_M_MODULE=y +# end of trusted-firmware-m (/home/miguel/ncs/v3.0.2/modules/tee/tf-m/trusted-firmware-m) + +CONFIG_ZEPHYR_PSA_ARCH_TESTS_MODULE=y + +# +# cjson (/home/miguel/ncs/v3.0.2/modules/lib/cjson) +# +# CONFIG_CJSON_LIB is not set +CONFIG_ZEPHYR_CJSON_MODULE=y +# end of cjson (/home/miguel/ncs/v3.0.2/modules/lib/cjson) + +# +# azure-sdk-for-c (/home/miguel/ncs/v3.0.2/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 (/home/miguel/ncs/v3.0.2/modules/lib/azure-sdk-for-c) + +# +# cirrus-logic (/home/miguel/ncs/v3.0.2/modules/hal/cirrus-logic) +# +# CONFIG_HW_CODEC_CIRRUS_LOGIC is not set +CONFIG_ZEPHYR_CIRRUS_LOGIC_MODULE=y +# end of cirrus-logic (/home/miguel/ncs/v3.0.2/modules/hal/cirrus-logic) + +# +# openthread (/home/miguel/ncs/v3.0.2/modules/lib/openthread) +# +# CONFIG_OPENTHREAD is not set +CONFIG_ZEPHYR_OPENTHREAD_MODULE=y +# end of openthread (/home/miguel/ncs/v3.0.2/modules/lib/openthread) + +# +# suit-generator (/home/miguel/ncs/v3.0.2/modules/lib/suit-generator) +# +CONFIG_SUIT_ENVELOPE_TEMPLATE_FILENAME="" +CONFIG_SUIT_ENVELOPE_TARGET="" +CONFIG_SUIT_ENVELOPE_OUTPUT_ARTIFACT="merged.hex" +# CONFIG_SUIT_RECOVERY is not set +# CONFIG_SUIT_LOCAL_ENVELOPE_GENERATE is not set +# CONFIG_SUIT_DFU_CACHE_EXTRACT_IMAGE is not set +# CONFIG_SUIT_ENVELOPE_TARGET_ENCRYPT is not set +# CONFIG_SUIT_ENVELOPE_TARGET_SIGN is not set +CONFIG_ZEPHYR_SUIT_GENERATOR_MODULE=y +# end of suit-generator (/home/miguel/ncs/v3.0.2/modules/lib/suit-generator) + +# +# suit-processor (/home/miguel/ncs/v3.0.2/modules/lib/suit-processor) +# +# CONFIG_SUIT_PROCESSOR is not set +CONFIG_SUIT_PLATFORM_DRY_RUN_SUPPORT=y +CONFIG_ZEPHYR_SUIT_PROCESSOR_MODULE=y +# end of suit-processor (/home/miguel/ncs/v3.0.2/modules/lib/suit-processor) + +# +# memfault-firmware-sdk (/home/miguel/ncs/v3.0.2/modules/lib/memfault-firmware-sdk) +# +# CONFIG_MEMFAULT is not set +CONFIG_ZEPHYR_MEMFAULT_FIRMWARE_SDK_MODULE=y +# end of memfault-firmware-sdk (/home/miguel/ncs/v3.0.2/modules/lib/memfault-firmware-sdk) + +# +# coremark (/home/miguel/ncs/v3.0.2/modules/benchmark/coremark) +# +# CONFIG_COREMARK is not set +CONFIG_ZEPHYR_COREMARK_MODULE=y +# end of coremark (/home/miguel/ncs/v3.0.2/modules/benchmark/coremark) + +# +# canopennode (/home/miguel/ncs/v3.0.2/modules/lib/canopennode) +# +CONFIG_ZEPHYR_CANOPENNODE_MODULE=y +# end of canopennode (/home/miguel/ncs/v3.0.2/modules/lib/canopennode) + +# +# chre (/home/miguel/ncs/v3.0.2/modules/lib/chre) +# +CONFIG_ZEPHYR_CHRE_MODULE=y +# CONFIG_CHRE is not set +# end of chre (/home/miguel/ncs/v3.0.2/modules/lib/chre) + +# +# lz4 (/home/miguel/ncs/v3.0.2/modules/lib/lz4) +# +CONFIG_ZEPHYR_LZ4_MODULE=y +# CONFIG_LZ4 is not set +# end of lz4 (/home/miguel/ncs/v3.0.2/modules/lib/lz4) + +# +# nanopb (/home/miguel/ncs/v3.0.2/modules/lib/nanopb) +# +CONFIG_ZEPHYR_NANOPB_MODULE=y +# CONFIG_NANOPB is not set +# end of nanopb (/home/miguel/ncs/v3.0.2/modules/lib/nanopb) + +CONFIG_ZEPHYR_TF_M_TESTS_MODULE=y + +# +# zscilib (/home/miguel/ncs/v3.0.2/modules/lib/zscilib) +# +# CONFIG_ZSL is not set +CONFIG_ZEPHYR_ZSCILIB_MODULE=y +# end of zscilib (/home/miguel/ncs/v3.0.2/modules/lib/zscilib) + +# +# cmsis (/home/miguel/ncs/v3.0.2/modules/hal/cmsis) +# +CONFIG_ZEPHYR_CMSIS_MODULE=y +CONFIG_HAS_CMSIS_CORE=y +CONFIG_HAS_CMSIS_CORE_M=y +# CONFIG_CMSIS_M_CHECK_DEVICE_DEFINES is not set +# end of cmsis (/home/miguel/ncs/v3.0.2/modules/hal/cmsis) + +# +# cmsis-dsp (/home/miguel/ncs/v3.0.2/modules/lib/cmsis-dsp) +# +CONFIG_ZEPHYR_CMSIS_DSP_MODULE=y +# CONFIG_CMSIS_DSP is not set +# end of cmsis-dsp (/home/miguel/ncs/v3.0.2/modules/lib/cmsis-dsp) + +# +# cmsis-nn (/home/miguel/ncs/v3.0.2/modules/lib/cmsis-nn) +# +CONFIG_ZEPHYR_CMSIS_NN_MODULE=y +# CONFIG_CMSIS_NN is not set +# end of cmsis-nn (/home/miguel/ncs/v3.0.2/modules/lib/cmsis-nn) + +# +# fatfs (/home/miguel/ncs/v3.0.2/modules/fs/fatfs) +# +CONFIG_ZEPHYR_FATFS_MODULE=y +# end of fatfs (/home/miguel/ncs/v3.0.2/modules/fs/fatfs) + +# +# hal_nordic (/home/miguel/ncs/v3.0.2/modules/hal/nordic) +# +CONFIG_ZEPHYR_HAL_NORDIC_MODULE=y +CONFIG_HAS_NORDIC_DRIVERS=y + +# +# Nordic drivers +# +# CONFIG_NRF_802154_SOURCE_HAL_NORDIC is not set +# CONFIG_NRF_802154_RADIO_DRIVER is not set +# CONFIG_NRF_802154_SER_RADIO is not set +# end of Nordic drivers + +CONFIG_HAS_NRFX=y + +# +# nrfx drivers +# +CONFIG_NRFX_CLOCK=y +CONFIG_NRFX_CLOCK_LFXO_TWO_STAGE_ENABLED=y +# 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_GPIOTE0=y +# CONFIG_NRFX_GPPI is not set +# CONFIG_NRFX_I2S0 is not set +# CONFIG_NRFX_LPCOMP is not set +# CONFIG_NRFX_NFCT is not set +# CONFIG_NRFX_NVMC is not set +# CONFIG_NRFX_PDM0 is not set +CONFIG_NRFX_POWER=y +# CONFIG_NRFX_PPI is not set +# CONFIG_NRFX_PWM0 is not set +# CONFIG_NRFX_PWM1 is not set +# CONFIG_NRFX_PWM2 is not set +# CONFIG_NRFX_PWM3 is not set +# CONFIG_NRFX_QDEC0 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_SPI0 is not set +# CONFIG_NRFX_SPI1 is not set +# CONFIG_NRFX_SPI2 is not set +# CONFIG_NRFX_SPIM0 is not set +# CONFIG_NRFX_SPIM1 is not set +# CONFIG_NRFX_SPIM2 is not set +# CONFIG_NRFX_SPIM3 is not set +# CONFIG_NRFX_SPIS0 is not set +# CONFIG_NRFX_SPIS1 is not set +# CONFIG_NRFX_SPIS2 is not set +# CONFIG_NRFX_SPIS3 is not set +# CONFIG_NRFX_SYSTICK is not set +CONFIG_NRFX_TEMP=y +# CONFIG_NRFX_TIMER0 is not set +# CONFIG_NRFX_TIMER1 is not set +# CONFIG_NRFX_TIMER2 is not set +# CONFIG_NRFX_TIMER3 is not set +# CONFIG_NRFX_TIMER4 is not set +# CONFIG_NRFX_TWI0 is not set +# CONFIG_NRFX_TWI1 is not set +# CONFIG_NRFX_TWIM0 is not set +# CONFIG_NRFX_TWIM1 is not set +# CONFIG_NRFX_TWIS0 is not set +# CONFIG_NRFX_TWIS1 is not set +# CONFIG_NRFX_UART0 is not set +# CONFIG_NRFX_UARTE0 is not set +# CONFIG_NRFX_UARTE1 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 + +CONFIG_NRFX_RESERVED_RESOURCES_HEADER="nrfx_config_reserved_resources_ncs.h" +# end of nrfx drivers +# end of hal_nordic (/home/miguel/ncs/v3.0.2/modules/hal/nordic) + +# +# hal_st (/home/miguel/ncs/v3.0.2/modules/hal/st) +# +CONFIG_ZEPHYR_HAL_ST_MODULE=y +# end of hal_st (/home/miguel/ncs/v3.0.2/modules/hal/st) + +# +# hal_tdk (/home/miguel/ncs/v3.0.2/modules/hal/tdk) +# +CONFIG_ZEPHYR_HAL_TDK_MODULE=y + +# +# TDK drivers +# +# CONFIG_TDK_HAL is not set +# end of TDK drivers +# end of hal_tdk (/home/miguel/ncs/v3.0.2/modules/hal/tdk) + +CONFIG_ZEPHYR_HAL_WURTHELEKTRONIK_MODULE=y + +# +# liblc3 (/home/miguel/ncs/v3.0.2/modules/lib/liblc3) +# +CONFIG_ZEPHYR_LIBLC3_MODULE=y +# end of liblc3 (/home/miguel/ncs/v3.0.2/modules/lib/liblc3) + +CONFIG_ZEPHYR_LIBMETAL_MODULE=y + +# +# littlefs (/home/miguel/ncs/v3.0.2/modules/fs/littlefs) +# +CONFIG_ZEPHYR_LITTLEFS_MODULE=y +# end of littlefs (/home/miguel/ncs/v3.0.2/modules/fs/littlefs) + +# +# loramac-node (/home/miguel/ncs/v3.0.2/modules/lib/loramac-node) +# +CONFIG_ZEPHYR_LORAMAC_NODE_MODULE=y +# CONFIG_HAS_SEMTECH_RADIO_DRIVERS is not set +# end of loramac-node (/home/miguel/ncs/v3.0.2/modules/lib/loramac-node) + +# +# lvgl (/home/miguel/ncs/v3.0.2/modules/lib/gui/lvgl) +# +CONFIG_ZEPHYR_LVGL_MODULE=y +# end of lvgl (/home/miguel/ncs/v3.0.2/modules/lib/gui/lvgl) + +CONFIG_ZEPHYR_MIPI_SYS_T_MODULE=y + +# +# nrf_wifi (/home/miguel/ncs/v3.0.2/modules/lib/nrf_wifi) +# +CONFIG_ZEPHYR_NRF_WIFI_MODULE=y +# CONFIG_NRF70_BUSLIB is not set +# end of nrf_wifi (/home/miguel/ncs/v3.0.2/modules/lib/nrf_wifi) + +CONFIG_ZEPHYR_OPEN_AMP_MODULE=y + +# +# percepio (/home/miguel/ncs/v3.0.2/modules/debug/percepio) +# + +# +# Percepio Tracealyzer support can be enabled from the tracing subsystem +# +# CONFIG_PERCEPIO_DFM is not set +CONFIG_ZEPHYR_PERCEPIO_MODULE=y +# end of percepio (/home/miguel/ncs/v3.0.2/modules/debug/percepio) + +# +# picolibc (/home/miguel/ncs/v3.0.2/modules/lib/picolibc) +# +# CONFIG_PICOLIBC_MODULE is not set +CONFIG_ZEPHYR_PICOLIBC_MODULE=y +# end of picolibc (/home/miguel/ncs/v3.0.2/modules/lib/picolibc) + +# +# segger (/home/miguel/ncs/v3.0.2/modules/debug/segger) +# +CONFIG_ZEPHYR_SEGGER_MODULE=y +CONFIG_HAS_SEGGER_RTT=y +CONFIG_USE_SEGGER_RTT=y +# CONFIG_SEGGER_RTT_CUSTOM_LOCKING is not set +CONFIG_SEGGER_RTT_MAX_NUM_UP_BUFFERS=3 +CONFIG_SEGGER_RTT_MAX_NUM_DOWN_BUFFERS=3 +CONFIG_SEGGER_RTT_BUFFER_SIZE_UP=1024 +CONFIG_SEGGER_RTT_BUFFER_SIZE_DOWN=16 +CONFIG_SEGGER_RTT_PRINTF_BUFFER_SIZE=64 +CONFIG_SEGGER_RTT_MODE_NO_BLOCK_SKIP=y +# CONFIG_SEGGER_RTT_MODE_NO_BLOCK_TRIM is not set +# CONFIG_SEGGER_RTT_MODE_BLOCK_IF_FIFO_FULL is not set +CONFIG_SEGGER_RTT_MODE=0 +# CONFIG_SEGGER_RTT_MEMCPY_USE_BYTELOOP is not set +# CONFIG_SEGGER_RTT_SECTION_NONE is not set +# CONFIG_SEGGER_RTT_SECTION_DTCM is not set +# CONFIG_SEGGER_RTT_SECTION_CCM is not set +CONFIG_SEGGER_RTT_SECTION_CUSTOM=y +# CONFIG_SEGGER_RTT_SECTION_CUSTOM_DTS_REGION is not set +CONFIG_SEGGER_RTT_SECTION_CUSTOM_NAME=".rtt_buff_data" +# CONFIG_SEGGER_RTT_INIT_MODE_ALWAYS is not set +CONFIG_SEGGER_RTT_INIT_MODE_STRONG_CHECK=y +# CONFIG_SEGGER_RTT_INIT_MODE_WEAK_CHECK is not set +# end of segger (/home/miguel/ncs/v3.0.2/modules/debug/segger) + +CONFIG_ZEPHYR_TINYCRYPT_MODULE=y + +# +# uoscore-uedhoc (/home/miguel/ncs/v3.0.2/modules/lib/uoscore-uedhoc) +# +CONFIG_ZEPHYR_UOSCORE_UEDHOC_MODULE=y +# end of uoscore-uedhoc (/home/miguel/ncs/v3.0.2/modules/lib/uoscore-uedhoc) + +# +# zcbor (/home/miguel/ncs/v3.0.2/modules/lib/zcbor) +# +CONFIG_ZEPHYR_ZCBOR_MODULE=y +# CONFIG_ZCBOR is not set +# end of zcbor (/home/miguel/ncs/v3.0.2/modules/lib/zcbor) + +# +# nrfxlib (/home/miguel/ncs/v3.0.2/nrfxlib) +# + +# +# Nordic nrfxlib +# + +# +# nrf_modem (Modem library) +# +CONFIG_NRF_MODEM_SHMEM_CTRL_SIZE=0x4e8 +# end of nrf_modem (Modem library) + +# CONFIG_NFC_T2T_NRFXLIB is not set +# CONFIG_NFC_T4T_NRFXLIB is not set +# CONFIG_MPSL is not set + +# +# Crypto libraries for nRF5x SOCs. +# +# CONFIG_NRF_OBERON is not set +# CONFIG_NRF_CC310_BL is not set +# end of Crypto libraries for nRF5x SOCs. + +# CONFIG_NRF_RPC is not set +CONFIG_NRF_802154_SOURCE_NRFXLIB=y +# CONFIG_GZLL is not set +# CONFIG_NRF_DM is not set +# CONFIG_NRF_FUEL_GAUGE is not set +# end of Nordic nrfxlib + +CONFIG_ZEPHYR_NRFXLIB_MODULE=y +# end of nrfxlib (/home/miguel/ncs/v3.0.2/nrfxlib) + +CONFIG_ZEPHYR_NRF_HW_MODELS_MODULE=y + +# +# connectedhomeip (/home/miguel/ncs/v3.0.2/modules/lib/matter) +# +# CONFIG_CHIP is not set +CONFIG_ZEPHYR_CONNECTEDHOMEIP_MODULE=y +# end of connectedhomeip (/home/miguel/ncs/v3.0.2/modules/lib/matter) + +# 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_HAS_MEC5_HAL is not set +# CONFIG_OPENAMP is not set +# CONFIG_MIPI_SYST_LIB is not set +# CONFIG_HAS_TELINK_DRIVERS is not set +# CONFIG_TINYCRYPT is not set +# CONFIG_MCUBOOT_BOOTUTIL_LIB is not set + +# +# Unavailable modules, please install those via the project manifest. +# + +# +# hal_gigadevice module not available. +# + +# +# Trusted-firmware-a module not available. +# + +# +# THRIFT module not available. +# +# CONFIG_ACPI is not set +# end of Modules + +CONFIG_BOARD="phf000_board" +CONFIG_BOARD_REVISION="" +CONFIG_BOARD_TARGET="phf000_board/nrf52833" +# CONFIG_NET_DRIVERS is not set +CONFIG_BOARD_PHF000_BOARD=y +CONFIG_BOARD_PHF000_BOARD_NRF52833=y +CONFIG_BOARD_QUALIFIERS="nrf52833" + +# +# Board Options +# +# end of Board Options + +# +# Hardware Configuration +# +CONFIG_SOC="nrf52833" +CONFIG_SOC_SERIES="nrf52" +CONFIG_SOC_FAMILY="nordic_nrf" +CONFIG_SOC_FAMILY_NORDIC_NRF=y +CONFIG_SOC_SERIES_NRF52X=y +CONFIG_SOC_NRF52833=y +CONFIG_SOC_NRF52833_QDAA=y +# CONFIG_BUILD_OUTPUT_INFO_HEADER is not set +CONFIG_HAS_HW_NRF_ACL=y +CONFIG_HAS_HW_NRF_CCM=y +CONFIG_HAS_HW_NRF_CCM_LFLEN_8BIT=y +CONFIG_HAS_HW_NRF_CCM_HEADERMASK=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_GPIOTE0=y +CONFIG_HAS_HW_NRF_MWU=y +CONFIG_HAS_HW_NRF_NVMC_PE=y +CONFIG_HAS_HW_NRF_POWER=y +CONFIG_HAS_HW_NRF_PPI=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_SAADC=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_USBD=y +CONFIG_HAS_HW_NRF_WDT0=y +CONFIG_HAS_NORDIC_RAM_CTRL=y +# CONFIG_NRF_FORCE_RAM_ON_REBOOT is not set +# CONFIG_NRF_SYS_EVENT is not set +# CONFIG_GPIO_AS_PINRESET is not set +CONFIG_NRF_ENABLE_ICACHE=y +CONFIG_NRF_RTC_TIMER_USER_CHAN_COUNT=0 +# CONFIG_SOC_NRF54H20_GPD is not set +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_DEPRECATED_UART_NRFX_UARTE_LEGACY_SHIM=y +CONFIG_GPIO_INIT_PRIORITY=40 +# end of Hardware Configuration + +CONFIG_SOC_COMPATIBLE_NRF=y +CONFIG_SOC_COMPATIBLE_NRF52X=y +CONFIG_SOC_COMPATIBLE_NRF52833=y +CONFIG_ARCH="arm" +# CONFIG_EXTRA_EXCEPTION_INFO is not set +CONFIG_ARCH_HAS_SINGLE_THREAD_SUPPORT=y +CONFIG_CPU_CORTEX=y +CONFIG_KOBJECT_TEXT_AREA=256 +CONFIG_ARM_MPU=y +CONFIG_ARM_MPU_REGION_MIN_ALIGN_AND_SIZE=32 +# CONFIG_MPU_ALLOW_FLASH_WRITE is not set + +# +# ARM Options +# +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_PLATFORM_SPECIFIC_INIT is not set +CONFIG_FAULT_DUMP=2 +CONFIG_ARM_STACK_PROTECTION=y +CONFIG_FP16=y +CONFIG_FP16_IEEE=y +# CONFIG_FP16_ALT is not set +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/M55 options +# +# CONFIG_ZERO_LATENCY_IRQS is not set +# CONFIG_SW_VECTOR_RELAY is not set +# CONFIG_CORTEX_M_DWT is not set +# CONFIG_CORTEX_M_DEBUG_MONITOR_HOOK is not set +# CONFIG_TRAP_UNALIGNED_ACCESS is not set +# end of ARM Cortex-M0/M0+/M1/M3/M4/M7/M23/M33/M55 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_MPU_STACK_GUARD=y +# CONFIG_MPU_DISABLE_BACKGROUND_MAP is not set +# CONFIG_CUSTOM_SECTION_ALIGN is not set +CONFIG_CUSTOM_SECTION_MIN_ALIGN_SIZE=32 +CONFIG_HAS_SWO=y +# 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_USERSPACE is not set +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 +# CONFIG_FRAME_POINTER is not set + +# +# Interrupt Configuration +# +CONFIG_ISR_TABLES_LOCAL_DECLARATION_SUPPORTED=y +# CONFIG_ISR_TABLES_LOCAL_DECLARATION is not set +CONFIG_IRQ_VECTOR_TABLE_JUMP_BY_ADDRESS=y +# CONFIG_IRQ_VECTOR_TABLE_JUMP_BY_CODE is not set +CONFIG_EXCEPTION_DEBUG=y +# CONFIG_SIMPLIFIED_EXCEPTION_CODES is not set +# end of Interrupt Configuration +# end of General Architecture Options + +CONFIG_ARCH_HAS_TIMING_FUNCTIONS=y +CONFIG_ARCH_HAS_STACK_PROTECTION=y +CONFIG_ARCH_HAS_USERSPACE=y +CONFIG_ARCH_HAS_EXECUTABLE_PAGE_BIT=y +CONFIG_ARCH_HAS_RAMFUNC_SUPPORT=y +CONFIG_ARCH_HAS_NESTED_EXCEPTION_DETECTION=y +CONFIG_ARCH_SUPPORTS_COREDUMP=y +CONFIG_ARCH_SUPPORTS_COREDUMP_THREADS=y +CONFIG_ARCH_SUPPORTS_ARCH_HW_INIT=y +CONFIG_ARCH_SUPPORTS_ROM_START=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 + +# +# DSP Options +# +# end of DSP Options + +# +# Floating Point Options +# +# end of Floating Point Options + +# +# Cache Options +# +# end of Cache Options + +CONFIG_TOOLCHAIN_HAS_BUILTIN_FFS=y +CONFIG_ARCH_HAS_CUSTOM_SWAP_TO_MAIN=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_THREAD_STACK_INFO=y +# CONFIG_THREAD_CUSTOM_DATA is not set +# CONFIG_DYNAMIC_THREAD is not set +# CONFIG_SCHED_DUMB is not set +CONFIG_SCHED_SIMPLE=y +# CONFIG_SCHED_SCALABLE is not set +# CONFIG_SCHED_MULTIQ is not set +# CONFIG_WAITQ_DUMB is not set +# CONFIG_WAITQ_SCALABLE is not set +CONFIG_WAITQ_SIMPLE=y + +# +# Misc Kernel related options +# +CONFIG_LIBC_ERRNO=y +CONFIG_ERRNO=y +CONFIG_CURRENT_THREAD_USE_TLS=y +# end of Misc Kernel related options + +# +# Kernel Debugging and Metrics +# +CONFIG_BOOT_DELAY=0 +# CONFIG_BOOT_CLEAR_SCREEN is not set +# CONFIG_THREAD_MONITOR is not set +# CONFIG_THREAD_NAME is not set +# CONFIG_THREAD_RUNTIME_STATS is not set +# end of Kernel Debugging and Metrics + +# CONFIG_OBJ_CORE is not set + +# +# System Work Queue Options +# +# CONFIG_SYSTEM_WORKQUEUE_NO_YIELD is not set +# end of System Work Queue Options + +# +# Barrier Operations +# +CONFIG_BARRIER_OPERATIONS_ARCH=y +# end of Barrier Operations + +# +# Atomic Operations +# +CONFIG_ATOMIC_OPERATIONS_BUILTIN=y +# end of Atomic Operations + +# +# Timer API Options +# +CONFIG_TIMESLICING=y +CONFIG_TIMESLICE_PRIORITY=0 +# CONFIG_TIMESLICE_PER_THREAD is not set +# end of Timer API Options + +# +# Other Kernel Object Options +# +# CONFIG_POLL is not set +CONFIG_MEM_SLAB_POINTER_VALIDATE=y +# 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 +# CONFIG_HEAP_MEM_POOL_IGNORE_MIN is not set +# end of Other Kernel Object Options + +CONFIG_SWAP_NONATOMIC=y +CONFIG_TIMEOUT_64BIT=y +CONFIG_SYS_CLOCK_MAX_TIMEOUT_DAYS=365 + +# +# Security Options +# +# end of Security Options + +# +# Memory Domains +# +CONFIG_ARCH_MEM_DOMAIN_SUPPORTS_ISOLATED_STACKS=y +CONFIG_MEM_DOMAIN_ISOLATED_STACKS=y +# end of Memory Domains + +# +# SMP Options +# +# CONFIG_TICKET_SPINLOCKS is not set +# end of SMP Options + +CONFIG_TOOLCHAIN_SUPPORTS_THREAD_LOCAL_STORAGE=y +CONFIG_THREAD_LOCAL_STORAGE=y +CONFIG_TOOLCHAIN_SUPPORTS_STATIC_INIT_GNU=y +# CONFIG_STATIC_INIT_GNU is not set +# CONFIG_BOOTARGS is not set +# end of General Kernel Options + +# +# Device Options +# +# CONFIG_DEVICE_DEPS is not set +# CONFIG_DEVICE_MUTABLE is not set +# CONFIG_DEVICE_DT_METADATA is not set +# end of Device Options + +# +# Initialization Priorities +# +CONFIG_KERNEL_INIT_PRIORITY_OBJECTS=30 +CONFIG_KERNEL_INIT_PRIORITY_LIBC=35 +CONFIG_KERNEL_INIT_PRIORITY_DEFAULT=40 +CONFIG_KERNEL_INIT_PRIORITY_DEVICE=50 +CONFIG_APPLICATION_INIT_PRIORITY=90 +# end of Initialization Priorities + +# +# Virtual Memory Support +# +# end of Virtual Memory Support + +# +# SoC and Board Hooks +# +# CONFIG_SOC_PREP_HOOK is not set +# CONFIG_SOC_EARLY_INIT_HOOK is not set +# CONFIG_SOC_LATE_INIT_HOOK is not set +# CONFIG_SOC_PER_CORE_INIT_HOOK is not set +# CONFIG_BOARD_EARLY_INIT_HOOK is not set +# CONFIG_BOARD_LATE_INIT_HOOK is not set +# end of SoC and Board Hooks + +# +# Device Drivers +# +CONFIG_ADC=y +CONFIG_ADC_CONFIGURABLE_INPUTS=y +# CONFIG_ADC_ASYNC is not set +CONFIG_ADC_NRFX_SAADC=y +# CONFIG_AUDIO is not set +# CONFIG_AUXDISPLAY is not set +# CONFIG_BBRAM is not set +# CONFIG_FLASH is not set +# CONFIG_CAN is not set +# CONFIG_CHARGER is not set +CONFIG_CLOCK_CONTROL_NRF=y +# CONFIG_CLOCK_CONTROL_NRF_K32SRC_RC is not set +CONFIG_CLOCK_CONTROL_NRF_K32SRC_XTAL=y +# CONFIG_CLOCK_CONTROL_NRF_K32SRC_SYNTH is not set +# CONFIG_CLOCK_CONTROL_NRF_K32SRC_EXT_LOW_SWING is not set +# CONFIG_CLOCK_CONTROL_NRF_K32SRC_EXT_FULL_SWING is not set +# CONFIG_CLOCK_CONTROL_NRF_K32SRC_500PPM is not set +# CONFIG_CLOCK_CONTROL_NRF_K32SRC_250PPM is not set +# CONFIG_CLOCK_CONTROL_NRF_K32SRC_150PPM is not set +# CONFIG_CLOCK_CONTROL_NRF_K32SRC_100PPM is not set +# CONFIG_CLOCK_CONTROL_NRF_K32SRC_75PPM is not set +CONFIG_CLOCK_CONTROL_NRF_K32SRC_50PPM=y +# CONFIG_CLOCK_CONTROL_NRF_K32SRC_30PPM is not set +# CONFIG_CLOCK_CONTROL_NRF_K32SRC_20PPM is not set +CONFIG_CLOCK_CONTROL_NRF_ACCURACY=50 +# CONFIG_CLOCK_CONTROL_FIXED_RATE_CLOCK is not set +# CONFIG_CLOCK_CONTROL_RTS5912_SCCON is not set +# CONFIG_COMPARATOR is not set +CONFIG_CONSOLE_INPUT_MAX_LINE_LEN=128 +CONFIG_CONSOLE_HAS_DRIVER=y +# CONFIG_CONSOLE_HANDLER is not set +CONFIG_CONSOLE_INIT_PRIORITY=60 +CONFIG_UART_CONSOLE=y +# CONFIG_UART_CONSOLE_DEBUG_SERVER_HOOKS is not set +# CONFIG_UART_CONSOLE_MCUMGR is not set +# CONFIG_RAM_CONSOLE is not set +# CONFIG_RTT_CONSOLE is not set +# CONFIG_IPM_CONSOLE_SENDER is not set +# CONFIG_IPM_CONSOLE_RECEIVER is not set +# CONFIG_UART_MCUMGR is not set +# CONFIG_EFI_CONSOLE is not set +CONFIG_WINSTREAM_CONSOLE_STATIC=y +CONFIG_WINSTREAM_CONSOLE_STATIC_SIZE=32768 +# CONFIG_COREDUMP_DEVICE 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_DISPLAY is not set +# CONFIG_DMA is not set +# CONFIG_DP_DRIVER is not set +# CONFIG_EDAC is not set +# CONFIG_EEPROM is not set +# CONFIG_ENTROPY_GENERATOR is not set +# CONFIG_ESPI is not set + +# +# Firmware drivers +# +# CONFIG_ARM_SCMI is not set +# end of Firmware drivers + +# CONFIG_FPGA is not set +# CONFIG_FUEL_GAUGE is not set +# CONFIG_GNSS 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_GPIO_NRFX_INTERRUPT=y +# CONFIG_GPIO_RTS5912 is not set +# CONFIG_HAPTICS is not set +CONFIG_HWINFO=y +CONFIG_HWINFO_HAS_DRIVER=y +CONFIG_HWINFO_NRF=y +# CONFIG_HWSPINLOCK is not set +# CONFIG_I2C is not set +# CONFIG_I2S is not set +# CONFIG_I3C is not set + +# +# Interrupt controller drivers +# +CONFIG_INTC_INIT_PRIORITY=40 +# end of Interrupt controller drivers + +# CONFIG_IPM is not set +# CONFIG_KSCAN 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_DBI is not set + +# +# Miscellaneous Drivers +# +# CONFIG_TIMEAWARE_GPIO is not set +# end of Miscellaneous Drivers + +# CONFIG_MM_DRV is not set +# CONFIG_MSPI is not set +# CONFIG_PCIE is not set +# CONFIG_PCIE_ENDPOINT is not set +# CONFIG_PECI is not set +CONFIG_PINCTRL=y +CONFIG_PINCTRL_STORE_REG=y +# CONFIG_PINCTRL_DYNAMIC is not set +CONFIG_PINCTRL_NRF=y +# CONFIG_PINCTRL_REALTEK_RTS5912 is not set +# CONFIG_PM_CPU_OPS is not set +# CONFIG_PS2 is not set +# CONFIG_PTP_CLOCK is not set +# CONFIG_PWM is not set +# CONFIG_RETAINED_MEM is not set +# CONFIG_RTC is not set +# CONFIG_SDHC is not set +CONFIG_SENSOR_INIT_PRIORITY=90 +# CONFIG_SENSOR_ASYNC_API is not set +# CONFIG_SENSOR_INFO is not set + +# +# Device Drivers +# +CONFIG_ADXL345_TRIGGER_NONE=y +# CONFIG_ADXL345_TRIGGER_GLOBAL_THREAD is not set +# CONFIG_ADXL345_TRIGGER_OWN_THREAD is not set +CONFIG_SENSOR_DS3231_INIT_PRIORITY=86 +CONFIG_TEMP_NRF5=y +# CONFIG_TDK_APEX is not set + +# +# Capabilities +# +CONFIG_SERIAL_HAS_DRIVER=y +CONFIG_SERIAL_SUPPORT_INTERRUPT=y +CONFIG_UART_LINE_CTRL=y +# CONFIG_UART_DRV_CMD is not set +# CONFIG_UART_WIDE_DATA is not set +# CONFIG_UART_PIPE is not set +# CONFIG_UART_ASYNC_RX_HELPER is not set + +# +# Serial Drivers +# +# CONFIG_UART_RTS5912 is not set +# CONFIG_SMBUS is not set +# CONFIG_STEPPER is not set + +# +# Timer drivers +# +# CONFIG_TIMER_READS_ITS_FREQUENCY_AT_RUNTIME is not set +# CONFIG_SYSTEM_CLOCK_SLOPPY_IDLE is not set +CONFIG_SYSTEM_CLOCK_INIT_PRIORITY=0 +CONFIG_TICKLESS_CAPABLE=y +CONFIG_SYSTEM_TIMER_HAS_DISABLE_SUPPORT=y +# CONFIG_NRF_RTC_TIMER_TRIGGER_OVERFLOW is not set +# CONFIG_SYSTEM_CLOCK_NO_WAIT is not set +# CONFIG_SYSTEM_CLOCK_WAIT_FOR_AVAILABILITY is not set +CONFIG_SYSTEM_CLOCK_WAIT_FOR_STABILITY=y +# CONFIG_REALTEK_RTS5912_RTMR is not set +# end of Timer drivers + +# CONFIG_USB_BC12 is not set +# CONFIG_UDC_DRIVER is not set +# CONFIG_UHC_DRIVER is not set +# CONFIG_UVB is not set +CONFIG_USB_DEVICE_DRIVER=y +# CONFIG_USB_DC_HAS_HS_SUPPORT is not set +CONFIG_USB_DEVICE_REMOTE_WAKEUP=y +CONFIG_USB_NRFX=y +CONFIG_USB_NRFX_EVT_QUEUE_SIZE=32 +CONFIG_USB_NRFX_WORK_QUEUE_STACK_SIZE=1024 +CONFIG_USB_NRFX_ATTACHED_EVENT_DELAY=0 +CONFIG_NRF_USBD_COMMON=y +CONFIG_NRF_USBD_ISO_IN_ZLP=y +# CONFIG_USBC_TCPC_DRIVER is not set +# CONFIG_USBC_VBUS_DRIVER is not set +# CONFIG_USBC_PPC_DRIVER is not set +# CONFIG_VIDEO is not set +# CONFIG_VIRTUALIZATION is not set +# CONFIG_W1 is not set +# CONFIG_TEE is not set +# end of Device Drivers + +# CONFIG_REQUIRES_FULL_LIBC is not set +# CONFIG_REQUIRES_FLOAT_PRINTF is not set +CONFIG_FULL_LIBC_SUPPORTED=y +CONFIG_MINIMAL_LIBC_SUPPORTED=y +CONFIG_NEWLIB_LIBC_SUPPORTED=y +CONFIG_PICOLIBC_SUPPORTED=y + +# +# C Library +# +# CONFIG_MINIMAL_LIBC is not set +CONFIG_PICOLIBC=y +# CONFIG_NEWLIB_LIBC is not set +# CONFIG_EXTERNAL_LIBC is not set +CONFIG_HAS_NEWLIB_LIBC_NANO=y +CONFIG_COMMON_LIBC_ABORT=y +# CONFIG_COMMON_LIBC_ASCTIME_R is not set +# CONFIG_COMMON_LIBC_CTIME_R is not set +CONFIG_COMMON_LIBC_MALLOC=y +CONFIG_COMMON_LIBC_CALLOC=y +CONFIG_COMMON_LIBC_REALLOCARRAY=y +# CONFIG_COMMON_LIBC_REMOVE is not set +# CONFIG_PICOLIBC_USE_MODULE is not set +CONFIG_PICOLIBC_USE_TOOLCHAIN=y +# CONFIG_PICOLIBC_IO_FLOAT is not set +CONFIG_PICOLIBC_IO_LONG_LONG=y +CONFIG_STDOUT_CONSOLE=y +CONFIG_NEED_LIBC_MEM_PARTITION=y +# end of C Library + +# +# C++ Language Support +# +# CONFIG_CPP is not set +# end of C++ Language Support + +# CONFIG_CRC is not set + +# +# 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 + +# +# Heap and Memory Allocation +# +# CONFIG_SYS_HEAP_VALIDATE is not set +# CONFIG_SYS_HEAP_STRESS is not set +# CONFIG_SYS_HEAP_INFO is not set +CONFIG_SYS_HEAP_ALLOC_LOOPS=3 +# CONFIG_SYS_HEAP_RUNTIME_STATS is not set +# CONFIG_SYS_HEAP_LISTENER is not set +# CONFIG_SYS_HEAP_SMALL_ONLY is not set +# CONFIG_SYS_HEAP_BIG_ONLY is not set +CONFIG_SYS_HEAP_AUTO=y +# CONFIG_MULTI_HEAP is not set +# CONFIG_SHARED_MULTI_HEAP is not set +# end of Heap and Memory Allocation + +# +# Memory Blocks +# +# CONFIG_SYS_MEM_BLOCKS is not set +# end of Memory Blocks + +# CONFIG_NET_BUF is not set + +# +# OS Support Library +# +# CONFIG_FDTABLE is not set +CONFIG_ZVFS_OPEN_MAX=4 +# CONFIG_PRINTK_SYNC is not set +# CONFIG_MPSC_PBUF is not set +# CONFIG_SPSC_PBUF is not set +CONFIG_HAS_POWEROFF=y +# CONFIG_POWEROFF 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_LIBC_SUBSTS is not set +# CONFIG_CBPRINTF_PACKAGE_LONGDOUBLE is not set +# CONFIG_CBPRINTF_STATIC_PACKAGE_CHECK_ALIGNMENT is not set +CONFIG_CBPRINTF_CONVERT_CHECK_PTR=y +# CONFIG_ZVFS is not set +# end of OS Support Library + +# +# POSIX API Support +# + +# +# POSIX Options +# +# CONFIG_POSIX_API is not set +CONFIG_POSIX_AEP_CHOICE_NONE=y +# CONFIG_POSIX_AEP_CHOICE_BASE is not set +# CONFIG_POSIX_AEP_CHOICE_PSE51 is not set +# CONFIG_POSIX_AEP_CHOICE_PSE52 is not set +# CONFIG_POSIX_AEP_CHOICE_PSE53 is not set +# CONFIG_POSIX_ASYNCHRONOUS_IO is not set +# CONFIG_POSIX_BARRIERS is not set +# CONFIG_POSIX_C_LANG_SUPPORT_R is not set +# CONFIG_POSIX_C_LIB_EXT is not set + +# +# POSIX device I/O +# +# CONFIG_POSIX_DEVICE_IO is not set +CONFIG_POSIX_OPEN_MAX=4 +# end of POSIX device I/O + +# CONFIG_POSIX_FD_MGMT is not set +# CONFIG_POSIX_FILE_SYSTEM_R is not set +# CONFIG_POSIX_FILE_SYSTEM is not set + +# +# POSIX memory +# +CONFIG_POSIX_PAGE_SIZE=0x40 +# CONFIG_POSIX_SHARED_MEMORY_OBJECTS is not set +# CONFIG_POSIX_MAPPED_FILES is not set +# CONFIG_POSIX_MEMORY_PROTECTION is not set +# end of POSIX memory + +# CONFIG_POSIX_MESSAGE_PASSING is not set +# CONFIG_POSIX_SINGLE_PROCESS is not set +# CONFIG_POSIX_MULTI_PROCESS is not set +# CONFIG_POSIX_THREADS is not set +# CONFIG_POSIX_READER_WRITER_LOCKS is not set + +# +# POSIX scheduler options +# +# CONFIG_POSIX_PRIORITY_SCHEDULING is not set +# end of POSIX scheduler options + +# CONFIG_POSIX_SEMAPHORES is not set + +# +# POSIX signals +# +# CONFIG_POSIX_REALTIME_SIGNALS is not set +# CONFIG_POSIX_SIGNALS is not set +# end of POSIX signals + +# CONFIG_POSIX_SPIN_LOCKS is not set + +# +# POSIX synchronized I/O +# +# CONFIG_POSIX_FSYNC is not set +# CONFIG_POSIX_SYNCHRONIZED_IO is not set +# end of POSIX synchronized I/O + +# CONFIG_POSIX_TIMERS is not set + +# +# X/Open system interfaces +# +# CONFIG_XOPEN_STREAMS is not set +# CONFIG_XSI_SYSTEM_LOGGING is not set +# CONFIG_XSI_THREADS_EXT is not set +# end of X/Open system interfaces + +# +# Miscellaneous POSIX-related options +# +# CONFIG_EVENTFD is not set +# end of Miscellaneous POSIX-related options + +# +# Deprecated POSIX options +# +CONFIG_EVENTFD_MAX=0 +# CONFIG_FNMATCH is not set +CONFIG_MAX_PTHREAD_COUNT=0 +CONFIG_MAX_PTHREAD_KEY_COUNT=0 +CONFIG_MAX_TIMER_COUNT=0 +CONFIG_MSG_COUNT_MAX=0 +# CONFIG_POSIX_CLOCK is not set +# CONFIG_POSIX_FS is not set +CONFIG_POSIX_LIMITS_RTSIG_MAX=0 +CONFIG_POSIX_MAX_FDS=4 +CONFIG_POSIX_MAX_OPEN_FILES=4 +# CONFIG_POSIX_MQUEUE is not set +# CONFIG_POSIX_PUTMSG is not set +# CONFIG_POSIX_SIGNAL is not set +# CONFIG_POSIX_SYSCONF is not set +# CONFIG_POSIX_UNAME is not set +# CONFIG_PTHREAD is not set +# CONFIG_PTHREAD_BARRIER is not set +# CONFIG_PTHREAD_COND is not set +# CONFIG_PTHREAD_IPC is not set +# CONFIG_PTHREAD_KEY is not set +# CONFIG_PTHREAD_MUTEX is not set +# CONFIG_PTHREAD_RWLOCK is not set +# CONFIG_PTHREAD_SPINLOCK is not set +# CONFIG_TIMER is not set +CONFIG_TIMER_DELAYTIMER_MAX=0 +CONFIG_SEM_NAMELEN_MAX=0 +CONFIG_SEM_VALUE_MAX=0 +# end of Deprecated POSIX options + +CONFIG_TC_PROVIDES_POSIX_C_LANG_SUPPORT_R=y +# end of POSIX Options + +# +# POSIX Shell Utilities +# +# end of POSIX Shell Utilities +# end of POSIX API Support + +# CONFIG_OPENAMP_RSC_TABLE is not set +# CONFIG_SMF is not set +CONFIG_LIBGCC_RTLIB=y + +# +# Utility Library +# +# CONFIG_JSON_LIBRARY is not set +CONFIG_RING_BUFFER=y +CONFIG_NOTIFY=y +# CONFIG_BASE64 is not set +CONFIG_ONOFF=y +# CONFIG_UTF8 is not set +# end of Utility Library +# end of Additional libraries + +# +# Subsystems and OS Services +# +# CONFIG_BINDESC is not set +# CONFIG_BT is not set + +# +# Controller Area Network (CAN) bus subsystem +# +# end of Controller Area Network (CAN) bus subsystem + +# CONFIG_CONSOLE_SUBSYS is not set +# CONFIG_DAP is not set + +# +# System Monitoring Options +# +# CONFIG_THREAD_ANALYZER is not set +# end of System Monitoring Options + +# +# Debugging Options +# +CONFIG_DEBUG=y +# CONFIG_STACK_USAGE is not set +CONFIG_PRINTK=y +CONFIG_EARLY_CONSOLE=y +CONFIG_ASSERT_LEVEL=2 +CONFIG_SPIN_VALIDATE=y +# CONFIG_FORCE_NO_ASSERT is not set +CONFIG_ASSERT_VERBOSE=y +# CONFIG_ASSERT_NO_FILE_INFO is not set +# CONFIG_ASSERT_NO_COND_INFO 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 +# CONFIG_SYMTAB is not set +# end of Debugging Options + +# CONFIG_MIPI_STP_DECODER is not set +# CONFIG_CS_TRACE_DEFMT is not set +# 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_LIB_LINK is not set +# CONFIG_FILE_SYSTEM 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 +# CONFIG_LLEXT is not set + +# +# Linkable loadable Extension Development Kit (EDK) +# +CONFIG_LLEXT_EDK_NAME="llext-edk" +# CONFIG_LLEXT_EDK_USERSPACE_ONLY is not set +# end of Linkable loadable Extension Development Kit (EDK) + +# +# Logging +# +# CONFIG_LOG_OUTPUT is not set +# end of Logging + +CONFIG_MEM_ATTR=y +# CONFIG_MEM_ATTR_HEAP is not set + +# +# Device Management +# + +# +# Host command handler subsystem +# +# CONFIG_EC_HOST_CMD is not set +# end of Host command handler subsystem + +# CONFIG_OSDP is not set +# end of Device Management + +# CONFIG_MODBUS is not set +# CONFIG_MODEM_MODULES is not set + +# +# Networking +# +# CONFIG_NETWORKING is not set +# end of Networking + +# +# Power Management +# +# CONFIG_PM_POLICY_LATENCY_STANDALONE is not set +# end of Power Management + +# +# Portability +# +# end of Portability + +# CONFIG_PROFILING is not set + +# +# Random Number Generators +# +# CONFIG_TEST_RANDOM_GENERATOR is not set +CONFIG_TIMER_RANDOM_INITIAL_STATE=123456789 +CONFIG_CSPRNG_AVAILABLE=y +# 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_SECURE_STORAGE is not set +# CONFIG_SETTINGS is not set +# CONFIG_SHELL is not set +# CONFIG_STATS is not set + +# +# Storage +# +# CONFIG_STREAM_FLASH is not set +# end of Storage + +# CONFIG_TASK_WDT is not set + +# +# Testing +# +# CONFIG_ZTEST is not set +# CONFIG_ZTEST_MOCKING is not set +# CONFIG_ZTRESS is not set +# CONFIG_TEST is not set +# CONFIG_FORCE_COVERAGE is not set +# CONFIG_TEST_USERSPACE is not set +# end of Testing + +# CONFIG_TIMING_FUNCTIONS is not set +# CONFIG_TRACING is not set +CONFIG_USB_DEVICE_STACK=y +CONFIG_USB_DEVICE_VID=0x2FE3 +CONFIG_USB_DEVICE_PID=0x0004 +CONFIG_USB_DEVICE_MANUFACTURER="ZEPHYR" +CONFIG_USB_DEVICE_PRODUCT="Zephyr USB console sample" +CONFIG_USB_DEVICE_SN="0123456789ABCDEF" +# CONFIG_USB_CONFIGURATION_STRING_DESC_ENABLE is not set +CONFIG_USB_COMPOSITE_DEVICE=y +CONFIG_USB_MAX_NUM_TRANSFERS=4 +CONFIG_USB_REQUEST_BUFFER_SIZE=128 +CONFIG_USB_MAX_ALT_SETTING=8 +CONFIG_USB_NUMOF_EP_WRITE_RETRIES=3 +# CONFIG_USB_DEVICE_SOF is not set +# CONFIG_USB_DEVICE_BOS is not set +# CONFIG_USB_DEVICE_OS_DESC is not set +CONFIG_USB_SELF_POWERED=y +CONFIG_USB_MAX_POWER=50 +CONFIG_USB_WORKQUEUE=y +CONFIG_USB_WORKQUEUE_STACK_SIZE=1024 +CONFIG_USB_WORKQUEUE_PRIORITY=-1 +# CONFIG_USB_DEVICE_INITIALIZE_AT_BOOT is not set + +# +# USB CDC ACM Class support +# +CONFIG_USB_CDC_ACM=y +CONFIG_USB_CDC_ACM_RINGBUF_SIZE=1024 +CONFIG_CDC_ACM_INTERRUPT_EP_MPS=16 +CONFIG_CDC_ACM_BULK_EP_MPS=64 +CONFIG_CDC_ACM_TX_DELAY_MS=100 +CONFIG_CDC_ACM_IAD=y +# CONFIG_CDC_ACM_DTE_RATE_CALLBACK_SUPPORT is not set +# end of USB CDC ACM Class support + +# CONFIG_USB_MASS_STORAGE is not set +# CONFIG_USB_DEVICE_BLUETOOTH is not set +# CONFIG_USB_DEVICE_LOOPBACK is not set + +# +# USB Device Networking support +# +# CONFIG_USB_DEVICE_NETWORK_ECM is not set +# CONFIG_USB_DEVICE_NETWORK_EEM is not set +# CONFIG_USB_DEVICE_NETWORK_RNDIS is not set +# end of USB Device Networking support + +# CONFIG_USB_DEVICE_HID is not set +# CONFIG_USB_DEVICE_AUDIO is not set +# CONFIG_USB_DEVICE_STACK_NEXT is not set +# CONFIG_USB_HOST_STACK is not set +# CONFIG_USBC_STACK is not set +# CONFIG_ZBUS is not set +# CONFIG_MODULES is not set +# end of Subsystems and OS Services + +CONFIG_TOOLCHAIN_ZEPHYR_0_17=y +CONFIG_TOOLCHAIN_ZEPHYR_SUPPORTS_THREAD_LOCAL_STORAGE=y +CONFIG_TOOLCHAIN_ZEPHYR_SUPPORTS_GNU_EXTENSIONS=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_FLASH_LOAD_SIZE=0 +CONFIG_ROM_END_OFFSET=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_LINKER_SORT_BY_ALIGNMENT=y + +# +# 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 + +CONFIG_LINKER_ITERABLE_SUBALIGN=4 +CONFIG_LINKER_DEVNULL_SUPPORT=y +# CONFIG_LINKER_DEVNULL_MEMORY is not set +# end of Linker Options + +# +# Compiler Options +# +# CONFIG_STD_C90 is not set +CONFIG_STD_C99=y +# CONFIG_STD_C11 is not set +# CONFIG_STD_C17 is not set +# CONFIG_STD_C23 is not set +CONFIG_TOOLCHAIN_SUPPORTS_GNU_EXTENSIONS=y +# CONFIG_GNU_C_EXTENSIONS is not set +# CONFIG_CODING_GUIDELINE_CHECK is not set +# CONFIG_COMPILER_FREESTANDING is not set +# CONFIG_SIZE_OPTIMIZATIONS is not set +# CONFIG_SIZE_OPTIMIZATIONS_AGGRESSIVE is not set +CONFIG_SPEED_OPTIMIZATIONS=y +# 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_TRACK_MACRO_EXPANSION=y +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 is not set +CONFIG_OUTPUT_PRINT_MEMORY_USAGE=y +# CONFIG_CLEANUP_INTERMEDIATE_FILES is not set +CONFIG_BUILD_GAP_FILL_PATTERN=0xFF +# CONFIG_BUILD_NO_GAP_FILL is not set +# CONFIG_BUILD_OUTPUT_HEX_GAP_FILL is not set +# CONFIG_BUILD_OUTPUT_EXE is not set +# CONFIG_BUILD_OUTPUT_S19_GAP_FILL is not set +# CONFIG_BUILD_OUTPUT_UF2 is not set +# CONFIG_BUILD_OUTPUT_STRIPPED is not set +# CONFIG_BUILD_OUTPUT_COMPRESS_DEBUG_SECTIONS is not set +# CONFIG_BUILD_ALIGN_LMA 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 +CONFIG_CHECK_INIT_PRIORITIES=y +# CONFIG_EMIT_ALL_SYSCALLS is not set +# 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_LEGACY_GENERATED_INCLUDE_PATH=y +# end of Compatibility diff --git a/build/PHF000-Firmware/zephyr/.config.sysbuild b/build/PHF000-Firmware/zephyr/.config.sysbuild new file mode 100644 index 0000000..4da0a87 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/.config.sysbuild @@ -0,0 +1,9 @@ +# sysbuild controlled configuration settings +CONFIG_PARTITION_MANAGER_ENABLED=y +CONFIG_BUILD_OUTPUT_BIN=y +CONFIG_BUILD_OUTPUT_HEX=y +CONFIG_WIFI_NRF70=n +CONFIG_CHIP=n +CONFIG_BOOTLOADER_MCUBOOT=n +CONFIG_MCUBOOT_SIGNATURE_KEY_FILE="" +CONFIG_MCUBOOT_ENCRYPTION_KEY_FILE="" diff --git a/build/PHF000-Firmware/zephyr/CMakeFiles/offsets.dir/arch/arm/core/offsets/offsets.c.obj b/build/PHF000-Firmware/zephyr/CMakeFiles/offsets.dir/arch/arm/core/offsets/offsets.c.obj new file mode 100644 index 0000000..2cc1b8b Binary files /dev/null and b/build/PHF000-Firmware/zephyr/CMakeFiles/offsets.dir/arch/arm/core/offsets/offsets.c.obj differ diff --git a/build/PHF000-Firmware/zephyr/CMakeFiles/zephyr.dir/home/miguel/ncs/v3.0.2/nrf/lib/boot_banner/banner.c.obj b/build/PHF000-Firmware/zephyr/CMakeFiles/zephyr.dir/home/miguel/ncs/v3.0.2/nrf/lib/boot_banner/banner.c.obj new file mode 100644 index 0000000..c23d5d6 Binary files /dev/null and b/build/PHF000-Firmware/zephyr/CMakeFiles/zephyr.dir/home/miguel/ncs/v3.0.2/nrf/lib/boot_banner/banner.c.obj differ diff --git a/build/PHF000-Firmware/zephyr/CMakeFiles/zephyr.dir/home/miguel/ncs/v3.0.2/nrf/subsys/partition_manager/flash_map_partition_manager.c.obj b/build/PHF000-Firmware/zephyr/CMakeFiles/zephyr.dir/home/miguel/ncs/v3.0.2/nrf/subsys/partition_manager/flash_map_partition_manager.c.obj new file mode 100644 index 0000000..ffd9436 Binary files /dev/null and b/build/PHF000-Firmware/zephyr/CMakeFiles/zephyr.dir/home/miguel/ncs/v3.0.2/nrf/subsys/partition_manager/flash_map_partition_manager.c.obj differ diff --git a/build/PHF000-Firmware/zephyr/CMakeFiles/zephyr.dir/lib/heap/heap.c.obj b/build/PHF000-Firmware/zephyr/CMakeFiles/zephyr.dir/lib/heap/heap.c.obj new file mode 100644 index 0000000..4ccf0f5 Binary files /dev/null and b/build/PHF000-Firmware/zephyr/CMakeFiles/zephyr.dir/lib/heap/heap.c.obj differ diff --git a/build/PHF000-Firmware/zephyr/CMakeFiles/zephyr.dir/lib/os/assert.c.obj b/build/PHF000-Firmware/zephyr/CMakeFiles/zephyr.dir/lib/os/assert.c.obj new file mode 100644 index 0000000..97f6c07 Binary files /dev/null and b/build/PHF000-Firmware/zephyr/CMakeFiles/zephyr.dir/lib/os/assert.c.obj differ diff --git a/build/PHF000-Firmware/zephyr/CMakeFiles/zephyr.dir/lib/os/cbprintf_complete.c.obj b/build/PHF000-Firmware/zephyr/CMakeFiles/zephyr.dir/lib/os/cbprintf_complete.c.obj new file mode 100644 index 0000000..8f066d3 Binary files /dev/null and b/build/PHF000-Firmware/zephyr/CMakeFiles/zephyr.dir/lib/os/cbprintf_complete.c.obj differ diff --git a/build/PHF000-Firmware/zephyr/CMakeFiles/zephyr.dir/lib/os/cbprintf_packaged.c.obj b/build/PHF000-Firmware/zephyr/CMakeFiles/zephyr.dir/lib/os/cbprintf_packaged.c.obj new file mode 100644 index 0000000..784ad77 Binary files /dev/null and b/build/PHF000-Firmware/zephyr/CMakeFiles/zephyr.dir/lib/os/cbprintf_packaged.c.obj differ diff --git a/build/PHF000-Firmware/zephyr/CMakeFiles/zephyr.dir/lib/os/printk.c.obj b/build/PHF000-Firmware/zephyr/CMakeFiles/zephyr.dir/lib/os/printk.c.obj new file mode 100644 index 0000000..770ec53 Binary files /dev/null and b/build/PHF000-Firmware/zephyr/CMakeFiles/zephyr.dir/lib/os/printk.c.obj differ diff --git a/build/PHF000-Firmware/zephyr/CMakeFiles/zephyr.dir/lib/os/sem.c.obj b/build/PHF000-Firmware/zephyr/CMakeFiles/zephyr.dir/lib/os/sem.c.obj new file mode 100644 index 0000000..f707c17 Binary files /dev/null and b/build/PHF000-Firmware/zephyr/CMakeFiles/zephyr.dir/lib/os/sem.c.obj differ diff --git a/build/PHF000-Firmware/zephyr/CMakeFiles/zephyr.dir/lib/os/thread_entry.c.obj b/build/PHF000-Firmware/zephyr/CMakeFiles/zephyr.dir/lib/os/thread_entry.c.obj new file mode 100644 index 0000000..60d8fd2 Binary files /dev/null and b/build/PHF000-Firmware/zephyr/CMakeFiles/zephyr.dir/lib/os/thread_entry.c.obj differ diff --git a/build/PHF000-Firmware/zephyr/CMakeFiles/zephyr.dir/lib/utils/bitarray.c.obj b/build/PHF000-Firmware/zephyr/CMakeFiles/zephyr.dir/lib/utils/bitarray.c.obj new file mode 100644 index 0000000..e148449 Binary files /dev/null and b/build/PHF000-Firmware/zephyr/CMakeFiles/zephyr.dir/lib/utils/bitarray.c.obj differ diff --git a/build/PHF000-Firmware/zephyr/CMakeFiles/zephyr.dir/lib/utils/dec.c.obj b/build/PHF000-Firmware/zephyr/CMakeFiles/zephyr.dir/lib/utils/dec.c.obj new file mode 100644 index 0000000..55d78af Binary files /dev/null and b/build/PHF000-Firmware/zephyr/CMakeFiles/zephyr.dir/lib/utils/dec.c.obj differ diff --git a/build/PHF000-Firmware/zephyr/CMakeFiles/zephyr.dir/lib/utils/hex.c.obj b/build/PHF000-Firmware/zephyr/CMakeFiles/zephyr.dir/lib/utils/hex.c.obj new file mode 100644 index 0000000..e14c807 Binary files /dev/null and b/build/PHF000-Firmware/zephyr/CMakeFiles/zephyr.dir/lib/utils/hex.c.obj differ diff --git a/build/PHF000-Firmware/zephyr/CMakeFiles/zephyr.dir/lib/utils/last_section_id.c.obj b/build/PHF000-Firmware/zephyr/CMakeFiles/zephyr.dir/lib/utils/last_section_id.c.obj new file mode 100644 index 0000000..7213dfc Binary files /dev/null and b/build/PHF000-Firmware/zephyr/CMakeFiles/zephyr.dir/lib/utils/last_section_id.c.obj differ diff --git a/build/PHF000-Firmware/zephyr/CMakeFiles/zephyr.dir/lib/utils/notify.c.obj b/build/PHF000-Firmware/zephyr/CMakeFiles/zephyr.dir/lib/utils/notify.c.obj new file mode 100644 index 0000000..10e22cb Binary files /dev/null and b/build/PHF000-Firmware/zephyr/CMakeFiles/zephyr.dir/lib/utils/notify.c.obj differ diff --git a/build/PHF000-Firmware/zephyr/CMakeFiles/zephyr.dir/lib/utils/onoff.c.obj b/build/PHF000-Firmware/zephyr/CMakeFiles/zephyr.dir/lib/utils/onoff.c.obj new file mode 100644 index 0000000..4fa1a48 Binary files /dev/null and b/build/PHF000-Firmware/zephyr/CMakeFiles/zephyr.dir/lib/utils/onoff.c.obj differ diff --git a/build/PHF000-Firmware/zephyr/CMakeFiles/zephyr.dir/lib/utils/rb.c.obj b/build/PHF000-Firmware/zephyr/CMakeFiles/zephyr.dir/lib/utils/rb.c.obj new file mode 100644 index 0000000..5bf9eeb Binary files /dev/null and b/build/PHF000-Firmware/zephyr/CMakeFiles/zephyr.dir/lib/utils/rb.c.obj differ diff --git a/build/PHF000-Firmware/zephyr/CMakeFiles/zephyr.dir/lib/utils/ring_buffer.c.obj b/build/PHF000-Firmware/zephyr/CMakeFiles/zephyr.dir/lib/utils/ring_buffer.c.obj new file mode 100644 index 0000000..9b6ff3b Binary files /dev/null and b/build/PHF000-Firmware/zephyr/CMakeFiles/zephyr.dir/lib/utils/ring_buffer.c.obj differ diff --git a/build/PHF000-Firmware/zephyr/CMakeFiles/zephyr.dir/lib/utils/timeutil.c.obj b/build/PHF000-Firmware/zephyr/CMakeFiles/zephyr.dir/lib/utils/timeutil.c.obj new file mode 100644 index 0000000..2cff603 Binary files /dev/null and b/build/PHF000-Firmware/zephyr/CMakeFiles/zephyr.dir/lib/utils/timeutil.c.obj differ diff --git a/build/PHF000-Firmware/zephyr/CMakeFiles/zephyr.dir/misc/generated/configs.c.obj b/build/PHF000-Firmware/zephyr/CMakeFiles/zephyr.dir/misc/generated/configs.c.obj new file mode 100644 index 0000000..01b2c09 Binary files /dev/null and b/build/PHF000-Firmware/zephyr/CMakeFiles/zephyr.dir/misc/generated/configs.c.obj differ diff --git a/build/PHF000-Firmware/zephyr/CMakeFiles/zephyr.dir/subsys/mem_mgmt/mem_attr.c.obj b/build/PHF000-Firmware/zephyr/CMakeFiles/zephyr.dir/subsys/mem_mgmt/mem_attr.c.obj new file mode 100644 index 0000000..bc4dfc8 Binary files /dev/null and b/build/PHF000-Firmware/zephyr/CMakeFiles/zephyr.dir/subsys/mem_mgmt/mem_attr.c.obj differ diff --git a/build/PHF000-Firmware/zephyr/CMakeFiles/zephyr.dir/subsys/tracing/tracing_none.c.obj b/build/PHF000-Firmware/zephyr/CMakeFiles/zephyr.dir/subsys/tracing/tracing_none.c.obj new file mode 100644 index 0000000..b3c1306 Binary files /dev/null and b/build/PHF000-Firmware/zephyr/CMakeFiles/zephyr.dir/subsys/tracing/tracing_none.c.obj differ diff --git a/build/PHF000-Firmware/zephyr/CMakeFiles/zephyr.dir/subsys/usb/device/class/cdc_acm.c.obj b/build/PHF000-Firmware/zephyr/CMakeFiles/zephyr.dir/subsys/usb/device/class/cdc_acm.c.obj new file mode 100644 index 0000000..34663b4 Binary files /dev/null and b/build/PHF000-Firmware/zephyr/CMakeFiles/zephyr.dir/subsys/usb/device/class/cdc_acm.c.obj differ diff --git a/build/PHF000-Firmware/zephyr/CMakeFiles/zephyr.dir/subsys/usb/device/usb_descriptor.c.obj b/build/PHF000-Firmware/zephyr/CMakeFiles/zephyr.dir/subsys/usb/device/usb_descriptor.c.obj new file mode 100644 index 0000000..d15975e Binary files /dev/null and b/build/PHF000-Firmware/zephyr/CMakeFiles/zephyr.dir/subsys/usb/device/usb_descriptor.c.obj differ diff --git a/build/PHF000-Firmware/zephyr/CMakeFiles/zephyr.dir/subsys/usb/device/usb_device.c.obj b/build/PHF000-Firmware/zephyr/CMakeFiles/zephyr.dir/subsys/usb/device/usb_device.c.obj new file mode 100644 index 0000000..9546a2e Binary files /dev/null and b/build/PHF000-Firmware/zephyr/CMakeFiles/zephyr.dir/subsys/usb/device/usb_device.c.obj differ diff --git a/build/PHF000-Firmware/zephyr/CMakeFiles/zephyr.dir/subsys/usb/device/usb_transfer.c.obj b/build/PHF000-Firmware/zephyr/CMakeFiles/zephyr.dir/subsys/usb/device/usb_transfer.c.obj new file mode 100644 index 0000000..593203b Binary files /dev/null and b/build/PHF000-Firmware/zephyr/CMakeFiles/zephyr.dir/subsys/usb/device/usb_transfer.c.obj differ diff --git a/build/PHF000-Firmware/zephyr/CMakeFiles/zephyr.dir/subsys/usb/device/usb_work_q.c.obj b/build/PHF000-Firmware/zephyr/CMakeFiles/zephyr.dir/subsys/usb/device/usb_work_q.c.obj new file mode 100644 index 0000000..5579d32 Binary files /dev/null and b/build/PHF000-Firmware/zephyr/CMakeFiles/zephyr.dir/subsys/usb/device/usb_work_q.c.obj differ diff --git a/build/PHF000-Firmware/zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj b/build/PHF000-Firmware/zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj new file mode 100644 index 0000000..aa13e9b Binary files /dev/null and b/build/PHF000-Firmware/zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj differ diff --git a/build/PHF000-Firmware/zephyr/CMakeFiles/zephyr_final.dir/misc/empty_file.c.obj b/build/PHF000-Firmware/zephyr/CMakeFiles/zephyr_final.dir/misc/empty_file.c.obj new file mode 100644 index 0000000..72399d2 Binary files /dev/null and b/build/PHF000-Firmware/zephyr/CMakeFiles/zephyr_final.dir/misc/empty_file.c.obj differ diff --git a/build/PHF000-Firmware/zephyr/CMakeFiles/zephyr_pre0.dir/misc/empty_file.c.obj b/build/PHF000-Firmware/zephyr/CMakeFiles/zephyr_pre0.dir/misc/empty_file.c.obj new file mode 100644 index 0000000..72399d2 Binary files /dev/null and b/build/PHF000-Firmware/zephyr/CMakeFiles/zephyr_pre0.dir/misc/empty_file.c.obj differ diff --git a/build/PHF000-Firmware/zephyr/arch/arch/arm/cmake_install.cmake b/build/PHF000-Firmware/zephyr/arch/arch/arm/cmake_install.cmake new file mode 100644 index 0000000..5679614 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/arch/arch/arm/cmake_install.cmake @@ -0,0 +1,44 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/arch/arm + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/arch/arch/arm/core/cmake_install.cmake") +endif() + diff --git a/build/PHF000-Firmware/zephyr/arch/arch/arm/core/CMakeFiles/arch__arm__core.dir/fatal.c.obj b/build/PHF000-Firmware/zephyr/arch/arch/arm/core/CMakeFiles/arch__arm__core.dir/fatal.c.obj new file mode 100644 index 0000000..70e974f Binary files /dev/null and b/build/PHF000-Firmware/zephyr/arch/arch/arm/core/CMakeFiles/arch__arm__core.dir/fatal.c.obj differ diff --git a/build/PHF000-Firmware/zephyr/arch/arch/arm/core/CMakeFiles/arch__arm__core.dir/nmi.c.obj b/build/PHF000-Firmware/zephyr/arch/arch/arm/core/CMakeFiles/arch__arm__core.dir/nmi.c.obj new file mode 100644 index 0000000..e41dbc7 Binary files /dev/null and b/build/PHF000-Firmware/zephyr/arch/arch/arm/core/CMakeFiles/arch__arm__core.dir/nmi.c.obj differ diff --git a/build/PHF000-Firmware/zephyr/arch/arch/arm/core/CMakeFiles/arch__arm__core.dir/nmi_on_reset.S.obj b/build/PHF000-Firmware/zephyr/arch/arch/arm/core/CMakeFiles/arch__arm__core.dir/nmi_on_reset.S.obj new file mode 100644 index 0000000..a92b1a1 Binary files /dev/null and b/build/PHF000-Firmware/zephyr/arch/arch/arm/core/CMakeFiles/arch__arm__core.dir/nmi_on_reset.S.obj differ diff --git a/build/PHF000-Firmware/zephyr/arch/arch/arm/core/CMakeFiles/arch__arm__core.dir/tls.c.obj b/build/PHF000-Firmware/zephyr/arch/arch/arm/core/CMakeFiles/arch__arm__core.dir/tls.c.obj new file mode 100644 index 0000000..260e0c6 Binary files /dev/null and b/build/PHF000-Firmware/zephyr/arch/arch/arm/core/CMakeFiles/arch__arm__core.dir/tls.c.obj differ diff --git a/build/PHF000-Firmware/zephyr/arch/arch/arm/core/cmake_install.cmake b/build/PHF000-Firmware/zephyr/arch/arch/arm/core/cmake_install.cmake new file mode 100644 index 0000000..14391d0 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/arch/arch/arm/core/cmake_install.cmake @@ -0,0 +1,49 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/arch/arm/core + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/arch/arch/arm/core/cortex_m/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/arch/arch/arm/core/mpu/cmake_install.cmake") +endif() + diff --git a/build/PHF000-Firmware/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/__aeabi_read_tp.S.obj b/build/PHF000-Firmware/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/__aeabi_read_tp.S.obj new file mode 100644 index 0000000..12c510f Binary files /dev/null and b/build/PHF000-Firmware/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/__aeabi_read_tp.S.obj differ diff --git a/build/PHF000-Firmware/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/cpu_idle.c.obj b/build/PHF000-Firmware/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/cpu_idle.c.obj new file mode 100644 index 0000000..e5e525f Binary files /dev/null and b/build/PHF000-Firmware/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/cpu_idle.c.obj differ diff --git a/build/PHF000-Firmware/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/exc_exit.c.obj b/build/PHF000-Firmware/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/exc_exit.c.obj new file mode 100644 index 0000000..8787558 Binary files /dev/null and b/build/PHF000-Firmware/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/exc_exit.c.obj differ diff --git a/build/PHF000-Firmware/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/fault.c.obj b/build/PHF000-Firmware/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/fault.c.obj new file mode 100644 index 0000000..5c902bd Binary files /dev/null and b/build/PHF000-Firmware/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/fault.c.obj differ diff --git a/build/PHF000-Firmware/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/fault_s.S.obj b/build/PHF000-Firmware/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/fault_s.S.obj new file mode 100644 index 0000000..135e607 Binary files /dev/null and b/build/PHF000-Firmware/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/fault_s.S.obj differ diff --git a/build/PHF000-Firmware/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/fpu.c.obj b/build/PHF000-Firmware/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/fpu.c.obj new file mode 100644 index 0000000..72a7091 Binary files /dev/null and b/build/PHF000-Firmware/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/fpu.c.obj differ diff --git a/build/PHF000-Firmware/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/irq_init.c.obj b/build/PHF000-Firmware/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/irq_init.c.obj new file mode 100644 index 0000000..a959630 Binary files /dev/null and b/build/PHF000-Firmware/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/irq_init.c.obj differ diff --git a/build/PHF000-Firmware/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/irq_manage.c.obj b/build/PHF000-Firmware/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/irq_manage.c.obj new file mode 100644 index 0000000..634551c Binary files /dev/null and b/build/PHF000-Firmware/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/irq_manage.c.obj differ diff --git a/build/PHF000-Firmware/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/isr_wrapper.c.obj b/build/PHF000-Firmware/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/isr_wrapper.c.obj new file mode 100644 index 0000000..4cb542e Binary files /dev/null and b/build/PHF000-Firmware/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/isr_wrapper.c.obj differ diff --git a/build/PHF000-Firmware/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/prep_c.c.obj b/build/PHF000-Firmware/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/prep_c.c.obj new file mode 100644 index 0000000..a7a5e97 Binary files /dev/null and b/build/PHF000-Firmware/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/prep_c.c.obj differ diff --git a/build/PHF000-Firmware/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/reset.S.obj b/build/PHF000-Firmware/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/reset.S.obj new file mode 100644 index 0000000..408cbd5 Binary files /dev/null and b/build/PHF000-Firmware/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/reset.S.obj differ diff --git a/build/PHF000-Firmware/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/scb.c.obj b/build/PHF000-Firmware/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/scb.c.obj new file mode 100644 index 0000000..568e244 Binary files /dev/null and b/build/PHF000-Firmware/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/scb.c.obj differ diff --git a/build/PHF000-Firmware/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/swap_helper.S.obj b/build/PHF000-Firmware/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/swap_helper.S.obj new file mode 100644 index 0000000..d388cd6 Binary files /dev/null and b/build/PHF000-Firmware/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/swap_helper.S.obj differ diff --git a/build/PHF000-Firmware/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/thread.c.obj b/build/PHF000-Firmware/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/thread.c.obj new file mode 100644 index 0000000..6f8e6d7 Binary files /dev/null and b/build/PHF000-Firmware/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/thread.c.obj differ diff --git a/build/PHF000-Firmware/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/thread_abort.c.obj b/build/PHF000-Firmware/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/thread_abort.c.obj new file mode 100644 index 0000000..7b5f825 Binary files /dev/null and b/build/PHF000-Firmware/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/thread_abort.c.obj differ diff --git a/build/PHF000-Firmware/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/vector_table.S.obj b/build/PHF000-Firmware/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/vector_table.S.obj new file mode 100644 index 0000000..7859828 Binary files /dev/null and b/build/PHF000-Firmware/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/vector_table.S.obj differ diff --git a/build/PHF000-Firmware/zephyr/arch/arch/arm/core/cortex_m/cmake_install.cmake b/build/PHF000-Firmware/zephyr/arch/arch/arm/core/cortex_m/cmake_install.cmake new file mode 100644 index 0000000..2e9e3ff --- /dev/null +++ b/build/PHF000-Firmware/zephyr/arch/arch/arm/core/cortex_m/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/arch/arm/core/cortex_m + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a b/build/PHF000-Firmware/zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a new file mode 100644 index 0000000..719aa6e Binary files /dev/null and b/build/PHF000-Firmware/zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a differ diff --git a/build/PHF000-Firmware/zephyr/arch/arch/arm/core/libarch__arm__core.a b/build/PHF000-Firmware/zephyr/arch/arch/arm/core/libarch__arm__core.a new file mode 100644 index 0000000..00e6424 Binary files /dev/null and b/build/PHF000-Firmware/zephyr/arch/arch/arm/core/libarch__arm__core.a differ diff --git a/build/PHF000-Firmware/zephyr/arch/arch/arm/core/mpu/CMakeFiles/arch__arm__core__mpu.dir/arm_core_mpu.c.obj b/build/PHF000-Firmware/zephyr/arch/arch/arm/core/mpu/CMakeFiles/arch__arm__core__mpu.dir/arm_core_mpu.c.obj new file mode 100644 index 0000000..5dd2b6a Binary files /dev/null and b/build/PHF000-Firmware/zephyr/arch/arch/arm/core/mpu/CMakeFiles/arch__arm__core__mpu.dir/arm_core_mpu.c.obj differ diff --git a/build/PHF000-Firmware/zephyr/arch/arch/arm/core/mpu/CMakeFiles/arch__arm__core__mpu.dir/arm_mpu.c.obj b/build/PHF000-Firmware/zephyr/arch/arch/arm/core/mpu/CMakeFiles/arch__arm__core__mpu.dir/arm_mpu.c.obj new file mode 100644 index 0000000..bcdc75d Binary files /dev/null and b/build/PHF000-Firmware/zephyr/arch/arch/arm/core/mpu/CMakeFiles/arch__arm__core__mpu.dir/arm_mpu.c.obj differ diff --git a/build/PHF000-Firmware/zephyr/arch/arch/arm/core/mpu/CMakeFiles/arch__arm__core__mpu.dir/arm_mpu_regions.c.obj b/build/PHF000-Firmware/zephyr/arch/arch/arm/core/mpu/CMakeFiles/arch__arm__core__mpu.dir/arm_mpu_regions.c.obj new file mode 100644 index 0000000..f2a976d Binary files /dev/null and b/build/PHF000-Firmware/zephyr/arch/arch/arm/core/mpu/CMakeFiles/arch__arm__core__mpu.dir/arm_mpu_regions.c.obj differ diff --git a/build/PHF000-Firmware/zephyr/arch/arch/arm/core/mpu/cmake_install.cmake b/build/PHF000-Firmware/zephyr/arch/arch/arm/core/mpu/cmake_install.cmake new file mode 100644 index 0000000..148199d --- /dev/null +++ b/build/PHF000-Firmware/zephyr/arch/arch/arm/core/mpu/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/arch/arm/core/mpu + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a b/build/PHF000-Firmware/zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a new file mode 100644 index 0000000..0ee8ab2 Binary files /dev/null and b/build/PHF000-Firmware/zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a differ diff --git a/build/PHF000-Firmware/zephyr/arch/cmake_install.cmake b/build/PHF000-Firmware/zephyr/arch/cmake_install.cmake new file mode 100644 index 0000000..95c6ba0 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/arch/cmake_install.cmake @@ -0,0 +1,49 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/arch + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/arch/common/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/arch/arch/arm/cmake_install.cmake") +endif() + diff --git a/build/PHF000-Firmware/zephyr/arch/common/CMakeFiles/arch__common.dir/sw_isr_common.c.obj b/build/PHF000-Firmware/zephyr/arch/common/CMakeFiles/arch__common.dir/sw_isr_common.c.obj new file mode 100644 index 0000000..678d3ed Binary files /dev/null and b/build/PHF000-Firmware/zephyr/arch/common/CMakeFiles/arch__common.dir/sw_isr_common.c.obj differ diff --git a/build/PHF000-Firmware/zephyr/arch/common/CMakeFiles/isr_tables.dir/isr_tables.c.obj b/build/PHF000-Firmware/zephyr/arch/common/CMakeFiles/isr_tables.dir/isr_tables.c.obj new file mode 100644 index 0000000..49e9ae5 Binary files /dev/null and b/build/PHF000-Firmware/zephyr/arch/common/CMakeFiles/isr_tables.dir/isr_tables.c.obj differ diff --git a/build/PHF000-Firmware/zephyr/arch/common/cmake_install.cmake b/build/PHF000-Firmware/zephyr/arch/common/cmake_install.cmake new file mode 100644 index 0000000..b290cba --- /dev/null +++ b/build/PHF000-Firmware/zephyr/arch/common/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/arch/common + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/zephyr/arch/common/libarch__common.a b/build/PHF000-Firmware/zephyr/arch/common/libarch__common.a new file mode 100644 index 0000000..1517941 Binary files /dev/null and b/build/PHF000-Firmware/zephyr/arch/common/libarch__common.a differ diff --git a/build/PHF000-Firmware/zephyr/arch/common/libisr_tables.a b/build/PHF000-Firmware/zephyr/arch/common/libisr_tables.a new file mode 100644 index 0000000..2fd47a5 Binary files /dev/null and b/build/PHF000-Firmware/zephyr/arch/common/libisr_tables.a differ diff --git a/build/PHF000-Firmware/zephyr/boards/cmake_install.cmake b/build/PHF000-Firmware/zephyr/boards/cmake_install.cmake new file mode 100644 index 0000000..bc78696 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/boards/cmake_install.cmake @@ -0,0 +1,44 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/boards + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/boards/shields/cmake_install.cmake") +endif() + diff --git a/build/PHF000-Firmware/zephyr/boards/shields/cmake_install.cmake b/build/PHF000-Firmware/zephyr/boards/shields/cmake_install.cmake new file mode 100644 index 0000000..415ceea --- /dev/null +++ b/build/PHF000-Firmware/zephyr/boards/shields/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/boards/shields + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/zephyr/cmake/flash/cmake_install.cmake b/build/PHF000-Firmware/zephyr/cmake/flash/cmake_install.cmake new file mode 100644 index 0000000..50efa3c --- /dev/null +++ b/build/PHF000-Firmware/zephyr/cmake/flash/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/cmake/flash + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/zephyr/cmake/reports/cmake_install.cmake b/build/PHF000-Firmware/zephyr/cmake/reports/cmake_install.cmake new file mode 100644 index 0000000..59baf4a --- /dev/null +++ b/build/PHF000-Firmware/zephyr/cmake/reports/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/cmake/reports + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/zephyr/cmake/usage/cmake_install.cmake b/build/PHF000-Firmware/zephyr/cmake/usage/cmake_install.cmake new file mode 100644 index 0000000..68bce53 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/cmake/usage/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/cmake/usage + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/zephyr/cmake_install.cmake b/build/PHF000-Firmware/zephyr/cmake_install.cmake new file mode 100644 index 0000000..b0ead23 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/cmake_install.cmake @@ -0,0 +1,294 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/arch/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/lib/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/soc/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/boards/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/hostap/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/mcuboot/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/mbedtls/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/trusted-firmware-m/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/cjson/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/azure-sdk-for-c/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/cirrus-logic/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/openthread/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/suit-processor/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/memfault-firmware-sdk/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/canopennode/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/chre/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/lz4/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nanopb/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/zscilib/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/cmsis/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/cmsis-dsp/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/cmsis-nn/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/fatfs/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/hal_nordic/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/hal_st/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/hal_tdk/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/hal_wurthelektronik/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/liblc3/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/libmetal/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/littlefs/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/loramac-node/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/lvgl/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/mipi-sys-t/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf_wifi/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/open-amp/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/percepio/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/picolibc/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/segger/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/tinycrypt/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/uoscore-uedhoc/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/zcbor/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrfxlib/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/nrf_hw_models/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/modules/connectedhomeip/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/kernel/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/cmake/flash/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/cmake/usage/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/cmake/reports/cmake_install.cmake") +endif() + diff --git a/build/PHF000-Firmware/zephyr/drivers/adc/CMakeFiles/drivers__adc.dir/adc_common.c.obj b/build/PHF000-Firmware/zephyr/drivers/adc/CMakeFiles/drivers__adc.dir/adc_common.c.obj new file mode 100644 index 0000000..055388b Binary files /dev/null and b/build/PHF000-Firmware/zephyr/drivers/adc/CMakeFiles/drivers__adc.dir/adc_common.c.obj differ diff --git a/build/PHF000-Firmware/zephyr/drivers/adc/CMakeFiles/drivers__adc.dir/adc_nrfx_saadc.c.obj b/build/PHF000-Firmware/zephyr/drivers/adc/CMakeFiles/drivers__adc.dir/adc_nrfx_saadc.c.obj new file mode 100644 index 0000000..1f0a51a Binary files /dev/null and b/build/PHF000-Firmware/zephyr/drivers/adc/CMakeFiles/drivers__adc.dir/adc_nrfx_saadc.c.obj differ diff --git a/build/PHF000-Firmware/zephyr/drivers/adc/cmake_install.cmake b/build/PHF000-Firmware/zephyr/drivers/adc/cmake_install.cmake new file mode 100644 index 0000000..5465953 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/drivers/adc/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/drivers/adc + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/zephyr/drivers/adc/libdrivers__adc.a b/build/PHF000-Firmware/zephyr/drivers/adc/libdrivers__adc.a new file mode 100644 index 0000000..9142679 Binary files /dev/null and b/build/PHF000-Firmware/zephyr/drivers/adc/libdrivers__adc.a differ diff --git a/build/PHF000-Firmware/zephyr/drivers/clock_control/CMakeFiles/drivers__clock_control.dir/clock_control_nrf.c.obj b/build/PHF000-Firmware/zephyr/drivers/clock_control/CMakeFiles/drivers__clock_control.dir/clock_control_nrf.c.obj new file mode 100644 index 0000000..cec2660 Binary files /dev/null and b/build/PHF000-Firmware/zephyr/drivers/clock_control/CMakeFiles/drivers__clock_control.dir/clock_control_nrf.c.obj differ diff --git a/build/PHF000-Firmware/zephyr/drivers/clock_control/cmake_install.cmake b/build/PHF000-Firmware/zephyr/drivers/clock_control/cmake_install.cmake new file mode 100644 index 0000000..989e188 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/drivers/clock_control/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/zephyr/drivers/clock_control/libdrivers__clock_control.a b/build/PHF000-Firmware/zephyr/drivers/clock_control/libdrivers__clock_control.a new file mode 100644 index 0000000..27952c9 Binary files /dev/null and b/build/PHF000-Firmware/zephyr/drivers/clock_control/libdrivers__clock_control.a differ diff --git a/build/PHF000-Firmware/zephyr/drivers/cmake_install.cmake b/build/PHF000-Firmware/zephyr/drivers/cmake_install.cmake new file mode 100644 index 0000000..340f196 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/drivers/cmake_install.cmake @@ -0,0 +1,119 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/drivers + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/disk/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/firmware/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/interrupt_controller/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/misc/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/pcie/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/usb/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/usb_c/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/adc/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/clock_control/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/console/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/gpio/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/hwinfo/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/pinctrl/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/serial/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/timer/cmake_install.cmake") +endif() + diff --git a/build/PHF000-Firmware/zephyr/drivers/console/CMakeFiles/drivers__console.dir/uart_console.c.obj b/build/PHF000-Firmware/zephyr/drivers/console/CMakeFiles/drivers__console.dir/uart_console.c.obj new file mode 100644 index 0000000..d93b241 Binary files /dev/null and b/build/PHF000-Firmware/zephyr/drivers/console/CMakeFiles/drivers__console.dir/uart_console.c.obj differ diff --git a/build/PHF000-Firmware/zephyr/drivers/console/cmake_install.cmake b/build/PHF000-Firmware/zephyr/drivers/console/cmake_install.cmake new file mode 100644 index 0000000..7eba3e4 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/drivers/console/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/drivers/console + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/zephyr/drivers/console/libdrivers__console.a b/build/PHF000-Firmware/zephyr/drivers/console/libdrivers__console.a new file mode 100644 index 0000000..f9f492e Binary files /dev/null and b/build/PHF000-Firmware/zephyr/drivers/console/libdrivers__console.a differ diff --git a/build/PHF000-Firmware/zephyr/drivers/disk/cmake_install.cmake b/build/PHF000-Firmware/zephyr/drivers/disk/cmake_install.cmake new file mode 100644 index 0000000..7e1240d --- /dev/null +++ b/build/PHF000-Firmware/zephyr/drivers/disk/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/drivers/disk + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/zephyr/drivers/firmware/cmake_install.cmake b/build/PHF000-Firmware/zephyr/drivers/firmware/cmake_install.cmake new file mode 100644 index 0000000..9bd3e1b --- /dev/null +++ b/build/PHF000-Firmware/zephyr/drivers/firmware/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/drivers/firmware + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/zephyr/drivers/gpio/CMakeFiles/drivers__gpio.dir/gpio_nrfx.c.obj b/build/PHF000-Firmware/zephyr/drivers/gpio/CMakeFiles/drivers__gpio.dir/gpio_nrfx.c.obj new file mode 100644 index 0000000..7d585fd Binary files /dev/null and b/build/PHF000-Firmware/zephyr/drivers/gpio/CMakeFiles/drivers__gpio.dir/gpio_nrfx.c.obj differ diff --git a/build/PHF000-Firmware/zephyr/drivers/gpio/cmake_install.cmake b/build/PHF000-Firmware/zephyr/drivers/gpio/cmake_install.cmake new file mode 100644 index 0000000..681597c --- /dev/null +++ b/build/PHF000-Firmware/zephyr/drivers/gpio/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/drivers/gpio + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/zephyr/drivers/gpio/libdrivers__gpio.a b/build/PHF000-Firmware/zephyr/drivers/gpio/libdrivers__gpio.a new file mode 100644 index 0000000..0343348 Binary files /dev/null and b/build/PHF000-Firmware/zephyr/drivers/gpio/libdrivers__gpio.a differ diff --git a/build/PHF000-Firmware/zephyr/drivers/hwinfo/CMakeFiles/drivers__hwinfo.dir/hwinfo_nrf.c.obj b/build/PHF000-Firmware/zephyr/drivers/hwinfo/CMakeFiles/drivers__hwinfo.dir/hwinfo_nrf.c.obj new file mode 100644 index 0000000..7617cca Binary files /dev/null and b/build/PHF000-Firmware/zephyr/drivers/hwinfo/CMakeFiles/drivers__hwinfo.dir/hwinfo_nrf.c.obj differ diff --git a/build/PHF000-Firmware/zephyr/drivers/hwinfo/CMakeFiles/drivers__hwinfo.dir/hwinfo_weak_impl.c.obj b/build/PHF000-Firmware/zephyr/drivers/hwinfo/CMakeFiles/drivers__hwinfo.dir/hwinfo_weak_impl.c.obj new file mode 100644 index 0000000..aa556ba Binary files /dev/null and b/build/PHF000-Firmware/zephyr/drivers/hwinfo/CMakeFiles/drivers__hwinfo.dir/hwinfo_weak_impl.c.obj differ diff --git a/build/PHF000-Firmware/zephyr/drivers/hwinfo/cmake_install.cmake b/build/PHF000-Firmware/zephyr/drivers/hwinfo/cmake_install.cmake new file mode 100644 index 0000000..17e6f7a --- /dev/null +++ b/build/PHF000-Firmware/zephyr/drivers/hwinfo/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/drivers/hwinfo + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/zephyr/drivers/hwinfo/libdrivers__hwinfo.a b/build/PHF000-Firmware/zephyr/drivers/hwinfo/libdrivers__hwinfo.a new file mode 100644 index 0000000..0a78d1f Binary files /dev/null and b/build/PHF000-Firmware/zephyr/drivers/hwinfo/libdrivers__hwinfo.a differ diff --git a/build/PHF000-Firmware/zephyr/drivers/interrupt_controller/cmake_install.cmake b/build/PHF000-Firmware/zephyr/drivers/interrupt_controller/cmake_install.cmake new file mode 100644 index 0000000..e588632 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/drivers/interrupt_controller/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/drivers/interrupt_controller + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/zephyr/drivers/misc/cmake_install.cmake b/build/PHF000-Firmware/zephyr/drivers/misc/cmake_install.cmake new file mode 100644 index 0000000..b71c549 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/drivers/misc/cmake_install.cmake @@ -0,0 +1,44 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/drivers/misc + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/misc/coresight/cmake_install.cmake") +endif() + diff --git a/build/PHF000-Firmware/zephyr/drivers/misc/coresight/cmake_install.cmake b/build/PHF000-Firmware/zephyr/drivers/misc/coresight/cmake_install.cmake new file mode 100644 index 0000000..fc57922 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/drivers/misc/coresight/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/drivers/misc/coresight + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/zephyr/drivers/pcie/cmake_install.cmake b/build/PHF000-Firmware/zephyr/drivers/pcie/cmake_install.cmake new file mode 100644 index 0000000..0bd439c --- /dev/null +++ b/build/PHF000-Firmware/zephyr/drivers/pcie/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/drivers/pcie + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/zephyr/drivers/pinctrl/CMakeFiles/drivers__pinctrl.dir/common.c.obj b/build/PHF000-Firmware/zephyr/drivers/pinctrl/CMakeFiles/drivers__pinctrl.dir/common.c.obj new file mode 100644 index 0000000..0472020 Binary files /dev/null and b/build/PHF000-Firmware/zephyr/drivers/pinctrl/CMakeFiles/drivers__pinctrl.dir/common.c.obj differ diff --git a/build/PHF000-Firmware/zephyr/drivers/pinctrl/CMakeFiles/drivers__pinctrl.dir/pinctrl_nrf.c.obj b/build/PHF000-Firmware/zephyr/drivers/pinctrl/CMakeFiles/drivers__pinctrl.dir/pinctrl_nrf.c.obj new file mode 100644 index 0000000..543cdbb Binary files /dev/null and b/build/PHF000-Firmware/zephyr/drivers/pinctrl/CMakeFiles/drivers__pinctrl.dir/pinctrl_nrf.c.obj differ diff --git a/build/PHF000-Firmware/zephyr/drivers/pinctrl/cmake_install.cmake b/build/PHF000-Firmware/zephyr/drivers/pinctrl/cmake_install.cmake new file mode 100644 index 0000000..4971dd2 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/drivers/pinctrl/cmake_install.cmake @@ -0,0 +1,44 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/pinctrl/renesas/cmake_install.cmake") +endif() + diff --git a/build/PHF000-Firmware/zephyr/drivers/pinctrl/libdrivers__pinctrl.a b/build/PHF000-Firmware/zephyr/drivers/pinctrl/libdrivers__pinctrl.a new file mode 100644 index 0000000..7d9a161 Binary files /dev/null and b/build/PHF000-Firmware/zephyr/drivers/pinctrl/libdrivers__pinctrl.a differ diff --git a/build/PHF000-Firmware/zephyr/drivers/pinctrl/renesas/cmake_install.cmake b/build/PHF000-Firmware/zephyr/drivers/pinctrl/renesas/cmake_install.cmake new file mode 100644 index 0000000..36da18a --- /dev/null +++ b/build/PHF000-Firmware/zephyr/drivers/pinctrl/renesas/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/renesas + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/zephyr/drivers/sensor/adi/cmake_install.cmake b/build/PHF000-Firmware/zephyr/drivers/sensor/adi/cmake_install.cmake new file mode 100644 index 0000000..4447ff2 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/drivers/sensor/adi/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/adi + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/zephyr/drivers/sensor/ams/cmake_install.cmake b/build/PHF000-Firmware/zephyr/drivers/sensor/ams/cmake_install.cmake new file mode 100644 index 0000000..e1389d2 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/drivers/sensor/ams/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ams + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/zephyr/drivers/sensor/aosong/cmake_install.cmake b/build/PHF000-Firmware/zephyr/drivers/sensor/aosong/cmake_install.cmake new file mode 100644 index 0000000..919d7e5 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/drivers/sensor/aosong/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/aosong + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/zephyr/drivers/sensor/asahi_kasei/cmake_install.cmake b/build/PHF000-Firmware/zephyr/drivers/sensor/asahi_kasei/cmake_install.cmake new file mode 100644 index 0000000..5491902 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/drivers/sensor/asahi_kasei/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/asahi_kasei + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/zephyr/drivers/sensor/bosch/cmake_install.cmake b/build/PHF000-Firmware/zephyr/drivers/sensor/bosch/cmake_install.cmake new file mode 100644 index 0000000..30fd458 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/drivers/sensor/bosch/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/bosch + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/zephyr/drivers/sensor/cmake_install.cmake b/build/PHF000-Firmware/zephyr/drivers/sensor/cmake_install.cmake new file mode 100644 index 0000000..eec2049 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/drivers/sensor/cmake_install.cmake @@ -0,0 +1,174 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/adi/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/ams/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/aosong/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/asahi_kasei/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/bosch/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/espressif/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/honeywell/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/infineon/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/ite/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/jedec/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/maxim/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/meas/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/memsic/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/microchip/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/nordic/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/nuvoton/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/nxp/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/renesas/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/rohm/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/seeed/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/sensirion/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/silabs/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/st/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/tdk/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/ti/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/vishay/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/wsen/cmake_install.cmake") +endif() + diff --git a/build/PHF000-Firmware/zephyr/drivers/sensor/espressif/cmake_install.cmake b/build/PHF000-Firmware/zephyr/drivers/sensor/espressif/cmake_install.cmake new file mode 100644 index 0000000..f81a9e3 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/drivers/sensor/espressif/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/espressif + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/zephyr/drivers/sensor/honeywell/cmake_install.cmake b/build/PHF000-Firmware/zephyr/drivers/sensor/honeywell/cmake_install.cmake new file mode 100644 index 0000000..45c034f --- /dev/null +++ b/build/PHF000-Firmware/zephyr/drivers/sensor/honeywell/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/honeywell + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/zephyr/drivers/sensor/infineon/cmake_install.cmake b/build/PHF000-Firmware/zephyr/drivers/sensor/infineon/cmake_install.cmake new file mode 100644 index 0000000..687da96 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/drivers/sensor/infineon/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/infineon + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/zephyr/drivers/sensor/ite/cmake_install.cmake b/build/PHF000-Firmware/zephyr/drivers/sensor/ite/cmake_install.cmake new file mode 100644 index 0000000..ed6d449 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/drivers/sensor/ite/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ite + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/zephyr/drivers/sensor/jedec/cmake_install.cmake b/build/PHF000-Firmware/zephyr/drivers/sensor/jedec/cmake_install.cmake new file mode 100644 index 0000000..326c416 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/drivers/sensor/jedec/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/jedec + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/zephyr/drivers/sensor/maxim/cmake_install.cmake b/build/PHF000-Firmware/zephyr/drivers/sensor/maxim/cmake_install.cmake new file mode 100644 index 0000000..70b41c8 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/drivers/sensor/maxim/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/maxim + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/zephyr/drivers/sensor/meas/cmake_install.cmake b/build/PHF000-Firmware/zephyr/drivers/sensor/meas/cmake_install.cmake new file mode 100644 index 0000000..6212b73 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/drivers/sensor/meas/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/meas + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/zephyr/drivers/sensor/memsic/cmake_install.cmake b/build/PHF000-Firmware/zephyr/drivers/sensor/memsic/cmake_install.cmake new file mode 100644 index 0000000..bdbfa14 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/drivers/sensor/memsic/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/memsic + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/zephyr/drivers/sensor/microchip/cmake_install.cmake b/build/PHF000-Firmware/zephyr/drivers/sensor/microchip/cmake_install.cmake new file mode 100644 index 0000000..e22102d --- /dev/null +++ b/build/PHF000-Firmware/zephyr/drivers/sensor/microchip/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/microchip + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/zephyr/drivers/sensor/nordic/cmake_install.cmake b/build/PHF000-Firmware/zephyr/drivers/sensor/nordic/cmake_install.cmake new file mode 100644 index 0000000..02eefc8 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/drivers/sensor/nordic/cmake_install.cmake @@ -0,0 +1,44 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/nordic + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/sensor/nordic/temp/cmake_install.cmake") +endif() + diff --git a/build/PHF000-Firmware/zephyr/drivers/sensor/nordic/temp/CMakeFiles/drivers__sensor__nordic__temp.dir/temp_nrf5.c.obj b/build/PHF000-Firmware/zephyr/drivers/sensor/nordic/temp/CMakeFiles/drivers__sensor__nordic__temp.dir/temp_nrf5.c.obj new file mode 100644 index 0000000..22983dc Binary files /dev/null and b/build/PHF000-Firmware/zephyr/drivers/sensor/nordic/temp/CMakeFiles/drivers__sensor__nordic__temp.dir/temp_nrf5.c.obj differ diff --git a/build/PHF000-Firmware/zephyr/drivers/sensor/nordic/temp/cmake_install.cmake b/build/PHF000-Firmware/zephyr/drivers/sensor/nordic/temp/cmake_install.cmake new file mode 100644 index 0000000..bc9ed5e --- /dev/null +++ b/build/PHF000-Firmware/zephyr/drivers/sensor/nordic/temp/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/nordic/temp + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/zephyr/drivers/sensor/nordic/temp/libdrivers__sensor__nordic__temp.a b/build/PHF000-Firmware/zephyr/drivers/sensor/nordic/temp/libdrivers__sensor__nordic__temp.a new file mode 100644 index 0000000..6e13304 Binary files /dev/null and b/build/PHF000-Firmware/zephyr/drivers/sensor/nordic/temp/libdrivers__sensor__nordic__temp.a differ diff --git a/build/PHF000-Firmware/zephyr/drivers/sensor/nuvoton/cmake_install.cmake b/build/PHF000-Firmware/zephyr/drivers/sensor/nuvoton/cmake_install.cmake new file mode 100644 index 0000000..a901546 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/drivers/sensor/nuvoton/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/nuvoton + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/zephyr/drivers/sensor/nxp/cmake_install.cmake b/build/PHF000-Firmware/zephyr/drivers/sensor/nxp/cmake_install.cmake new file mode 100644 index 0000000..400f1f4 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/drivers/sensor/nxp/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/nxp + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/zephyr/drivers/sensor/renesas/cmake_install.cmake b/build/PHF000-Firmware/zephyr/drivers/sensor/renesas/cmake_install.cmake new file mode 100644 index 0000000..092829a --- /dev/null +++ b/build/PHF000-Firmware/zephyr/drivers/sensor/renesas/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/renesas + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/zephyr/drivers/sensor/rohm/cmake_install.cmake b/build/PHF000-Firmware/zephyr/drivers/sensor/rohm/cmake_install.cmake new file mode 100644 index 0000000..6d80c84 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/drivers/sensor/rohm/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/rohm + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/zephyr/drivers/sensor/seeed/cmake_install.cmake b/build/PHF000-Firmware/zephyr/drivers/sensor/seeed/cmake_install.cmake new file mode 100644 index 0000000..687692c --- /dev/null +++ b/build/PHF000-Firmware/zephyr/drivers/sensor/seeed/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/seeed + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/zephyr/drivers/sensor/sensirion/cmake_install.cmake b/build/PHF000-Firmware/zephyr/drivers/sensor/sensirion/cmake_install.cmake new file mode 100644 index 0000000..297c808 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/drivers/sensor/sensirion/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/sensirion + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/zephyr/drivers/sensor/silabs/cmake_install.cmake b/build/PHF000-Firmware/zephyr/drivers/sensor/silabs/cmake_install.cmake new file mode 100644 index 0000000..db35503 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/drivers/sensor/silabs/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/silabs + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/zephyr/drivers/sensor/st/cmake_install.cmake b/build/PHF000-Firmware/zephyr/drivers/sensor/st/cmake_install.cmake new file mode 100644 index 0000000..e609352 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/drivers/sensor/st/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/zephyr/drivers/sensor/tdk/cmake_install.cmake b/build/PHF000-Firmware/zephyr/drivers/sensor/tdk/cmake_install.cmake new file mode 100644 index 0000000..8f88700 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/drivers/sensor/tdk/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/tdk + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/zephyr/drivers/sensor/ti/cmake_install.cmake b/build/PHF000-Firmware/zephyr/drivers/sensor/ti/cmake_install.cmake new file mode 100644 index 0000000..f75edf8 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/drivers/sensor/ti/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ti + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/zephyr/drivers/sensor/vishay/cmake_install.cmake b/build/PHF000-Firmware/zephyr/drivers/sensor/vishay/cmake_install.cmake new file mode 100644 index 0000000..f4ac908 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/drivers/sensor/vishay/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/vishay + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/zephyr/drivers/sensor/wsen/cmake_install.cmake b/build/PHF000-Firmware/zephyr/drivers/sensor/wsen/cmake_install.cmake new file mode 100644 index 0000000..86a6e5f --- /dev/null +++ b/build/PHF000-Firmware/zephyr/drivers/sensor/wsen/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/wsen + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/zephyr/drivers/serial/CMakeFiles/drivers__serial.dir/home/miguel/ncs/v3.0.2/zephyr/misc/empty_file.c.obj b/build/PHF000-Firmware/zephyr/drivers/serial/CMakeFiles/drivers__serial.dir/home/miguel/ncs/v3.0.2/zephyr/misc/empty_file.c.obj new file mode 100644 index 0000000..72399d2 Binary files /dev/null and b/build/PHF000-Firmware/zephyr/drivers/serial/CMakeFiles/drivers__serial.dir/home/miguel/ncs/v3.0.2/zephyr/misc/empty_file.c.obj differ diff --git a/build/PHF000-Firmware/zephyr/drivers/serial/cmake_install.cmake b/build/PHF000-Firmware/zephyr/drivers/serial/cmake_install.cmake new file mode 100644 index 0000000..820080f --- /dev/null +++ b/build/PHF000-Firmware/zephyr/drivers/serial/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/drivers/serial + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/zephyr/drivers/serial/libdrivers__serial.a b/build/PHF000-Firmware/zephyr/drivers/serial/libdrivers__serial.a new file mode 100644 index 0000000..bf0c0a8 Binary files /dev/null and b/build/PHF000-Firmware/zephyr/drivers/serial/libdrivers__serial.a differ diff --git a/build/PHF000-Firmware/zephyr/drivers/timer/CMakeFiles/drivers__timer.dir/nrf_rtc_timer.c.obj b/build/PHF000-Firmware/zephyr/drivers/timer/CMakeFiles/drivers__timer.dir/nrf_rtc_timer.c.obj new file mode 100644 index 0000000..638fc26 Binary files /dev/null and b/build/PHF000-Firmware/zephyr/drivers/timer/CMakeFiles/drivers__timer.dir/nrf_rtc_timer.c.obj differ diff --git a/build/PHF000-Firmware/zephyr/drivers/timer/CMakeFiles/drivers__timer.dir/sys_clock_init.c.obj b/build/PHF000-Firmware/zephyr/drivers/timer/CMakeFiles/drivers__timer.dir/sys_clock_init.c.obj new file mode 100644 index 0000000..e2c7819 Binary files /dev/null and b/build/PHF000-Firmware/zephyr/drivers/timer/CMakeFiles/drivers__timer.dir/sys_clock_init.c.obj differ diff --git a/build/PHF000-Firmware/zephyr/drivers/timer/cmake_install.cmake b/build/PHF000-Firmware/zephyr/drivers/timer/cmake_install.cmake new file mode 100644 index 0000000..affd457 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/drivers/timer/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/drivers/timer + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/zephyr/drivers/timer/libdrivers__timer.a b/build/PHF000-Firmware/zephyr/drivers/timer/libdrivers__timer.a new file mode 100644 index 0000000..b910fb4 Binary files /dev/null and b/build/PHF000-Firmware/zephyr/drivers/timer/libdrivers__timer.a differ diff --git a/build/PHF000-Firmware/zephyr/drivers/usb/cmake_install.cmake b/build/PHF000-Firmware/zephyr/drivers/usb/cmake_install.cmake new file mode 100644 index 0000000..cbe447b --- /dev/null +++ b/build/PHF000-Firmware/zephyr/drivers/usb/cmake_install.cmake @@ -0,0 +1,49 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/drivers/usb + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/usb/device/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/usb/common/cmake_install.cmake") +endif() + diff --git a/build/PHF000-Firmware/zephyr/drivers/usb/common/cmake_install.cmake b/build/PHF000-Firmware/zephyr/drivers/usb/common/cmake_install.cmake new file mode 100644 index 0000000..d2d78e0 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/drivers/usb/common/cmake_install.cmake @@ -0,0 +1,44 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/drivers/usb/common/nrf_usbd_common/cmake_install.cmake") +endif() + diff --git a/build/PHF000-Firmware/zephyr/drivers/usb/common/nrf_usbd_common/CMakeFiles/drivers__usb__common__nrf_usbd_common.dir/nrf_usbd_common.c.obj b/build/PHF000-Firmware/zephyr/drivers/usb/common/nrf_usbd_common/CMakeFiles/drivers__usb__common__nrf_usbd_common.dir/nrf_usbd_common.c.obj new file mode 100644 index 0000000..094bfee Binary files /dev/null and b/build/PHF000-Firmware/zephyr/drivers/usb/common/nrf_usbd_common/CMakeFiles/drivers__usb__common__nrf_usbd_common.dir/nrf_usbd_common.c.obj differ diff --git a/build/PHF000-Firmware/zephyr/drivers/usb/common/nrf_usbd_common/cmake_install.cmake b/build/PHF000-Firmware/zephyr/drivers/usb/common/nrf_usbd_common/cmake_install.cmake new file mode 100644 index 0000000..3938f48 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/drivers/usb/common/nrf_usbd_common/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a b/build/PHF000-Firmware/zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a new file mode 100644 index 0000000..c090891 Binary files /dev/null and b/build/PHF000-Firmware/zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a differ diff --git a/build/PHF000-Firmware/zephyr/drivers/usb/device/CMakeFiles/drivers__usb__device.dir/usb_dc_nrfx.c.obj b/build/PHF000-Firmware/zephyr/drivers/usb/device/CMakeFiles/drivers__usb__device.dir/usb_dc_nrfx.c.obj new file mode 100644 index 0000000..4d3fa98 Binary files /dev/null and b/build/PHF000-Firmware/zephyr/drivers/usb/device/CMakeFiles/drivers__usb__device.dir/usb_dc_nrfx.c.obj differ diff --git a/build/PHF000-Firmware/zephyr/drivers/usb/device/cmake_install.cmake b/build/PHF000-Firmware/zephyr/drivers/usb/device/cmake_install.cmake new file mode 100644 index 0000000..b2fc55c --- /dev/null +++ b/build/PHF000-Firmware/zephyr/drivers/usb/device/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/drivers/usb/device + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/zephyr/drivers/usb/device/libdrivers__usb__device.a b/build/PHF000-Firmware/zephyr/drivers/usb/device/libdrivers__usb__device.a new file mode 100644 index 0000000..ff741d5 Binary files /dev/null and b/build/PHF000-Firmware/zephyr/drivers/usb/device/libdrivers__usb__device.a differ diff --git a/build/PHF000-Firmware/zephyr/drivers/usb_c/cmake_install.cmake b/build/PHF000-Firmware/zephyr/drivers/usb_c/cmake_install.cmake new file mode 100644 index 0000000..d0e4ced --- /dev/null +++ b/build/PHF000-Firmware/zephyr/drivers/usb_c/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/drivers/usb_c + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/zephyr/dts.cmake b/build/PHF000-Firmware/zephyr/dts.cmake new file mode 100644 index 0000000..bda5961 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/dts.cmake @@ -0,0 +1,1095 @@ +add_custom_target(${DEVICETREE_TARGET}) + +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_CHOSEN|zephyr,bt-hci" "/soc/radio@40001000/bt_hci_sdc") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_CHOSEN|zephyr,entropy" "/soc/random@4000d000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_CHOSEN|zephyr,flash-controller" "/soc/flash-controller@4001e000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_CHOSEN|zephyr,console" "/soc/usbd@40027000/cdc_acm_uart0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_CHOSEN|zephyr,udc" "/soc/usbd@40027000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_CHOSEN|zephyr,shell-uart" "/soc/uart@40002000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_CHOSEN|zephyr,uart-mcumgr" "/soc/uart@40002000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_CHOSEN|zephyr,bt-mon-uart" "/soc/uart@40002000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_CHOSEN|zephyr,bt-c2h-uart" "/soc/uart@40002000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_CHOSEN|zephyr,sram" "/soc/memory@20000000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_CHOSEN|zephyr,flash" "/soc/flash-controller@4001e000/flash@0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_CHOSEN|zephyr,code-partition" "/soc/flash-controller@4001e000/flash@0/partitions/partition@c000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_CHOSEN|zephyr,ieee802154" "/soc/radio@40001000/ieee802154") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_ALIAS|watchdog0" "/soc/watchdog@40010000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_ALIAS|led0" "/leds/led_0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_ALIAS|bootloader-led0" "/leds/led_0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_ALIAS|mcuboot-led0" "/leds/led_0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_ALIAS|led1" "/leds/led_1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_ALIAS|sw0" "/buttons/button_0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_ALIAS|mcuboot-button0" "/buttons/button_0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/|compatible" "arm,phf000_board;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/chosen" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/chosen|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/chosen|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/chosen|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/aliases" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/aliases|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/aliases|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/aliases|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc|compatible" "nordic,nrf52833-qdaa;nordic,nrf52833;nordic,nrf52;simple-bus;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc|ranges" "None") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/interrupt-controller@e000e100" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|nvic" "/soc/interrupt-controller@e000e100") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/interrupt-controller@e000e100|reg" "3758153984;3072;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/interrupt-controller@e000e100|arm,num-irq-priority-bits" "3") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/interrupt-controller@e000e100|interrupt-controller" "True") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/interrupt-controller@e000e100|compatible" "arm,v7m-nvic;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/interrupt-controller@e000e100|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/interrupt-controller@e000e100|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/interrupt-controller@e000e100|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/interrupt-controller@e000e100|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/interrupt-controller@e000e100|ADDR" "0xe000e100;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/interrupt-controller@e000e100|SIZE" "0xc00;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/timer@e000e010" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|systick" "/soc/timer@e000e010") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timer@e000e010|reg" "3758153744;16;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timer@e000e010|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timer@e000e010|compatible" "arm,armv7m-systick;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timer@e000e010|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timer@e000e010|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timer@e000e010|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timer@e000e010|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timer@e000e010|ADDR" "0xe000e010;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timer@e000e010|SIZE" "0x10;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/ficr@10000000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|ficr" "/soc/ficr@10000000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/ficr@10000000|reg" "268435456;4096;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/ficr@10000000|status" "okay") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/ficr@10000000|compatible" "nordic,nrf-ficr;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/ficr@10000000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/ficr@10000000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/ficr@10000000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/ficr@10000000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/ficr@10000000|ADDR" "0x10000000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/ficr@10000000|SIZE" "0x1000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/uicr@10001000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|uicr" "/soc/uicr@10001000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uicr@10001000|reg" "268439552;4096;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uicr@10001000|nfct-pins-as-gpios" "True") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uicr@10001000|gpio-as-nreset" "True") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uicr@10001000|status" "okay") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uicr@10001000|compatible" "nordic,nrf-uicr;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uicr@10001000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uicr@10001000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uicr@10001000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/uicr@10001000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/uicr@10001000|ADDR" "0x10001000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/uicr@10001000|SIZE" "0x1000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/memory@20000000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|sram0" "/soc/memory@20000000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@20000000|reg" "536870912;131072;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@20000000|compatible" "mmio-sram;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@20000000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@20000000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@20000000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/memory@20000000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/memory@20000000|ADDR" "0x20000000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/memory@20000000|SIZE" "0x20000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/clock@40000000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|clock" "/soc/clock@40000000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/clock@40000000|reg" "1073741824;4096;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/clock@40000000|interrupts" "0;1;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/clock@40000000|status" "okay") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/clock@40000000|compatible" "nordic,nrf-clock;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/clock@40000000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/clock@40000000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/clock@40000000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/clock@40000000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/clock@40000000|ADDR" "0x40000000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/clock@40000000|SIZE" "0x1000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/power@40000000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|power" "/soc/power@40000000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/power@40000000|reg" "1073741824;4096;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/power@40000000|interrupts" "0;1;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/power@40000000|status" "okay") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/power@40000000|compatible" "nordic,nrf-power;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/power@40000000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/power@40000000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/power@40000000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/power@40000000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/power@40000000|ADDR" "0x40000000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/power@40000000|SIZE" "0x1000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/power@40000000/gpregret1@4000051c" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|gpregret1" "/soc/power@40000000/gpregret1@4000051c") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/power@40000000/gpregret1@4000051c|reg" "1073743132;1;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/power@40000000/gpregret1@4000051c|status" "okay") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/power@40000000/gpregret1@4000051c|compatible" "nordic,nrf-gpregret;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/power@40000000/gpregret1@4000051c|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/power@40000000/gpregret1@4000051c|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/power@40000000/gpregret1@4000051c|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/power@40000000/gpregret1@4000051c|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/power@40000000/gpregret1@4000051c|ADDR" "0x4000051c;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/power@40000000/gpregret1@4000051c|SIZE" "0x1;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/power@40000000/gpregret2@40000520" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|gpregret2" "/soc/power@40000000/gpregret2@40000520") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/power@40000000/gpregret2@40000520|reg" "1073743136;1;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/power@40000000/gpregret2@40000520|status" "okay") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/power@40000000/gpregret2@40000520|compatible" "nordic,nrf-gpregret;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/power@40000000/gpregret2@40000520|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/power@40000000/gpregret2@40000520|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/power@40000000/gpregret2@40000520|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/power@40000000/gpregret2@40000520|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/power@40000000/gpregret2@40000520|ADDR" "0x40000520;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/power@40000000/gpregret2@40000520|SIZE" "0x1;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/power@40000000/regulator@40000578" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|reg1" "/soc/power@40000000/regulator@40000578") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/power@40000000/regulator@40000578|reg" "1073743224;1;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/power@40000000/regulator@40000578|regulator-name" "REG1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/power@40000000/regulator@40000578|regulator-initial-mode" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/power@40000000/regulator@40000578|status" "okay") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/power@40000000/regulator@40000578|compatible" "nordic,nrf5x-regulator;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/power@40000000/regulator@40000578|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/power@40000000/regulator@40000578|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/power@40000000/regulator@40000578|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/power@40000000/regulator@40000578|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/power@40000000/regulator@40000578|ADDR" "0x40000578;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/power@40000000/regulator@40000578|SIZE" "0x1;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/power@40000000/regulator@40000580" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|reg0" "/soc/power@40000000/regulator@40000580") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/power@40000000/regulator@40000580|reg" "1073743232;1;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/power@40000000/regulator@40000580|regulator-name" "REG0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/power@40000000/regulator@40000580|status" "okay") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/power@40000000/regulator@40000580|compatible" "nordic,nrf52x-regulator-hv;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/power@40000000/regulator@40000580|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/power@40000000/regulator@40000580|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/power@40000000/regulator@40000580|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/power@40000000/regulator@40000580|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/power@40000000/regulator@40000580|ADDR" "0x40000580;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/power@40000000/regulator@40000580|SIZE" "0x1;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/radio@40001000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|radio" "/soc/radio@40001000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/radio@40001000|reg" "1073745920;4096;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/radio@40001000|interrupts" "1;1;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/radio@40001000|dfe-supported" "True") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/radio@40001000|ieee802154-supported" "True") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/radio@40001000|ble-2mbps-supported" "True") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/radio@40001000|ble-coded-phy-supported" "True") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/radio@40001000|tx-high-power-supported" "True") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/radio@40001000|cs-supported" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/radio@40001000|status" "okay") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/radio@40001000|compatible" "nordic,nrf-radio;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/radio@40001000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/radio@40001000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/radio@40001000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/radio@40001000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/radio@40001000|ADDR" "0x40001000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/radio@40001000|SIZE" "0x1000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/radio@40001000/ieee802154" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|ieee802154" "/soc/radio@40001000/ieee802154") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/radio@40001000/ieee802154|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/radio@40001000/ieee802154|compatible" "nordic,nrf-ieee802154;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/radio@40001000/ieee802154|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/radio@40001000/ieee802154|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/radio@40001000/ieee802154|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/radio@40001000/ieee802154|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/radio@40001000/ieee802154|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/radio@40001000/ieee802154|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/radio@40001000/bt_hci_sdc" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|bt_hci_sdc" "/soc/radio@40001000/bt_hci_sdc") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/radio@40001000/bt_hci_sdc|bt-hci-name" "SDC") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/radio@40001000/bt_hci_sdc|bt-hci-bus" "virtual") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/radio@40001000/bt_hci_sdc|bt-hci-vs-ext" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/radio@40001000/bt_hci_sdc|status" "okay") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/radio@40001000/bt_hci_sdc|compatible" "nordic,bt-hci-sdc;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/radio@40001000/bt_hci_sdc|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/radio@40001000/bt_hci_sdc|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/radio@40001000/bt_hci_sdc|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/radio@40001000/bt_hci_sdc|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/radio@40001000/bt_hci_sdc|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/radio@40001000/bt_hci_sdc|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/radio@40001000/bt_hci_controller" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|bt_hci_controller" "/soc/radio@40001000/bt_hci_controller") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/radio@40001000/bt_hci_controller|bt-hci-name" "Controller") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/radio@40001000/bt_hci_controller|bt-hci-bus" "virtual") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/radio@40001000/bt_hci_controller|bt-hci-quirks" "no-auto-dle;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/radio@40001000/bt_hci_controller|bt-hci-vs-ext" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/radio@40001000/bt_hci_controller|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/radio@40001000/bt_hci_controller|compatible" "zephyr,bt-hci-ll-sw-split;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/radio@40001000/bt_hci_controller|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/radio@40001000/bt_hci_controller|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/radio@40001000/bt_hci_controller|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/radio@40001000/bt_hci_controller|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/radio@40001000/bt_hci_controller|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/radio@40001000/bt_hci_controller|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/uart@40002000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|uart0" "/soc/uart@40002000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@40002000|endtx-stoptx-supported" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@40002000|frame-timeout-supported" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@40002000|reg" "1073750016;4096;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@40002000|interrupts" "2;1;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@40002000|disable-rx" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@40002000|hw-flow-control" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@40002000|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@40002000|compatible" "nordic,nrf-uarte;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@40002000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@40002000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@40002000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/uart@40002000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/uart@40002000|ADDR" "0x40002000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/uart@40002000|SIZE" "0x1000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/i2c@40003000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|i2c0" "/soc/i2c@40003000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@40003000|zephyr,concat-buf-size" "16") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@40003000|zephyr,flash-buf-max-size" "16") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@40003000|reg" "1073754112;4096;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@40003000|interrupts" "3;1;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@40003000|easydma-maxcnt-bits" "16") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@40003000|sq-size" "4") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@40003000|cq-size" "4") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@40003000|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@40003000|compatible" "nordic,nrf-twim;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@40003000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@40003000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@40003000|zephyr,pm-device-runtime-auto" "True") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/i2c@40003000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/i2c@40003000|ADDR" "0x40003000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/i2c@40003000|SIZE" "0x1000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/spi@40003000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|spi0" "/soc/spi@40003000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@40003000|anomaly-58-workaround" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@40003000|rx-delay-supported" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@40003000|reg" "1073754112;4096;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@40003000|interrupts" "3;1;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@40003000|max-frequency" "8000000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@40003000|overrun-character" "255") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@40003000|easydma-maxcnt-bits" "16") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@40003000|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@40003000|compatible" "nordic,nrf-spim;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@40003000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@40003000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@40003000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/spi@40003000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/spi@40003000|ADDR" "0x40003000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/spi@40003000|SIZE" "0x1000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/i2c@40004000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|i2c1" "/soc/i2c@40004000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@40004000|zephyr,concat-buf-size" "16") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@40004000|zephyr,flash-buf-max-size" "16") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@40004000|reg" "1073758208;4096;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@40004000|interrupts" "4;1;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@40004000|easydma-maxcnt-bits" "16") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@40004000|sq-size" "4") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@40004000|cq-size" "4") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@40004000|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@40004000|compatible" "nordic,nrf-twim;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@40004000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@40004000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@40004000|zephyr,pm-device-runtime-auto" "True") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/i2c@40004000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/i2c@40004000|ADDR" "0x40004000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/i2c@40004000|SIZE" "0x1000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/spi@40004000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|spi1" "/soc/spi@40004000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@40004000|anomaly-58-workaround" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@40004000|rx-delay-supported" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@40004000|reg" "1073758208;4096;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@40004000|interrupts" "4;1;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@40004000|max-frequency" "8000000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@40004000|overrun-character" "255") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@40004000|easydma-maxcnt-bits" "16") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@40004000|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@40004000|compatible" "nordic,nrf-spim;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@40004000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@40004000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@40004000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/spi@40004000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/spi@40004000|ADDR" "0x40004000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/spi@40004000|SIZE" "0x1000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/nfct@40005000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|nfct" "/soc/nfct@40005000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/nfct@40005000|reg" "1073762304;4096;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/nfct@40005000|interrupts" "5;1;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/nfct@40005000|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/nfct@40005000|compatible" "nordic,nrf-nfct;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/nfct@40005000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/nfct@40005000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/nfct@40005000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/nfct@40005000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/nfct@40005000|ADDR" "0x40005000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/nfct@40005000|SIZE" "0x1000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/gpiote@40006000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|gpiote" "/soc/gpiote@40006000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|gpiote0" "/soc/gpiote@40006000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/gpiote@40006000|reg" "1073766400;4096;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/gpiote@40006000|interrupts" "6;5;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/gpiote@40006000|instance" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/gpiote@40006000|status" "okay") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/gpiote@40006000|compatible" "nordic,nrf-gpiote;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/gpiote@40006000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/gpiote@40006000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/gpiote@40006000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/gpiote@40006000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/gpiote@40006000|ADDR" "0x40006000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/gpiote@40006000|SIZE" "0x1000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/adc@40007000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|adc" "/soc/adc@40007000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/adc@40007000|reg" "1073770496;4096;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/adc@40007000|interrupts" "7;1;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/adc@40007000|status" "okay") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/adc@40007000|compatible" "nordic,nrf-saadc;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/adc@40007000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/adc@40007000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/adc@40007000|zephyr,pm-device-runtime-auto" "True") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/adc@40007000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/adc@40007000|ADDR" "0x40007000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/adc@40007000|SIZE" "0x1000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/adc@40007000/channel@6" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/adc@40007000/channel@6|reg" "6;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/adc@40007000/channel@6|zephyr,gain" "ADC_GAIN_1_6") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/adc@40007000/channel@6|zephyr,reference" "ADC_REF_INTERNAL") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/adc@40007000/channel@6|zephyr,acquisition-time" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/adc@40007000/channel@6|zephyr,differential" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/adc@40007000/channel@6|zephyr,input-positive" "7") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/adc@40007000/channel@6|zephyr,resolution" "12") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/adc@40007000/channel@6|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/adc@40007000/channel@6|ADDR" "0x6;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/adc@40007000/channel@6|SIZE" "NONE;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/timer@40008000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|timer0" "/soc/timer@40008000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timer@40008000|reg" "1073774592;4096;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timer@40008000|cc-num" "4") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timer@40008000|max-bit-width" "32") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timer@40008000|interrupts" "8;1;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timer@40008000|max-frequency" "16000000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timer@40008000|prescaler" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timer@40008000|zli" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timer@40008000|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timer@40008000|compatible" "nordic,nrf-timer;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timer@40008000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timer@40008000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timer@40008000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timer@40008000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timer@40008000|ADDR" "0x40008000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timer@40008000|SIZE" "0x1000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/timer@40009000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|timer1" "/soc/timer@40009000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timer@40009000|reg" "1073778688;4096;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timer@40009000|cc-num" "4") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timer@40009000|max-bit-width" "32") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timer@40009000|interrupts" "9;1;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timer@40009000|max-frequency" "16000000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timer@40009000|prescaler" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timer@40009000|zli" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timer@40009000|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timer@40009000|compatible" "nordic,nrf-timer;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timer@40009000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timer@40009000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timer@40009000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timer@40009000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timer@40009000|ADDR" "0x40009000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timer@40009000|SIZE" "0x1000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/timer@4000a000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|timer2" "/soc/timer@4000a000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timer@4000a000|reg" "1073782784;4096;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timer@4000a000|cc-num" "4") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timer@4000a000|max-bit-width" "32") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timer@4000a000|interrupts" "10;1;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timer@4000a000|max-frequency" "16000000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timer@4000a000|prescaler" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timer@4000a000|zli" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timer@4000a000|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timer@4000a000|compatible" "nordic,nrf-timer;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timer@4000a000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timer@4000a000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timer@4000a000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timer@4000a000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timer@4000a000|ADDR" "0x4000a000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timer@4000a000|SIZE" "0x1000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/rtc@4000b000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|rtc0" "/soc/rtc@4000b000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/rtc@4000b000|reg" "1073786880;4096;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/rtc@4000b000|cc-num" "3") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/rtc@4000b000|ppi-wrap" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/rtc@4000b000|fixed-top" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/rtc@4000b000|zli" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/rtc@4000b000|clock-frequency" "32768") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/rtc@4000b000|interrupts" "11;1;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/rtc@4000b000|prescaler" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/rtc@4000b000|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/rtc@4000b000|compatible" "nordic,nrf-rtc;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/rtc@4000b000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/rtc@4000b000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/rtc@4000b000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/rtc@4000b000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/rtc@4000b000|ADDR" "0x4000b000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/rtc@4000b000|SIZE" "0x1000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/temp@4000c000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|temp" "/soc/temp@4000c000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/temp@4000c000|reg" "1073790976;4096;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/temp@4000c000|interrupts" "12;1;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/temp@4000c000|status" "okay") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/temp@4000c000|compatible" "nordic,nrf-temp;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/temp@4000c000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/temp@4000c000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/temp@4000c000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/temp@4000c000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/temp@4000c000|ADDR" "0x4000c000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/temp@4000c000|SIZE" "0x1000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/random@4000d000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|rng" "/soc/random@4000d000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/random@4000d000|reg" "1073795072;4096;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/random@4000d000|interrupts" "13;1;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/random@4000d000|status" "okay") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/random@4000d000|compatible" "nordic,nrf-rng;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/random@4000d000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/random@4000d000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/random@4000d000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/random@4000d000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/random@4000d000|ADDR" "0x4000d000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/random@4000d000|SIZE" "0x1000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/ecb@4000e000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|ecb" "/soc/ecb@4000e000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/ecb@4000e000|reg" "1073799168;4096;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/ecb@4000e000|interrupts" "14;1;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/ecb@4000e000|status" "okay") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/ecb@4000e000|compatible" "nordic,nrf-ecb;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/ecb@4000e000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/ecb@4000e000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/ecb@4000e000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/ecb@4000e000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/ecb@4000e000|ADDR" "0x4000e000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/ecb@4000e000|SIZE" "0x1000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/ccm@4000f000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|ccm" "/soc/ccm@4000f000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/ccm@4000f000|reg" "1073803264;4096;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/ccm@4000f000|interrupts" "15;1;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/ccm@4000f000|length-field-length-8-bits" "True") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/ccm@4000f000|headermask-supported" "True") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/ccm@4000f000|status" "okay") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/ccm@4000f000|compatible" "nordic,nrf-ccm;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/ccm@4000f000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/ccm@4000f000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/ccm@4000f000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/ccm@4000f000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/ccm@4000f000|ADDR" "0x4000f000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/ccm@4000f000|SIZE" "0x1000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/watchdog@40010000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|wdt" "/soc/watchdog@40010000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|wdt0" "/soc/watchdog@40010000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/watchdog@40010000|reg" "1073807360;4096;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/watchdog@40010000|interrupts" "16;1;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/watchdog@40010000|status" "okay") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/watchdog@40010000|compatible" "nordic,nrf-wdt;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/watchdog@40010000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/watchdog@40010000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/watchdog@40010000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/watchdog@40010000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/watchdog@40010000|ADDR" "0x40010000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/watchdog@40010000|SIZE" "0x1000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/rtc@40011000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|rtc1" "/soc/rtc@40011000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/rtc@40011000|reg" "1073811456;4096;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/rtc@40011000|cc-num" "4") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/rtc@40011000|ppi-wrap" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/rtc@40011000|fixed-top" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/rtc@40011000|zli" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/rtc@40011000|clock-frequency" "32768") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/rtc@40011000|interrupts" "17;1;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/rtc@40011000|prescaler" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/rtc@40011000|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/rtc@40011000|compatible" "nordic,nrf-rtc;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/rtc@40011000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/rtc@40011000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/rtc@40011000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/rtc@40011000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/rtc@40011000|ADDR" "0x40011000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/rtc@40011000|SIZE" "0x1000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/qdec@40012000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|qdec" "/soc/qdec@40012000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|qdec0" "/soc/qdec@40012000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/qdec@40012000|reg" "1073815552;4096;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/qdec@40012000|interrupts" "18;1;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/qdec@40012000|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/qdec@40012000|compatible" "nordic,nrf-qdec;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/qdec@40012000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/qdec@40012000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/qdec@40012000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/qdec@40012000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/qdec@40012000|ADDR" "0x40012000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/qdec@40012000|SIZE" "0x1000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/comparator@40013000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|comp" "/soc/comparator@40013000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/comparator@40013000|enable-hyst" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/comparator@40013000|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/comparator@40013000|compatible" "nordic,nrf-comp;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/comparator@40013000|reg" "1073819648;4096;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/comparator@40013000|interrupts" "19;1;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/comparator@40013000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/comparator@40013000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/comparator@40013000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/comparator@40013000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/comparator@40013000|ADDR" "0x40013000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/comparator@40013000|SIZE" "0x1000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/egu@40014000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|egu0" "/soc/egu@40014000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|swi0" "/soc/egu@40014000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/egu@40014000|reg" "1073823744;4096;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/egu@40014000|interrupts" "20;1;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/egu@40014000|status" "okay") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/egu@40014000|compatible" "nordic,nrf-egu;nordic,nrf-swi;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/egu@40014000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/egu@40014000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/egu@40014000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/egu@40014000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/egu@40014000|ADDR" "0x40014000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/egu@40014000|SIZE" "0x1000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/egu@40015000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|egu1" "/soc/egu@40015000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|swi1" "/soc/egu@40015000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/egu@40015000|reg" "1073827840;4096;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/egu@40015000|interrupts" "21;1;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/egu@40015000|status" "okay") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/egu@40015000|compatible" "nordic,nrf-egu;nordic,nrf-swi;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/egu@40015000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/egu@40015000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/egu@40015000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/egu@40015000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/egu@40015000|ADDR" "0x40015000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/egu@40015000|SIZE" "0x1000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/egu@40016000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|egu2" "/soc/egu@40016000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|swi2" "/soc/egu@40016000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/egu@40016000|reg" "1073831936;4096;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/egu@40016000|interrupts" "22;1;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/egu@40016000|status" "okay") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/egu@40016000|compatible" "nordic,nrf-egu;nordic,nrf-swi;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/egu@40016000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/egu@40016000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/egu@40016000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/egu@40016000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/egu@40016000|ADDR" "0x40016000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/egu@40016000|SIZE" "0x1000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/egu@40017000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|egu3" "/soc/egu@40017000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|swi3" "/soc/egu@40017000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/egu@40017000|reg" "1073836032;4096;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/egu@40017000|interrupts" "23;1;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/egu@40017000|status" "okay") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/egu@40017000|compatible" "nordic,nrf-egu;nordic,nrf-swi;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/egu@40017000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/egu@40017000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/egu@40017000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/egu@40017000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/egu@40017000|ADDR" "0x40017000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/egu@40017000|SIZE" "0x1000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/egu@40018000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|egu4" "/soc/egu@40018000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|swi4" "/soc/egu@40018000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/egu@40018000|reg" "1073840128;4096;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/egu@40018000|interrupts" "24;1;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/egu@40018000|status" "okay") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/egu@40018000|compatible" "nordic,nrf-egu;nordic,nrf-swi;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/egu@40018000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/egu@40018000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/egu@40018000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/egu@40018000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/egu@40018000|ADDR" "0x40018000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/egu@40018000|SIZE" "0x1000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/egu@40019000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|egu5" "/soc/egu@40019000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|swi5" "/soc/egu@40019000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/egu@40019000|reg" "1073844224;4096;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/egu@40019000|interrupts" "25;1;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/egu@40019000|status" "okay") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/egu@40019000|compatible" "nordic,nrf-egu;nordic,nrf-swi;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/egu@40019000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/egu@40019000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/egu@40019000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/egu@40019000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/egu@40019000|ADDR" "0x40019000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/egu@40019000|SIZE" "0x1000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/timer@4001a000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|timer3" "/soc/timer@4001a000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timer@4001a000|reg" "1073848320;4096;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timer@4001a000|cc-num" "6") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timer@4001a000|max-bit-width" "32") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timer@4001a000|interrupts" "26;1;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timer@4001a000|max-frequency" "16000000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timer@4001a000|prescaler" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timer@4001a000|zli" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timer@4001a000|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timer@4001a000|compatible" "nordic,nrf-timer;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timer@4001a000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timer@4001a000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timer@4001a000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timer@4001a000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timer@4001a000|ADDR" "0x4001a000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timer@4001a000|SIZE" "0x1000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/timer@4001b000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|timer4" "/soc/timer@4001b000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timer@4001b000|reg" "1073852416;4096;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timer@4001b000|cc-num" "6") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timer@4001b000|max-bit-width" "32") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timer@4001b000|interrupts" "27;1;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timer@4001b000|max-frequency" "16000000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timer@4001b000|prescaler" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timer@4001b000|zli" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timer@4001b000|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timer@4001b000|compatible" "nordic,nrf-timer;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timer@4001b000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timer@4001b000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timer@4001b000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timer@4001b000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timer@4001b000|ADDR" "0x4001b000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timer@4001b000|SIZE" "0x1000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/pwm@4001c000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|pwm0" "/soc/pwm@4001c000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pwm@4001c000|reg" "1073856512;4096;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pwm@4001c000|center-aligned" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pwm@4001c000|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pwm@4001c000|compatible" "nordic,nrf-pwm;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pwm@4001c000|interrupts" "28;1;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pwm@4001c000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pwm@4001c000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pwm@4001c000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/pwm@4001c000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/pwm@4001c000|ADDR" "0x4001c000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/pwm@4001c000|SIZE" "0x1000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/pdm@4001d000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|pdm0" "/soc/pdm@4001d000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pdm@4001d000|reg" "1073860608;4096;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pdm@4001d000|interrupts" "29;1;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pdm@4001d000|clock-source" "PCLK32M_HFXO") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pdm@4001d000|queue-size" "4") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pdm@4001d000|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pdm@4001d000|compatible" "nordic,nrf-pdm;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pdm@4001d000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pdm@4001d000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pdm@4001d000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/pdm@4001d000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/pdm@4001d000|ADDR" "0x4001d000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/pdm@4001d000|SIZE" "0x1000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/acl@4001e000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|acl" "/soc/acl@4001e000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/acl@4001e000|reg" "1073864704;4096;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/acl@4001e000|status" "okay") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/acl@4001e000|compatible" "nordic,nrf-acl;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/acl@4001e000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/acl@4001e000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/acl@4001e000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/acl@4001e000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/acl@4001e000|ADDR" "0x4001e000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/acl@4001e000|SIZE" "0x1000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/flash-controller@4001e000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|flash_controller" "/soc/flash-controller@4001e000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@4001e000|partial-erase" "True") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@4001e000|reg" "1073864704;4096;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@4001e000|compatible" "nordic,nrf52-flash-controller;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@4001e000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@4001e000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@4001e000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@4001e000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@4001e000|ADDR" "0x4001e000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@4001e000|SIZE" "0x1000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/flash-controller@4001e000/flash@0" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|flash0" "/soc/flash-controller@4001e000/flash@0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@4001e000/flash@0|erase-block-size" "4096") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@4001e000/flash@0|write-block-size" "4") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@4001e000/flash@0|compatible" "soc-nv-flash;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@4001e000/flash@0|reg" "0;524288;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@4001e000/flash@0|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@4001e000/flash@0|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@4001e000/flash@0|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@4001e000/flash@0|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@4001e000/flash@0|ADDR" "0x0;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@4001e000/flash@0|SIZE" "0x80000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/flash-controller@4001e000/flash@0/partitions" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@4001e000/flash@0/partitions|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@4001e000/flash@0/partitions|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@4001e000/flash@0/partitions|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/flash-controller@4001e000/flash@0/partitions/partition@0" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|boot_partition" "/soc/flash-controller@4001e000/flash@0/partitions/partition@0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@4001e000/flash@0/partitions/partition@0|label" "mcuboot") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@4001e000/flash@0/partitions/partition@0|read-only" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@4001e000/flash@0/partitions/partition@0|reg" "0;49152;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@4001e000/flash@0/partitions/partition@0|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@4001e000/flash@0/partitions/partition@0|ADDR" "0x0;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@4001e000/flash@0/partitions/partition@0|SIZE" "0xc000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/flash-controller@4001e000/flash@0/partitions/partition@c000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|slot0_partition" "/soc/flash-controller@4001e000/flash@0/partitions/partition@c000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@4001e000/flash@0/partitions/partition@c000|label" "image-0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@4001e000/flash@0/partitions/partition@c000|read-only" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@4001e000/flash@0/partitions/partition@c000|reg" "49152;225280;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@4001e000/flash@0/partitions/partition@c000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@4001e000/flash@0/partitions/partition@c000|ADDR" "0xc000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@4001e000/flash@0/partitions/partition@c000|SIZE" "0x37000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/flash-controller@4001e000/flash@0/partitions/partition@43000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|slot1_partition" "/soc/flash-controller@4001e000/flash@0/partitions/partition@43000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@4001e000/flash@0/partitions/partition@43000|label" "image-1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@4001e000/flash@0/partitions/partition@43000|read-only" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@4001e000/flash@0/partitions/partition@43000|reg" "274432;225280;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@4001e000/flash@0/partitions/partition@43000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@4001e000/flash@0/partitions/partition@43000|ADDR" "0x43000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@4001e000/flash@0/partitions/partition@43000|SIZE" "0x37000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/flash-controller@4001e000/flash@0/partitions/partition@7a000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|storage_partition" "/soc/flash-controller@4001e000/flash@0/partitions/partition@7a000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@4001e000/flash@0/partitions/partition@7a000|label" "storage") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@4001e000/flash@0/partitions/partition@7a000|read-only" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@4001e000/flash@0/partitions/partition@7a000|reg" "499712;24576;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@4001e000/flash@0/partitions/partition@7a000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@4001e000/flash@0/partitions/partition@7a000|ADDR" "0x7a000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@4001e000/flash@0/partitions/partition@7a000|SIZE" "0x6000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/ppi@4001f000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|ppi" "/soc/ppi@4001f000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/ppi@4001f000|reg" "1073868800;4096;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/ppi@4001f000|status" "okay") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/ppi@4001f000|compatible" "nordic,nrf-ppi;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/ppi@4001f000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/ppi@4001f000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/ppi@4001f000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/ppi@4001f000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/ppi@4001f000|ADDR" "0x4001f000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/ppi@4001f000|SIZE" "0x1000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/mwu@40020000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|mwu" "/soc/mwu@40020000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/mwu@40020000|reg" "1073872896;4096;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/mwu@40020000|status" "okay") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/mwu@40020000|compatible" "nordic,nrf-mwu;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/mwu@40020000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/mwu@40020000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/mwu@40020000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/mwu@40020000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/mwu@40020000|ADDR" "0x40020000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/mwu@40020000|SIZE" "0x1000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/pwm@40021000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|pwm1" "/soc/pwm@40021000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pwm@40021000|reg" "1073876992;4096;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pwm@40021000|center-aligned" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pwm@40021000|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pwm@40021000|compatible" "nordic,nrf-pwm;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pwm@40021000|interrupts" "33;1;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pwm@40021000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pwm@40021000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pwm@40021000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/pwm@40021000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/pwm@40021000|ADDR" "0x40021000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/pwm@40021000|SIZE" "0x1000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/pwm@40022000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|pwm2" "/soc/pwm@40022000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pwm@40022000|reg" "1073881088;4096;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pwm@40022000|center-aligned" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pwm@40022000|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pwm@40022000|compatible" "nordic,nrf-pwm;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pwm@40022000|interrupts" "34;1;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pwm@40022000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pwm@40022000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pwm@40022000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/pwm@40022000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/pwm@40022000|ADDR" "0x40022000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/pwm@40022000|SIZE" "0x1000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/spi@40023000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|spi2" "/soc/spi@40023000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@40023000|anomaly-58-workaround" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@40023000|rx-delay-supported" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@40023000|reg" "1073885184;4096;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@40023000|interrupts" "35;1;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@40023000|max-frequency" "8000000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@40023000|overrun-character" "255") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@40023000|easydma-maxcnt-bits" "16") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@40023000|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@40023000|compatible" "nordic,nrf-spim;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@40023000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@40023000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@40023000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/spi@40023000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/spi@40023000|ADDR" "0x40023000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/spi@40023000|SIZE" "0x1000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/rtc@40024000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|rtc2" "/soc/rtc@40024000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/rtc@40024000|reg" "1073889280;4096;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/rtc@40024000|cc-num" "4") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/rtc@40024000|ppi-wrap" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/rtc@40024000|fixed-top" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/rtc@40024000|zli" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/rtc@40024000|clock-frequency" "32768") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/rtc@40024000|interrupts" "36;1;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/rtc@40024000|prescaler" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/rtc@40024000|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/rtc@40024000|compatible" "nordic,nrf-rtc;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/rtc@40024000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/rtc@40024000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/rtc@40024000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/rtc@40024000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/rtc@40024000|ADDR" "0x40024000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/rtc@40024000|SIZE" "0x1000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/i2s@40025000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|i2s0" "/soc/i2s@40025000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2s@40025000|reg" "1073893376;4096;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2s@40025000|interrupts" "37;1;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2s@40025000|clock-source" "PCLK32M_HFXO") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2s@40025000|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2s@40025000|compatible" "nordic,nrf-i2s;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2s@40025000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2s@40025000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2s@40025000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/i2s@40025000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/i2s@40025000|ADDR" "0x40025000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/i2s@40025000|SIZE" "0x1000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/usbd@40027000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|usbd" "/soc/usbd@40027000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|zephyr_udc0" "/soc/usbd@40027000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/usbd@40027000|reg" "1073901568;4096;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/usbd@40027000|interrupts" "39;1;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/usbd@40027000|num-isoin-endpoints" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/usbd@40027000|num-isoout-endpoints" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/usbd@40027000|num-bidir-endpoints" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/usbd@40027000|num-in-endpoints" "7") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/usbd@40027000|num-out-endpoints" "7") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/usbd@40027000|status" "okay") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/usbd@40027000|compatible" "nordic,nrf-usbd;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/usbd@40027000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/usbd@40027000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/usbd@40027000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/usbd@40027000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/usbd@40027000|ADDR" "0x40027000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/usbd@40027000|SIZE" "0x1000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/usbd@40027000/cdc_acm_uart0" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|cdc_acm_uart0" "/soc/usbd@40027000/cdc_acm_uart0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/usbd@40027000/cdc_acm_uart0|tx-fifo-size" "1024") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/usbd@40027000/cdc_acm_uart0|rx-fifo-size" "1024") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/usbd@40027000/cdc_acm_uart0|hw-flow-control" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/usbd@40027000/cdc_acm_uart0|compatible" "zephyr,cdc-acm-uart;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/usbd@40027000/cdc_acm_uart0|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/usbd@40027000/cdc_acm_uart0|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/usbd@40027000/cdc_acm_uart0|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/usbd@40027000/cdc_acm_uart0|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/usbd@40027000/cdc_acm_uart0|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/usbd@40027000/cdc_acm_uart0|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/uart@40028000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|uart1" "/soc/uart@40028000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@40028000|endtx-stoptx-supported" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@40028000|frame-timeout-supported" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@40028000|reg" "1073905664;4096;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@40028000|interrupts" "40;1;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@40028000|disable-rx" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@40028000|hw-flow-control" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@40028000|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@40028000|compatible" "nordic,nrf-uarte;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@40028000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@40028000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@40028000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/uart@40028000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/uart@40028000|ADDR" "0x40028000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/uart@40028000|SIZE" "0x1000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/pwm@4002d000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|pwm3" "/soc/pwm@4002d000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pwm@4002d000|reg" "1073926144;4096;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pwm@4002d000|center-aligned" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pwm@4002d000|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pwm@4002d000|compatible" "nordic,nrf-pwm;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pwm@4002d000|interrupts" "45;1;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pwm@4002d000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pwm@4002d000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pwm@4002d000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/pwm@4002d000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/pwm@4002d000|ADDR" "0x4002d000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/pwm@4002d000|SIZE" "0x1000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/spi@4002f000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|spi3" "/soc/spi@4002f000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@4002f000|anomaly-58-workaround" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@4002f000|rx-delay-supported" "True") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@4002f000|rx-delay" "2") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@4002f000|reg" "1073934336;4096;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@4002f000|interrupts" "47;1;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@4002f000|max-frequency" "32000000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@4002f000|overrun-character" "255") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@4002f000|easydma-maxcnt-bits" "16") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@4002f000|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@4002f000|compatible" "nordic,nrf-spim;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@4002f000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@4002f000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@4002f000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/spi@4002f000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/spi@4002f000|ADDR" "0x4002f000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/spi@4002f000|SIZE" "0x1000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/gpio@50000000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|gpio0" "/soc/gpio@50000000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/gpio@50000000|reg" "1342177280;512;1342178560;768;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/gpio@50000000|port" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/gpio@50000000|gpio-controller" "True") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/gpio@50000000|ngpios" "32") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/gpio@50000000|status" "okay") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/gpio@50000000|compatible" "nordic,nrf-gpio;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/gpio@50000000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/gpio@50000000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/gpio@50000000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/gpio@50000000|NUM" "2") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/gpio@50000000|ADDR" "0x50000000;0x50000500;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/gpio@50000000|SIZE" "0x200;0x300;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/gpio@50000300" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|gpio1" "/soc/gpio@50000300") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/gpio@50000300|reg" "1342178048;512;1342179328;768;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/gpio@50000300|port" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/gpio@50000300|gpio-controller" "True") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/gpio@50000300|ngpios" "10") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/gpio@50000300|status" "okay") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/gpio@50000300|compatible" "nordic,nrf-gpio;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/gpio@50000300|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/gpio@50000300|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/gpio@50000300|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/gpio@50000300|NUM" "2") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/gpio@50000300|ADDR" "0x50000300;0x50000800;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/gpio@50000300|SIZE" "0x200;0x300;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/pin-controller" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|pinctrl" "/pin-controller") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller|compatible" "nordic,nrf-pinctrl;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/pin-controller|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/pin-controller|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/pin-controller|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/entropy_bt_hci" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|rng_hci" "/entropy_bt_hci") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/entropy_bt_hci|status" "okay") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/entropy_bt_hci|compatible" "zephyr,bt-hci-entropy;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/entropy_bt_hci|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/entropy_bt_hci|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/entropy_bt_hci|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/entropy_bt_hci|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/entropy_bt_hci|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/entropy_bt_hci|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/sw-pwm" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|sw_pwm" "/sw-pwm") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/sw-pwm|clock-prescaler" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/sw-pwm|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/sw-pwm|compatible" "nordic,nrf-sw-pwm;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/sw-pwm|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/sw-pwm|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/sw-pwm|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/sw-pwm|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/sw-pwm|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/sw-pwm|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/cpus" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/cpus|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/cpus|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/cpus|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/cpus/cpu@0" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/cpus/cpu@0|compatible" "arm,cortex-m4f;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/cpus/cpu@0|reg" "0;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/cpus/cpu@0|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/cpus/cpu@0|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/cpus/cpu@0|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/cpus/cpu@0|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/cpus/cpu@0|ADDR" "0x0;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/cpus/cpu@0|SIZE" "NONE;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/cpus/cpu@0/itm@e0000000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|itm" "/cpus/cpu@0/itm@e0000000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/cpus/cpu@0/itm@e0000000|swo-ref-frequency" "32000000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/cpus/cpu@0/itm@e0000000|compatible" "arm,armv7m-itm;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/cpus/cpu@0/itm@e0000000|reg" "3758096384;4096;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/cpus/cpu@0/itm@e0000000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/cpus/cpu@0/itm@e0000000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/cpus/cpu@0/itm@e0000000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/cpus/cpu@0/itm@e0000000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/cpus/cpu@0/itm@e0000000|ADDR" "0xe0000000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/cpus/cpu@0/itm@e0000000|SIZE" "0x1000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/leds" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/leds|compatible" "gpio-leds;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/leds|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/leds|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/leds|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/leds/led_0" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|led0" "/leds/led_0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/leds/led_0|label" "Red LED 0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/leds/led_0|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/leds/led_0|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/leds/led_0|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/leds/led_1" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|led1" "/leds/led_1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/leds/led_1|label" "Green LED 1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/leds/led_1|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/leds/led_1|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/leds/led_1|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/buttons" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/buttons|debounce-interval-ms" "30") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/buttons|polling-mode" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/buttons|no-disconnect" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/buttons|compatible" "gpio-keys;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/buttons|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/buttons|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/buttons|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/buttons|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/buttons|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/buttons|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/buttons/button_0" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|button0" "/buttons/button_0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/buttons/button_0|label" "Push button switch 0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/buttons/button_0|zephyr,code" "11") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/buttons/button_0|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/buttons/button_0|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/buttons/button_0|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/zephyr,user" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/zephyr,user|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/zephyr,user|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/zephyr,user|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/reserved-memory" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/reserved-memory|ranges" "None") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/reserved-memory|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/reserved-memory|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/reserved-memory|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|arm,phf000_board" "/") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|nordic,nrf52833-qdaa" "/soc") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|nordic,nrf52833" "/soc") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|nordic,nrf52" "/soc") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|simple-bus" "/soc") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|arm,v7m-nvic" "/soc/interrupt-controller@e000e100") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|arm,armv7m-systick" "/soc/timer@e000e010") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|nordic,nrf-ficr" "/soc/ficr@10000000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|nordic,nrf-uicr" "/soc/uicr@10001000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|mmio-sram" "/soc/memory@20000000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|nordic,nrf-clock" "/soc/clock@40000000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|nordic,nrf-power" "/soc/power@40000000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|nordic,nrf-gpregret" "/soc/power@40000000/gpregret1@4000051c;/soc/power@40000000/gpregret2@40000520") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|nordic,nrf5x-regulator" "/soc/power@40000000/regulator@40000578") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|nordic,nrf52x-regulator-hv" "/soc/power@40000000/regulator@40000580") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|nordic,nrf-radio" "/soc/radio@40001000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|nordic,nrf-ieee802154" "/soc/radio@40001000/ieee802154") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|nordic,bt-hci-sdc" "/soc/radio@40001000/bt_hci_sdc") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|zephyr,bt-hci-ll-sw-split" "/soc/radio@40001000/bt_hci_controller") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|nordic,nrf-uarte" "/soc/uart@40002000;/soc/uart@40028000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|nordic,nrf-twim" "/soc/i2c@40003000;/soc/i2c@40004000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|nordic,nrf-spim" "/soc/spi@40003000;/soc/spi@40004000;/soc/spi@40023000;/soc/spi@4002f000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|nordic,nrf-nfct" "/soc/nfct@40005000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|nordic,nrf-gpiote" "/soc/gpiote@40006000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|nordic,nrf-saadc" "/soc/adc@40007000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|nordic,nrf-timer" "/soc/timer@40008000;/soc/timer@40009000;/soc/timer@4000a000;/soc/timer@4001a000;/soc/timer@4001b000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|nordic,nrf-rtc" "/soc/rtc@4000b000;/soc/rtc@40011000;/soc/rtc@40024000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|nordic,nrf-temp" "/soc/temp@4000c000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|nordic,nrf-rng" "/soc/random@4000d000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|nordic,nrf-ecb" "/soc/ecb@4000e000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|nordic,nrf-ccm" "/soc/ccm@4000f000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|nordic,nrf-wdt" "/soc/watchdog@40010000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|nordic,nrf-qdec" "/soc/qdec@40012000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|nordic,nrf-comp" "/soc/comparator@40013000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|nordic,nrf-egu" "/soc/egu@40014000;/soc/egu@40015000;/soc/egu@40016000;/soc/egu@40017000;/soc/egu@40018000;/soc/egu@40019000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|nordic,nrf-swi" "/soc/egu@40014000;/soc/egu@40015000;/soc/egu@40016000;/soc/egu@40017000;/soc/egu@40018000;/soc/egu@40019000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|nordic,nrf-pwm" "/soc/pwm@4001c000;/soc/pwm@40021000;/soc/pwm@40022000;/soc/pwm@4002d000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|nordic,nrf-pdm" "/soc/pdm@4001d000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|nordic,nrf-acl" "/soc/acl@4001e000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|nordic,nrf52-flash-controller" "/soc/flash-controller@4001e000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|soc-nv-flash" "/soc/flash-controller@4001e000/flash@0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|nordic,nrf-ppi" "/soc/ppi@4001f000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|nordic,nrf-mwu" "/soc/mwu@40020000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|nordic,nrf-i2s" "/soc/i2s@40025000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|nordic,nrf-usbd" "/soc/usbd@40027000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|zephyr,cdc-acm-uart" "/soc/usbd@40027000/cdc_acm_uart0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|nordic,nrf-gpio" "/soc/gpio@50000000;/soc/gpio@50000300") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|nordic,nrf-pinctrl" "/pin-controller") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|zephyr,bt-hci-entropy" "/entropy_bt_hci") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|nordic,nrf-sw-pwm" "/sw-pwm") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|arm,cortex-m4f" "/cpus/cpu@0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|arm,armv7m-itm" "/cpus/cpu@0/itm@e0000000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|gpio-leds" "/leds") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|gpio-keys" "/buttons") diff --git a/build/PHF000-Firmware/zephyr/edt.pickle b/build/PHF000-Firmware/zephyr/edt.pickle new file mode 100644 index 0000000..ce998b3 Binary files /dev/null and b/build/PHF000-Firmware/zephyr/edt.pickle differ diff --git a/build/PHF000-Firmware/zephyr/include/generated/app_data_alignment.ld b/build/PHF000-Firmware/zephyr/include/generated/app_data_alignment.ld new file mode 100644 index 0000000..a9257f1 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/include/generated/app_data_alignment.ld @@ -0,0 +1,9 @@ +/* + * Copyright (c) 2017 Linaro Limited. + * + * SPDX-License-Identifier: Apache-2.0 + */ + +/* Set initial alignment to the 32 byte minimum for all MPUs */ +_app_data_align = 32; +. = ALIGN(32); diff --git a/build/PHF000-Firmware/zephyr/include/generated/app_smem.ld b/build/PHF000-Firmware/zephyr/include/generated/app_smem.ld new file mode 100644 index 0000000..7b3eead --- /dev/null +++ b/build/PHF000-Firmware/zephyr/include/generated/app_smem.ld @@ -0,0 +1,38 @@ +/* SPDX-License-Identifier: Apache-2.0 */ + +/* + * This hackish way of including files is due to CMake issues: + * https://gitlab.kitware.com/cmake/cmake/issues/11985 + * https://gitlab.kitware.com/cmake/cmake/issues/13718 + * + * When using the "Unix Makefiles" generator, CMake simply + * greps for "#include" to generate dependency list. + * So if doing it normally, both files are being included + * in the dependency list. This creates weird dependency + * issue: + * + * 1. Using A.ld to create a linker script A.cmd. + * 2. Using A.cmd to generate A_prebuilt.elf. + * 3. Using A_prebuilt.elf to create B.ld. + * 4. Creating B.cmd with B.ld. + * 5. Creating B_prebuilt.elf using B.cmd. + * + * Since the dependency list of A.cmd contains both + * A.ld and B.ld, when make is invoked again, B.ld + * is newer than A.cmd so everything from this point on + * gets rebuilt. In order to break this cycle, this + * hackish needs to be used since CMake does not parse + * macros, and thus these will not appear in + * the dependency list. The dependencies should then be + * put in CMakeLists.txt instead. + * + * Note: Ninja generator does not suffer from this issue. + */ +#ifdef LINKER_APP_SMEM_UNALIGNED +#define APP_SMEM_LD +#else +#define APP_SMEM_LD +#endif + +#include APP_SMEM_LD +#undef APP_SMEM_LD diff --git a/build/PHF000-Firmware/zephyr/include/generated/app_smem_aligned.ld b/build/PHF000-Firmware/zephyr/include/generated/app_smem_aligned.ld new file mode 100644 index 0000000..ce36567 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/include/generated/app_smem_aligned.ld @@ -0,0 +1,3 @@ +/* SPDX-License-Identifier: Apache-2.0 */ + +/* Empty file */ diff --git a/build/PHF000-Firmware/zephyr/include/generated/app_smem_unaligned.ld b/build/PHF000-Firmware/zephyr/include/generated/app_smem_unaligned.ld new file mode 100644 index 0000000..ddc31d4 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/include/generated/app_smem_unaligned.ld @@ -0,0 +1,3 @@ +/* SPDX-License-Identifier: Apache-2.0 */ + +/* Empty file */ diff --git a/build/PHF000-Firmware/zephyr/include/generated/device-api-sections.cmake b/build/PHF000-Firmware/zephyr/include/generated/device-api-sections.cmake new file mode 100644 index 0000000..c4d0e72 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/include/generated/device-api-sections.cmake @@ -0,0 +1,166 @@ +list(APPEND sections "{NAME\;adc_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;adc_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._adc_driver_api.static.*\;SYMBOLS\;_adc_driver_api_list_start\;_adc_driver_api_list_end}") +list(APPEND sections "{NAME\;gpio_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;gpio_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._gpio_driver_api.static.*\;SYMBOLS\;_gpio_driver_api_list_start\;_gpio_driver_api_list_end}") +list(APPEND sections "{NAME\;sensor_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;sensor_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._sensor_driver_api.static.*\;SYMBOLS\;_sensor_driver_api_list_start\;_sensor_driver_api_list_end}") +list(APPEND sections "{NAME\;shared_irq_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;shared_irq_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._shared_irq_driver_api.static.*\;SYMBOLS\;_shared_irq_driver_api_list_start\;_shared_irq_driver_api_list_end}") +list(APPEND sections "{NAME\;crypto_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;crypto_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._crypto_driver_api.static.*\;SYMBOLS\;_crypto_driver_api_list_start\;_crypto_driver_api_list_end}") +list(APPEND sections "{NAME\;auxdisplay_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;auxdisplay_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._auxdisplay_driver_api.static.*\;SYMBOLS\;_auxdisplay_driver_api_list_start\;_auxdisplay_driver_api_list_end}") +list(APPEND sections "{NAME\;bbram_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;bbram_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._bbram_driver_api.static.*\;SYMBOLS\;_bbram_driver_api_list_start\;_bbram_driver_api_list_end}") +list(APPEND sections "{NAME\;bt_hci_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;bt_hci_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._bt_hci_driver_api.static.*\;SYMBOLS\;_bt_hci_driver_api_list_start\;_bt_hci_driver_api_list_end}") +list(APPEND sections "{NAME\;can_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;can_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._can_driver_api.static.*\;SYMBOLS\;_can_driver_api_list_start\;_can_driver_api_list_end}") +list(APPEND sections "{NAME\;cellular_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;cellular_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._cellular_driver_api.static.*\;SYMBOLS\;_cellular_driver_api_list_start\;_cellular_driver_api_list_end}") +list(APPEND sections "{NAME\;charger_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;charger_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._charger_driver_api.static.*\;SYMBOLS\;_charger_driver_api_list_start\;_charger_driver_api_list_end}") +list(APPEND sections "{NAME\;clock_control_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;clock_control_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._clock_control_driver_api.static.*\;SYMBOLS\;_clock_control_driver_api_list_start\;_clock_control_driver_api_list_end}") +list(APPEND sections "{NAME\;comparator_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;comparator_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._comparator_driver_api.static.*\;SYMBOLS\;_comparator_driver_api_list_start\;_comparator_driver_api_list_end}") +list(APPEND sections "{NAME\;coredump_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;coredump_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._coredump_driver_api.static.*\;SYMBOLS\;_coredump_driver_api_list_start\;_coredump_driver_api_list_end}") +list(APPEND sections "{NAME\;counter_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;counter_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._counter_driver_api.static.*\;SYMBOLS\;_counter_driver_api_list_start\;_counter_driver_api_list_end}") +list(APPEND sections "{NAME\;dac_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;dac_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._dac_driver_api.static.*\;SYMBOLS\;_dac_driver_api_list_start\;_dac_driver_api_list_end}") +list(APPEND sections "{NAME\;dai_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;dai_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._dai_driver_api.static.*\;SYMBOLS\;_dai_driver_api_list_start\;_dai_driver_api_list_end}") +list(APPEND sections "{NAME\;display_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;display_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._display_driver_api.static.*\;SYMBOLS\;_display_driver_api_list_start\;_display_driver_api_list_end}") +list(APPEND sections "{NAME\;dma_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;dma_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._dma_driver_api.static.*\;SYMBOLS\;_dma_driver_api_list_start\;_dma_driver_api_list_end}") +list(APPEND sections "{NAME\;edac_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;edac_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._edac_driver_api.static.*\;SYMBOLS\;_edac_driver_api_list_start\;_edac_driver_api_list_end}") +list(APPEND sections "{NAME\;eeprom_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;eeprom_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._eeprom_driver_api.static.*\;SYMBOLS\;_eeprom_driver_api_list_start\;_eeprom_driver_api_list_end}") +list(APPEND sections "{NAME\;emul_bbram_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;emul_bbram_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._emul_bbram_driver_api.static.*\;SYMBOLS\;_emul_bbram_driver_api_list_start\;_emul_bbram_driver_api_list_end}") +list(APPEND sections "{NAME\;fuel_gauge_emul_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;fuel_gauge_emul_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._fuel_gauge_emul_driver_api.static.*\;SYMBOLS\;_fuel_gauge_emul_driver_api_list_start\;_fuel_gauge_emul_driver_api_list_end}") +list(APPEND sections "{NAME\;emul_sensor_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;emul_sensor_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._emul_sensor_driver_api.static.*\;SYMBOLS\;_emul_sensor_driver_api_list_start\;_emul_sensor_driver_api_list_end}") +list(APPEND sections "{NAME\;entropy_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;entropy_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._entropy_driver_api.static.*\;SYMBOLS\;_entropy_driver_api_list_start\;_entropy_driver_api_list_end}") +list(APPEND sections "{NAME\;espi_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;espi_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._espi_driver_api.static.*\;SYMBOLS\;_espi_driver_api_list_start\;_espi_driver_api_list_end}") +list(APPEND sections "{NAME\;espi_saf_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;espi_saf_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._espi_saf_driver_api.static.*\;SYMBOLS\;_espi_saf_driver_api_list_start\;_espi_saf_driver_api_list_end}") +list(APPEND sections "{NAME\;flash_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;flash_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._flash_driver_api.static.*\;SYMBOLS\;_flash_driver_api_list_start\;_flash_driver_api_list_end}") +list(APPEND sections "{NAME\;fpga_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;fpga_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._fpga_driver_api.static.*\;SYMBOLS\;_fpga_driver_api_list_start\;_fpga_driver_api_list_end}") +list(APPEND sections "{NAME\;fuel_gauge_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;fuel_gauge_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._fuel_gauge_driver_api.static.*\;SYMBOLS\;_fuel_gauge_driver_api_list_start\;_fuel_gauge_driver_api_list_end}") +list(APPEND sections "{NAME\;gnss_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;gnss_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._gnss_driver_api.static.*\;SYMBOLS\;_gnss_driver_api_list_start\;_gnss_driver_api_list_end}") +list(APPEND sections "{NAME\;haptics_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;haptics_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._haptics_driver_api.static.*\;SYMBOLS\;_haptics_driver_api_list_start\;_haptics_driver_api_list_end}") +list(APPEND sections "{NAME\;hwspinlock_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;hwspinlock_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._hwspinlock_driver_api.static.*\;SYMBOLS\;_hwspinlock_driver_api_list_start\;_hwspinlock_driver_api_list_end}") +list(APPEND sections "{NAME\;i2c_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;i2c_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._i2c_driver_api.static.*\;SYMBOLS\;_i2c_driver_api_list_start\;_i2c_driver_api_list_end}") +list(APPEND sections "{NAME\;i2c_target_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;i2c_target_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._i2c_target_driver_api.static.*\;SYMBOLS\;_i2c_target_driver_api_list_start\;_i2c_target_driver_api_list_end}") +list(APPEND sections "{NAME\;i2s_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;i2s_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._i2s_driver_api.static.*\;SYMBOLS\;_i2s_driver_api_list_start\;_i2s_driver_api_list_end}") +list(APPEND sections "{NAME\;i3c_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;i3c_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._i3c_driver_api.static.*\;SYMBOLS\;_i3c_driver_api_list_start\;_i3c_driver_api_list_end}") +list(APPEND sections "{NAME\;ipm_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;ipm_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._ipm_driver_api.static.*\;SYMBOLS\;_ipm_driver_api_list_start\;_ipm_driver_api_list_end}") +list(APPEND sections "{NAME\;kscan_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;kscan_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._kscan_driver_api.static.*\;SYMBOLS\;_kscan_driver_api_list_start\;_kscan_driver_api_list_end}") +list(APPEND sections "{NAME\;led_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;led_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._led_driver_api.static.*\;SYMBOLS\;_led_driver_api_list_start\;_led_driver_api_list_end}") +list(APPEND sections "{NAME\;led_strip_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;led_strip_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._led_strip_driver_api.static.*\;SYMBOLS\;_led_strip_driver_api_list_start\;_led_strip_driver_api_list_end}") +list(APPEND sections "{NAME\;lora_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;lora_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._lora_driver_api.static.*\;SYMBOLS\;_lora_driver_api_list_start\;_lora_driver_api_list_end}") +list(APPEND sections "{NAME\;mbox_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;mbox_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._mbox_driver_api.static.*\;SYMBOLS\;_mbox_driver_api_list_start\;_mbox_driver_api_list_end}") +list(APPEND sections "{NAME\;mdio_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;mdio_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._mdio_driver_api.static.*\;SYMBOLS\;_mdio_driver_api_list_start\;_mdio_driver_api_list_end}") +list(APPEND sections "{NAME\;mipi_dbi_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;mipi_dbi_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._mipi_dbi_driver_api.static.*\;SYMBOLS\;_mipi_dbi_driver_api_list_start\;_mipi_dbi_driver_api_list_end}") +list(APPEND sections "{NAME\;mipi_dsi_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;mipi_dsi_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._mipi_dsi_driver_api.static.*\;SYMBOLS\;_mipi_dsi_driver_api_list_start\;_mipi_dsi_driver_api_list_end}") +list(APPEND sections "{NAME\;mspi_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;mspi_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._mspi_driver_api.static.*\;SYMBOLS\;_mspi_driver_api_list_start\;_mspi_driver_api_list_end}") +list(APPEND sections "{NAME\;peci_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;peci_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._peci_driver_api.static.*\;SYMBOLS\;_peci_driver_api_list_start\;_peci_driver_api_list_end}") +list(APPEND sections "{NAME\;ps2_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;ps2_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._ps2_driver_api.static.*\;SYMBOLS\;_ps2_driver_api_list_start\;_ps2_driver_api_list_end}") +list(APPEND sections "{NAME\;ptp_clock_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;ptp_clock_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._ptp_clock_driver_api.static.*\;SYMBOLS\;_ptp_clock_driver_api_list_start\;_ptp_clock_driver_api_list_end}") +list(APPEND sections "{NAME\;pwm_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;pwm_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._pwm_driver_api.static.*\;SYMBOLS\;_pwm_driver_api_list_start\;_pwm_driver_api_list_end}") +list(APPEND sections "{NAME\;regulator_parent_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;regulator_parent_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._regulator_parent_driver_api.static.*\;SYMBOLS\;_regulator_parent_driver_api_list_start\;_regulator_parent_driver_api_list_end}") +list(APPEND sections "{NAME\;regulator_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;regulator_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._regulator_driver_api.static.*\;SYMBOLS\;_regulator_driver_api_list_start\;_regulator_driver_api_list_end}") +list(APPEND sections "{NAME\;reset_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;reset_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._reset_driver_api.static.*\;SYMBOLS\;_reset_driver_api_list_start\;_reset_driver_api_list_end}") +list(APPEND sections "{NAME\;retained_mem_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;retained_mem_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._retained_mem_driver_api.static.*\;SYMBOLS\;_retained_mem_driver_api_list_start\;_retained_mem_driver_api_list_end}") +list(APPEND sections "{NAME\;rtc_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;rtc_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._rtc_driver_api.static.*\;SYMBOLS\;_rtc_driver_api_list_start\;_rtc_driver_api_list_end}") +list(APPEND sections "{NAME\;sdhc_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;sdhc_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._sdhc_driver_api.static.*\;SYMBOLS\;_sdhc_driver_api_list_start\;_sdhc_driver_api_list_end}") +list(APPEND sections "{NAME\;smbus_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;smbus_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._smbus_driver_api.static.*\;SYMBOLS\;_smbus_driver_api_list_start\;_smbus_driver_api_list_end}") +list(APPEND sections "{NAME\;spi_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;spi_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._spi_driver_api.static.*\;SYMBOLS\;_spi_driver_api_list_start\;_spi_driver_api_list_end}") +list(APPEND sections "{NAME\;stepper_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;stepper_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._stepper_driver_api.static.*\;SYMBOLS\;_stepper_driver_api_list_start\;_stepper_driver_api_list_end}") +list(APPEND sections "{NAME\;syscon_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;syscon_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._syscon_driver_api.static.*\;SYMBOLS\;_syscon_driver_api_list_start\;_syscon_driver_api_list_end}") +list(APPEND sections "{NAME\;tee_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;tee_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._tee_driver_api.static.*\;SYMBOLS\;_tee_driver_api_list_start\;_tee_driver_api_list_end}") +list(APPEND sections "{NAME\;video_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;video_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._video_driver_api.static.*\;SYMBOLS\;_video_driver_api_list_start\;_video_driver_api_list_end}") +list(APPEND sections "{NAME\;w1_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;w1_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._w1_driver_api.static.*\;SYMBOLS\;_w1_driver_api_list_start\;_w1_driver_api_list_end}") +list(APPEND sections "{NAME\;wdt_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;wdt_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._wdt_driver_api.static.*\;SYMBOLS\;_wdt_driver_api_list_start\;_wdt_driver_api_list_end}") +list(APPEND sections "{NAME\;can_transceiver_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;can_transceiver_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._can_transceiver_driver_api.static.*\;SYMBOLS\;_can_transceiver_driver_api_list_start\;_can_transceiver_driver_api_list_end}") +list(APPEND sections "{NAME\;nrf_clock_control_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;nrf_clock_control_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._nrf_clock_control_driver_api.static.*\;SYMBOLS\;_nrf_clock_control_driver_api_list_start\;_nrf_clock_control_driver_api_list_end}") +list(APPEND sections "{NAME\;i3c_target_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;i3c_target_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._i3c_target_driver_api.static.*\;SYMBOLS\;_i3c_target_driver_api_list_start\;_i3c_target_driver_api_list_end}") +list(APPEND sections "{NAME\;its_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;its_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._its_driver_api.static.*\;SYMBOLS\;_its_driver_api_list_start\;_its_driver_api_list_end}") +list(APPEND sections "{NAME\;vtd_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;vtd_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._vtd_driver_api.static.*\;SYMBOLS\;_vtd_driver_api_list_start\;_vtd_driver_api_list_end}") +list(APPEND sections "{NAME\;tgpio_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;tgpio_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._tgpio_driver_api.static.*\;SYMBOLS\;_tgpio_driver_api_list_start\;_tgpio_driver_api_list_end}") +list(APPEND sections "{NAME\;pcie_ctrl_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;pcie_ctrl_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._pcie_ctrl_driver_api.static.*\;SYMBOLS\;_pcie_ctrl_driver_api_list_start\;_pcie_ctrl_driver_api_list_end}") +list(APPEND sections "{NAME\;pcie_ep_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;pcie_ep_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._pcie_ep_driver_api.static.*\;SYMBOLS\;_pcie_ep_driver_api_list_start\;_pcie_ep_driver_api_list_end}") +list(APPEND sections "{NAME\;svc_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;svc_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._svc_driver_api.static.*\;SYMBOLS\;_svc_driver_api_list_start\;_svc_driver_api_list_end}") +list(APPEND sections "{NAME\;uart_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;uart_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._uart_driver_api.static.*\;SYMBOLS\;_uart_driver_api_list_start\;_uart_driver_api_list_end}") +list(APPEND sections "{NAME\;bc12_emul_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;bc12_emul_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._bc12_emul_driver_api.static.*\;SYMBOLS\;_bc12_emul_driver_api_list_start\;_bc12_emul_driver_api_list_end}") +list(APPEND sections "{NAME\;bc12_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;bc12_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._bc12_driver_api.static.*\;SYMBOLS\;_bc12_driver_api_list_start\;_bc12_driver_api_list_end}") +list(APPEND sections "{NAME\;usbc_ppc_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;usbc_ppc_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._usbc_ppc_driver_api.static.*\;SYMBOLS\;_usbc_ppc_driver_api_list_start\;_usbc_ppc_driver_api_list_end}") +list(APPEND sections "{NAME\;tcpc_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;tcpc_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._tcpc_driver_api.static.*\;SYMBOLS\;_tcpc_driver_api_list_start\;_tcpc_driver_api_list_end}") +list(APPEND sections "{NAME\;usbc_vbus_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;usbc_vbus_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._usbc_vbus_driver_api.static.*\;SYMBOLS\;_usbc_vbus_driver_api_list_start\;_usbc_vbus_driver_api_list_end}") +list(APPEND sections "{NAME\;ivshmem_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;ivshmem_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._ivshmem_driver_api.static.*\;SYMBOLS\;_ivshmem_driver_api_list_start\;_ivshmem_driver_api_list_end}") +list(APPEND sections "{NAME\;ethphy_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;ethphy_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._ethphy_driver_api.static.*\;SYMBOLS\;_ethphy_driver_api_list_start\;_ethphy_driver_api_list_end}") +set(DEVICE_API_SECTIONS "${sections}" CACHE INTERNAL "") +set(DEVICE_API_SECTION_SETTINGS "${section_settings}" CACHE INTERNAL "") diff --git a/build/PHF000-Firmware/zephyr/include/generated/device-api-sections.ld b/build/PHF000-Firmware/zephyr/include/generated/device-api-sections.ld new file mode 100644 index 0000000..987ae8f --- /dev/null +++ b/build/PHF000-Firmware/zephyr/include/generated/device-api-sections.ld @@ -0,0 +1,82 @@ +ITERABLE_SECTION_ROM(adc_driver_api, 4) +ITERABLE_SECTION_ROM(gpio_driver_api, 4) +ITERABLE_SECTION_ROM(sensor_driver_api, 4) +ITERABLE_SECTION_ROM(shared_irq_driver_api, 4) +ITERABLE_SECTION_ROM(crypto_driver_api, 4) +ITERABLE_SECTION_ROM(auxdisplay_driver_api, 4) +ITERABLE_SECTION_ROM(bbram_driver_api, 4) +ITERABLE_SECTION_ROM(bt_hci_driver_api, 4) +ITERABLE_SECTION_ROM(can_driver_api, 4) +ITERABLE_SECTION_ROM(cellular_driver_api, 4) +ITERABLE_SECTION_ROM(charger_driver_api, 4) +ITERABLE_SECTION_ROM(clock_control_driver_api, 4) +ITERABLE_SECTION_ROM(comparator_driver_api, 4) +ITERABLE_SECTION_ROM(coredump_driver_api, 4) +ITERABLE_SECTION_ROM(counter_driver_api, 4) +ITERABLE_SECTION_ROM(dac_driver_api, 4) +ITERABLE_SECTION_ROM(dai_driver_api, 4) +ITERABLE_SECTION_ROM(display_driver_api, 4) +ITERABLE_SECTION_ROM(dma_driver_api, 4) +ITERABLE_SECTION_ROM(edac_driver_api, 4) +ITERABLE_SECTION_ROM(eeprom_driver_api, 4) +ITERABLE_SECTION_ROM(emul_bbram_driver_api, 4) +ITERABLE_SECTION_ROM(fuel_gauge_emul_driver_api, 4) +ITERABLE_SECTION_ROM(emul_sensor_driver_api, 4) +ITERABLE_SECTION_ROM(entropy_driver_api, 4) +ITERABLE_SECTION_ROM(espi_driver_api, 4) +ITERABLE_SECTION_ROM(espi_saf_driver_api, 4) +ITERABLE_SECTION_ROM(flash_driver_api, 4) +ITERABLE_SECTION_ROM(fpga_driver_api, 4) +ITERABLE_SECTION_ROM(fuel_gauge_driver_api, 4) +ITERABLE_SECTION_ROM(gnss_driver_api, 4) +ITERABLE_SECTION_ROM(haptics_driver_api, 4) +ITERABLE_SECTION_ROM(hwspinlock_driver_api, 4) +ITERABLE_SECTION_ROM(i2c_driver_api, 4) +ITERABLE_SECTION_ROM(i2c_target_driver_api, 4) +ITERABLE_SECTION_ROM(i2s_driver_api, 4) +ITERABLE_SECTION_ROM(i3c_driver_api, 4) +ITERABLE_SECTION_ROM(ipm_driver_api, 4) +ITERABLE_SECTION_ROM(kscan_driver_api, 4) +ITERABLE_SECTION_ROM(led_driver_api, 4) +ITERABLE_SECTION_ROM(led_strip_driver_api, 4) +ITERABLE_SECTION_ROM(lora_driver_api, 4) +ITERABLE_SECTION_ROM(mbox_driver_api, 4) +ITERABLE_SECTION_ROM(mdio_driver_api, 4) +ITERABLE_SECTION_ROM(mipi_dbi_driver_api, 4) +ITERABLE_SECTION_ROM(mipi_dsi_driver_api, 4) +ITERABLE_SECTION_ROM(mspi_driver_api, 4) +ITERABLE_SECTION_ROM(peci_driver_api, 4) +ITERABLE_SECTION_ROM(ps2_driver_api, 4) +ITERABLE_SECTION_ROM(ptp_clock_driver_api, 4) +ITERABLE_SECTION_ROM(pwm_driver_api, 4) +ITERABLE_SECTION_ROM(regulator_parent_driver_api, 4) +ITERABLE_SECTION_ROM(regulator_driver_api, 4) +ITERABLE_SECTION_ROM(reset_driver_api, 4) +ITERABLE_SECTION_ROM(retained_mem_driver_api, 4) +ITERABLE_SECTION_ROM(rtc_driver_api, 4) +ITERABLE_SECTION_ROM(sdhc_driver_api, 4) +ITERABLE_SECTION_ROM(smbus_driver_api, 4) +ITERABLE_SECTION_ROM(spi_driver_api, 4) +ITERABLE_SECTION_ROM(stepper_driver_api, 4) +ITERABLE_SECTION_ROM(syscon_driver_api, 4) +ITERABLE_SECTION_ROM(tee_driver_api, 4) +ITERABLE_SECTION_ROM(video_driver_api, 4) +ITERABLE_SECTION_ROM(w1_driver_api, 4) +ITERABLE_SECTION_ROM(wdt_driver_api, 4) +ITERABLE_SECTION_ROM(can_transceiver_driver_api, 4) +ITERABLE_SECTION_ROM(nrf_clock_control_driver_api, 4) +ITERABLE_SECTION_ROM(i3c_target_driver_api, 4) +ITERABLE_SECTION_ROM(its_driver_api, 4) +ITERABLE_SECTION_ROM(vtd_driver_api, 4) +ITERABLE_SECTION_ROM(tgpio_driver_api, 4) +ITERABLE_SECTION_ROM(pcie_ctrl_driver_api, 4) +ITERABLE_SECTION_ROM(pcie_ep_driver_api, 4) +ITERABLE_SECTION_ROM(svc_driver_api, 4) +ITERABLE_SECTION_ROM(uart_driver_api, 4) +ITERABLE_SECTION_ROM(bc12_emul_driver_api, 4) +ITERABLE_SECTION_ROM(bc12_driver_api, 4) +ITERABLE_SECTION_ROM(usbc_ppc_driver_api, 4) +ITERABLE_SECTION_ROM(tcpc_driver_api, 4) +ITERABLE_SECTION_ROM(usbc_vbus_driver_api, 4) +ITERABLE_SECTION_ROM(ivshmem_driver_api, 4) +ITERABLE_SECTION_ROM(ethphy_driver_api, 4) diff --git a/build/PHF000-Firmware/zephyr/include/generated/ncs_commit.h b/build/PHF000-Firmware/zephyr/include/generated/ncs_commit.h new file mode 100644 index 0000000..91b02dd --- /dev/null +++ b/build/PHF000-Firmware/zephyr/include/generated/ncs_commit.h @@ -0,0 +1,12 @@ +#ifndef _NCS_COMMIT_H_ +#define _NCS_COMMIT_H_ + +/* values come from cmake/version.cmake + * BUILD_COMMIT related values will be 'git rev-parse', + * alternatively user defined BUILD_VERSION. + */ + +#define NCS_COMMIT 89ba1294ac9b +#define NCS_COMMIT_STRING "89ba1294ac9b" + +#endif /* _NCS_COMMIT_H_ */ diff --git a/build/PHF000-Firmware/zephyr/include/generated/ncs_version.h b/build/PHF000-Firmware/zephyr/include/generated/ncs_version.h new file mode 100644 index 0000000..079b4b5 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/include/generated/ncs_version.h @@ -0,0 +1,25 @@ +#ifndef _NCS_VERSION_H_ +#define _NCS_VERSION_H_ + +/* The template values come from cmake/version.cmake + * BUILD_VERSION related template values will be 'git describe', + * alternatively user defined BUILD_VERSION. + */ + +/* #undef ZEPHYR_VERSION_CODE */ +/* #undef ZEPHYR_VERSION */ + +#define NCSVERSION +#define NCS_VERSION_NUMBER 0x30002 +#define NCS_VERSION_MAJOR 3 +#define NCS_VERSION_MINOR 0 +#define NCS_PATCHLEVEL 2 +#define NCS_TWEAK +#define NCS_VERSION_STRING "3.0.2" +#define NCS_VERSION_EXTENDED_STRING "" +#define NCS_VERSION_TWEAK_STRING "" + +#define NCS_BUILD_VERSION v3.0.1-16-g89ba1294ac9b + + +#endif /* _NCS_VERSION_H_ */ diff --git a/build/PHF000-Firmware/zephyr/include/generated/pm_config.h b/build/PHF000-Firmware/zephyr/include/generated/pm_config.h new file mode 100644 index 0000000..992b32e --- /dev/null +++ b/build/PHF000-Firmware/zephyr/include/generated/pm_config.h @@ -0,0 +1,26 @@ +/* File generated by /home/miguel/ncs/v3.0.2/nrf/scripts/partition_manager_output.py, do not modify */ +#ifndef PM_CONFIG_H__ +#define PM_CONFIG_H__ +#define PM_APP_OFFSET 0x0 +#define PM_APP_ADDRESS 0x0 +#define PM_APP_END_ADDRESS 0x80000 +#define PM_APP_SIZE 0x80000 +#define PM_APP_NAME app +#define PM_APP_ID 0 +#define PM_app_ID PM_APP_ID +#define PM_app_IS_ENABLED 1 +#define PM_0_LABEL APP +#define PM_APP_DEV flash_controller +#define PM_APP_DEFAULT_DRIVER_KCONFIG CONFIG_SOC_FLASH_NRF +#define PM_SRAM_PRIMARY_OFFSET 0x0 +#define PM_SRAM_PRIMARY_ADDRESS 0x20000000 +#define PM_SRAM_PRIMARY_END_ADDRESS 0x20020000 +#define PM_SRAM_PRIMARY_SIZE 0x20000 +#define PM_SRAM_PRIMARY_NAME sram_primary +#define PM_NUM 1 +#define PM_ALL_BY_SIZE "sram_primary app" +#define PM_ADDRESS 0x0 +#define PM_SIZE 0x80000 +#define PM_SRAM_ADDRESS 0x20000000 +#define PM_SRAM_SIZE 0x20000 +#endif /* PM_CONFIG_H__ */ \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/include/generated/snippets-data-sections.ld b/build/PHF000-Firmware/zephyr/include/generated/snippets-data-sections.ld new file mode 100644 index 0000000..e69de29 diff --git a/build/PHF000-Firmware/zephyr/include/generated/snippets-dtcm-section.ld b/build/PHF000-Firmware/zephyr/include/generated/snippets-dtcm-section.ld new file mode 100644 index 0000000..e69de29 diff --git a/build/PHF000-Firmware/zephyr/include/generated/snippets-itcm-section.ld b/build/PHF000-Firmware/zephyr/include/generated/snippets-itcm-section.ld new file mode 100644 index 0000000..e69de29 diff --git a/build/PHF000-Firmware/zephyr/include/generated/snippets-nocache-section.ld b/build/PHF000-Firmware/zephyr/include/generated/snippets-nocache-section.ld new file mode 100644 index 0000000..e69de29 diff --git a/build/PHF000-Firmware/zephyr/include/generated/snippets-noinit.ld b/build/PHF000-Firmware/zephyr/include/generated/snippets-noinit.ld new file mode 100644 index 0000000..e69de29 diff --git a/build/PHF000-Firmware/zephyr/include/generated/snippets-pinned-data-sections.ld b/build/PHF000-Firmware/zephyr/include/generated/snippets-pinned-data-sections.ld new file mode 100644 index 0000000..e69de29 diff --git a/build/PHF000-Firmware/zephyr/include/generated/snippets-pinned-ram-sections.ld b/build/PHF000-Firmware/zephyr/include/generated/snippets-pinned-ram-sections.ld new file mode 100644 index 0000000..e69de29 diff --git a/build/PHF000-Firmware/zephyr/include/generated/snippets-pinned-rodata.ld b/build/PHF000-Firmware/zephyr/include/generated/snippets-pinned-rodata.ld new file mode 100644 index 0000000..e69de29 diff --git a/build/PHF000-Firmware/zephyr/include/generated/snippets-ram-sections.ld b/build/PHF000-Firmware/zephyr/include/generated/snippets-ram-sections.ld new file mode 100644 index 0000000..6e0cd13 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/include/generated/snippets-ram-sections.ld @@ -0,0 +1,2 @@ +/* Sort key: "aaa" */#include "../modules/segger/segger_rtt.ld" +/* Sort key: "default" */#include "../arch/common/ramfunc.ld" diff --git a/build/PHF000-Firmware/zephyr/include/generated/snippets-ramfunc-section.ld b/build/PHF000-Firmware/zephyr/include/generated/snippets-ramfunc-section.ld new file mode 100644 index 0000000..e69de29 diff --git a/build/PHF000-Firmware/zephyr/include/generated/snippets-rodata.ld b/build/PHF000-Firmware/zephyr/include/generated/snippets-rodata.ld new file mode 100644 index 0000000..27b783f --- /dev/null +++ b/build/PHF000-Firmware/zephyr/include/generated/snippets-rodata.ld @@ -0,0 +1 @@ +/* Sort key: "default" */#include "../arch/arm/core/swi_tables.ld" diff --git a/build/PHF000-Firmware/zephyr/include/generated/snippets-rom-sections.ld b/build/PHF000-Firmware/zephyr/include/generated/snippets-rom-sections.ld new file mode 100644 index 0000000..e69de29 diff --git a/build/PHF000-Firmware/zephyr/include/generated/snippets-rom-start.ld b/build/PHF000-Firmware/zephyr/include/generated/snippets-rom-start.ld new file mode 100644 index 0000000..4f6d2e6 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/include/generated/snippets-rom-start.ld @@ -0,0 +1,6 @@ +/* Sort key: "!" */#include "../arch/common/rom_start_address.ld" +/* Sort key: "$" */#include "../arch/common/fill_with_zeros.ld" +/* Sort key: "0x0" */#include "../arch/common/rom_start_offset.ld" +/* Sort key: "0x0vectors" */#include "../arch/arm/core/vector_table.ld" +/* Sort key: "0x0vectors" */#include "zephyr/linker/irq-vector-table-section.ld" +/* Sort key: "0x1vectors" */#include "../arch/arm/core/cortex_m/vector_table_pad.ld" diff --git a/build/PHF000-Firmware/zephyr/include/generated/snippets-rwdata.ld b/build/PHF000-Firmware/zephyr/include/generated/snippets-rwdata.ld new file mode 100644 index 0000000..e69de29 diff --git a/build/PHF000-Firmware/zephyr/include/generated/snippets-sections.ld b/build/PHF000-Firmware/zephyr/include/generated/snippets-sections.ld new file mode 100644 index 0000000..d66bc33 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/include/generated/snippets-sections.ld @@ -0,0 +1,2 @@ +/* Sort key: "default" */#include "../soc/nordic/common/arm_platform_init.ld" +/* Sort key: "default" */#include "zephyr/linker/intlist.ld" diff --git a/build/PHF000-Firmware/zephyr/include/generated/syscall_list.h b/build/PHF000-Firmware/zephyr/include/generated/syscall_list.h new file mode 100644 index 0000000..41a6c69 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/include/generated/syscall_list.h @@ -0,0 +1,587 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef ZEPHYR_SYSCALL_LIST_H +#define ZEPHYR_SYSCALL_LIST_H + +#define K_SYSCALL_ADC_CHANNEL_SETUP 0 +#define K_SYSCALL_ADC_READ 1 +#define K_SYSCALL_ADC_READ_ASYNC 2 +#define K_SYSCALL_DEVICE_GET_BINDING 3 +#define K_SYSCALL_DEVICE_GET_BY_DT_NODELABEL 4 +#define K_SYSCALL_DEVICE_INIT 5 +#define K_SYSCALL_DEVICE_IS_READY 6 +#define K_SYSCALL_GPIO_GET_PENDING_INT 7 +#define K_SYSCALL_GPIO_PIN_CONFIGURE 8 +#define K_SYSCALL_GPIO_PIN_GET_CONFIG 9 +#define K_SYSCALL_GPIO_PIN_INTERRUPT_CONFIGURE 10 +#define K_SYSCALL_GPIO_PORT_CLEAR_BITS_RAW 11 +#define K_SYSCALL_GPIO_PORT_GET_DIRECTION 12 +#define K_SYSCALL_GPIO_PORT_GET_RAW 13 +#define K_SYSCALL_GPIO_PORT_SET_BITS_RAW 14 +#define K_SYSCALL_GPIO_PORT_SET_MASKED_RAW 15 +#define K_SYSCALL_GPIO_PORT_TOGGLE_BITS 16 +#define K_SYSCALL_HWINFO_CLEAR_RESET_CAUSE 17 +#define K_SYSCALL_HWINFO_GET_DEVICE_EUI64 18 +#define K_SYSCALL_HWINFO_GET_DEVICE_ID 19 +#define K_SYSCALL_HWINFO_GET_RESET_CAUSE 20 +#define K_SYSCALL_HWINFO_GET_SUPPORTED_RESET_CAUSE 21 +#define K_SYSCALL_K_BUSY_WAIT 22 +#define K_SYSCALL_K_CONDVAR_BROADCAST 23 +#define K_SYSCALL_K_CONDVAR_INIT 24 +#define K_SYSCALL_K_CONDVAR_SIGNAL 25 +#define K_SYSCALL_K_CONDVAR_WAIT 26 +#define K_SYSCALL_K_EVENT_CLEAR 27 +#define K_SYSCALL_K_EVENT_INIT 28 +#define K_SYSCALL_K_EVENT_POST 29 +#define K_SYSCALL_K_EVENT_SET 30 +#define K_SYSCALL_K_EVENT_SET_MASKED 31 +#define K_SYSCALL_K_EVENT_WAIT 32 +#define K_SYSCALL_K_EVENT_WAIT_ALL 33 +#define K_SYSCALL_K_FLOAT_DISABLE 34 +#define K_SYSCALL_K_FLOAT_ENABLE 35 +#define K_SYSCALL_K_FUTEX_WAIT 36 +#define K_SYSCALL_K_FUTEX_WAKE 37 +#define K_SYSCALL_K_IS_PREEMPT_THREAD 38 +#define K_SYSCALL_K_MSGQ_ALLOC_INIT 39 +#define K_SYSCALL_K_MSGQ_GET 40 +#define K_SYSCALL_K_MSGQ_GET_ATTRS 41 +#define K_SYSCALL_K_MSGQ_NUM_FREE_GET 42 +#define K_SYSCALL_K_MSGQ_NUM_USED_GET 43 +#define K_SYSCALL_K_MSGQ_PEEK 44 +#define K_SYSCALL_K_MSGQ_PEEK_AT 45 +#define K_SYSCALL_K_MSGQ_PURGE 46 +#define K_SYSCALL_K_MSGQ_PUT 47 +#define K_SYSCALL_K_MUTEX_INIT 48 +#define K_SYSCALL_K_MUTEX_LOCK 49 +#define K_SYSCALL_K_MUTEX_UNLOCK 50 +#define K_SYSCALL_K_OBJECT_ACCESS_GRANT 51 +#define K_SYSCALL_K_OBJECT_ALLOC 52 +#define K_SYSCALL_K_OBJECT_ALLOC_SIZE 53 +#define K_SYSCALL_K_OBJECT_RELEASE 54 +#define K_SYSCALL_K_PIPE_ALLOC_INIT 55 +#define K_SYSCALL_K_PIPE_BUFFER_FLUSH 56 +#define K_SYSCALL_K_PIPE_FLUSH 57 +#define K_SYSCALL_K_PIPE_GET 58 +#define K_SYSCALL_K_PIPE_PUT 59 +#define K_SYSCALL_K_PIPE_READ_AVAIL 60 +#define K_SYSCALL_K_PIPE_WRITE_AVAIL 61 +#define K_SYSCALL_K_POLL 62 +#define K_SYSCALL_K_POLL_SIGNAL_CHECK 63 +#define K_SYSCALL_K_POLL_SIGNAL_INIT 64 +#define K_SYSCALL_K_POLL_SIGNAL_RAISE 65 +#define K_SYSCALL_K_POLL_SIGNAL_RESET 66 +#define K_SYSCALL_K_QUEUE_ALLOC_APPEND 67 +#define K_SYSCALL_K_QUEUE_ALLOC_PREPEND 68 +#define K_SYSCALL_K_QUEUE_CANCEL_WAIT 69 +#define K_SYSCALL_K_QUEUE_GET 70 +#define K_SYSCALL_K_QUEUE_INIT 71 +#define K_SYSCALL_K_QUEUE_IS_EMPTY 72 +#define K_SYSCALL_K_QUEUE_PEEK_HEAD 73 +#define K_SYSCALL_K_QUEUE_PEEK_TAIL 74 +#define K_SYSCALL_K_RESCHEDULE 75 +#define K_SYSCALL_K_SCHED_CURRENT_THREAD_QUERY 76 +#define K_SYSCALL_K_SEM_COUNT_GET 77 +#define K_SYSCALL_K_SEM_GIVE 78 +#define K_SYSCALL_K_SEM_INIT 79 +#define K_SYSCALL_K_SEM_RESET 80 +#define K_SYSCALL_K_SEM_TAKE 81 +#define K_SYSCALL_K_SLEEP 82 +#define K_SYSCALL_K_STACK_ALLOC_INIT 83 +#define K_SYSCALL_K_STACK_POP 84 +#define K_SYSCALL_K_STACK_PUSH 85 +#define K_SYSCALL_K_STR_OUT 86 +#define K_SYSCALL_K_THREAD_ABORT 87 +#define K_SYSCALL_K_THREAD_CREATE 88 +#define K_SYSCALL_K_THREAD_CUSTOM_DATA_GET 89 +#define K_SYSCALL_K_THREAD_CUSTOM_DATA_SET 90 +#define K_SYSCALL_K_THREAD_DEADLINE_SET 91 +#define K_SYSCALL_K_THREAD_JOIN 92 +#define K_SYSCALL_K_THREAD_NAME_COPY 93 +#define K_SYSCALL_K_THREAD_NAME_SET 94 +#define K_SYSCALL_K_THREAD_PRIORITY_GET 95 +#define K_SYSCALL_K_THREAD_PRIORITY_SET 96 +#define K_SYSCALL_K_THREAD_RESUME 97 +#define K_SYSCALL_K_THREAD_STACK_ALLOC 98 +#define K_SYSCALL_K_THREAD_STACK_FREE 99 +#define K_SYSCALL_K_THREAD_STACK_SPACE_GET 100 +#define K_SYSCALL_K_THREAD_SUSPEND 101 +#define K_SYSCALL_K_THREAD_TIMEOUT_EXPIRES_TICKS 102 +#define K_SYSCALL_K_THREAD_TIMEOUT_REMAINING_TICKS 103 +#define K_SYSCALL_K_TIMER_EXPIRES_TICKS 104 +#define K_SYSCALL_K_TIMER_REMAINING_TICKS 105 +#define K_SYSCALL_K_TIMER_START 106 +#define K_SYSCALL_K_TIMER_STATUS_GET 107 +#define K_SYSCALL_K_TIMER_STATUS_SYNC 108 +#define K_SYSCALL_K_TIMER_STOP 109 +#define K_SYSCALL_K_TIMER_USER_DATA_GET 110 +#define K_SYSCALL_K_TIMER_USER_DATA_SET 111 +#define K_SYSCALL_K_UPTIME_TICKS 112 +#define K_SYSCALL_K_USLEEP 113 +#define K_SYSCALL_K_WAKEUP 114 +#define K_SYSCALL_K_YIELD 115 +#define K_SYSCALL_LOG_BUFFERED_CNT 116 +#define K_SYSCALL_LOG_FILTER_SET 117 +#define K_SYSCALL_LOG_FRONTEND_FILTER_SET 118 +#define K_SYSCALL_LOG_PANIC 119 +#define K_SYSCALL_LOG_PROCESS 120 +#define K_SYSCALL_SENSOR_ATTR_GET 121 +#define K_SYSCALL_SENSOR_ATTR_SET 122 +#define K_SYSCALL_SENSOR_CHANNEL_GET 123 +#define K_SYSCALL_SENSOR_GET_DECODER 124 +#define K_SYSCALL_SENSOR_RECONFIGURE_READ_IODEV 125 +#define K_SYSCALL_SENSOR_SAMPLE_FETCH 126 +#define K_SYSCALL_SENSOR_SAMPLE_FETCH_CHAN 127 +#define K_SYSCALL_SYS_CLOCK_HW_CYCLES_PER_SEC_RUNTIME_GET 128 +#define K_SYSCALL_UART_CONFIGURE 129 +#define K_SYSCALL_UART_CONFIG_GET 130 +#define K_SYSCALL_UART_DRV_CMD 131 +#define K_SYSCALL_UART_ERR_CHECK 132 +#define K_SYSCALL_UART_IRQ_ERR_DISABLE 133 +#define K_SYSCALL_UART_IRQ_ERR_ENABLE 134 +#define K_SYSCALL_UART_IRQ_IS_PENDING 135 +#define K_SYSCALL_UART_IRQ_RX_DISABLE 136 +#define K_SYSCALL_UART_IRQ_RX_ENABLE 137 +#define K_SYSCALL_UART_IRQ_TX_DISABLE 138 +#define K_SYSCALL_UART_IRQ_TX_ENABLE 139 +#define K_SYSCALL_UART_IRQ_UPDATE 140 +#define K_SYSCALL_UART_LINE_CTRL_GET 141 +#define K_SYSCALL_UART_LINE_CTRL_SET 142 +#define K_SYSCALL_UART_POLL_IN 143 +#define K_SYSCALL_UART_POLL_IN_U16 144 +#define K_SYSCALL_UART_POLL_OUT 145 +#define K_SYSCALL_UART_POLL_OUT_U16 146 +#define K_SYSCALL_UART_RX_DISABLE 147 +#define K_SYSCALL_UART_RX_ENABLE 148 +#define K_SYSCALL_UART_RX_ENABLE_U16 149 +#define K_SYSCALL_UART_TX 150 +#define K_SYSCALL_UART_TX_ABORT 151 +#define K_SYSCALL_UART_TX_U16 152 +#define K_SYSCALL_ZEPHYR_FPUTC 153 +#define K_SYSCALL_ZEPHYR_FWRITE 154 +#define K_SYSCALL_ZEPHYR_READ_STDIN 155 +#define K_SYSCALL_ZEPHYR_WRITE_STDOUT 156 +#define K_SYSCALL_Z_LOG_MSG_SIMPLE_CREATE_0 157 +#define K_SYSCALL_Z_LOG_MSG_SIMPLE_CREATE_1 158 +#define K_SYSCALL_Z_LOG_MSG_SIMPLE_CREATE_2 159 +#define K_SYSCALL_Z_LOG_MSG_STATIC_CREATE 160 +#define K_SYSCALL_Z_SYS_MUTEX_KERNEL_LOCK 161 +#define K_SYSCALL_Z_SYS_MUTEX_KERNEL_UNLOCK 162 +#define K_SYSCALL_BAD 163 +#define K_SYSCALL_LIMIT 164 + + +/* Following syscalls are not used in image */ +#define K_SYSCALL_ATOMIC_ADD 165 +#define K_SYSCALL_ATOMIC_AND 166 +#define K_SYSCALL_ATOMIC_CAS 167 +#define K_SYSCALL_ATOMIC_NAND 168 +#define K_SYSCALL_ATOMIC_OR 169 +#define K_SYSCALL_ATOMIC_PTR_CAS 170 +#define K_SYSCALL_ATOMIC_PTR_SET 171 +#define K_SYSCALL_ATOMIC_SET 172 +#define K_SYSCALL_ATOMIC_SUB 173 +#define K_SYSCALL_ATOMIC_XOR 174 +#define K_SYSCALL_AUXDISPLAY_BACKLIGHT_GET 175 +#define K_SYSCALL_AUXDISPLAY_BACKLIGHT_SET 176 +#define K_SYSCALL_AUXDISPLAY_BRIGHTNESS_GET 177 +#define K_SYSCALL_AUXDISPLAY_BRIGHTNESS_SET 178 +#define K_SYSCALL_AUXDISPLAY_CAPABILITIES_GET 179 +#define K_SYSCALL_AUXDISPLAY_CLEAR 180 +#define K_SYSCALL_AUXDISPLAY_CURSOR_POSITION_GET 181 +#define K_SYSCALL_AUXDISPLAY_CURSOR_POSITION_SET 182 +#define K_SYSCALL_AUXDISPLAY_CURSOR_SET_ENABLED 183 +#define K_SYSCALL_AUXDISPLAY_CURSOR_SHIFT_SET 184 +#define K_SYSCALL_AUXDISPLAY_CUSTOM_CHARACTER_SET 185 +#define K_SYSCALL_AUXDISPLAY_CUSTOM_COMMAND 186 +#define K_SYSCALL_AUXDISPLAY_DISPLAY_OFF 187 +#define K_SYSCALL_AUXDISPLAY_DISPLAY_ON 188 +#define K_SYSCALL_AUXDISPLAY_DISPLAY_POSITION_GET 189 +#define K_SYSCALL_AUXDISPLAY_DISPLAY_POSITION_SET 190 +#define K_SYSCALL_AUXDISPLAY_IS_BUSY 191 +#define K_SYSCALL_AUXDISPLAY_POSITION_BLINKING_SET_ENABLED 192 +#define K_SYSCALL_AUXDISPLAY_WRITE 193 +#define K_SYSCALL_BBRAM_CHECK_INVALID 194 +#define K_SYSCALL_BBRAM_CHECK_POWER 195 +#define K_SYSCALL_BBRAM_CHECK_STANDBY_POWER 196 +#define K_SYSCALL_BBRAM_GET_SIZE 197 +#define K_SYSCALL_BBRAM_READ 198 +#define K_SYSCALL_BBRAM_WRITE 199 +#define K_SYSCALL_BC12_SET_RESULT_CB 200 +#define K_SYSCALL_BC12_SET_ROLE 201 +#define K_SYSCALL_CAN_ADD_RX_FILTER_MSGQ 202 +#define K_SYSCALL_CAN_CALC_TIMING 203 +#define K_SYSCALL_CAN_CALC_TIMING_DATA 204 +#define K_SYSCALL_CAN_GET_BITRATE_MAX 205 +#define K_SYSCALL_CAN_GET_BITRATE_MIN 206 +#define K_SYSCALL_CAN_GET_CAPABILITIES 207 +#define K_SYSCALL_CAN_GET_CORE_CLOCK 208 +#define K_SYSCALL_CAN_GET_MAX_FILTERS 209 +#define K_SYSCALL_CAN_GET_MODE 210 +#define K_SYSCALL_CAN_GET_STATE 211 +#define K_SYSCALL_CAN_GET_TIMING_DATA_MAX 212 +#define K_SYSCALL_CAN_GET_TIMING_DATA_MIN 213 +#define K_SYSCALL_CAN_GET_TIMING_MAX 214 +#define K_SYSCALL_CAN_GET_TIMING_MIN 215 +#define K_SYSCALL_CAN_GET_TRANSCEIVER 216 +#define K_SYSCALL_CAN_RECOVER 217 +#define K_SYSCALL_CAN_REMOVE_RX_FILTER 218 +#define K_SYSCALL_CAN_SEND 219 +#define K_SYSCALL_CAN_SET_BITRATE 220 +#define K_SYSCALL_CAN_SET_BITRATE_DATA 221 +#define K_SYSCALL_CAN_SET_MODE 222 +#define K_SYSCALL_CAN_SET_TIMING 223 +#define K_SYSCALL_CAN_SET_TIMING_DATA 224 +#define K_SYSCALL_CAN_START 225 +#define K_SYSCALL_CAN_STATS_GET_ACK_ERRORS 226 +#define K_SYSCALL_CAN_STATS_GET_BIT0_ERRORS 227 +#define K_SYSCALL_CAN_STATS_GET_BIT1_ERRORS 228 +#define K_SYSCALL_CAN_STATS_GET_BIT_ERRORS 229 +#define K_SYSCALL_CAN_STATS_GET_CRC_ERRORS 230 +#define K_SYSCALL_CAN_STATS_GET_FORM_ERRORS 231 +#define K_SYSCALL_CAN_STATS_GET_RX_OVERRUNS 232 +#define K_SYSCALL_CAN_STATS_GET_STUFF_ERRORS 233 +#define K_SYSCALL_CAN_STOP 234 +#define K_SYSCALL_CHARGER_CHARGE_ENABLE 235 +#define K_SYSCALL_CHARGER_GET_PROP 236 +#define K_SYSCALL_CHARGER_SET_PROP 237 +#define K_SYSCALL_COMPARATOR_GET_OUTPUT 238 +#define K_SYSCALL_COMPARATOR_SET_TRIGGER 239 +#define K_SYSCALL_COMPARATOR_TRIGGER_IS_PENDING 240 +#define K_SYSCALL_COUNTER_CANCEL_CHANNEL_ALARM 241 +#define K_SYSCALL_COUNTER_GET_FREQUENCY 242 +#define K_SYSCALL_COUNTER_GET_GUARD_PERIOD 243 +#define K_SYSCALL_COUNTER_GET_MAX_TOP_VALUE 244 +#define K_SYSCALL_COUNTER_GET_NUM_OF_CHANNELS 245 +#define K_SYSCALL_COUNTER_GET_PENDING_INT 246 +#define K_SYSCALL_COUNTER_GET_TOP_VALUE 247 +#define K_SYSCALL_COUNTER_GET_VALUE 248 +#define K_SYSCALL_COUNTER_GET_VALUE_64 249 +#define K_SYSCALL_COUNTER_IS_COUNTING_UP 250 +#define K_SYSCALL_COUNTER_SET_CHANNEL_ALARM 251 +#define K_SYSCALL_COUNTER_SET_GUARD_PERIOD 252 +#define K_SYSCALL_COUNTER_SET_TOP_VALUE 253 +#define K_SYSCALL_COUNTER_START 254 +#define K_SYSCALL_COUNTER_STOP 255 +#define K_SYSCALL_COUNTER_TICKS_TO_US 256 +#define K_SYSCALL_COUNTER_US_TO_TICKS 257 +#define K_SYSCALL_DAC_CHANNEL_SETUP 258 +#define K_SYSCALL_DAC_WRITE_VALUE 259 +#define K_SYSCALL_DEVMUX_SELECT_GET 260 +#define K_SYSCALL_DEVMUX_SELECT_SET 261 +#define K_SYSCALL_DMA_CHAN_FILTER 262 +#define K_SYSCALL_DMA_RELEASE_CHANNEL 263 +#define K_SYSCALL_DMA_REQUEST_CHANNEL 264 +#define K_SYSCALL_DMA_RESUME 265 +#define K_SYSCALL_DMA_START 266 +#define K_SYSCALL_DMA_STOP 267 +#define K_SYSCALL_DMA_SUSPEND 268 +#define K_SYSCALL_EEPROM_GET_SIZE 269 +#define K_SYSCALL_EEPROM_READ 270 +#define K_SYSCALL_EEPROM_WRITE 271 +#define K_SYSCALL_EMUL_FUEL_GAUGE_IS_BATTERY_CUTOFF 272 +#define K_SYSCALL_EMUL_FUEL_GAUGE_SET_BATTERY_CHARGING 273 +#define K_SYSCALL_ENTROPY_GET_ENTROPY 274 +#define K_SYSCALL_ESPI_CONFIG 275 +#define K_SYSCALL_ESPI_FLASH_ERASE 276 +#define K_SYSCALL_ESPI_GET_CHANNEL_STATUS 277 +#define K_SYSCALL_ESPI_READ_FLASH 278 +#define K_SYSCALL_ESPI_READ_LPC_REQUEST 279 +#define K_SYSCALL_ESPI_READ_REQUEST 280 +#define K_SYSCALL_ESPI_RECEIVE_OOB 281 +#define K_SYSCALL_ESPI_RECEIVE_VWIRE 282 +#define K_SYSCALL_ESPI_SAF_ACTIVATE 283 +#define K_SYSCALL_ESPI_SAF_CONFIG 284 +#define K_SYSCALL_ESPI_SAF_FLASH_ERASE 285 +#define K_SYSCALL_ESPI_SAF_FLASH_READ 286 +#define K_SYSCALL_ESPI_SAF_FLASH_UNSUCCESS 287 +#define K_SYSCALL_ESPI_SAF_FLASH_WRITE 288 +#define K_SYSCALL_ESPI_SAF_GET_CHANNEL_STATUS 289 +#define K_SYSCALL_ESPI_SAF_SET_PROTECTION_REGIONS 290 +#define K_SYSCALL_ESPI_SEND_OOB 291 +#define K_SYSCALL_ESPI_SEND_VWIRE 292 +#define K_SYSCALL_ESPI_WRITE_FLASH 293 +#define K_SYSCALL_ESPI_WRITE_LPC_REQUEST 294 +#define K_SYSCALL_ESPI_WRITE_REQUEST 295 +#define K_SYSCALL_FLASH_COPY 296 +#define K_SYSCALL_FLASH_ERASE 297 +#define K_SYSCALL_FLASH_EX_OP 298 +#define K_SYSCALL_FLASH_FILL 299 +#define K_SYSCALL_FLASH_FLATTEN 300 +#define K_SYSCALL_FLASH_GET_PAGE_COUNT 301 +#define K_SYSCALL_FLASH_GET_PAGE_INFO_BY_IDX 302 +#define K_SYSCALL_FLASH_GET_PAGE_INFO_BY_OFFS 303 +#define K_SYSCALL_FLASH_GET_PARAMETERS 304 +#define K_SYSCALL_FLASH_GET_SIZE 305 +#define K_SYSCALL_FLASH_GET_WRITE_BLOCK_SIZE 306 +#define K_SYSCALL_FLASH_READ 307 +#define K_SYSCALL_FLASH_READ_JEDEC_ID 308 +#define K_SYSCALL_FLASH_SFDP_READ 309 +#define K_SYSCALL_FLASH_SIMULATOR_GET_MEMORY 310 +#define K_SYSCALL_FLASH_WRITE 311 +#define K_SYSCALL_FUEL_GAUGE_BATTERY_CUTOFF 312 +#define K_SYSCALL_FUEL_GAUGE_GET_BUFFER_PROP 313 +#define K_SYSCALL_FUEL_GAUGE_GET_PROP 314 +#define K_SYSCALL_FUEL_GAUGE_GET_PROPS 315 +#define K_SYSCALL_FUEL_GAUGE_SET_PROP 316 +#define K_SYSCALL_FUEL_GAUGE_SET_PROPS 317 +#define K_SYSCALL_GNSS_GET_ENABLED_SYSTEMS 318 +#define K_SYSCALL_GNSS_GET_FIX_RATE 319 +#define K_SYSCALL_GNSS_GET_LATEST_TIMEPULSE 320 +#define K_SYSCALL_GNSS_GET_NAVIGATION_MODE 321 +#define K_SYSCALL_GNSS_GET_SUPPORTED_SYSTEMS 322 +#define K_SYSCALL_GNSS_SET_ENABLED_SYSTEMS 323 +#define K_SYSCALL_GNSS_SET_FIX_RATE 324 +#define K_SYSCALL_GNSS_SET_NAVIGATION_MODE 325 +#define K_SYSCALL_HAPTICS_START_OUTPUT 326 +#define K_SYSCALL_HAPTICS_STOP_OUTPUT 327 +#define K_SYSCALL_HWSPINLOCK_GET_MAX_ID 328 +#define K_SYSCALL_HWSPINLOCK_LOCK 329 +#define K_SYSCALL_HWSPINLOCK_TRYLOCK 330 +#define K_SYSCALL_HWSPINLOCK_UNLOCK 331 +#define K_SYSCALL_I2C_CONFIGURE 332 +#define K_SYSCALL_I2C_GET_CONFIG 333 +#define K_SYSCALL_I2C_RECOVER_BUS 334 +#define K_SYSCALL_I2C_TARGET_DRIVER_REGISTER 335 +#define K_SYSCALL_I2C_TARGET_DRIVER_UNREGISTER 336 +#define K_SYSCALL_I2C_TRANSFER 337 +#define K_SYSCALL_I2S_BUF_READ 338 +#define K_SYSCALL_I2S_BUF_WRITE 339 +#define K_SYSCALL_I2S_CONFIGURE 340 +#define K_SYSCALL_I2S_TRIGGER 341 +#define K_SYSCALL_I3C_DO_CCC 342 +#define K_SYSCALL_I3C_TRANSFER 343 +#define K_SYSCALL_IPM_COMPLETE 344 +#define K_SYSCALL_IPM_MAX_DATA_SIZE_GET 345 +#define K_SYSCALL_IPM_MAX_ID_VAL_GET 346 +#define K_SYSCALL_IPM_SEND 347 +#define K_SYSCALL_IPM_SET_ENABLED 348 +#define K_SYSCALL_IVSHMEM_ENABLE_INTERRUPTS 349 +#define K_SYSCALL_IVSHMEM_GET_ID 350 +#define K_SYSCALL_IVSHMEM_GET_MAX_PEERS 351 +#define K_SYSCALL_IVSHMEM_GET_MEM 352 +#define K_SYSCALL_IVSHMEM_GET_OUTPUT_MEM_SECTION 353 +#define K_SYSCALL_IVSHMEM_GET_PROTOCOL 354 +#define K_SYSCALL_IVSHMEM_GET_RW_MEM_SECTION 355 +#define K_SYSCALL_IVSHMEM_GET_STATE 356 +#define K_SYSCALL_IVSHMEM_GET_VECTORS 357 +#define K_SYSCALL_IVSHMEM_INT_PEER 358 +#define K_SYSCALL_IVSHMEM_REGISTER_HANDLER 359 +#define K_SYSCALL_IVSHMEM_SET_STATE 360 +#define K_SYSCALL_KSCAN_CONFIG 361 +#define K_SYSCALL_KSCAN_DISABLE_CALLBACK 362 +#define K_SYSCALL_KSCAN_ENABLE_CALLBACK 363 +#define K_SYSCALL_K_MEM_PAGING_HISTOGRAM_BACKING_STORE_PAGE_IN_GET 364 +#define K_SYSCALL_K_MEM_PAGING_HISTOGRAM_BACKING_STORE_PAGE_OUT_GET 365 +#define K_SYSCALL_K_MEM_PAGING_HISTOGRAM_EVICTION_GET 366 +#define K_SYSCALL_K_MEM_PAGING_STATS_GET 367 +#define K_SYSCALL_K_MEM_PAGING_THREAD_STATS_GET 368 +#define K_SYSCALL_LED_BLINK 369 +#define K_SYSCALL_LED_GET_INFO 370 +#define K_SYSCALL_LED_OFF 371 +#define K_SYSCALL_LED_ON 372 +#define K_SYSCALL_LED_SET_BRIGHTNESS 373 +#define K_SYSCALL_LED_SET_CHANNEL 374 +#define K_SYSCALL_LED_SET_COLOR 375 +#define K_SYSCALL_LED_WRITE_CHANNELS 376 +#define K_SYSCALL_LLEXT_GET_FN_TABLE 377 +#define K_SYSCALL_MAXIM_DS3231_GET_SYNCPOINT 378 +#define K_SYSCALL_MAXIM_DS3231_REQ_SYNCPOINT 379 +#define K_SYSCALL_MBOX_MAX_CHANNELS_GET 380 +#define K_SYSCALL_MBOX_MTU_GET 381 +#define K_SYSCALL_MBOX_SEND 382 +#define K_SYSCALL_MBOX_SET_ENABLED 383 +#define K_SYSCALL_MDIO_BUS_DISABLE 384 +#define K_SYSCALL_MDIO_BUS_ENABLE 385 +#define K_SYSCALL_MDIO_READ 386 +#define K_SYSCALL_MDIO_READ_C45 387 +#define K_SYSCALL_MDIO_WRITE 388 +#define K_SYSCALL_MDIO_WRITE_C45 389 +#define K_SYSCALL_MSPI_CONFIG 390 +#define K_SYSCALL_MSPI_DEV_CONFIG 391 +#define K_SYSCALL_MSPI_GET_CHANNEL_STATUS 392 +#define K_SYSCALL_MSPI_SCRAMBLE_CONFIG 393 +#define K_SYSCALL_MSPI_TIMING_CONFIG 394 +#define K_SYSCALL_MSPI_TRANSCEIVE 395 +#define K_SYSCALL_MSPI_XIP_CONFIG 396 +#define K_SYSCALL_NET_ADDR_NTOP 397 +#define K_SYSCALL_NET_ADDR_PTON 398 +#define K_SYSCALL_NET_ETH_GET_PTP_CLOCK_BY_INDEX 399 +#define K_SYSCALL_NET_IF_GET_BY_INDEX 400 +#define K_SYSCALL_NET_IF_IPV4_ADDR_ADD_BY_INDEX 401 +#define K_SYSCALL_NET_IF_IPV4_ADDR_LOOKUP_BY_INDEX 402 +#define K_SYSCALL_NET_IF_IPV4_ADDR_RM_BY_INDEX 403 +#define K_SYSCALL_NET_IF_IPV4_SET_GW_BY_INDEX 404 +#define K_SYSCALL_NET_IF_IPV4_SET_NETMASK_BY_ADDR_BY_INDEX 405 +#define K_SYSCALL_NET_IF_IPV4_SET_NETMASK_BY_INDEX 406 +#define K_SYSCALL_NET_IF_IPV6_ADDR_ADD_BY_INDEX 407 +#define K_SYSCALL_NET_IF_IPV6_ADDR_LOOKUP_BY_INDEX 408 +#define K_SYSCALL_NET_IF_IPV6_ADDR_RM_BY_INDEX 409 +#define K_SYSCALL_NET_SOCKET_SERVICE_REGISTER 410 +#define K_SYSCALL_NRF_QSPI_NOR_XIP_ENABLE 411 +#define K_SYSCALL_PECI_CONFIG 412 +#define K_SYSCALL_PECI_DISABLE 413 +#define K_SYSCALL_PECI_ENABLE 414 +#define K_SYSCALL_PECI_TRANSFER 415 +#define K_SYSCALL_PS2_CONFIG 416 +#define K_SYSCALL_PS2_DISABLE_CALLBACK 417 +#define K_SYSCALL_PS2_ENABLE_CALLBACK 418 +#define K_SYSCALL_PS2_READ 419 +#define K_SYSCALL_PS2_WRITE 420 +#define K_SYSCALL_PTP_CLOCK_GET 421 +#define K_SYSCALL_PWM_CAPTURE_CYCLES 422 +#define K_SYSCALL_PWM_DISABLE_CAPTURE 423 +#define K_SYSCALL_PWM_ENABLE_CAPTURE 424 +#define K_SYSCALL_PWM_GET_CYCLES_PER_SEC 425 +#define K_SYSCALL_PWM_SET_CYCLES 426 +#define K_SYSCALL_RESET_LINE_ASSERT 427 +#define K_SYSCALL_RESET_LINE_DEASSERT 428 +#define K_SYSCALL_RESET_LINE_TOGGLE 429 +#define K_SYSCALL_RESET_STATUS 430 +#define K_SYSCALL_RETAINED_MEM_CLEAR 431 +#define K_SYSCALL_RETAINED_MEM_READ 432 +#define K_SYSCALL_RETAINED_MEM_SIZE 433 +#define K_SYSCALL_RETAINED_MEM_WRITE 434 +#define K_SYSCALL_RTC_ALARM_GET_SUPPORTED_FIELDS 435 +#define K_SYSCALL_RTC_ALARM_GET_TIME 436 +#define K_SYSCALL_RTC_ALARM_IS_PENDING 437 +#define K_SYSCALL_RTC_ALARM_SET_CALLBACK 438 +#define K_SYSCALL_RTC_ALARM_SET_TIME 439 +#define K_SYSCALL_RTC_GET_CALIBRATION 440 +#define K_SYSCALL_RTC_GET_TIME 441 +#define K_SYSCALL_RTC_SET_CALIBRATION 442 +#define K_SYSCALL_RTC_SET_TIME 443 +#define K_SYSCALL_RTC_UPDATE_SET_CALLBACK 444 +#define K_SYSCALL_RTIO_CQE_COPY_OUT 445 +#define K_SYSCALL_RTIO_CQE_GET_MEMPOOL_BUFFER 446 +#define K_SYSCALL_RTIO_RELEASE_BUFFER 447 +#define K_SYSCALL_RTIO_SQE_CANCEL 448 +#define K_SYSCALL_RTIO_SQE_COPY_IN_GET_HANDLES 449 +#define K_SYSCALL_RTIO_SUBMIT 450 +#define K_SYSCALL_SDHC_CARD_BUSY 451 +#define K_SYSCALL_SDHC_CARD_PRESENT 452 +#define K_SYSCALL_SDHC_DISABLE_INTERRUPT 453 +#define K_SYSCALL_SDHC_ENABLE_INTERRUPT 454 +#define K_SYSCALL_SDHC_EXECUTE_TUNING 455 +#define K_SYSCALL_SDHC_GET_HOST_PROPS 456 +#define K_SYSCALL_SDHC_HW_RESET 457 +#define K_SYSCALL_SDHC_REQUEST 458 +#define K_SYSCALL_SDHC_SET_IO 459 +#define K_SYSCALL_SIP_SUPERVISORY_CALL 460 +#define K_SYSCALL_SIP_SVC_PLAT_ASYNC_RES_REQ 461 +#define K_SYSCALL_SIP_SVC_PLAT_ASYNC_RES_RES 462 +#define K_SYSCALL_SIP_SVC_PLAT_FORMAT_TRANS_ID 463 +#define K_SYSCALL_SIP_SVC_PLAT_FREE_ASYNC_MEMORY 464 +#define K_SYSCALL_SIP_SVC_PLAT_FUNC_ID_VALID 465 +#define K_SYSCALL_SIP_SVC_PLAT_GET_ERROR_CODE 466 +#define K_SYSCALL_SIP_SVC_PLAT_GET_TRANS_IDX 467 +#define K_SYSCALL_SIP_SVC_PLAT_UPDATE_TRANS_ID 468 +#define K_SYSCALL_SMBUS_BLOCK_PCALL 469 +#define K_SYSCALL_SMBUS_BLOCK_READ 470 +#define K_SYSCALL_SMBUS_BLOCK_WRITE 471 +#define K_SYSCALL_SMBUS_BYTE_DATA_READ 472 +#define K_SYSCALL_SMBUS_BYTE_DATA_WRITE 473 +#define K_SYSCALL_SMBUS_BYTE_READ 474 +#define K_SYSCALL_SMBUS_BYTE_WRITE 475 +#define K_SYSCALL_SMBUS_CONFIGURE 476 +#define K_SYSCALL_SMBUS_GET_CONFIG 477 +#define K_SYSCALL_SMBUS_HOST_NOTIFY_REMOVE_CB 478 +#define K_SYSCALL_SMBUS_PCALL 479 +#define K_SYSCALL_SMBUS_QUICK 480 +#define K_SYSCALL_SMBUS_SMBALERT_REMOVE_CB 481 +#define K_SYSCALL_SMBUS_WORD_DATA_READ 482 +#define K_SYSCALL_SMBUS_WORD_DATA_WRITE 483 +#define K_SYSCALL_SPI_RELEASE 484 +#define K_SYSCALL_SPI_TRANSCEIVE 485 +#define K_SYSCALL_STEPPER_ENABLE 486 +#define K_SYSCALL_STEPPER_GET_ACTUAL_POSITION 487 +#define K_SYSCALL_STEPPER_GET_MICRO_STEP_RES 488 +#define K_SYSCALL_STEPPER_IS_MOVING 489 +#define K_SYSCALL_STEPPER_MOVE_BY 490 +#define K_SYSCALL_STEPPER_MOVE_TO 491 +#define K_SYSCALL_STEPPER_RUN 492 +#define K_SYSCALL_STEPPER_SET_EVENT_CALLBACK 493 +#define K_SYSCALL_STEPPER_SET_MAX_VELOCITY 494 +#define K_SYSCALL_STEPPER_SET_MICRO_STEP_RES 495 +#define K_SYSCALL_STEPPER_SET_REFERENCE_POSITION 496 +#define K_SYSCALL_SYSCON_GET_BASE 497 +#define K_SYSCALL_SYSCON_GET_SIZE 498 +#define K_SYSCALL_SYSCON_READ_REG 499 +#define K_SYSCALL_SYSCON_WRITE_REG 500 +#define K_SYSCALL_SYS_CACHE_DATA_FLUSH_AND_INVD_RANGE 501 +#define K_SYSCALL_SYS_CACHE_DATA_FLUSH_RANGE 502 +#define K_SYSCALL_SYS_CACHE_DATA_INVD_RANGE 503 +#define K_SYSCALL_SYS_CSRAND_GET 504 +#define K_SYSCALL_SYS_RAND_GET 505 +#define K_SYSCALL_TEE_CANCEL 506 +#define K_SYSCALL_TEE_CLOSE_SESSION 507 +#define K_SYSCALL_TEE_GET_VERSION 508 +#define K_SYSCALL_TEE_INVOKE_FUNC 509 +#define K_SYSCALL_TEE_OPEN_SESSION 510 +#define K_SYSCALL_TEE_SHM_ALLOC 511 +#define K_SYSCALL_TEE_SHM_FREE 512 +#define K_SYSCALL_TEE_SHM_REGISTER 513 +#define K_SYSCALL_TEE_SHM_UNREGISTER 514 +#define K_SYSCALL_TEE_SUPPL_RECV 515 +#define K_SYSCALL_TEE_SUPPL_SEND 516 +#define K_SYSCALL_TGPIO_PIN_CONFIG_EXT_TIMESTAMP 517 +#define K_SYSCALL_TGPIO_PIN_DISABLE 518 +#define K_SYSCALL_TGPIO_PIN_PERIODIC_OUTPUT 519 +#define K_SYSCALL_TGPIO_PIN_READ_TS_EC 520 +#define K_SYSCALL_TGPIO_PORT_GET_CYCLES_PER_SECOND 521 +#define K_SYSCALL_TGPIO_PORT_GET_TIME 522 +#define K_SYSCALL_UPDATEHUB_AUTOHANDLER 523 +#define K_SYSCALL_UPDATEHUB_CONFIRM 524 +#define K_SYSCALL_UPDATEHUB_PROBE 525 +#define K_SYSCALL_UPDATEHUB_REBOOT 526 +#define K_SYSCALL_UPDATEHUB_UPDATE 527 +#define K_SYSCALL_USER_FAULT 528 +#define K_SYSCALL_W1_CHANGE_BUS_LOCK 529 +#define K_SYSCALL_W1_CONFIGURE 530 +#define K_SYSCALL_W1_GET_SLAVE_COUNT 531 +#define K_SYSCALL_W1_READ_BIT 532 +#define K_SYSCALL_W1_READ_BLOCK 533 +#define K_SYSCALL_W1_READ_BYTE 534 +#define K_SYSCALL_W1_RESET_BUS 535 +#define K_SYSCALL_W1_SEARCH_BUS 536 +#define K_SYSCALL_W1_WRITE_BIT 537 +#define K_SYSCALL_W1_WRITE_BLOCK 538 +#define K_SYSCALL_W1_WRITE_BYTE 539 +#define K_SYSCALL_WDT_DISABLE 540 +#define K_SYSCALL_WDT_FEED 541 +#define K_SYSCALL_WDT_SETUP 542 +#define K_SYSCALL_XTENSA_USER_FAULT 543 +#define K_SYSCALL_ZSOCK_ACCEPT 544 +#define K_SYSCALL_ZSOCK_BIND 545 +#define K_SYSCALL_ZSOCK_CLOSE 546 +#define K_SYSCALL_ZSOCK_CONNECT 547 +#define K_SYSCALL_ZSOCK_FCNTL_IMPL 548 +#define K_SYSCALL_ZSOCK_GETHOSTNAME 549 +#define K_SYSCALL_ZSOCK_GETPEERNAME 550 +#define K_SYSCALL_ZSOCK_GETSOCKNAME 551 +#define K_SYSCALL_ZSOCK_GETSOCKOPT 552 +#define K_SYSCALL_ZSOCK_GET_CONTEXT_OBJECT 553 +#define K_SYSCALL_ZSOCK_INET_PTON 554 +#define K_SYSCALL_ZSOCK_IOCTL_IMPL 555 +#define K_SYSCALL_ZSOCK_LISTEN 556 +#define K_SYSCALL_ZSOCK_RECVFROM 557 +#define K_SYSCALL_ZSOCK_RECVMSG 558 +#define K_SYSCALL_ZSOCK_SENDMSG 559 +#define K_SYSCALL_ZSOCK_SENDTO 560 +#define K_SYSCALL_ZSOCK_SETSOCKOPT 561 +#define K_SYSCALL_ZSOCK_SHUTDOWN 562 +#define K_SYSCALL_ZSOCK_SOCKET 563 +#define K_SYSCALL_ZSOCK_SOCKETPAIR 564 +#define K_SYSCALL_ZVFS_POLL 565 +#define K_SYSCALL_ZVFS_SELECT 566 +#define K_SYSCALL_Z_ERRNO 567 +#define K_SYSCALL_Z_ZSOCK_GETADDRINFO_INTERNAL 568 + + +#ifndef _ASMLANGUAGE + +#include +#include + +#endif /* _ASMLANGUAGE */ + +#endif /* ZEPHYR_SYSCALL_LIST_H */ diff --git a/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h b/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h new file mode 100644 index 0000000..f2c879e --- /dev/null +++ b/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h @@ -0,0 +1,509 @@ +#define CONFIG_ADC_INIT_PRIORITY 50 +#define CONFIG_UART_INTERRUPT_DRIVEN 1 +#define CONFIG_NUM_IRQS 48 +#define CONFIG_SYS_CLOCK_HW_CYCLES_PER_SEC 32768 +#define CONFIG_FLASH_SIZE 512 +#define CONFIG_FLASH_BASE_ADDRESS 0x0 +#define CONFIG_MP_MAX_NUM_CPUS 1 +#define CONFIG_SOC_RESET_HOOK 1 +#define CONFIG_MAIN_STACK_SIZE 1024 +#define CONFIG_IDLE_STACK_SIZE 320 +#define CONFIG_ISR_STACK_SIZE 2048 +#define CONFIG_CLOCK_CONTROL 1 +#define CONFIG_SYS_CLOCK_TICKS_PER_SEC 32768 +#define CONFIG_ROM_START_OFFSET 0x0 +#define CONFIG_KERNEL_ENTRY "__start" +#define CONFIG_BUILD_OUTPUT_BIN 1 +#define CONFIG_XIP 1 +#define CONFIG_HAS_FLASH_LOAD_OFFSET 1 +#define CONFIG_CPU_HAS_ARM_MPU 1 +#define CONFIG_TICKLESS_KERNEL 1 +#define CONFIG_SYSTEM_WORKQUEUE_STACK_SIZE 1024 +#define CONFIG_CLOCK_CONTROL_INIT_PRIORITY 30 +#define CONFIG_GEN_IRQ_VECTOR_TABLE 1 +#define CONFIG_GEN_ISR_TABLES 1 +#define CONFIG_TIMESLICE_SIZE 0 +#define CONFIG_FLASH_LOAD_OFFSET 0x0 +#define CONFIG_SYS_CLOCK_EXISTS 1 +#define CONFIG_INIT_ARCH_HW_AT_BOOT 1 +#define CONFIG_ARCH_HAS_CUSTOM_BUSY_WAIT 1 +#define CONFIG_HW_STACK_PROTECTION 1 +#define CONFIG_GPIO 1 +#define CONFIG_SERIAL 1 +#define CONFIG_CMSIS_CORE_HAS_SYSTEM_CORE_CLOCK 1 +#define CONFIG_DCACHE_LINE_SIZE 32 +#define CONFIG_ARCH_SW_ISR_TABLE_ALIGN 4 +#define CONFIG_NRF_RTC_TIMER 1 +#define CONFIG_ASSERT 1 +#define CONFIG_BUILD_OUTPUT_HEX 1 +#define CONFIG_SOC_HAS_TIMING_FUNCTIONS 1 +#define CONFIG_SERIAL_INIT_PRIORITY 50 +#define CONFIG_CONSOLE 1 +#define CONFIG_COMMON_LIBC_MALLOC_ARENA_SIZE -1 +#define CONFIG_SOC_TOOLCHAIN_NAME "amd_acp_6_0_adsp" +#define CONFIG_GEN_SW_ISR_TABLE 1 +#define CONFIG_GEN_IRQ_START_VECTOR 0 +#define CONFIG_SRAM_OFFSET 0x0 +#define CONFIG_ARCH_IRQ_VECTOR_TABLE_ALIGN 4 +#define CONFIG_ICACHE_LINE_SIZE 32 +#define CONFIG_PRIVILEGED_STACK_SIZE 1024 +#define CONFIG_DT_HAS_ARM_ARMV7M_ITM_ENABLED 1 +#define CONFIG_DT_HAS_ARM_CORTEX_M4F_ENABLED 1 +#define CONFIG_DT_HAS_ARM_V7M_NVIC_ENABLED 1 +#define CONFIG_DT_HAS_FIXED_PARTITIONS_ENABLED 1 +#define CONFIG_DT_HAS_GPIO_KEYS_ENABLED 1 +#define CONFIG_DT_HAS_GPIO_LEDS_ENABLED 1 +#define CONFIG_DT_HAS_MMIO_SRAM_ENABLED 1 +#define CONFIG_DT_HAS_NORDIC_BT_HCI_SDC_ENABLED 1 +#define CONFIG_DT_HAS_NORDIC_NRF_ACL_ENABLED 1 +#define CONFIG_DT_HAS_NORDIC_NRF_CCM_ENABLED 1 +#define CONFIG_DT_HAS_NORDIC_NRF_CLOCK_ENABLED 1 +#define CONFIG_DT_HAS_NORDIC_NRF_ECB_ENABLED 1 +#define CONFIG_DT_HAS_NORDIC_NRF_EGU_ENABLED 1 +#define CONFIG_DT_HAS_NORDIC_NRF_FICR_ENABLED 1 +#define CONFIG_DT_HAS_NORDIC_NRF_GPIO_ENABLED 1 +#define CONFIG_DT_HAS_NORDIC_NRF_GPIOTE_ENABLED 1 +#define CONFIG_DT_HAS_NORDIC_NRF_GPREGRET_ENABLED 1 +#define CONFIG_DT_HAS_NORDIC_NRF_MWU_ENABLED 1 +#define CONFIG_DT_HAS_NORDIC_NRF_PINCTRL_ENABLED 1 +#define CONFIG_DT_HAS_NORDIC_NRF_POWER_ENABLED 1 +#define CONFIG_DT_HAS_NORDIC_NRF_PPI_ENABLED 1 +#define CONFIG_DT_HAS_NORDIC_NRF_RADIO_ENABLED 1 +#define CONFIG_DT_HAS_NORDIC_NRF_RNG_ENABLED 1 +#define CONFIG_DT_HAS_NORDIC_NRF_SAADC_ENABLED 1 +#define CONFIG_DT_HAS_NORDIC_NRF_SWI_ENABLED 1 +#define CONFIG_DT_HAS_NORDIC_NRF_TEMP_ENABLED 1 +#define CONFIG_DT_HAS_NORDIC_NRF_UICR_ENABLED 1 +#define CONFIG_DT_HAS_NORDIC_NRF_USBD_ENABLED 1 +#define CONFIG_DT_HAS_NORDIC_NRF_WDT_ENABLED 1 +#define CONFIG_DT_HAS_NORDIC_NRF52_FLASH_CONTROLLER_ENABLED 1 +#define CONFIG_DT_HAS_NORDIC_NRF52X_REGULATOR_HV_ENABLED 1 +#define CONFIG_DT_HAS_NORDIC_NRF5X_REGULATOR_ENABLED 1 +#define CONFIG_DT_HAS_SOC_NV_FLASH_ENABLED 1 +#define CONFIG_DT_HAS_ZEPHYR_BT_HCI_ENTROPY_ENABLED 1 +#define CONFIG_DT_HAS_ZEPHYR_CDC_ACM_UART_ENABLED 1 +#define CONFIG_NUM_METAIRQ_PRIORITIES 0 +#define CONFIG_MPSL_WORK_STACK_SIZE 1024 +#define CONFIG_WARN_EXPERIMENTAL 1 +#define CONFIG_NORDIC_QSPI_NOR_FLASH_LAYOUT_PAGE_SIZE 4096 +#define CONFIG_NRF_SECURITY_ENABLER 1 +#define CONFIG_PM_PARTITION_SIZE_PROVISION 0x1000 +#define CONFIG_PM_PARTITION_SIZE_B0_IMAGE 0x7000 +#define CONFIG_SB_VALIDATION_INFO_MAGIC 0x86518483 +#define CONFIG_SB_VALIDATION_POINTER_MAGIC 0x6919b47e +#define CONFIG_SB_VALIDATION_INFO_CRYPTO_ID 1 +#define CONFIG_SB_VALIDATION_INFO_VERSION 2 +#define CONFIG_SB_VALIDATION_METADATA_OFFSET 0 +#define CONFIG_SB_VALIDATION_STRUCT_HAS_HASH 1 +#define CONFIG_SB_VALIDATION_STRUCT_HAS_PUBLIC_KEY 1 +#define CONFIG_SB_VALIDATE_FW_SIGNATURE 1 +#define CONFIG_SYSTEM_WORKQUEUE_PRIORITY -1 +#define CONFIG_HEAP_MEM_POOL_SIZE 0 +#define CONFIG_PCD_VERSION_PAGE_BUF_SIZE 2046 +#define CONFIG_MPSL_THREAD_COOP_PRIO 8 +#define CONFIG_MPSL_TIMESLOT_SESSION_COUNT 0 +#define CONFIG_MPSL_LOW_PRIO_IRQN 25 +#define CONFIG_MPSL_HFCLK_LATENCY 1400 +#define CONFIG_MPSL_INIT_PRIORITY 40 +#define CONFIG_PARTITION_MANAGER_ENABLED 1 +#define CONFIG_FLASH_MAP_CUSTOM 1 +#define CONFIG_SRAM_SIZE 128 +#define CONFIG_SRAM_BASE_ADDRESS 0x20000000 +#define CONFIG_NRF_TRUSTZONE_FLASH_REGION_SIZE 0x0 +#define CONFIG_NRF_TRUSTZONE_RAM_REGION_SIZE 0x0 +#define CONFIG_PM_EXTERNAL_FLASH_BASE 0x0 +#define CONFIG_PM_EXTERNAL_FLASH_PATH "" +#define CONFIG_PM_EXTERNAL_FLASH_SIZE_BITS 0 +#define CONFIG_PM_SRAM_BASE 0x20000000 +#define CONFIG_PM_SRAM_SIZE 0x20000 +#define CONFIG_MCUBOOT_APPLICATION_IMAGE_NUMBER -1 +#define CONFIG_MCUBOOT_NETWORK_CORE_IMAGE_NUMBER -1 +#define CONFIG_MCUBOOT_WIFI_PATCHES_IMAGE_NUMBER -1 +#define CONFIG_MCUBOOT_QSPI_XIP_IMAGE_NUMBER -1 +#define CONFIG_MCUBOOT_MCUBOOT_IMAGE_NUMBER -1 +#define CONFIG_WFA_QT_THREAD_STACK_SIZE 5200 +#define CONFIG_WFA_QT_REBOOT_TIMEOUT_MS 1000 +#define CONFIG_WFA_QT_DEFAULT_INTERFACE "wlan0" +#define CONFIG_WPAS_READY_TIMEOUT_MS 10000 +#define CONFIG_NRF_ACL_FLASH_REGION_SIZE 0x1000 +#define CONFIG_FPROTECT_BLOCK_SIZE 0x1000 +#define CONFIG_HW_UNIQUE_KEY_PARTITION_SIZE 0x1000 +#define CONFIG_NCS_BOOT_BANNER 1 +#define CONFIG_NCS_NCS_BOOT_BANNER_STRING "nRF Connect SDK" +#define CONFIG_NCS_ZEPHYR_BOOT_BANNER_STRING "Zephyr OS" +#define CONFIG_SOC_FLASH_NRF_RADIO_SYNC_MPSL_TIMESLOT_SESSION_COUNT 0 +#define CONFIG_SENSOR 1 +#define CONFIG_NRFX_GPIOTE_NUM_OF_EVT_HANDLERS 1 +#define CONFIG_ZEPHYR_NRF_MODULE 1 +#define CONFIG_ZEPHYR_HOSTAP_MODULE 1 +#define CONFIG_DT_FLASH_WRITE_BLOCK_SIZE 4 +#define CONFIG_MCUBOOT_USB_SUPPORT 1 +#define CONFIG_ZEPHYR_MCUBOOT_MODULE 1 +#define CONFIG_ZEPHYR_MBEDTLS_MODULE 1 +#define CONFIG_ZEPHYR_OBERON_PSA_CRYPTO_MODULE 1 +#define CONFIG_ZEPHYR_TRUSTED_FIRMWARE_M_MODULE 1 +#define CONFIG_ZEPHYR_PSA_ARCH_TESTS_MODULE 1 +#define CONFIG_ZEPHYR_CJSON_MODULE 1 +#define CONFIG_ZEPHYR_AZURE_SDK_FOR_C_MODULE 1 +#define CONFIG_ZEPHYR_CIRRUS_LOGIC_MODULE 1 +#define CONFIG_ZEPHYR_OPENTHREAD_MODULE 1 +#define CONFIG_SUIT_ENVELOPE_TEMPLATE_FILENAME "" +#define CONFIG_SUIT_ENVELOPE_TARGET "" +#define CONFIG_SUIT_ENVELOPE_OUTPUT_ARTIFACT "merged.hex" +#define CONFIG_ZEPHYR_SUIT_GENERATOR_MODULE 1 +#define CONFIG_SUIT_PLATFORM_DRY_RUN_SUPPORT 1 +#define CONFIG_ZEPHYR_SUIT_PROCESSOR_MODULE 1 +#define CONFIG_ZEPHYR_MEMFAULT_FIRMWARE_SDK_MODULE 1 +#define CONFIG_ZEPHYR_COREMARK_MODULE 1 +#define CONFIG_ZEPHYR_CANOPENNODE_MODULE 1 +#define CONFIG_ZEPHYR_CHRE_MODULE 1 +#define CONFIG_ZEPHYR_LZ4_MODULE 1 +#define CONFIG_ZEPHYR_NANOPB_MODULE 1 +#define CONFIG_ZEPHYR_TF_M_TESTS_MODULE 1 +#define CONFIG_ZEPHYR_ZSCILIB_MODULE 1 +#define CONFIG_ZEPHYR_CMSIS_MODULE 1 +#define CONFIG_HAS_CMSIS_CORE 1 +#define CONFIG_HAS_CMSIS_CORE_M 1 +#define CONFIG_ZEPHYR_CMSIS_DSP_MODULE 1 +#define CONFIG_ZEPHYR_CMSIS_NN_MODULE 1 +#define CONFIG_ZEPHYR_FATFS_MODULE 1 +#define CONFIG_ZEPHYR_HAL_NORDIC_MODULE 1 +#define CONFIG_HAS_NORDIC_DRIVERS 1 +#define CONFIG_HAS_NRFX 1 +#define CONFIG_NRFX_CLOCK 1 +#define CONFIG_NRFX_CLOCK_LFXO_TWO_STAGE_ENABLED 1 +#define CONFIG_NRFX_GPIOTE 1 +#define CONFIG_NRFX_GPIOTE0 1 +#define CONFIG_NRFX_POWER 1 +#define CONFIG_NRFX_TEMP 1 +#define CONFIG_NRFX_RESERVED_RESOURCES_HEADER "nrfx_config_reserved_resources_ncs.h" +#define CONFIG_ZEPHYR_HAL_ST_MODULE 1 +#define CONFIG_ZEPHYR_HAL_TDK_MODULE 1 +#define CONFIG_ZEPHYR_HAL_WURTHELEKTRONIK_MODULE 1 +#define CONFIG_ZEPHYR_LIBLC3_MODULE 1 +#define CONFIG_ZEPHYR_LIBMETAL_MODULE 1 +#define CONFIG_ZEPHYR_LITTLEFS_MODULE 1 +#define CONFIG_ZEPHYR_LORAMAC_NODE_MODULE 1 +#define CONFIG_ZEPHYR_LVGL_MODULE 1 +#define CONFIG_ZEPHYR_MIPI_SYS_T_MODULE 1 +#define CONFIG_ZEPHYR_NRF_WIFI_MODULE 1 +#define CONFIG_ZEPHYR_OPEN_AMP_MODULE 1 +#define CONFIG_ZEPHYR_PERCEPIO_MODULE 1 +#define CONFIG_ZEPHYR_PICOLIBC_MODULE 1 +#define CONFIG_ZEPHYR_SEGGER_MODULE 1 +#define CONFIG_HAS_SEGGER_RTT 1 +#define CONFIG_USE_SEGGER_RTT 1 +#define CONFIG_SEGGER_RTT_MAX_NUM_UP_BUFFERS 3 +#define CONFIG_SEGGER_RTT_MAX_NUM_DOWN_BUFFERS 3 +#define CONFIG_SEGGER_RTT_BUFFER_SIZE_UP 1024 +#define CONFIG_SEGGER_RTT_BUFFER_SIZE_DOWN 16 +#define CONFIG_SEGGER_RTT_PRINTF_BUFFER_SIZE 64 +#define CONFIG_SEGGER_RTT_MODE_NO_BLOCK_SKIP 1 +#define CONFIG_SEGGER_RTT_MODE 0 +#define CONFIG_SEGGER_RTT_SECTION_CUSTOM 1 +#define CONFIG_SEGGER_RTT_SECTION_CUSTOM_NAME ".rtt_buff_data" +#define CONFIG_SEGGER_RTT_INIT_MODE_STRONG_CHECK 1 +#define CONFIG_ZEPHYR_TINYCRYPT_MODULE 1 +#define CONFIG_ZEPHYR_UOSCORE_UEDHOC_MODULE 1 +#define CONFIG_ZEPHYR_ZCBOR_MODULE 1 +#define CONFIG_NRF_MODEM_SHMEM_CTRL_SIZE 0x4e8 +#define CONFIG_NRF_802154_SOURCE_NRFXLIB 1 +#define CONFIG_ZEPHYR_NRFXLIB_MODULE 1 +#define CONFIG_ZEPHYR_NRF_HW_MODELS_MODULE 1 +#define CONFIG_ZEPHYR_CONNECTEDHOMEIP_MODULE 1 +#define CONFIG_BOARD "phf000_board" +#define CONFIG_BOARD_REVISION "" +#define CONFIG_BOARD_TARGET "phf000_board/nrf52833" +#define CONFIG_BOARD_PHF000_BOARD 1 +#define CONFIG_BOARD_PHF000_BOARD_NRF52833 1 +#define CONFIG_BOARD_QUALIFIERS "nrf52833" +#define CONFIG_SOC "nrf52833" +#define CONFIG_SOC_SERIES "nrf52" +#define CONFIG_SOC_FAMILY "nordic_nrf" +#define CONFIG_SOC_FAMILY_NORDIC_NRF 1 +#define CONFIG_SOC_SERIES_NRF52X 1 +#define CONFIG_SOC_NRF52833 1 +#define CONFIG_SOC_NRF52833_QDAA 1 +#define CONFIG_HAS_HW_NRF_ACL 1 +#define CONFIG_HAS_HW_NRF_CCM 1 +#define CONFIG_HAS_HW_NRF_CCM_LFLEN_8BIT 1 +#define CONFIG_HAS_HW_NRF_CCM_HEADERMASK 1 +#define CONFIG_HAS_HW_NRF_CLOCK 1 +#define CONFIG_HAS_HW_NRF_ECB 1 +#define CONFIG_HAS_HW_NRF_EGU0 1 +#define CONFIG_HAS_HW_NRF_EGU1 1 +#define CONFIG_HAS_HW_NRF_EGU2 1 +#define CONFIG_HAS_HW_NRF_EGU3 1 +#define CONFIG_HAS_HW_NRF_EGU4 1 +#define CONFIG_HAS_HW_NRF_EGU5 1 +#define CONFIG_HAS_HW_NRF_GPIO0 1 +#define CONFIG_HAS_HW_NRF_GPIO1 1 +#define CONFIG_HAS_HW_NRF_GPIOTE0 1 +#define CONFIG_HAS_HW_NRF_MWU 1 +#define CONFIG_HAS_HW_NRF_NVMC_PE 1 +#define CONFIG_HAS_HW_NRF_POWER 1 +#define CONFIG_HAS_HW_NRF_PPI 1 +#define CONFIG_HAS_HW_NRF_RADIO_BLE_2M 1 +#define CONFIG_HAS_HW_NRF_RADIO_BLE_CODED 1 +#define CONFIG_HAS_HW_NRF_RADIO_DFE 1 +#define CONFIG_HAS_HW_NRF_RADIO_IEEE802154 1 +#define CONFIG_HAS_HW_NRF_RADIO_TX_PWR_HIGH 1 +#define CONFIG_HAS_HW_NRF_RNG 1 +#define CONFIG_HAS_HW_NRF_SAADC 1 +#define CONFIG_HAS_HW_NRF_SWI0 1 +#define CONFIG_HAS_HW_NRF_SWI1 1 +#define CONFIG_HAS_HW_NRF_SWI2 1 +#define CONFIG_HAS_HW_NRF_SWI3 1 +#define CONFIG_HAS_HW_NRF_SWI4 1 +#define CONFIG_HAS_HW_NRF_SWI5 1 +#define CONFIG_HAS_HW_NRF_TEMP 1 +#define CONFIG_HAS_HW_NRF_USBD 1 +#define CONFIG_HAS_HW_NRF_WDT0 1 +#define CONFIG_HAS_NORDIC_RAM_CTRL 1 +#define CONFIG_NRF_ENABLE_ICACHE 1 +#define CONFIG_NRF_RTC_TIMER_USER_CHAN_COUNT 0 +#define CONFIG_NRF_SOC_SECURE_SUPPORTED 1 +#define CONFIG_NRF_APPROTECT_USE_UICR 1 +#define CONFIG_DEPRECATED_UART_NRFX_UARTE_LEGACY_SHIM 1 +#define CONFIG_GPIO_INIT_PRIORITY 40 +#define CONFIG_SOC_COMPATIBLE_NRF 1 +#define CONFIG_SOC_COMPATIBLE_NRF52X 1 +#define CONFIG_SOC_COMPATIBLE_NRF52833 1 +#define CONFIG_ARCH "arm" +#define CONFIG_ARCH_HAS_SINGLE_THREAD_SUPPORT 1 +#define CONFIG_CPU_CORTEX 1 +#define CONFIG_KOBJECT_TEXT_AREA 256 +#define CONFIG_ARM_MPU 1 +#define CONFIG_ARM_MPU_REGION_MIN_ALIGN_AND_SIZE 32 +#define CONFIG_CPU_CORTEX_M 1 +#define CONFIG_ISA_THUMB2 1 +#define CONFIG_ASSEMBLER_ISA_THUMB2 1 +#define CONFIG_COMPILER_ISA_THUMB2 1 +#define CONFIG_STACK_ALIGN_DOUBLE_WORD 1 +#define CONFIG_FAULT_DUMP 2 +#define CONFIG_ARM_STACK_PROTECTION 1 +#define CONFIG_FP16 1 +#define CONFIG_FP16_IEEE 1 +#define CONFIG_CPU_CORTEX_M4 1 +#define CONFIG_CPU_CORTEX_M_HAS_SYSTICK 1 +#define CONFIG_CPU_CORTEX_M_HAS_DWT 1 +#define CONFIG_CPU_CORTEX_M_HAS_BASEPRI 1 +#define CONFIG_CPU_CORTEX_M_HAS_VTOR 1 +#define CONFIG_CPU_CORTEX_M_HAS_PROGRAMMABLE_FAULT_PRIOS 1 +#define CONFIG_ARMV7_M_ARMV8_M_MAINLINE 1 +#define CONFIG_ARMV7_M_ARMV8_M_FP 1 +#define CONFIG_NULL_POINTER_EXCEPTION_DETECTION_NONE 1 +#define CONFIG_MPU_STACK_GUARD 1 +#define CONFIG_CUSTOM_SECTION_MIN_ALIGN_SIZE 32 +#define CONFIG_HAS_SWO 1 +#define CONFIG_ARM 1 +#define CONFIG_ARCH_IS_SET 1 +#define CONFIG_LITTLE_ENDIAN 1 +#define CONFIG_KOBJECT_DATA_AREA_RESERVE_EXTRA_PERCENT 100 +#define CONFIG_KOBJECT_RODATA_AREA_EXTRA_BYTES 16 +#define CONFIG_GEN_PRIV_STACKS 1 +#define CONFIG_ISR_TABLES_LOCAL_DECLARATION_SUPPORTED 1 +#define CONFIG_IRQ_VECTOR_TABLE_JUMP_BY_ADDRESS 1 +#define CONFIG_EXCEPTION_DEBUG 1 +#define CONFIG_ARCH_HAS_TIMING_FUNCTIONS 1 +#define CONFIG_ARCH_HAS_STACK_PROTECTION 1 +#define CONFIG_ARCH_HAS_USERSPACE 1 +#define CONFIG_ARCH_HAS_EXECUTABLE_PAGE_BIT 1 +#define CONFIG_ARCH_HAS_RAMFUNC_SUPPORT 1 +#define CONFIG_ARCH_HAS_NESTED_EXCEPTION_DETECTION 1 +#define CONFIG_ARCH_SUPPORTS_COREDUMP 1 +#define CONFIG_ARCH_SUPPORTS_COREDUMP_THREADS 1 +#define CONFIG_ARCH_SUPPORTS_ARCH_HW_INIT 1 +#define CONFIG_ARCH_SUPPORTS_ROM_START 1 +#define CONFIG_ARCH_HAS_EXTRA_EXCEPTION_INFO 1 +#define CONFIG_ARCH_HAS_THREAD_LOCAL_STORAGE 1 +#define CONFIG_ARCH_HAS_SUSPEND_TO_RAM 1 +#define CONFIG_ARCH_HAS_THREAD_ABORT 1 +#define CONFIG_ARCH_HAS_CODE_DATA_RELOCATION 1 +#define CONFIG_CPU_HAS_FPU 1 +#define CONFIG_CPU_HAS_MPU 1 +#define CONFIG_MPU 1 +#define CONFIG_MPU_REQUIRES_POWER_OF_TWO_ALIGNMENT 1 +#define CONFIG_SRAM_REGION_PERMISSIONS 1 +#define CONFIG_TOOLCHAIN_HAS_BUILTIN_FFS 1 +#define CONFIG_ARCH_HAS_CUSTOM_SWAP_TO_MAIN 1 +#define CONFIG_MULTITHREADING 1 +#define CONFIG_NUM_COOP_PRIORITIES 16 +#define CONFIG_NUM_PREEMPT_PRIORITIES 15 +#define CONFIG_MAIN_THREAD_PRIORITY 0 +#define CONFIG_COOP_ENABLED 1 +#define CONFIG_PREEMPT_ENABLED 1 +#define CONFIG_PRIORITY_CEILING -127 +#define CONFIG_THREAD_STACK_INFO 1 +#define CONFIG_SCHED_SIMPLE 1 +#define CONFIG_WAITQ_SIMPLE 1 +#define CONFIG_LIBC_ERRNO 1 +#define CONFIG_ERRNO 1 +#define CONFIG_CURRENT_THREAD_USE_TLS 1 +#define CONFIG_BOOT_DELAY 0 +#define CONFIG_BARRIER_OPERATIONS_ARCH 1 +#define CONFIG_ATOMIC_OPERATIONS_BUILTIN 1 +#define CONFIG_TIMESLICING 1 +#define CONFIG_TIMESLICE_PRIORITY 0 +#define CONFIG_MEM_SLAB_POINTER_VALIDATE 1 +#define CONFIG_NUM_MBOX_ASYNC_MSGS 10 +#define CONFIG_KERNEL_MEM_POOL 1 +#define CONFIG_SWAP_NONATOMIC 1 +#define CONFIG_TIMEOUT_64BIT 1 +#define CONFIG_SYS_CLOCK_MAX_TIMEOUT_DAYS 365 +#define CONFIG_ARCH_MEM_DOMAIN_SUPPORTS_ISOLATED_STACKS 1 +#define CONFIG_MEM_DOMAIN_ISOLATED_STACKS 1 +#define CONFIG_TOOLCHAIN_SUPPORTS_THREAD_LOCAL_STORAGE 1 +#define CONFIG_THREAD_LOCAL_STORAGE 1 +#define CONFIG_TOOLCHAIN_SUPPORTS_STATIC_INIT_GNU 1 +#define CONFIG_KERNEL_INIT_PRIORITY_OBJECTS 30 +#define CONFIG_KERNEL_INIT_PRIORITY_LIBC 35 +#define CONFIG_KERNEL_INIT_PRIORITY_DEFAULT 40 +#define CONFIG_KERNEL_INIT_PRIORITY_DEVICE 50 +#define CONFIG_APPLICATION_INIT_PRIORITY 90 +#define CONFIG_ADC 1 +#define CONFIG_ADC_CONFIGURABLE_INPUTS 1 +#define CONFIG_ADC_NRFX_SAADC 1 +#define CONFIG_CLOCK_CONTROL_NRF 1 +#define CONFIG_CLOCK_CONTROL_NRF_K32SRC_XTAL 1 +#define CONFIG_CLOCK_CONTROL_NRF_K32SRC_50PPM 1 +#define CONFIG_CLOCK_CONTROL_NRF_ACCURACY 50 +#define CONFIG_CONSOLE_INPUT_MAX_LINE_LEN 128 +#define CONFIG_CONSOLE_HAS_DRIVER 1 +#define CONFIG_CONSOLE_INIT_PRIORITY 60 +#define CONFIG_UART_CONSOLE 1 +#define CONFIG_WINSTREAM_CONSOLE_STATIC 1 +#define CONFIG_WINSTREAM_CONSOLE_STATIC_SIZE 32768 +#define CONFIG_GPIO_NRFX 1 +#define CONFIG_GPIO_NRFX_INTERRUPT 1 +#define CONFIG_HWINFO 1 +#define CONFIG_HWINFO_HAS_DRIVER 1 +#define CONFIG_HWINFO_NRF 1 +#define CONFIG_INTC_INIT_PRIORITY 40 +#define CONFIG_PINCTRL 1 +#define CONFIG_PINCTRL_STORE_REG 1 +#define CONFIG_PINCTRL_NRF 1 +#define CONFIG_SENSOR_INIT_PRIORITY 90 +#define CONFIG_ADXL345_TRIGGER_NONE 1 +#define CONFIG_SENSOR_DS3231_INIT_PRIORITY 86 +#define CONFIG_TEMP_NRF5 1 +#define CONFIG_SERIAL_HAS_DRIVER 1 +#define CONFIG_SERIAL_SUPPORT_INTERRUPT 1 +#define CONFIG_UART_LINE_CTRL 1 +#define CONFIG_SYSTEM_CLOCK_INIT_PRIORITY 0 +#define CONFIG_TICKLESS_CAPABLE 1 +#define CONFIG_SYSTEM_TIMER_HAS_DISABLE_SUPPORT 1 +#define CONFIG_SYSTEM_CLOCK_WAIT_FOR_STABILITY 1 +#define CONFIG_USB_DEVICE_DRIVER 1 +#define CONFIG_USB_DEVICE_REMOTE_WAKEUP 1 +#define CONFIG_USB_NRFX 1 +#define CONFIG_USB_NRFX_EVT_QUEUE_SIZE 32 +#define CONFIG_USB_NRFX_WORK_QUEUE_STACK_SIZE 1024 +#define CONFIG_USB_NRFX_ATTACHED_EVENT_DELAY 0 +#define CONFIG_NRF_USBD_COMMON 1 +#define CONFIG_NRF_USBD_ISO_IN_ZLP 1 +#define CONFIG_FULL_LIBC_SUPPORTED 1 +#define CONFIG_MINIMAL_LIBC_SUPPORTED 1 +#define CONFIG_NEWLIB_LIBC_SUPPORTED 1 +#define CONFIG_PICOLIBC_SUPPORTED 1 +#define CONFIG_PICOLIBC 1 +#define CONFIG_HAS_NEWLIB_LIBC_NANO 1 +#define CONFIG_COMMON_LIBC_ABORT 1 +#define CONFIG_COMMON_LIBC_MALLOC 1 +#define CONFIG_COMMON_LIBC_CALLOC 1 +#define CONFIG_COMMON_LIBC_REALLOCARRAY 1 +#define CONFIG_PICOLIBC_USE_TOOLCHAIN 1 +#define CONFIG_PICOLIBC_IO_LONG_LONG 1 +#define CONFIG_STDOUT_CONSOLE 1 +#define CONFIG_NEED_LIBC_MEM_PARTITION 1 +#define CONFIG_SYS_HEAP_ALLOC_LOOPS 3 +#define CONFIG_SYS_HEAP_AUTO 1 +#define CONFIG_ZVFS_OPEN_MAX 4 +#define CONFIG_HAS_POWEROFF 1 +#define CONFIG_CBPRINTF_COMPLETE 1 +#define CONFIG_CBPRINTF_FULL_INTEGRAL 1 +#define CONFIG_CBPRINTF_CONVERT_CHECK_PTR 1 +#define CONFIG_POSIX_AEP_CHOICE_NONE 1 +#define CONFIG_POSIX_OPEN_MAX 4 +#define CONFIG_POSIX_PAGE_SIZE 0x40 +#define CONFIG_EVENTFD_MAX 0 +#define CONFIG_MAX_PTHREAD_COUNT 0 +#define CONFIG_MAX_PTHREAD_KEY_COUNT 0 +#define CONFIG_MAX_TIMER_COUNT 0 +#define CONFIG_MSG_COUNT_MAX 0 +#define CONFIG_POSIX_LIMITS_RTSIG_MAX 0 +#define CONFIG_POSIX_MAX_FDS 4 +#define CONFIG_POSIX_MAX_OPEN_FILES 4 +#define CONFIG_TIMER_DELAYTIMER_MAX 0 +#define CONFIG_SEM_NAMELEN_MAX 0 +#define CONFIG_SEM_VALUE_MAX 0 +#define CONFIG_TC_PROVIDES_POSIX_C_LANG_SUPPORT_R 1 +#define CONFIG_LIBGCC_RTLIB 1 +#define CONFIG_RING_BUFFER 1 +#define CONFIG_NOTIFY 1 +#define CONFIG_ONOFF 1 +#define CONFIG_DEBUG 1 +#define CONFIG_PRINTK 1 +#define CONFIG_EARLY_CONSOLE 1 +#define CONFIG_ASSERT_LEVEL 2 +#define CONFIG_SPIN_VALIDATE 1 +#define CONFIG_ASSERT_VERBOSE 1 +#define CONFIG_LLEXT_EDK_NAME "llext-edk" +#define CONFIG_MEM_ATTR 1 +#define CONFIG_TIMER_RANDOM_INITIAL_STATE 123456789 +#define CONFIG_CSPRNG_AVAILABLE 1 +#define CONFIG_USB_DEVICE_STACK 1 +#define CONFIG_USB_DEVICE_VID 0x2FE3 +#define CONFIG_USB_DEVICE_PID 0x0004 +#define CONFIG_USB_DEVICE_MANUFACTURER "ZEPHYR" +#define CONFIG_USB_DEVICE_PRODUCT "Zephyr USB console sample" +#define CONFIG_USB_DEVICE_SN "0123456789ABCDEF" +#define CONFIG_USB_COMPOSITE_DEVICE 1 +#define CONFIG_USB_MAX_NUM_TRANSFERS 4 +#define CONFIG_USB_REQUEST_BUFFER_SIZE 128 +#define CONFIG_USB_MAX_ALT_SETTING 8 +#define CONFIG_USB_NUMOF_EP_WRITE_RETRIES 3 +#define CONFIG_USB_SELF_POWERED 1 +#define CONFIG_USB_MAX_POWER 50 +#define CONFIG_USB_WORKQUEUE 1 +#define CONFIG_USB_WORKQUEUE_STACK_SIZE 1024 +#define CONFIG_USB_WORKQUEUE_PRIORITY -1 +#define CONFIG_USB_CDC_ACM 1 +#define CONFIG_USB_CDC_ACM_RINGBUF_SIZE 1024 +#define CONFIG_CDC_ACM_INTERRUPT_EP_MPS 16 +#define CONFIG_CDC_ACM_BULK_EP_MPS 64 +#define CONFIG_CDC_ACM_TX_DELAY_MS 100 +#define CONFIG_CDC_ACM_IAD 1 +#define CONFIG_TOOLCHAIN_ZEPHYR_0_17 1 +#define CONFIG_TOOLCHAIN_ZEPHYR_SUPPORTS_THREAD_LOCAL_STORAGE 1 +#define CONFIG_TOOLCHAIN_ZEPHYR_SUPPORTS_GNU_EXTENSIONS 1 +#define CONFIG_LINKER_ORPHAN_SECTION_WARN 1 +#define CONFIG_FLASH_LOAD_SIZE 0x0 +#define CONFIG_ROM_END_OFFSET 0x0 +#define CONFIG_LD_LINKER_SCRIPT_SUPPORTED 1 +#define CONFIG_LD_LINKER_TEMPLATE 1 +#define CONFIG_LINKER_SORT_BY_ALIGNMENT 1 +#define CONFIG_LINKER_GENERIC_SECTIONS_PRESENT_AT_BOOT 1 +#define CONFIG_LINKER_LAST_SECTION_ID 1 +#define CONFIG_LINKER_LAST_SECTION_ID_PATTERN 0xE015E015 +#define CONFIG_LINKER_USE_RELAX 1 +#define CONFIG_LINKER_ITERABLE_SUBALIGN 4 +#define CONFIG_LINKER_DEVNULL_SUPPORT 1 +#define CONFIG_STD_C99 1 +#define CONFIG_TOOLCHAIN_SUPPORTS_GNU_EXTENSIONS 1 +#define CONFIG_SPEED_OPTIMIZATIONS 1 +#define CONFIG_COMPILER_TRACK_MACRO_EXPANSION 1 +#define CONFIG_COMPILER_COLOR_DIAGNOSTICS 1 +#define CONFIG_FORTIFY_SOURCE_COMPILE_TIME 1 +#define CONFIG_COMPILER_OPT "" +#define CONFIG_RUNTIME_ERROR_CHECKS 1 +#define CONFIG_KERNEL_BIN_NAME "zephyr" +#define CONFIG_OUTPUT_STAT 1 +#define CONFIG_OUTPUT_PRINT_MEMORY_USAGE 1 +#define CONFIG_BUILD_GAP_FILL_PATTERN 0xFF +#define CONFIG_BUILD_OUTPUT_STRIP_PATHS 1 +#define CONFIG_CHECK_INIT_PRIORITIES 1 +#define CONFIG_DEPRECATED 1 +#define CONFIG_WARN_DEPRECATED 1 +#define CONFIG_ENFORCE_ZEPHYR_STDINT 1 +#define CONFIG_LEGACY_GENERATED_INCLUDE_PATH 1 diff --git a/build/PHF000-Firmware/zephyr/include/generated/zephyr/devicetree_generated.h b/build/PHF000-Firmware/zephyr/include/generated/zephyr/devicetree_generated.h new file mode 100644 index 0000000..1fe37b9 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/include/generated/zephyr/devicetree_generated.h @@ -0,0 +1,11154 @@ +/* + * Generated by gen_defines.py + * + * DTS input file: + * /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/zephyr.dts.pre + * + * Directories with bindings: + * /home/miguel/ncs/v3.0.2/nrf/dts/bindings, $ZEPHYR_BASE/dts/bindings + * + * Node dependency ordering (ordinal and path): + * 0 / + * 1 /aliases + * 2 /chosen + * 3 /entropy_bt_hci + * 4 /pin-controller + * 5 /reserved-memory + * 6 /soc + * 7 /soc/interrupt-controller@e000e100 + * 8 /soc/timer@40009000 + * 9 /sw-pwm + * 10 /soc/adc@40007000 + * 11 /soc/gpiote@40006000 + * 12 /soc/gpio@50000000 + * 13 /zephyr,user + * 14 /buttons + * 15 /buttons/button_0 + * 16 /cpus + * 17 /cpus/cpu@0 + * 18 /cpus/cpu@0/itm@e0000000 + * 19 /soc/gpio@50000300 + * 20 /leds + * 21 /leds/led_0 + * 22 /leds/led_1 + * 23 /soc/acl@4001e000 + * 24 /soc/ccm@4000f000 + * 25 /soc/clock@40000000 + * 26 /soc/comparator@40013000 + * 27 /soc/ecb@4000e000 + * 28 /soc/egu@40014000 + * 29 /soc/egu@40015000 + * 30 /soc/egu@40016000 + * 31 /soc/egu@40017000 + * 32 /soc/egu@40018000 + * 33 /soc/egu@40019000 + * 34 /soc/ficr@10000000 + * 35 /soc/i2c@40003000 + * 36 /soc/i2c@40004000 + * 37 /soc/i2s@40025000 + * 38 /soc/memory@20000000 + * 39 /soc/mwu@40020000 + * 40 /soc/nfct@40005000 + * 41 /soc/pdm@4001d000 + * 42 /soc/ppi@4001f000 + * 43 /soc/pwm@4001c000 + * 44 /soc/pwm@40021000 + * 45 /soc/pwm@40022000 + * 46 /soc/pwm@4002d000 + * 47 /soc/qdec@40012000 + * 48 /soc/random@4000d000 + * 49 /soc/rtc@4000b000 + * 50 /soc/rtc@40011000 + * 51 /soc/rtc@40024000 + * 52 /soc/spi@40003000 + * 53 /soc/spi@40004000 + * 54 /soc/spi@40023000 + * 55 /soc/spi@4002f000 + * 56 /soc/temp@4000c000 + * 57 /soc/timer@40008000 + * 58 /soc/timer@4000a000 + * 59 /soc/timer@4001a000 + * 60 /soc/timer@4001b000 + * 61 /soc/timer@e000e010 + * 62 /soc/uart@40002000 + * 63 /soc/uart@40028000 + * 64 /soc/uicr@10001000 + * 65 /soc/watchdog@40010000 + * 66 /soc/adc@40007000/channel@6 + * 67 /soc/flash-controller@4001e000 + * 68 /soc/flash-controller@4001e000/flash@0 + * 69 /soc/flash-controller@4001e000/flash@0/partitions + * 70 /soc/flash-controller@4001e000/flash@0/partitions/partition@0 + * 71 /soc/flash-controller@4001e000/flash@0/partitions/partition@c000 + * 72 /soc/flash-controller@4001e000/flash@0/partitions/partition@43000 + * 73 /soc/flash-controller@4001e000/flash@0/partitions/partition@7a000 + * 74 /soc/power@40000000 + * 75 /soc/power@40000000/gpregret1@4000051c + * 76 /soc/power@40000000/gpregret2@40000520 + * 77 /soc/power@40000000/regulator@40000578 + * 78 /soc/power@40000000/regulator@40000580 + * 79 /soc/radio@40001000 + * 80 /soc/radio@40001000/bt_hci_controller + * 81 /soc/radio@40001000/bt_hci_sdc + * 82 /soc/radio@40001000/ieee802154 + * 83 /soc/usbd@40027000 + * 84 /soc/usbd@40027000/cdc_acm_uart0 + * + * Definitions derived from these nodes in dependency order are next, + * followed by /chosen nodes. + */ + +/* Used to remove brackets from around a single argument */ +#define DT_DEBRACKET_INTERNAL(...) __VA_ARGS__ + +/* + * Devicetree node: / + * + * Node identifier: DT_N + */ + +/* Node's full path: */ +#define DT_N_PATH "/" + +/* Node's name with unit-address: */ +#define DT_N_FULL_NAME "/" +#define DT_N_FULL_NAME_UNQUOTED / +#define DT_N_FULL_NAME_TOKEN _ +#define DT_N_FULL_NAME_UPPER_TOKEN _ + +/* Helpers for dealing with node labels: */ +#define DT_N_NODELABEL_NUM 0 +#define DT_N_FOREACH_NODELABEL(fn) +#define DT_N_FOREACH_NODELABEL_VARGS(fn, ...) +#define DT_N_FOREACH_ANCESTOR(fn) + +/* Helper macros for child nodes of this node. */ +#define DT_N_CHILD_NUM 11 +#define DT_N_CHILD_NUM_STATUS_OKAY 10 +#define DT_N_FOREACH_CHILD(fn) fn(DT_N_S_chosen) fn(DT_N_S_aliases) fn(DT_N_S_soc) fn(DT_N_S_pin_controller) fn(DT_N_S_entropy_bt_hci) fn(DT_N_S_sw_pwm) fn(DT_N_S_cpus) fn(DT_N_S_leds) fn(DT_N_S_buttons) fn(DT_N_S_zephyr_user) fn(DT_N_S_reserved_memory) +#define DT_N_FOREACH_CHILD_SEP(fn, sep) fn(DT_N_S_chosen) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_aliases) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_pin_controller) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_entropy_bt_hci) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_sw_pwm) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_cpus) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_leds) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_buttons) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_zephyr_user) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_reserved_memory) +#define DT_N_FOREACH_CHILD_VARGS(fn, ...) fn(DT_N_S_chosen, __VA_ARGS__) fn(DT_N_S_aliases, __VA_ARGS__) fn(DT_N_S_soc, __VA_ARGS__) fn(DT_N_S_pin_controller, __VA_ARGS__) fn(DT_N_S_entropy_bt_hci, __VA_ARGS__) fn(DT_N_S_sw_pwm, __VA_ARGS__) fn(DT_N_S_cpus, __VA_ARGS__) fn(DT_N_S_leds, __VA_ARGS__) fn(DT_N_S_buttons, __VA_ARGS__) fn(DT_N_S_zephyr_user, __VA_ARGS__) fn(DT_N_S_reserved_memory, __VA_ARGS__) +#define DT_N_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) fn(DT_N_S_chosen, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_aliases, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_pin_controller, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_entropy_bt_hci, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_sw_pwm, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_cpus, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_leds, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_buttons, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_zephyr_user, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_reserved_memory, __VA_ARGS__) +#define DT_N_FOREACH_CHILD_STATUS_OKAY(fn) fn(DT_N_S_chosen) fn(DT_N_S_aliases) fn(DT_N_S_soc) fn(DT_N_S_pin_controller) fn(DT_N_S_entropy_bt_hci) fn(DT_N_S_cpus) fn(DT_N_S_leds) fn(DT_N_S_buttons) fn(DT_N_S_zephyr_user) fn(DT_N_S_reserved_memory) +#define DT_N_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) fn(DT_N_S_chosen) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_aliases) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_pin_controller) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_entropy_bt_hci) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_cpus) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_leds) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_buttons) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_zephyr_user) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_reserved_memory) +#define DT_N_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) fn(DT_N_S_chosen, __VA_ARGS__) fn(DT_N_S_aliases, __VA_ARGS__) fn(DT_N_S_soc, __VA_ARGS__) fn(DT_N_S_pin_controller, __VA_ARGS__) fn(DT_N_S_entropy_bt_hci, __VA_ARGS__) fn(DT_N_S_cpus, __VA_ARGS__) fn(DT_N_S_leds, __VA_ARGS__) fn(DT_N_S_buttons, __VA_ARGS__) fn(DT_N_S_zephyr_user, __VA_ARGS__) fn(DT_N_S_reserved_memory, __VA_ARGS__) +#define DT_N_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) fn(DT_N_S_chosen, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_aliases, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_pin_controller, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_entropy_bt_hci, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_cpus, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_leds, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_buttons, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_zephyr_user, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_reserved_memory, __VA_ARGS__) + +/* Node's dependency ordinal: */ +#define DT_N_ORD 0 +#define DT_N_ORD_STR_SORTABLE 00000 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_REQUIRES_ORDS /* nothing */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_SUPPORTS_ORDS \ + 1, /* /aliases */ \ + 2, /* /chosen */ \ + 3, /* /entropy_bt_hci */ \ + 4, /* /pin-controller */ \ + 5, /* /reserved-memory */ \ + 6, /* /soc */ \ + 9, /* /sw-pwm */ \ + 13, /* /zephyr,user */ \ + 14, /* /buttons */ \ + 16, /* /cpus */ \ + 20, /* /leds */ + +/* Existence and alternate IDs: */ +#define DT_N_EXISTS 1 +#define DT_N_INST_0_arm_phf000_board DT_N + +/* Macros for properties that are special in the specification: */ +#define DT_N_REG_NUM 0 +#define DT_N_RANGES_NUM 0 +#define DT_N_FOREACH_RANGE(fn) +#define DT_N_IRQ_NUM 0 +#define DT_N_IRQ_LEVEL 0 +#define DT_N_COMPAT_MATCHES_arm_phf000_board 1 +#define DT_N_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_COMPAT_VENDOR_IDX_0 "ARM Ltd." +#define DT_N_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_COMPAT_MODEL_IDX_0 "phf000_board" +#define DT_N_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_P_compatible {"arm,phf000_board"} +#define DT_N_P_compatible_IDX_0_EXISTS 1 +#define DT_N_P_compatible_IDX_0 "arm,phf000_board" +#define DT_N_P_compatible_IDX_0_STRING_UNQUOTED arm,phf000_board +#define DT_N_P_compatible_IDX_0_STRING_TOKEN arm_phf000_board +#define DT_N_P_compatible_IDX_0_STRING_UPPER_TOKEN ARM_PHF000_BOARD +#define DT_N_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N, compatible, 0) +#define DT_N_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N, compatible, 0) +#define DT_N_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N, compatible, 0, __VA_ARGS__) +#define DT_N_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N, compatible, 0, __VA_ARGS__) +#define DT_N_P_compatible_LEN 1 +#define DT_N_P_compatible_EXISTS 1 + +/* + * Devicetree node: /aliases + * + * Node identifier: DT_N_S_aliases + */ + +/* Node's full path: */ +#define DT_N_S_aliases_PATH "/aliases" + +/* Node's name with unit-address: */ +#define DT_N_S_aliases_FULL_NAME "aliases" +#define DT_N_S_aliases_FULL_NAME_UNQUOTED aliases +#define DT_N_S_aliases_FULL_NAME_TOKEN aliases +#define DT_N_S_aliases_FULL_NAME_UPPER_TOKEN ALIASES + +/* Node parent (/) identifier: */ +#define DT_N_S_aliases_PARENT DT_N + +/* Node's index in its parent's list of children: */ +#define DT_N_S_aliases_CHILD_IDX 1 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_aliases_NODELABEL_NUM 0 +#define DT_N_S_aliases_FOREACH_NODELABEL(fn) +#define DT_N_S_aliases_FOREACH_NODELABEL_VARGS(fn, ...) +#define DT_N_S_aliases_FOREACH_ANCESTOR(fn) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_aliases_CHILD_NUM 0 +#define DT_N_S_aliases_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_aliases_FOREACH_CHILD(fn) +#define DT_N_S_aliases_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_aliases_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_aliases_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_aliases_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_aliases_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_aliases_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_aliases_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's dependency ordinal: */ +#define DT_N_S_aliases_ORD 1 +#define DT_N_S_aliases_ORD_STR_SORTABLE 00001 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_aliases_REQUIRES_ORDS \ + 0, /* / */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_aliases_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_aliases_EXISTS 1 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_aliases_REG_NUM 0 +#define DT_N_S_aliases_RANGES_NUM 0 +#define DT_N_S_aliases_FOREACH_RANGE(fn) +#define DT_N_S_aliases_IRQ_NUM 0 +#define DT_N_S_aliases_IRQ_LEVEL 0 +#define DT_N_S_aliases_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_aliases_PINCTRL_NUM 0 + +/* (No generic property macros) */ + +/* + * Devicetree node: /chosen + * + * Node identifier: DT_N_S_chosen + */ + +/* Node's full path: */ +#define DT_N_S_chosen_PATH "/chosen" + +/* Node's name with unit-address: */ +#define DT_N_S_chosen_FULL_NAME "chosen" +#define DT_N_S_chosen_FULL_NAME_UNQUOTED chosen +#define DT_N_S_chosen_FULL_NAME_TOKEN chosen +#define DT_N_S_chosen_FULL_NAME_UPPER_TOKEN CHOSEN + +/* Node parent (/) identifier: */ +#define DT_N_S_chosen_PARENT DT_N + +/* Node's index in its parent's list of children: */ +#define DT_N_S_chosen_CHILD_IDX 0 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_chosen_NODELABEL_NUM 0 +#define DT_N_S_chosen_FOREACH_NODELABEL(fn) +#define DT_N_S_chosen_FOREACH_NODELABEL_VARGS(fn, ...) +#define DT_N_S_chosen_FOREACH_ANCESTOR(fn) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_chosen_CHILD_NUM 0 +#define DT_N_S_chosen_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_chosen_FOREACH_CHILD(fn) +#define DT_N_S_chosen_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_chosen_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_chosen_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_chosen_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_chosen_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_chosen_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_chosen_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's dependency ordinal: */ +#define DT_N_S_chosen_ORD 2 +#define DT_N_S_chosen_ORD_STR_SORTABLE 00002 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_chosen_REQUIRES_ORDS \ + 0, /* / */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_chosen_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_chosen_EXISTS 1 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_chosen_REG_NUM 0 +#define DT_N_S_chosen_RANGES_NUM 0 +#define DT_N_S_chosen_FOREACH_RANGE(fn) +#define DT_N_S_chosen_IRQ_NUM 0 +#define DT_N_S_chosen_IRQ_LEVEL 0 +#define DT_N_S_chosen_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_chosen_PINCTRL_NUM 0 + +/* (No generic property macros) */ + +/* + * Devicetree node: /entropy_bt_hci + * + * Node identifier: DT_N_S_entropy_bt_hci + * + * Binding (compatible = zephyr,bt-hci-entropy): + * $ZEPHYR_BASE/dts/bindings/bluetooth/zephyr,bt-hci-entropy.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_entropy_bt_hci_PATH "/entropy_bt_hci" + +/* Node's name with unit-address: */ +#define DT_N_S_entropy_bt_hci_FULL_NAME "entropy_bt_hci" +#define DT_N_S_entropy_bt_hci_FULL_NAME_UNQUOTED entropy_bt_hci +#define DT_N_S_entropy_bt_hci_FULL_NAME_TOKEN entropy_bt_hci +#define DT_N_S_entropy_bt_hci_FULL_NAME_UPPER_TOKEN ENTROPY_BT_HCI + +/* Node parent (/) identifier: */ +#define DT_N_S_entropy_bt_hci_PARENT DT_N + +/* Node's index in its parent's list of children: */ +#define DT_N_S_entropy_bt_hci_CHILD_IDX 4 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_entropy_bt_hci_NODELABEL_NUM 1 +#define DT_N_S_entropy_bt_hci_FOREACH_NODELABEL(fn) fn(rng_hci) +#define DT_N_S_entropy_bt_hci_FOREACH_NODELABEL_VARGS(fn, ...) fn(rng_hci, __VA_ARGS__) +#define DT_N_S_entropy_bt_hci_FOREACH_ANCESTOR(fn) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_entropy_bt_hci_CHILD_NUM 0 +#define DT_N_S_entropy_bt_hci_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_entropy_bt_hci_FOREACH_CHILD(fn) +#define DT_N_S_entropy_bt_hci_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_entropy_bt_hci_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_entropy_bt_hci_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_entropy_bt_hci_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_entropy_bt_hci_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_entropy_bt_hci_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_entropy_bt_hci_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's dependency ordinal: */ +#define DT_N_S_entropy_bt_hci_ORD 3 +#define DT_N_S_entropy_bt_hci_ORD_STR_SORTABLE 00003 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_entropy_bt_hci_REQUIRES_ORDS \ + 0, /* / */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_entropy_bt_hci_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_entropy_bt_hci_EXISTS 1 +#define DT_N_INST_0_zephyr_bt_hci_entropy DT_N_S_entropy_bt_hci +#define DT_N_NODELABEL_rng_hci DT_N_S_entropy_bt_hci + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_entropy_bt_hci_REG_NUM 0 +#define DT_N_S_entropy_bt_hci_RANGES_NUM 0 +#define DT_N_S_entropy_bt_hci_FOREACH_RANGE(fn) +#define DT_N_S_entropy_bt_hci_IRQ_NUM 0 +#define DT_N_S_entropy_bt_hci_IRQ_LEVEL 0 +#define DT_N_S_entropy_bt_hci_COMPAT_MATCHES_zephyr_bt_hci_entropy 1 +#define DT_N_S_entropy_bt_hci_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_entropy_bt_hci_COMPAT_VENDOR_IDX_0 "Zephyr-specific binding" +#define DT_N_S_entropy_bt_hci_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_entropy_bt_hci_COMPAT_MODEL_IDX_0 "bt-hci-entropy" +#define DT_N_S_entropy_bt_hci_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_entropy_bt_hci_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_entropy_bt_hci_P_status "okay" +#define DT_N_S_entropy_bt_hci_P_status_STRING_UNQUOTED okay +#define DT_N_S_entropy_bt_hci_P_status_STRING_TOKEN okay +#define DT_N_S_entropy_bt_hci_P_status_STRING_UPPER_TOKEN OKAY +#define DT_N_S_entropy_bt_hci_P_status_IDX_0 "okay" +#define DT_N_S_entropy_bt_hci_P_status_IDX_0_EXISTS 1 +#define DT_N_S_entropy_bt_hci_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_entropy_bt_hci_P_status_IDX_0_ENUM_VAL_okay_EXISTS 1 +#define DT_N_S_entropy_bt_hci_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_entropy_bt_hci, status, 0) +#define DT_N_S_entropy_bt_hci_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_entropy_bt_hci, status, 0) +#define DT_N_S_entropy_bt_hci_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_entropy_bt_hci, status, 0, __VA_ARGS__) +#define DT_N_S_entropy_bt_hci_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_entropy_bt_hci, status, 0, __VA_ARGS__) +#define DT_N_S_entropy_bt_hci_P_status_LEN 1 +#define DT_N_S_entropy_bt_hci_P_status_EXISTS 1 +#define DT_N_S_entropy_bt_hci_P_compatible {"zephyr,bt-hci-entropy"} +#define DT_N_S_entropy_bt_hci_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_entropy_bt_hci_P_compatible_IDX_0 "zephyr,bt-hci-entropy" +#define DT_N_S_entropy_bt_hci_P_compatible_IDX_0_STRING_UNQUOTED zephyr,bt-hci-entropy +#define DT_N_S_entropy_bt_hci_P_compatible_IDX_0_STRING_TOKEN zephyr_bt_hci_entropy +#define DT_N_S_entropy_bt_hci_P_compatible_IDX_0_STRING_UPPER_TOKEN ZEPHYR_BT_HCI_ENTROPY +#define DT_N_S_entropy_bt_hci_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_entropy_bt_hci, compatible, 0) +#define DT_N_S_entropy_bt_hci_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_entropy_bt_hci, compatible, 0) +#define DT_N_S_entropy_bt_hci_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_entropy_bt_hci, compatible, 0, __VA_ARGS__) +#define DT_N_S_entropy_bt_hci_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_entropy_bt_hci, compatible, 0, __VA_ARGS__) +#define DT_N_S_entropy_bt_hci_P_compatible_LEN 1 +#define DT_N_S_entropy_bt_hci_P_compatible_EXISTS 1 +#define DT_N_S_entropy_bt_hci_P_zephyr_deferred_init 0 +#define DT_N_S_entropy_bt_hci_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_entropy_bt_hci_P_wakeup_source 0 +#define DT_N_S_entropy_bt_hci_P_wakeup_source_EXISTS 1 +#define DT_N_S_entropy_bt_hci_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_entropy_bt_hci_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /pin-controller + * + * Node identifier: DT_N_S_pin_controller + * + * Binding (compatible = nordic,nrf-pinctrl): + * $ZEPHYR_BASE/dts/bindings/pinctrl/nordic,nrf-pinctrl.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_pin_controller_PATH "/pin-controller" + +/* Node's name with unit-address: */ +#define DT_N_S_pin_controller_FULL_NAME "pin-controller" +#define DT_N_S_pin_controller_FULL_NAME_UNQUOTED pin-controller +#define DT_N_S_pin_controller_FULL_NAME_TOKEN pin_controller +#define DT_N_S_pin_controller_FULL_NAME_UPPER_TOKEN PIN_CONTROLLER + +/* Node parent (/) identifier: */ +#define DT_N_S_pin_controller_PARENT DT_N + +/* Node's index in its parent's list of children: */ +#define DT_N_S_pin_controller_CHILD_IDX 3 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_pin_controller_NODELABEL_NUM 1 +#define DT_N_S_pin_controller_FOREACH_NODELABEL(fn) fn(pinctrl) +#define DT_N_S_pin_controller_FOREACH_NODELABEL_VARGS(fn, ...) fn(pinctrl, __VA_ARGS__) +#define DT_N_S_pin_controller_FOREACH_ANCESTOR(fn) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_pin_controller_CHILD_NUM 0 +#define DT_N_S_pin_controller_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_pin_controller_FOREACH_CHILD(fn) +#define DT_N_S_pin_controller_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_pin_controller_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_pin_controller_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_pin_controller_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_pin_controller_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_pin_controller_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_pin_controller_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's dependency ordinal: */ +#define DT_N_S_pin_controller_ORD 4 +#define DT_N_S_pin_controller_ORD_STR_SORTABLE 00004 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_pin_controller_REQUIRES_ORDS \ + 0, /* / */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_pin_controller_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_pin_controller_EXISTS 1 +#define DT_N_INST_0_nordic_nrf_pinctrl DT_N_S_pin_controller +#define DT_N_NODELABEL_pinctrl DT_N_S_pin_controller + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_pin_controller_REG_NUM 0 +#define DT_N_S_pin_controller_RANGES_NUM 0 +#define DT_N_S_pin_controller_FOREACH_RANGE(fn) +#define DT_N_S_pin_controller_IRQ_NUM 0 +#define DT_N_S_pin_controller_IRQ_LEVEL 0 +#define DT_N_S_pin_controller_COMPAT_MATCHES_nordic_nrf_pinctrl 1 +#define DT_N_S_pin_controller_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_pin_controller_COMPAT_VENDOR_IDX_0 "Nordic Semiconductor" +#define DT_N_S_pin_controller_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_pin_controller_COMPAT_MODEL_IDX_0 "nrf-pinctrl" +#define DT_N_S_pin_controller_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_pin_controller_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_pin_controller_P_compatible {"nordic,nrf-pinctrl"} +#define DT_N_S_pin_controller_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_pin_controller_P_compatible_IDX_0 "nordic,nrf-pinctrl" +#define DT_N_S_pin_controller_P_compatible_IDX_0_STRING_UNQUOTED nordic,nrf-pinctrl +#define DT_N_S_pin_controller_P_compatible_IDX_0_STRING_TOKEN nordic_nrf_pinctrl +#define DT_N_S_pin_controller_P_compatible_IDX_0_STRING_UPPER_TOKEN NORDIC_NRF_PINCTRL +#define DT_N_S_pin_controller_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_pin_controller, compatible, 0) +#define DT_N_S_pin_controller_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_pin_controller, compatible, 0) +#define DT_N_S_pin_controller_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_pin_controller, compatible, 0, __VA_ARGS__) +#define DT_N_S_pin_controller_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_pin_controller, compatible, 0, __VA_ARGS__) +#define DT_N_S_pin_controller_P_compatible_LEN 1 +#define DT_N_S_pin_controller_P_compatible_EXISTS 1 +#define DT_N_S_pin_controller_P_zephyr_deferred_init 0 +#define DT_N_S_pin_controller_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_pin_controller_P_wakeup_source 0 +#define DT_N_S_pin_controller_P_wakeup_source_EXISTS 1 +#define DT_N_S_pin_controller_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_pin_controller_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /reserved-memory + * + * Node identifier: DT_N_S_reserved_memory + */ + +/* Node's full path: */ +#define DT_N_S_reserved_memory_PATH "/reserved-memory" + +/* Node's name with unit-address: */ +#define DT_N_S_reserved_memory_FULL_NAME "reserved-memory" +#define DT_N_S_reserved_memory_FULL_NAME_UNQUOTED reserved-memory +#define DT_N_S_reserved_memory_FULL_NAME_TOKEN reserved_memory +#define DT_N_S_reserved_memory_FULL_NAME_UPPER_TOKEN RESERVED_MEMORY + +/* Node parent (/) identifier: */ +#define DT_N_S_reserved_memory_PARENT DT_N + +/* Node's index in its parent's list of children: */ +#define DT_N_S_reserved_memory_CHILD_IDX 10 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_reserved_memory_NODELABEL_NUM 0 +#define DT_N_S_reserved_memory_FOREACH_NODELABEL(fn) +#define DT_N_S_reserved_memory_FOREACH_NODELABEL_VARGS(fn, ...) +#define DT_N_S_reserved_memory_FOREACH_ANCESTOR(fn) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_reserved_memory_CHILD_NUM 0 +#define DT_N_S_reserved_memory_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_reserved_memory_FOREACH_CHILD(fn) +#define DT_N_S_reserved_memory_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_reserved_memory_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_reserved_memory_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_reserved_memory_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_reserved_memory_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_reserved_memory_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_reserved_memory_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's dependency ordinal: */ +#define DT_N_S_reserved_memory_ORD 5 +#define DT_N_S_reserved_memory_ORD_STR_SORTABLE 00005 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_reserved_memory_REQUIRES_ORDS \ + 0, /* / */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_reserved_memory_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_reserved_memory_EXISTS 1 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_reserved_memory_REG_NUM 0 +#define DT_N_S_reserved_memory_RANGES_NUM 0 +#define DT_N_S_reserved_memory_FOREACH_RANGE(fn) +#define DT_N_S_reserved_memory_IRQ_NUM 0 +#define DT_N_S_reserved_memory_IRQ_LEVEL 0 +#define DT_N_S_reserved_memory_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_reserved_memory_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_reserved_memory_P_ranges_EXISTS 1 + +/* + * Devicetree node: /soc + * + * Node identifier: DT_N_S_soc + */ + +/* Node's full path: */ +#define DT_N_S_soc_PATH "/soc" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_FULL_NAME "soc" +#define DT_N_S_soc_FULL_NAME_UNQUOTED soc +#define DT_N_S_soc_FULL_NAME_TOKEN soc +#define DT_N_S_soc_FULL_NAME_UPPER_TOKEN SOC + +/* Node parent (/) identifier: */ +#define DT_N_S_soc_PARENT DT_N + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_CHILD_IDX 2 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_NODELABEL_NUM 0 +#define DT_N_S_soc_FOREACH_NODELABEL(fn) +#define DT_N_S_soc_FOREACH_NODELABEL_VARGS(fn, ...) +#define DT_N_S_soc_FOREACH_ANCESTOR(fn) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_CHILD_NUM 53 +#define DT_N_S_soc_CHILD_NUM_STATUS_OKAY 27 +#define DT_N_S_soc_FOREACH_CHILD(fn) fn(DT_N_S_soc_S_interrupt_controller_e000e100) fn(DT_N_S_soc_S_timer_e000e010) fn(DT_N_S_soc_S_ficr_10000000) fn(DT_N_S_soc_S_uicr_10001000) fn(DT_N_S_soc_S_memory_20000000) fn(DT_N_S_soc_S_clock_40000000) fn(DT_N_S_soc_S_power_40000000) fn(DT_N_S_soc_S_radio_40001000) fn(DT_N_S_soc_S_uart_40002000) fn(DT_N_S_soc_S_i2c_40003000) fn(DT_N_S_soc_S_spi_40003000) fn(DT_N_S_soc_S_i2c_40004000) fn(DT_N_S_soc_S_spi_40004000) fn(DT_N_S_soc_S_nfct_40005000) fn(DT_N_S_soc_S_gpiote_40006000) fn(DT_N_S_soc_S_adc_40007000) fn(DT_N_S_soc_S_timer_40008000) fn(DT_N_S_soc_S_timer_40009000) fn(DT_N_S_soc_S_timer_4000a000) fn(DT_N_S_soc_S_rtc_4000b000) fn(DT_N_S_soc_S_temp_4000c000) fn(DT_N_S_soc_S_random_4000d000) fn(DT_N_S_soc_S_ecb_4000e000) fn(DT_N_S_soc_S_ccm_4000f000) fn(DT_N_S_soc_S_watchdog_40010000) fn(DT_N_S_soc_S_rtc_40011000) fn(DT_N_S_soc_S_qdec_40012000) fn(DT_N_S_soc_S_comparator_40013000) fn(DT_N_S_soc_S_egu_40014000) fn(DT_N_S_soc_S_egu_40015000) fn(DT_N_S_soc_S_egu_40016000) fn(DT_N_S_soc_S_egu_40017000) fn(DT_N_S_soc_S_egu_40018000) fn(DT_N_S_soc_S_egu_40019000) fn(DT_N_S_soc_S_timer_4001a000) fn(DT_N_S_soc_S_timer_4001b000) fn(DT_N_S_soc_S_pwm_4001c000) fn(DT_N_S_soc_S_pdm_4001d000) fn(DT_N_S_soc_S_acl_4001e000) fn(DT_N_S_soc_S_flash_controller_4001e000) fn(DT_N_S_soc_S_ppi_4001f000) fn(DT_N_S_soc_S_mwu_40020000) fn(DT_N_S_soc_S_pwm_40021000) fn(DT_N_S_soc_S_pwm_40022000) fn(DT_N_S_soc_S_spi_40023000) fn(DT_N_S_soc_S_rtc_40024000) fn(DT_N_S_soc_S_i2s_40025000) fn(DT_N_S_soc_S_usbd_40027000) fn(DT_N_S_soc_S_uart_40028000) fn(DT_N_S_soc_S_pwm_4002d000) fn(DT_N_S_soc_S_spi_4002f000) fn(DT_N_S_soc_S_gpio_50000000) fn(DT_N_S_soc_S_gpio_50000300) +#define DT_N_S_soc_FOREACH_CHILD_SEP(fn, sep) fn(DT_N_S_soc_S_interrupt_controller_e000e100) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_timer_e000e010) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_ficr_10000000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_uicr_10001000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_memory_20000000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_clock_40000000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_power_40000000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_radio_40001000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_uart_40002000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_i2c_40003000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_spi_40003000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_i2c_40004000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_spi_40004000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_nfct_40005000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_gpiote_40006000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_adc_40007000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_timer_40008000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_timer_40009000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_timer_4000a000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_rtc_4000b000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_temp_4000c000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_random_4000d000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_ecb_4000e000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_ccm_4000f000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_watchdog_40010000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_rtc_40011000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_qdec_40012000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_comparator_40013000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_egu_40014000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_egu_40015000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_egu_40016000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_egu_40017000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_egu_40018000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_egu_40019000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_timer_4001a000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_timer_4001b000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_pwm_4001c000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_pdm_4001d000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_acl_4001e000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_flash_controller_4001e000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_ppi_4001f000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_mwu_40020000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_pwm_40021000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_pwm_40022000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_spi_40023000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_rtc_40024000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_i2s_40025000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_usbd_40027000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_uart_40028000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_pwm_4002d000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_spi_4002f000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_gpio_50000000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_gpio_50000300) +#define DT_N_S_soc_FOREACH_CHILD_VARGS(fn, ...) fn(DT_N_S_soc_S_interrupt_controller_e000e100, __VA_ARGS__) fn(DT_N_S_soc_S_timer_e000e010, __VA_ARGS__) fn(DT_N_S_soc_S_ficr_10000000, __VA_ARGS__) fn(DT_N_S_soc_S_uicr_10001000, __VA_ARGS__) fn(DT_N_S_soc_S_memory_20000000, __VA_ARGS__) fn(DT_N_S_soc_S_clock_40000000, __VA_ARGS__) fn(DT_N_S_soc_S_power_40000000, __VA_ARGS__) fn(DT_N_S_soc_S_radio_40001000, __VA_ARGS__) fn(DT_N_S_soc_S_uart_40002000, __VA_ARGS__) fn(DT_N_S_soc_S_i2c_40003000, __VA_ARGS__) fn(DT_N_S_soc_S_spi_40003000, __VA_ARGS__) fn(DT_N_S_soc_S_i2c_40004000, __VA_ARGS__) fn(DT_N_S_soc_S_spi_40004000, __VA_ARGS__) fn(DT_N_S_soc_S_nfct_40005000, __VA_ARGS__) fn(DT_N_S_soc_S_gpiote_40006000, __VA_ARGS__) fn(DT_N_S_soc_S_adc_40007000, __VA_ARGS__) fn(DT_N_S_soc_S_timer_40008000, __VA_ARGS__) fn(DT_N_S_soc_S_timer_40009000, __VA_ARGS__) fn(DT_N_S_soc_S_timer_4000a000, __VA_ARGS__) fn(DT_N_S_soc_S_rtc_4000b000, __VA_ARGS__) fn(DT_N_S_soc_S_temp_4000c000, __VA_ARGS__) fn(DT_N_S_soc_S_random_4000d000, __VA_ARGS__) fn(DT_N_S_soc_S_ecb_4000e000, __VA_ARGS__) fn(DT_N_S_soc_S_ccm_4000f000, __VA_ARGS__) fn(DT_N_S_soc_S_watchdog_40010000, __VA_ARGS__) fn(DT_N_S_soc_S_rtc_40011000, __VA_ARGS__) fn(DT_N_S_soc_S_qdec_40012000, __VA_ARGS__) fn(DT_N_S_soc_S_comparator_40013000, __VA_ARGS__) fn(DT_N_S_soc_S_egu_40014000, __VA_ARGS__) fn(DT_N_S_soc_S_egu_40015000, __VA_ARGS__) fn(DT_N_S_soc_S_egu_40016000, __VA_ARGS__) fn(DT_N_S_soc_S_egu_40017000, __VA_ARGS__) fn(DT_N_S_soc_S_egu_40018000, __VA_ARGS__) fn(DT_N_S_soc_S_egu_40019000, __VA_ARGS__) fn(DT_N_S_soc_S_timer_4001a000, __VA_ARGS__) fn(DT_N_S_soc_S_timer_4001b000, __VA_ARGS__) fn(DT_N_S_soc_S_pwm_4001c000, __VA_ARGS__) fn(DT_N_S_soc_S_pdm_4001d000, __VA_ARGS__) fn(DT_N_S_soc_S_acl_4001e000, __VA_ARGS__) fn(DT_N_S_soc_S_flash_controller_4001e000, __VA_ARGS__) fn(DT_N_S_soc_S_ppi_4001f000, __VA_ARGS__) fn(DT_N_S_soc_S_mwu_40020000, __VA_ARGS__) fn(DT_N_S_soc_S_pwm_40021000, __VA_ARGS__) fn(DT_N_S_soc_S_pwm_40022000, __VA_ARGS__) fn(DT_N_S_soc_S_spi_40023000, __VA_ARGS__) fn(DT_N_S_soc_S_rtc_40024000, __VA_ARGS__) fn(DT_N_S_soc_S_i2s_40025000, __VA_ARGS__) fn(DT_N_S_soc_S_usbd_40027000, __VA_ARGS__) fn(DT_N_S_soc_S_uart_40028000, __VA_ARGS__) fn(DT_N_S_soc_S_pwm_4002d000, __VA_ARGS__) fn(DT_N_S_soc_S_spi_4002f000, __VA_ARGS__) fn(DT_N_S_soc_S_gpio_50000000, __VA_ARGS__) fn(DT_N_S_soc_S_gpio_50000300, __VA_ARGS__) +#define DT_N_S_soc_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_interrupt_controller_e000e100, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_timer_e000e010, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_ficr_10000000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_uicr_10001000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_memory_20000000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_clock_40000000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_power_40000000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_radio_40001000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_uart_40002000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_i2c_40003000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_spi_40003000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_i2c_40004000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_spi_40004000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_nfct_40005000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_gpiote_40006000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_adc_40007000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_timer_40008000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_timer_40009000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_timer_4000a000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_rtc_4000b000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_temp_4000c000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_random_4000d000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_ecb_4000e000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_ccm_4000f000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_watchdog_40010000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_rtc_40011000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_qdec_40012000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_comparator_40013000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_egu_40014000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_egu_40015000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_egu_40016000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_egu_40017000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_egu_40018000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_egu_40019000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_timer_4001a000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_timer_4001b000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_pwm_4001c000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_pdm_4001d000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_acl_4001e000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_flash_controller_4001e000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_ppi_4001f000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_mwu_40020000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_pwm_40021000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_pwm_40022000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_spi_40023000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_rtc_40024000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_i2s_40025000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_usbd_40027000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_uart_40028000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_pwm_4002d000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_spi_4002f000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_gpio_50000000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_gpio_50000300, __VA_ARGS__) +#define DT_N_S_soc_FOREACH_CHILD_STATUS_OKAY(fn) fn(DT_N_S_soc_S_interrupt_controller_e000e100) fn(DT_N_S_soc_S_ficr_10000000) fn(DT_N_S_soc_S_uicr_10001000) fn(DT_N_S_soc_S_memory_20000000) fn(DT_N_S_soc_S_clock_40000000) fn(DT_N_S_soc_S_power_40000000) fn(DT_N_S_soc_S_radio_40001000) fn(DT_N_S_soc_S_gpiote_40006000) fn(DT_N_S_soc_S_adc_40007000) fn(DT_N_S_soc_S_temp_4000c000) fn(DT_N_S_soc_S_random_4000d000) fn(DT_N_S_soc_S_ecb_4000e000) fn(DT_N_S_soc_S_ccm_4000f000) fn(DT_N_S_soc_S_watchdog_40010000) fn(DT_N_S_soc_S_egu_40014000) fn(DT_N_S_soc_S_egu_40015000) fn(DT_N_S_soc_S_egu_40016000) fn(DT_N_S_soc_S_egu_40017000) fn(DT_N_S_soc_S_egu_40018000) fn(DT_N_S_soc_S_egu_40019000) fn(DT_N_S_soc_S_acl_4001e000) fn(DT_N_S_soc_S_flash_controller_4001e000) fn(DT_N_S_soc_S_ppi_4001f000) fn(DT_N_S_soc_S_mwu_40020000) fn(DT_N_S_soc_S_usbd_40027000) fn(DT_N_S_soc_S_gpio_50000000) fn(DT_N_S_soc_S_gpio_50000300) +#define DT_N_S_soc_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) fn(DT_N_S_soc_S_interrupt_controller_e000e100) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_ficr_10000000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_uicr_10001000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_memory_20000000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_clock_40000000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_power_40000000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_radio_40001000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_gpiote_40006000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_adc_40007000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_temp_4000c000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_random_4000d000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_ecb_4000e000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_ccm_4000f000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_watchdog_40010000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_egu_40014000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_egu_40015000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_egu_40016000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_egu_40017000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_egu_40018000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_egu_40019000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_acl_4001e000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_flash_controller_4001e000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_ppi_4001f000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_mwu_40020000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_usbd_40027000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_gpio_50000000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_gpio_50000300) +#define DT_N_S_soc_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) fn(DT_N_S_soc_S_interrupt_controller_e000e100, __VA_ARGS__) fn(DT_N_S_soc_S_ficr_10000000, __VA_ARGS__) fn(DT_N_S_soc_S_uicr_10001000, __VA_ARGS__) fn(DT_N_S_soc_S_memory_20000000, __VA_ARGS__) fn(DT_N_S_soc_S_clock_40000000, __VA_ARGS__) fn(DT_N_S_soc_S_power_40000000, __VA_ARGS__) fn(DT_N_S_soc_S_radio_40001000, __VA_ARGS__) fn(DT_N_S_soc_S_gpiote_40006000, __VA_ARGS__) fn(DT_N_S_soc_S_adc_40007000, __VA_ARGS__) fn(DT_N_S_soc_S_temp_4000c000, __VA_ARGS__) fn(DT_N_S_soc_S_random_4000d000, __VA_ARGS__) fn(DT_N_S_soc_S_ecb_4000e000, __VA_ARGS__) fn(DT_N_S_soc_S_ccm_4000f000, __VA_ARGS__) fn(DT_N_S_soc_S_watchdog_40010000, __VA_ARGS__) fn(DT_N_S_soc_S_egu_40014000, __VA_ARGS__) fn(DT_N_S_soc_S_egu_40015000, __VA_ARGS__) fn(DT_N_S_soc_S_egu_40016000, __VA_ARGS__) fn(DT_N_S_soc_S_egu_40017000, __VA_ARGS__) fn(DT_N_S_soc_S_egu_40018000, __VA_ARGS__) fn(DT_N_S_soc_S_egu_40019000, __VA_ARGS__) fn(DT_N_S_soc_S_acl_4001e000, __VA_ARGS__) fn(DT_N_S_soc_S_flash_controller_4001e000, __VA_ARGS__) fn(DT_N_S_soc_S_ppi_4001f000, __VA_ARGS__) fn(DT_N_S_soc_S_mwu_40020000, __VA_ARGS__) fn(DT_N_S_soc_S_usbd_40027000, __VA_ARGS__) fn(DT_N_S_soc_S_gpio_50000000, __VA_ARGS__) fn(DT_N_S_soc_S_gpio_50000300, __VA_ARGS__) +#define DT_N_S_soc_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_interrupt_controller_e000e100, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_ficr_10000000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_uicr_10001000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_memory_20000000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_clock_40000000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_power_40000000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_radio_40001000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_gpiote_40006000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_adc_40007000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_temp_4000c000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_random_4000d000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_ecb_4000e000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_ccm_4000f000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_watchdog_40010000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_egu_40014000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_egu_40015000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_egu_40016000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_egu_40017000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_egu_40018000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_egu_40019000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_acl_4001e000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_flash_controller_4001e000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_ppi_4001f000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_mwu_40020000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_usbd_40027000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_gpio_50000000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_gpio_50000300, __VA_ARGS__) + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_ORD 6 +#define DT_N_S_soc_ORD_STR_SORTABLE 00006 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_REQUIRES_ORDS \ + 0, /* / */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_SUPPORTS_ORDS \ + 7, /* /soc/interrupt-controller@e000e100 */ \ + 8, /* /soc/timer@40009000 */ \ + 10, /* /soc/adc@40007000 */ \ + 11, /* /soc/gpiote@40006000 */ \ + 12, /* /soc/gpio@50000000 */ \ + 19, /* /soc/gpio@50000300 */ \ + 23, /* /soc/acl@4001e000 */ \ + 24, /* /soc/ccm@4000f000 */ \ + 25, /* /soc/clock@40000000 */ \ + 26, /* /soc/comparator@40013000 */ \ + 27, /* /soc/ecb@4000e000 */ \ + 28, /* /soc/egu@40014000 */ \ + 29, /* /soc/egu@40015000 */ \ + 30, /* /soc/egu@40016000 */ \ + 31, /* /soc/egu@40017000 */ \ + 32, /* /soc/egu@40018000 */ \ + 33, /* /soc/egu@40019000 */ \ + 34, /* /soc/ficr@10000000 */ \ + 35, /* /soc/i2c@40003000 */ \ + 36, /* /soc/i2c@40004000 */ \ + 37, /* /soc/i2s@40025000 */ \ + 38, /* /soc/memory@20000000 */ \ + 39, /* /soc/mwu@40020000 */ \ + 40, /* /soc/nfct@40005000 */ \ + 41, /* /soc/pdm@4001d000 */ \ + 42, /* /soc/ppi@4001f000 */ \ + 43, /* /soc/pwm@4001c000 */ \ + 44, /* /soc/pwm@40021000 */ \ + 45, /* /soc/pwm@40022000 */ \ + 46, /* /soc/pwm@4002d000 */ \ + 47, /* /soc/qdec@40012000 */ \ + 48, /* /soc/random@4000d000 */ \ + 49, /* /soc/rtc@4000b000 */ \ + 50, /* /soc/rtc@40011000 */ \ + 51, /* /soc/rtc@40024000 */ \ + 52, /* /soc/spi@40003000 */ \ + 53, /* /soc/spi@40004000 */ \ + 54, /* /soc/spi@40023000 */ \ + 55, /* /soc/spi@4002f000 */ \ + 56, /* /soc/temp@4000c000 */ \ + 57, /* /soc/timer@40008000 */ \ + 58, /* /soc/timer@4000a000 */ \ + 59, /* /soc/timer@4001a000 */ \ + 60, /* /soc/timer@4001b000 */ \ + 61, /* /soc/timer@e000e010 */ \ + 62, /* /soc/uart@40002000 */ \ + 63, /* /soc/uart@40028000 */ \ + 64, /* /soc/uicr@10001000 */ \ + 65, /* /soc/watchdog@40010000 */ \ + 67, /* /soc/flash-controller@4001e000 */ \ + 74, /* /soc/power@40000000 */ \ + 79, /* /soc/radio@40001000 */ \ + 83, /* /soc/usbd@40027000 */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_EXISTS 1 +#define DT_N_INST_0_nordic_nrf52833_qdaa DT_N_S_soc +#define DT_N_INST_0_nordic_nrf52833 DT_N_S_soc +#define DT_N_INST_0_nordic_nrf52 DT_N_S_soc +#define DT_N_INST_0_simple_bus DT_N_S_soc + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_REG_NUM 0 +#define DT_N_S_soc_RANGES_NUM 0 +#define DT_N_S_soc_FOREACH_RANGE(fn) +#define DT_N_S_soc_IRQ_NUM 0 +#define DT_N_S_soc_IRQ_LEVEL 0 +#define DT_N_S_soc_COMPAT_MATCHES_nordic_nrf52833_qdaa 1 +#define DT_N_S_soc_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_COMPAT_VENDOR_IDX_0 "Nordic Semiconductor" +#define DT_N_S_soc_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_COMPAT_MODEL_IDX_0 "nrf52833-qdaa" +#define DT_N_S_soc_COMPAT_MATCHES_nordic_nrf52833 1 +#define DT_N_S_soc_COMPAT_VENDOR_IDX_1_EXISTS 1 +#define DT_N_S_soc_COMPAT_VENDOR_IDX_1 "Nordic Semiconductor" +#define DT_N_S_soc_COMPAT_MODEL_IDX_1_EXISTS 1 +#define DT_N_S_soc_COMPAT_MODEL_IDX_1 "nrf52833" +#define DT_N_S_soc_COMPAT_MATCHES_nordic_nrf52 1 +#define DT_N_S_soc_COMPAT_VENDOR_IDX_2_EXISTS 1 +#define DT_N_S_soc_COMPAT_VENDOR_IDX_2 "Nordic Semiconductor" +#define DT_N_S_soc_COMPAT_MODEL_IDX_2_EXISTS 1 +#define DT_N_S_soc_COMPAT_MODEL_IDX_2 "nrf52" +#define DT_N_S_soc_COMPAT_MATCHES_simple_bus 1 +#define DT_N_S_soc_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_P_compatible {"nordic,nrf52833-qdaa", "nordic,nrf52833", "nordic,nrf52", "simple-bus"} +#define DT_N_S_soc_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_P_compatible_IDX_0 "nordic,nrf52833-qdaa" +#define DT_N_S_soc_P_compatible_IDX_0_STRING_UNQUOTED nordic,nrf52833-qdaa +#define DT_N_S_soc_P_compatible_IDX_0_STRING_TOKEN nordic_nrf52833_qdaa +#define DT_N_S_soc_P_compatible_IDX_0_STRING_UPPER_TOKEN NORDIC_NRF52833_QDAA +#define DT_N_S_soc_P_compatible_IDX_1_EXISTS 1 +#define DT_N_S_soc_P_compatible_IDX_1 "nordic,nrf52833" +#define DT_N_S_soc_P_compatible_IDX_1_STRING_UNQUOTED nordic,nrf52833 +#define DT_N_S_soc_P_compatible_IDX_1_STRING_TOKEN nordic_nrf52833 +#define DT_N_S_soc_P_compatible_IDX_1_STRING_UPPER_TOKEN NORDIC_NRF52833 +#define DT_N_S_soc_P_compatible_IDX_2_EXISTS 1 +#define DT_N_S_soc_P_compatible_IDX_2 "nordic,nrf52" +#define DT_N_S_soc_P_compatible_IDX_2_STRING_UNQUOTED nordic,nrf52 +#define DT_N_S_soc_P_compatible_IDX_2_STRING_TOKEN nordic_nrf52 +#define DT_N_S_soc_P_compatible_IDX_2_STRING_UPPER_TOKEN NORDIC_NRF52 +#define DT_N_S_soc_P_compatible_IDX_3_EXISTS 1 +#define DT_N_S_soc_P_compatible_IDX_3 "simple-bus" +#define DT_N_S_soc_P_compatible_IDX_3_STRING_UNQUOTED simple-bus +#define DT_N_S_soc_P_compatible_IDX_3_STRING_TOKEN simple_bus +#define DT_N_S_soc_P_compatible_IDX_3_STRING_UPPER_TOKEN SIMPLE_BUS +#define DT_N_S_soc_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc, compatible, 0) \ + fn(DT_N_S_soc, compatible, 1) \ + fn(DT_N_S_soc, compatible, 2) \ + fn(DT_N_S_soc, compatible, 3) +#define DT_N_S_soc_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc, compatible, 0) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc, compatible, 1) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc, compatible, 2) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc, compatible, 3) +#define DT_N_S_soc_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc, compatible, 0, __VA_ARGS__) \ + fn(DT_N_S_soc, compatible, 1, __VA_ARGS__) \ + fn(DT_N_S_soc, compatible, 2, __VA_ARGS__) \ + fn(DT_N_S_soc, compatible, 3, __VA_ARGS__) +#define DT_N_S_soc_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc, compatible, 0, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc, compatible, 1, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc, compatible, 2, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc, compatible, 3, __VA_ARGS__) +#define DT_N_S_soc_P_compatible_LEN 4 +#define DT_N_S_soc_P_compatible_EXISTS 1 +#define DT_N_S_soc_P_ranges_EXISTS 1 + +/* + * Devicetree node: /soc/interrupt-controller@e000e100 + * + * Node identifier: DT_N_S_soc_S_interrupt_controller_e000e100 + * + * Binding (compatible = arm,v7m-nvic): + * $ZEPHYR_BASE/dts/bindings/interrupt-controller/arm,v7m-nvic.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_interrupt_controller_e000e100_PATH "/soc/interrupt-controller@e000e100" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_interrupt_controller_e000e100_FULL_NAME "interrupt-controller@e000e100" +#define DT_N_S_soc_S_interrupt_controller_e000e100_FULL_NAME_UNQUOTED interrupt-controller@e000e100 +#define DT_N_S_soc_S_interrupt_controller_e000e100_FULL_NAME_TOKEN interrupt_controller_e000e100 +#define DT_N_S_soc_S_interrupt_controller_e000e100_FULL_NAME_UPPER_TOKEN INTERRUPT_CONTROLLER_E000E100 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_interrupt_controller_e000e100_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_interrupt_controller_e000e100_CHILD_IDX 0 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_interrupt_controller_e000e100_NODELABEL_NUM 1 +#define DT_N_S_soc_S_interrupt_controller_e000e100_FOREACH_NODELABEL(fn) fn(nvic) +#define DT_N_S_soc_S_interrupt_controller_e000e100_FOREACH_NODELABEL_VARGS(fn, ...) fn(nvic, __VA_ARGS__) +#define DT_N_S_soc_S_interrupt_controller_e000e100_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_interrupt_controller_e000e100_CHILD_NUM 0 +#define DT_N_S_soc_S_interrupt_controller_e000e100_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_interrupt_controller_e000e100_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_interrupt_controller_e000e100_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_interrupt_controller_e000e100_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_interrupt_controller_e000e100_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_interrupt_controller_e000e100_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_interrupt_controller_e000e100_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_interrupt_controller_e000e100_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_interrupt_controller_e000e100_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_interrupt_controller_e000e100_ORD 7 +#define DT_N_S_soc_S_interrupt_controller_e000e100_ORD_STR_SORTABLE 00007 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_interrupt_controller_e000e100_REQUIRES_ORDS \ + 6, /* /soc */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_interrupt_controller_e000e100_SUPPORTS_ORDS \ + 8, /* /soc/timer@40009000 */ \ + 10, /* /soc/adc@40007000 */ \ + 11, /* /soc/gpiote@40006000 */ \ + 24, /* /soc/ccm@4000f000 */ \ + 25, /* /soc/clock@40000000 */ \ + 26, /* /soc/comparator@40013000 */ \ + 27, /* /soc/ecb@4000e000 */ \ + 28, /* /soc/egu@40014000 */ \ + 29, /* /soc/egu@40015000 */ \ + 30, /* /soc/egu@40016000 */ \ + 31, /* /soc/egu@40017000 */ \ + 32, /* /soc/egu@40018000 */ \ + 33, /* /soc/egu@40019000 */ \ + 35, /* /soc/i2c@40003000 */ \ + 36, /* /soc/i2c@40004000 */ \ + 37, /* /soc/i2s@40025000 */ \ + 40, /* /soc/nfct@40005000 */ \ + 41, /* /soc/pdm@4001d000 */ \ + 43, /* /soc/pwm@4001c000 */ \ + 44, /* /soc/pwm@40021000 */ \ + 45, /* /soc/pwm@40022000 */ \ + 46, /* /soc/pwm@4002d000 */ \ + 47, /* /soc/qdec@40012000 */ \ + 48, /* /soc/random@4000d000 */ \ + 49, /* /soc/rtc@4000b000 */ \ + 50, /* /soc/rtc@40011000 */ \ + 51, /* /soc/rtc@40024000 */ \ + 52, /* /soc/spi@40003000 */ \ + 53, /* /soc/spi@40004000 */ \ + 54, /* /soc/spi@40023000 */ \ + 55, /* /soc/spi@4002f000 */ \ + 56, /* /soc/temp@4000c000 */ \ + 57, /* /soc/timer@40008000 */ \ + 58, /* /soc/timer@4000a000 */ \ + 59, /* /soc/timer@4001a000 */ \ + 60, /* /soc/timer@4001b000 */ \ + 62, /* /soc/uart@40002000 */ \ + 63, /* /soc/uart@40028000 */ \ + 65, /* /soc/watchdog@40010000 */ \ + 74, /* /soc/power@40000000 */ \ + 79, /* /soc/radio@40001000 */ \ + 83, /* /soc/usbd@40027000 */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_interrupt_controller_e000e100_EXISTS 1 +#define DT_N_INST_0_arm_v7m_nvic DT_N_S_soc_S_interrupt_controller_e000e100 +#define DT_N_NODELABEL_nvic DT_N_S_soc_S_interrupt_controller_e000e100 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_interrupt_controller_e000e100_REG_NUM 1 +#define DT_N_S_soc_S_interrupt_controller_e000e100_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_interrupt_controller_e000e100_REG_IDX_0_VAL_ADDRESS 3758153984 /* 0xe000e100 */ +#define DT_N_S_soc_S_interrupt_controller_e000e100_REG_IDX_0_VAL_SIZE 3072 /* 0xc00 */ +#define DT_N_S_soc_S_interrupt_controller_e000e100_RANGES_NUM 0 +#define DT_N_S_soc_S_interrupt_controller_e000e100_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_interrupt_controller_e000e100_IRQ_NUM 0 +#define DT_N_S_soc_S_interrupt_controller_e000e100_IRQ_LEVEL 0 +#define DT_N_S_soc_S_interrupt_controller_e000e100_COMPAT_MATCHES_arm_v7m_nvic 1 +#define DT_N_S_soc_S_interrupt_controller_e000e100_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_interrupt_controller_e000e100_COMPAT_VENDOR_IDX_0 "ARM Ltd." +#define DT_N_S_soc_S_interrupt_controller_e000e100_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_interrupt_controller_e000e100_COMPAT_MODEL_IDX_0 "v7m-nvic" +#define DT_N_S_soc_S_interrupt_controller_e000e100_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_interrupt_controller_e000e100_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_interrupt_controller_e000e100_P_reg {3758153984 /* 0xe000e100 */, 3072 /* 0xc00 */} +#define DT_N_S_soc_S_interrupt_controller_e000e100_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_interrupt_controller_e000e100_P_reg_IDX_0 3758153984 +#define DT_N_S_soc_S_interrupt_controller_e000e100_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_interrupt_controller_e000e100_P_reg_IDX_1 3072 +#define DT_N_S_soc_S_interrupt_controller_e000e100_P_reg_EXISTS 1 +#define DT_N_S_soc_S_interrupt_controller_e000e100_P_arm_num_irq_priority_bits 3 +#define DT_N_S_soc_S_interrupt_controller_e000e100_P_arm_num_irq_priority_bits_EXISTS 1 +#define DT_N_S_soc_S_interrupt_controller_e000e100_P_interrupt_controller 1 +#define DT_N_S_soc_S_interrupt_controller_e000e100_P_interrupt_controller_EXISTS 1 +#define DT_N_S_soc_S_interrupt_controller_e000e100_P_compatible {"arm,v7m-nvic"} +#define DT_N_S_soc_S_interrupt_controller_e000e100_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_interrupt_controller_e000e100_P_compatible_IDX_0 "arm,v7m-nvic" +#define DT_N_S_soc_S_interrupt_controller_e000e100_P_compatible_IDX_0_STRING_UNQUOTED arm,v7m-nvic +#define DT_N_S_soc_S_interrupt_controller_e000e100_P_compatible_IDX_0_STRING_TOKEN arm_v7m_nvic +#define DT_N_S_soc_S_interrupt_controller_e000e100_P_compatible_IDX_0_STRING_UPPER_TOKEN ARM_V7M_NVIC +#define DT_N_S_soc_S_interrupt_controller_e000e100_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_interrupt_controller_e000e100, compatible, 0) +#define DT_N_S_soc_S_interrupt_controller_e000e100_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_interrupt_controller_e000e100, compatible, 0) +#define DT_N_S_soc_S_interrupt_controller_e000e100_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_interrupt_controller_e000e100, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_interrupt_controller_e000e100_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_interrupt_controller_e000e100, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_interrupt_controller_e000e100_P_compatible_LEN 1 +#define DT_N_S_soc_S_interrupt_controller_e000e100_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_interrupt_controller_e000e100_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_interrupt_controller_e000e100_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_interrupt_controller_e000e100_P_wakeup_source 0 +#define DT_N_S_soc_S_interrupt_controller_e000e100_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_interrupt_controller_e000e100_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_interrupt_controller_e000e100_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/timer@40009000 + * + * Node identifier: DT_N_S_soc_S_timer_40009000 + * + * Binding (compatible = nordic,nrf-timer): + * $ZEPHYR_BASE/dts/bindings/counter/nordic,nrf-timer.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_timer_40009000_PATH "/soc/timer@40009000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_timer_40009000_FULL_NAME "timer@40009000" +#define DT_N_S_soc_S_timer_40009000_FULL_NAME_UNQUOTED timer@40009000 +#define DT_N_S_soc_S_timer_40009000_FULL_NAME_TOKEN timer_40009000 +#define DT_N_S_soc_S_timer_40009000_FULL_NAME_UPPER_TOKEN TIMER_40009000 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_timer_40009000_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_timer_40009000_CHILD_IDX 17 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_timer_40009000_NODELABEL_NUM 1 +#define DT_N_S_soc_S_timer_40009000_FOREACH_NODELABEL(fn) fn(timer1) +#define DT_N_S_soc_S_timer_40009000_FOREACH_NODELABEL_VARGS(fn, ...) fn(timer1, __VA_ARGS__) +#define DT_N_S_soc_S_timer_40009000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_timer_40009000_CHILD_NUM 0 +#define DT_N_S_soc_S_timer_40009000_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_timer_40009000_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_timer_40009000_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_timer_40009000_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_timer_40009000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_timer_40009000_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_timer_40009000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_timer_40009000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_timer_40009000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_timer_40009000_ORD 8 +#define DT_N_S_soc_S_timer_40009000_ORD_STR_SORTABLE 00008 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_timer_40009000_REQUIRES_ORDS \ + 6, /* /soc */ \ + 7, /* /soc/interrupt-controller@e000e100 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_timer_40009000_SUPPORTS_ORDS \ + 9, /* /sw-pwm */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_timer_40009000_EXISTS 1 +#define DT_N_INST_1_nordic_nrf_timer DT_N_S_soc_S_timer_40009000 +#define DT_N_NODELABEL_timer1 DT_N_S_soc_S_timer_40009000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_timer_40009000_REG_NUM 1 +#define DT_N_S_soc_S_timer_40009000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timer_40009000_REG_IDX_0_VAL_ADDRESS 1073778688 /* 0x40009000 */ +#define DT_N_S_soc_S_timer_40009000_REG_IDX_0_VAL_SIZE 4096 /* 0x1000 */ +#define DT_N_S_soc_S_timer_40009000_RANGES_NUM 0 +#define DT_N_S_soc_S_timer_40009000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_timer_40009000_IRQ_NUM 1 +#define DT_N_S_soc_S_timer_40009000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timer_40009000_IRQ_IDX_0_VAL_irq 9 +#define DT_N_S_soc_S_timer_40009000_IRQ_IDX_0_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_timer_40009000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timer_40009000_IRQ_IDX_0_VAL_priority 1 +#define DT_N_S_soc_S_timer_40009000_IRQ_IDX_0_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_timer_40009000_IRQ_IDX_0_CONTROLLER DT_N_S_soc_S_interrupt_controller_e000e100 +#define DT_N_S_soc_S_timer_40009000_IRQ_LEVEL 1 +#define DT_N_S_soc_S_timer_40009000_COMPAT_MATCHES_nordic_nrf_timer 1 +#define DT_N_S_soc_S_timer_40009000_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timer_40009000_COMPAT_VENDOR_IDX_0 "Nordic Semiconductor" +#define DT_N_S_soc_S_timer_40009000_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timer_40009000_COMPAT_MODEL_IDX_0 "nrf-timer" +#define DT_N_S_soc_S_timer_40009000_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_timer_40009000_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_timer_40009000_P_reg {1073778688 /* 0x40009000 */, 4096 /* 0x1000 */} +#define DT_N_S_soc_S_timer_40009000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timer_40009000_P_reg_IDX_0 1073778688 +#define DT_N_S_soc_S_timer_40009000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_timer_40009000_P_reg_IDX_1 4096 +#define DT_N_S_soc_S_timer_40009000_P_reg_EXISTS 1 +#define DT_N_S_soc_S_timer_40009000_P_cc_num 4 +#define DT_N_S_soc_S_timer_40009000_P_cc_num_EXISTS 1 +#define DT_N_S_soc_S_timer_40009000_P_max_bit_width 32 +#define DT_N_S_soc_S_timer_40009000_P_max_bit_width_EXISTS 1 +#define DT_N_S_soc_S_timer_40009000_P_interrupts {9 /* 0x9 */, 1 /* 0x1 */} +#define DT_N_S_soc_S_timer_40009000_P_interrupts_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timer_40009000_P_interrupts_IDX_0 9 +#define DT_N_S_soc_S_timer_40009000_P_interrupts_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_timer_40009000_P_interrupts_IDX_1 1 +#define DT_N_S_soc_S_timer_40009000_P_interrupts_EXISTS 1 +#define DT_N_S_soc_S_timer_40009000_P_max_frequency 16000000 +#define DT_N_S_soc_S_timer_40009000_P_max_frequency_EXISTS 1 +#define DT_N_S_soc_S_timer_40009000_P_prescaler 0 +#define DT_N_S_soc_S_timer_40009000_P_prescaler_EXISTS 1 +#define DT_N_S_soc_S_timer_40009000_P_zli 0 +#define DT_N_S_soc_S_timer_40009000_P_zli_EXISTS 1 +#define DT_N_S_soc_S_timer_40009000_P_status "disabled" +#define DT_N_S_soc_S_timer_40009000_P_status_STRING_UNQUOTED disabled +#define DT_N_S_soc_S_timer_40009000_P_status_STRING_TOKEN disabled +#define DT_N_S_soc_S_timer_40009000_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_soc_S_timer_40009000_P_status_IDX_0 "disabled" +#define DT_N_S_soc_S_timer_40009000_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timer_40009000_P_status_IDX_0_ENUM_IDX 2 +#define DT_N_S_soc_S_timer_40009000_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_timer_40009000_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_timer_40009000, status, 0) +#define DT_N_S_soc_S_timer_40009000_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_timer_40009000, status, 0) +#define DT_N_S_soc_S_timer_40009000_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_timer_40009000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timer_40009000_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timer_40009000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timer_40009000_P_status_LEN 1 +#define DT_N_S_soc_S_timer_40009000_P_status_EXISTS 1 +#define DT_N_S_soc_S_timer_40009000_P_compatible {"nordic,nrf-timer"} +#define DT_N_S_soc_S_timer_40009000_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timer_40009000_P_compatible_IDX_0 "nordic,nrf-timer" +#define DT_N_S_soc_S_timer_40009000_P_compatible_IDX_0_STRING_UNQUOTED nordic,nrf-timer +#define DT_N_S_soc_S_timer_40009000_P_compatible_IDX_0_STRING_TOKEN nordic_nrf_timer +#define DT_N_S_soc_S_timer_40009000_P_compatible_IDX_0_STRING_UPPER_TOKEN NORDIC_NRF_TIMER +#define DT_N_S_soc_S_timer_40009000_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_timer_40009000, compatible, 0) +#define DT_N_S_soc_S_timer_40009000_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_timer_40009000, compatible, 0) +#define DT_N_S_soc_S_timer_40009000_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_timer_40009000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timer_40009000_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timer_40009000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timer_40009000_P_compatible_LEN 1 +#define DT_N_S_soc_S_timer_40009000_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_timer_40009000_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_timer_40009000_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_timer_40009000_P_wakeup_source 0 +#define DT_N_S_soc_S_timer_40009000_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_timer_40009000_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_timer_40009000_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /sw-pwm + * + * Node identifier: DT_N_S_sw_pwm + * + * Binding (compatible = nordic,nrf-sw-pwm): + * $ZEPHYR_BASE/dts/bindings/pwm/nordic,nrf-sw-pwm.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_sw_pwm_PATH "/sw-pwm" + +/* Node's name with unit-address: */ +#define DT_N_S_sw_pwm_FULL_NAME "sw-pwm" +#define DT_N_S_sw_pwm_FULL_NAME_UNQUOTED sw-pwm +#define DT_N_S_sw_pwm_FULL_NAME_TOKEN sw_pwm +#define DT_N_S_sw_pwm_FULL_NAME_UPPER_TOKEN SW_PWM + +/* Node parent (/) identifier: */ +#define DT_N_S_sw_pwm_PARENT DT_N + +/* Node's index in its parent's list of children: */ +#define DT_N_S_sw_pwm_CHILD_IDX 5 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_sw_pwm_NODELABEL_NUM 1 +#define DT_N_S_sw_pwm_FOREACH_NODELABEL(fn) fn(sw_pwm) +#define DT_N_S_sw_pwm_FOREACH_NODELABEL_VARGS(fn, ...) fn(sw_pwm, __VA_ARGS__) +#define DT_N_S_sw_pwm_FOREACH_ANCESTOR(fn) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_sw_pwm_CHILD_NUM 0 +#define DT_N_S_sw_pwm_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_sw_pwm_FOREACH_CHILD(fn) +#define DT_N_S_sw_pwm_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_sw_pwm_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_sw_pwm_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_sw_pwm_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_sw_pwm_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_sw_pwm_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_sw_pwm_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's dependency ordinal: */ +#define DT_N_S_sw_pwm_ORD 9 +#define DT_N_S_sw_pwm_ORD_STR_SORTABLE 00009 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_sw_pwm_REQUIRES_ORDS \ + 0, /* / */ \ + 8, /* /soc/timer@40009000 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_sw_pwm_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_sw_pwm_EXISTS 1 +#define DT_N_INST_0_nordic_nrf_sw_pwm DT_N_S_sw_pwm +#define DT_N_NODELABEL_sw_pwm DT_N_S_sw_pwm + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_sw_pwm_REG_NUM 0 +#define DT_N_S_sw_pwm_RANGES_NUM 0 +#define DT_N_S_sw_pwm_FOREACH_RANGE(fn) +#define DT_N_S_sw_pwm_IRQ_NUM 0 +#define DT_N_S_sw_pwm_IRQ_LEVEL 0 +#define DT_N_S_sw_pwm_COMPAT_MATCHES_nordic_nrf_sw_pwm 1 +#define DT_N_S_sw_pwm_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_sw_pwm_COMPAT_VENDOR_IDX_0 "Nordic Semiconductor" +#define DT_N_S_sw_pwm_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_sw_pwm_COMPAT_MODEL_IDX_0 "nrf-sw-pwm" +#define DT_N_S_sw_pwm_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_sw_pwm_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_sw_pwm_P_generator DT_N_S_soc_S_timer_40009000 +#define DT_N_S_sw_pwm_P_generator_IDX_0 DT_N_S_soc_S_timer_40009000 +#define DT_N_S_sw_pwm_P_generator_IDX_0_PH DT_N_S_soc_S_timer_40009000 +#define DT_N_S_sw_pwm_P_generator_IDX_0_EXISTS 1 +#define DT_N_S_sw_pwm_P_generator_FOREACH_PROP_ELEM(fn) fn(DT_N_S_sw_pwm, generator, 0) +#define DT_N_S_sw_pwm_P_generator_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_sw_pwm, generator, 0) +#define DT_N_S_sw_pwm_P_generator_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_sw_pwm, generator, 0, __VA_ARGS__) +#define DT_N_S_sw_pwm_P_generator_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_sw_pwm, generator, 0, __VA_ARGS__) +#define DT_N_S_sw_pwm_P_generator_LEN 1 +#define DT_N_S_sw_pwm_P_generator_EXISTS 1 +#define DT_N_S_sw_pwm_P_clock_prescaler 0 +#define DT_N_S_sw_pwm_P_clock_prescaler_EXISTS 1 +#define DT_N_S_sw_pwm_P_status "disabled" +#define DT_N_S_sw_pwm_P_status_STRING_UNQUOTED disabled +#define DT_N_S_sw_pwm_P_status_STRING_TOKEN disabled +#define DT_N_S_sw_pwm_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_sw_pwm_P_status_IDX_0 "disabled" +#define DT_N_S_sw_pwm_P_status_IDX_0_EXISTS 1 +#define DT_N_S_sw_pwm_P_status_IDX_0_ENUM_IDX 2 +#define DT_N_S_sw_pwm_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_sw_pwm_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_sw_pwm, status, 0) +#define DT_N_S_sw_pwm_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_sw_pwm, status, 0) +#define DT_N_S_sw_pwm_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_sw_pwm, status, 0, __VA_ARGS__) +#define DT_N_S_sw_pwm_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_sw_pwm, status, 0, __VA_ARGS__) +#define DT_N_S_sw_pwm_P_status_LEN 1 +#define DT_N_S_sw_pwm_P_status_EXISTS 1 +#define DT_N_S_sw_pwm_P_compatible {"nordic,nrf-sw-pwm"} +#define DT_N_S_sw_pwm_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_sw_pwm_P_compatible_IDX_0 "nordic,nrf-sw-pwm" +#define DT_N_S_sw_pwm_P_compatible_IDX_0_STRING_UNQUOTED nordic,nrf-sw-pwm +#define DT_N_S_sw_pwm_P_compatible_IDX_0_STRING_TOKEN nordic_nrf_sw_pwm +#define DT_N_S_sw_pwm_P_compatible_IDX_0_STRING_UPPER_TOKEN NORDIC_NRF_SW_PWM +#define DT_N_S_sw_pwm_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_sw_pwm, compatible, 0) +#define DT_N_S_sw_pwm_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_sw_pwm, compatible, 0) +#define DT_N_S_sw_pwm_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_sw_pwm, compatible, 0, __VA_ARGS__) +#define DT_N_S_sw_pwm_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_sw_pwm, compatible, 0, __VA_ARGS__) +#define DT_N_S_sw_pwm_P_compatible_LEN 1 +#define DT_N_S_sw_pwm_P_compatible_EXISTS 1 +#define DT_N_S_sw_pwm_P_zephyr_deferred_init 0 +#define DT_N_S_sw_pwm_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_sw_pwm_P_wakeup_source 0 +#define DT_N_S_sw_pwm_P_wakeup_source_EXISTS 1 +#define DT_N_S_sw_pwm_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_sw_pwm_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/adc@40007000 + * + * Node identifier: DT_N_S_soc_S_adc_40007000 + * + * Binding (compatible = nordic,nrf-saadc): + * $ZEPHYR_BASE/dts/bindings/adc/nordic,nrf-saadc.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_adc_40007000_PATH "/soc/adc@40007000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_adc_40007000_FULL_NAME "adc@40007000" +#define DT_N_S_soc_S_adc_40007000_FULL_NAME_UNQUOTED adc@40007000 +#define DT_N_S_soc_S_adc_40007000_FULL_NAME_TOKEN adc_40007000 +#define DT_N_S_soc_S_adc_40007000_FULL_NAME_UPPER_TOKEN ADC_40007000 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_adc_40007000_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_adc_40007000_CHILD_IDX 15 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_adc_40007000_NODELABEL_NUM 1 +#define DT_N_S_soc_S_adc_40007000_FOREACH_NODELABEL(fn) fn(adc) +#define DT_N_S_soc_S_adc_40007000_FOREACH_NODELABEL_VARGS(fn, ...) fn(adc, __VA_ARGS__) +#define DT_N_S_soc_S_adc_40007000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_adc_40007000_CHILD_NUM 1 +#define DT_N_S_soc_S_adc_40007000_CHILD_NUM_STATUS_OKAY 1 +#define DT_N_S_soc_S_adc_40007000_FOREACH_CHILD(fn) fn(DT_N_S_soc_S_adc_40007000_S_channel_6) +#define DT_N_S_soc_S_adc_40007000_FOREACH_CHILD_SEP(fn, sep) fn(DT_N_S_soc_S_adc_40007000_S_channel_6) +#define DT_N_S_soc_S_adc_40007000_FOREACH_CHILD_VARGS(fn, ...) fn(DT_N_S_soc_S_adc_40007000_S_channel_6, __VA_ARGS__) +#define DT_N_S_soc_S_adc_40007000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_adc_40007000_S_channel_6, __VA_ARGS__) +#define DT_N_S_soc_S_adc_40007000_FOREACH_CHILD_STATUS_OKAY(fn) fn(DT_N_S_soc_S_adc_40007000_S_channel_6) +#define DT_N_S_soc_S_adc_40007000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) fn(DT_N_S_soc_S_adc_40007000_S_channel_6) +#define DT_N_S_soc_S_adc_40007000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) fn(DT_N_S_soc_S_adc_40007000_S_channel_6, __VA_ARGS__) +#define DT_N_S_soc_S_adc_40007000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_adc_40007000_S_channel_6, __VA_ARGS__) + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_adc_40007000_ORD 10 +#define DT_N_S_soc_S_adc_40007000_ORD_STR_SORTABLE 00010 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_adc_40007000_REQUIRES_ORDS \ + 6, /* /soc */ \ + 7, /* /soc/interrupt-controller@e000e100 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_adc_40007000_SUPPORTS_ORDS \ + 13, /* /zephyr,user */ \ + 66, /* /soc/adc@40007000/channel@6 */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_adc_40007000_EXISTS 1 +#define DT_N_INST_0_nordic_nrf_saadc DT_N_S_soc_S_adc_40007000 +#define DT_N_NODELABEL_adc DT_N_S_soc_S_adc_40007000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_adc_40007000_REG_NUM 1 +#define DT_N_S_soc_S_adc_40007000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_adc_40007000_REG_IDX_0_VAL_ADDRESS 1073770496 /* 0x40007000 */ +#define DT_N_S_soc_S_adc_40007000_REG_IDX_0_VAL_SIZE 4096 /* 0x1000 */ +#define DT_N_S_soc_S_adc_40007000_RANGES_NUM 0 +#define DT_N_S_soc_S_adc_40007000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_adc_40007000_IRQ_NUM 1 +#define DT_N_S_soc_S_adc_40007000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_adc_40007000_IRQ_IDX_0_VAL_irq 7 +#define DT_N_S_soc_S_adc_40007000_IRQ_IDX_0_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_adc_40007000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_adc_40007000_IRQ_IDX_0_VAL_priority 1 +#define DT_N_S_soc_S_adc_40007000_IRQ_IDX_0_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_adc_40007000_IRQ_IDX_0_CONTROLLER DT_N_S_soc_S_interrupt_controller_e000e100 +#define DT_N_S_soc_S_adc_40007000_IRQ_LEVEL 1 +#define DT_N_S_soc_S_adc_40007000_COMPAT_MATCHES_nordic_nrf_saadc 1 +#define DT_N_S_soc_S_adc_40007000_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_adc_40007000_COMPAT_VENDOR_IDX_0 "Nordic Semiconductor" +#define DT_N_S_soc_S_adc_40007000_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_adc_40007000_COMPAT_MODEL_IDX_0 "nrf-saadc" +#define DT_N_S_soc_S_adc_40007000_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_adc_40007000_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_adc_40007000_P_reg {1073770496 /* 0x40007000 */, 4096 /* 0x1000 */} +#define DT_N_S_soc_S_adc_40007000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_adc_40007000_P_reg_IDX_0 1073770496 +#define DT_N_S_soc_S_adc_40007000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_adc_40007000_P_reg_IDX_1 4096 +#define DT_N_S_soc_S_adc_40007000_P_reg_EXISTS 1 +#define DT_N_S_soc_S_adc_40007000_P_interrupts {7 /* 0x7 */, 1 /* 0x1 */} +#define DT_N_S_soc_S_adc_40007000_P_interrupts_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_adc_40007000_P_interrupts_IDX_0 7 +#define DT_N_S_soc_S_adc_40007000_P_interrupts_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_adc_40007000_P_interrupts_IDX_1 1 +#define DT_N_S_soc_S_adc_40007000_P_interrupts_EXISTS 1 +#define DT_N_S_soc_S_adc_40007000_P_status "okay" +#define DT_N_S_soc_S_adc_40007000_P_status_STRING_UNQUOTED okay +#define DT_N_S_soc_S_adc_40007000_P_status_STRING_TOKEN okay +#define DT_N_S_soc_S_adc_40007000_P_status_STRING_UPPER_TOKEN OKAY +#define DT_N_S_soc_S_adc_40007000_P_status_IDX_0 "okay" +#define DT_N_S_soc_S_adc_40007000_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_adc_40007000_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_adc_40007000_P_status_IDX_0_ENUM_VAL_okay_EXISTS 1 +#define DT_N_S_soc_S_adc_40007000_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_adc_40007000, status, 0) +#define DT_N_S_soc_S_adc_40007000_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_adc_40007000, status, 0) +#define DT_N_S_soc_S_adc_40007000_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_adc_40007000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_adc_40007000_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_adc_40007000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_adc_40007000_P_status_LEN 1 +#define DT_N_S_soc_S_adc_40007000_P_status_EXISTS 1 +#define DT_N_S_soc_S_adc_40007000_P_compatible {"nordic,nrf-saadc"} +#define DT_N_S_soc_S_adc_40007000_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_adc_40007000_P_compatible_IDX_0 "nordic,nrf-saadc" +#define DT_N_S_soc_S_adc_40007000_P_compatible_IDX_0_STRING_UNQUOTED nordic,nrf-saadc +#define DT_N_S_soc_S_adc_40007000_P_compatible_IDX_0_STRING_TOKEN nordic_nrf_saadc +#define DT_N_S_soc_S_adc_40007000_P_compatible_IDX_0_STRING_UPPER_TOKEN NORDIC_NRF_SAADC +#define DT_N_S_soc_S_adc_40007000_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_adc_40007000, compatible, 0) +#define DT_N_S_soc_S_adc_40007000_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_adc_40007000, compatible, 0) +#define DT_N_S_soc_S_adc_40007000_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_adc_40007000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_adc_40007000_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_adc_40007000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_adc_40007000_P_compatible_LEN 1 +#define DT_N_S_soc_S_adc_40007000_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_adc_40007000_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_adc_40007000_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_adc_40007000_P_wakeup_source 0 +#define DT_N_S_soc_S_adc_40007000_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_adc_40007000_P_zephyr_pm_device_runtime_auto 1 +#define DT_N_S_soc_S_adc_40007000_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/gpiote@40006000 + * + * Node identifier: DT_N_S_soc_S_gpiote_40006000 + * + * Binding (compatible = nordic,nrf-gpiote): + * $ZEPHYR_BASE/dts/bindings/gpio/nordic,nrf-gpiote.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_gpiote_40006000_PATH "/soc/gpiote@40006000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_gpiote_40006000_FULL_NAME "gpiote@40006000" +#define DT_N_S_soc_S_gpiote_40006000_FULL_NAME_UNQUOTED gpiote@40006000 +#define DT_N_S_soc_S_gpiote_40006000_FULL_NAME_TOKEN gpiote_40006000 +#define DT_N_S_soc_S_gpiote_40006000_FULL_NAME_UPPER_TOKEN GPIOTE_40006000 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_gpiote_40006000_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_gpiote_40006000_CHILD_IDX 14 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_gpiote_40006000_NODELABEL_NUM 2 +#define DT_N_S_soc_S_gpiote_40006000_FOREACH_NODELABEL(fn) fn(gpiote) fn(gpiote0) +#define DT_N_S_soc_S_gpiote_40006000_FOREACH_NODELABEL_VARGS(fn, ...) fn(gpiote, __VA_ARGS__) fn(gpiote0, __VA_ARGS__) +#define DT_N_S_soc_S_gpiote_40006000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_gpiote_40006000_CHILD_NUM 0 +#define DT_N_S_soc_S_gpiote_40006000_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_gpiote_40006000_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_gpiote_40006000_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_gpiote_40006000_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_gpiote_40006000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_gpiote_40006000_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_gpiote_40006000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_gpiote_40006000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_gpiote_40006000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_gpiote_40006000_ORD 11 +#define DT_N_S_soc_S_gpiote_40006000_ORD_STR_SORTABLE 00011 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_gpiote_40006000_REQUIRES_ORDS \ + 6, /* /soc */ \ + 7, /* /soc/interrupt-controller@e000e100 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_gpiote_40006000_SUPPORTS_ORDS \ + 12, /* /soc/gpio@50000000 */ \ + 19, /* /soc/gpio@50000300 */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_gpiote_40006000_EXISTS 1 +#define DT_N_INST_0_nordic_nrf_gpiote DT_N_S_soc_S_gpiote_40006000 +#define DT_N_NODELABEL_gpiote DT_N_S_soc_S_gpiote_40006000 +#define DT_N_NODELABEL_gpiote0 DT_N_S_soc_S_gpiote_40006000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_gpiote_40006000_REG_NUM 1 +#define DT_N_S_soc_S_gpiote_40006000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_gpiote_40006000_REG_IDX_0_VAL_ADDRESS 1073766400 /* 0x40006000 */ +#define DT_N_S_soc_S_gpiote_40006000_REG_IDX_0_VAL_SIZE 4096 /* 0x1000 */ +#define DT_N_S_soc_S_gpiote_40006000_RANGES_NUM 0 +#define DT_N_S_soc_S_gpiote_40006000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_gpiote_40006000_IRQ_NUM 1 +#define DT_N_S_soc_S_gpiote_40006000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_gpiote_40006000_IRQ_IDX_0_VAL_irq 6 +#define DT_N_S_soc_S_gpiote_40006000_IRQ_IDX_0_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_gpiote_40006000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_gpiote_40006000_IRQ_IDX_0_VAL_priority 5 +#define DT_N_S_soc_S_gpiote_40006000_IRQ_IDX_0_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_gpiote_40006000_IRQ_IDX_0_CONTROLLER DT_N_S_soc_S_interrupt_controller_e000e100 +#define DT_N_S_soc_S_gpiote_40006000_IRQ_LEVEL 1 +#define DT_N_S_soc_S_gpiote_40006000_COMPAT_MATCHES_nordic_nrf_gpiote 1 +#define DT_N_S_soc_S_gpiote_40006000_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_gpiote_40006000_COMPAT_VENDOR_IDX_0 "Nordic Semiconductor" +#define DT_N_S_soc_S_gpiote_40006000_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_gpiote_40006000_COMPAT_MODEL_IDX_0 "nrf-gpiote" +#define DT_N_S_soc_S_gpiote_40006000_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_gpiote_40006000_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_gpiote_40006000_P_reg {1073766400 /* 0x40006000 */, 4096 /* 0x1000 */} +#define DT_N_S_soc_S_gpiote_40006000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_gpiote_40006000_P_reg_IDX_0 1073766400 +#define DT_N_S_soc_S_gpiote_40006000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_gpiote_40006000_P_reg_IDX_1 4096 +#define DT_N_S_soc_S_gpiote_40006000_P_reg_EXISTS 1 +#define DT_N_S_soc_S_gpiote_40006000_P_interrupts {6 /* 0x6 */, 5 /* 0x5 */} +#define DT_N_S_soc_S_gpiote_40006000_P_interrupts_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_gpiote_40006000_P_interrupts_IDX_0 6 +#define DT_N_S_soc_S_gpiote_40006000_P_interrupts_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_gpiote_40006000_P_interrupts_IDX_1 5 +#define DT_N_S_soc_S_gpiote_40006000_P_interrupts_EXISTS 1 +#define DT_N_S_soc_S_gpiote_40006000_P_instance 0 +#define DT_N_S_soc_S_gpiote_40006000_P_instance_EXISTS 1 +#define DT_N_S_soc_S_gpiote_40006000_P_status "okay" +#define DT_N_S_soc_S_gpiote_40006000_P_status_STRING_UNQUOTED okay +#define DT_N_S_soc_S_gpiote_40006000_P_status_STRING_TOKEN okay +#define DT_N_S_soc_S_gpiote_40006000_P_status_STRING_UPPER_TOKEN OKAY +#define DT_N_S_soc_S_gpiote_40006000_P_status_IDX_0 "okay" +#define DT_N_S_soc_S_gpiote_40006000_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_gpiote_40006000_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_gpiote_40006000_P_status_IDX_0_ENUM_VAL_okay_EXISTS 1 +#define DT_N_S_soc_S_gpiote_40006000_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_gpiote_40006000, status, 0) +#define DT_N_S_soc_S_gpiote_40006000_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_gpiote_40006000, status, 0) +#define DT_N_S_soc_S_gpiote_40006000_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_gpiote_40006000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_gpiote_40006000_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_gpiote_40006000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_gpiote_40006000_P_status_LEN 1 +#define DT_N_S_soc_S_gpiote_40006000_P_status_EXISTS 1 +#define DT_N_S_soc_S_gpiote_40006000_P_compatible {"nordic,nrf-gpiote"} +#define DT_N_S_soc_S_gpiote_40006000_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_gpiote_40006000_P_compatible_IDX_0 "nordic,nrf-gpiote" +#define DT_N_S_soc_S_gpiote_40006000_P_compatible_IDX_0_STRING_UNQUOTED nordic,nrf-gpiote +#define DT_N_S_soc_S_gpiote_40006000_P_compatible_IDX_0_STRING_TOKEN nordic_nrf_gpiote +#define DT_N_S_soc_S_gpiote_40006000_P_compatible_IDX_0_STRING_UPPER_TOKEN NORDIC_NRF_GPIOTE +#define DT_N_S_soc_S_gpiote_40006000_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_gpiote_40006000, compatible, 0) +#define DT_N_S_soc_S_gpiote_40006000_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_gpiote_40006000, compatible, 0) +#define DT_N_S_soc_S_gpiote_40006000_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_gpiote_40006000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_gpiote_40006000_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_gpiote_40006000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_gpiote_40006000_P_compatible_LEN 1 +#define DT_N_S_soc_S_gpiote_40006000_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_gpiote_40006000_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_gpiote_40006000_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_gpiote_40006000_P_wakeup_source 0 +#define DT_N_S_soc_S_gpiote_40006000_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_gpiote_40006000_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_gpiote_40006000_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/gpio@50000000 + * + * Node identifier: DT_N_S_soc_S_gpio_50000000 + * + * Binding (compatible = nordic,nrf-gpio): + * $ZEPHYR_BASE/dts/bindings/gpio/nordic,nrf-gpio.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_gpio_50000000_PATH "/soc/gpio@50000000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_gpio_50000000_FULL_NAME "gpio@50000000" +#define DT_N_S_soc_S_gpio_50000000_FULL_NAME_UNQUOTED gpio@50000000 +#define DT_N_S_soc_S_gpio_50000000_FULL_NAME_TOKEN gpio_50000000 +#define DT_N_S_soc_S_gpio_50000000_FULL_NAME_UPPER_TOKEN GPIO_50000000 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_gpio_50000000_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_gpio_50000000_CHILD_IDX 51 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_gpio_50000000_NODELABEL_NUM 1 +#define DT_N_S_soc_S_gpio_50000000_FOREACH_NODELABEL(fn) fn(gpio0) +#define DT_N_S_soc_S_gpio_50000000_FOREACH_NODELABEL_VARGS(fn, ...) fn(gpio0, __VA_ARGS__) +#define DT_N_S_soc_S_gpio_50000000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_gpio_50000000_CHILD_NUM 0 +#define DT_N_S_soc_S_gpio_50000000_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_gpio_50000000_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_gpio_50000000_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_gpio_50000000_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_gpio_50000000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_gpio_50000000_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_gpio_50000000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_gpio_50000000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_gpio_50000000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_gpio_50000000_ORD 12 +#define DT_N_S_soc_S_gpio_50000000_ORD_STR_SORTABLE 00012 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_gpio_50000000_REQUIRES_ORDS \ + 6, /* /soc */ \ + 11, /* /soc/gpiote@40006000 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_gpio_50000000_SUPPORTS_ORDS \ + 13, /* /zephyr,user */ \ + 14, /* /buttons */ \ + 15, /* /buttons/button_0 */ \ + 20, /* /leds */ \ + 21, /* /leds/led_0 */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_gpio_50000000_EXISTS 1 +#define DT_N_INST_0_nordic_nrf_gpio DT_N_S_soc_S_gpio_50000000 +#define DT_N_NODELABEL_gpio0 DT_N_S_soc_S_gpio_50000000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_gpio_50000000_REG_NUM 2 +#define DT_N_S_soc_S_gpio_50000000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_gpio_50000000_REG_IDX_0_VAL_ADDRESS 1342177280 /* 0x50000000 */ +#define DT_N_S_soc_S_gpio_50000000_REG_IDX_0_VAL_SIZE 512 /* 0x200 */ +#define DT_N_S_soc_S_gpio_50000000_REG_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_gpio_50000000_REG_IDX_1_VAL_ADDRESS 1342178560 /* 0x50000500 */ +#define DT_N_S_soc_S_gpio_50000000_REG_IDX_1_VAL_SIZE 768 /* 0x300 */ +#define DT_N_S_soc_S_gpio_50000000_RANGES_NUM 0 +#define DT_N_S_soc_S_gpio_50000000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_gpio_50000000_IRQ_NUM 0 +#define DT_N_S_soc_S_gpio_50000000_IRQ_LEVEL 0 +#define DT_N_S_soc_S_gpio_50000000_COMPAT_MATCHES_nordic_nrf_gpio 1 +#define DT_N_S_soc_S_gpio_50000000_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_gpio_50000000_COMPAT_VENDOR_IDX_0 "Nordic Semiconductor" +#define DT_N_S_soc_S_gpio_50000000_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_gpio_50000000_COMPAT_MODEL_IDX_0 "nrf-gpio" +#define DT_N_S_soc_S_gpio_50000000_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_gpio_50000000_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_gpio_50000000_P_reg {1342177280 /* 0x50000000 */, 512 /* 0x200 */, 1342178560 /* 0x50000500 */, 768 /* 0x300 */} +#define DT_N_S_soc_S_gpio_50000000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_gpio_50000000_P_reg_IDX_0 1342177280 +#define DT_N_S_soc_S_gpio_50000000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_gpio_50000000_P_reg_IDX_1 512 +#define DT_N_S_soc_S_gpio_50000000_P_reg_IDX_2_EXISTS 1 +#define DT_N_S_soc_S_gpio_50000000_P_reg_IDX_2 1342178560 +#define DT_N_S_soc_S_gpio_50000000_P_reg_IDX_3_EXISTS 1 +#define DT_N_S_soc_S_gpio_50000000_P_reg_IDX_3 768 +#define DT_N_S_soc_S_gpio_50000000_P_reg_EXISTS 1 +#define DT_N_S_soc_S_gpio_50000000_P_gpiote_instance DT_N_S_soc_S_gpiote_40006000 +#define DT_N_S_soc_S_gpio_50000000_P_gpiote_instance_IDX_0 DT_N_S_soc_S_gpiote_40006000 +#define DT_N_S_soc_S_gpio_50000000_P_gpiote_instance_IDX_0_PH DT_N_S_soc_S_gpiote_40006000 +#define DT_N_S_soc_S_gpio_50000000_P_gpiote_instance_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_gpio_50000000_P_gpiote_instance_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_gpio_50000000, gpiote_instance, 0) +#define DT_N_S_soc_S_gpio_50000000_P_gpiote_instance_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_gpio_50000000, gpiote_instance, 0) +#define DT_N_S_soc_S_gpio_50000000_P_gpiote_instance_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_gpio_50000000, gpiote_instance, 0, __VA_ARGS__) +#define DT_N_S_soc_S_gpio_50000000_P_gpiote_instance_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_gpio_50000000, gpiote_instance, 0, __VA_ARGS__) +#define DT_N_S_soc_S_gpio_50000000_P_gpiote_instance_LEN 1 +#define DT_N_S_soc_S_gpio_50000000_P_gpiote_instance_EXISTS 1 +#define DT_N_S_soc_S_gpio_50000000_P_port 0 +#define DT_N_S_soc_S_gpio_50000000_P_port_EXISTS 1 +#define DT_N_S_soc_S_gpio_50000000_P_gpio_controller 1 +#define DT_N_S_soc_S_gpio_50000000_P_gpio_controller_EXISTS 1 +#define DT_N_S_soc_S_gpio_50000000_P_ngpios 32 +#define DT_N_S_soc_S_gpio_50000000_P_ngpios_EXISTS 1 +#define DT_N_S_soc_S_gpio_50000000_P_status "okay" +#define DT_N_S_soc_S_gpio_50000000_P_status_STRING_UNQUOTED okay +#define DT_N_S_soc_S_gpio_50000000_P_status_STRING_TOKEN okay +#define DT_N_S_soc_S_gpio_50000000_P_status_STRING_UPPER_TOKEN OKAY +#define DT_N_S_soc_S_gpio_50000000_P_status_IDX_0 "okay" +#define DT_N_S_soc_S_gpio_50000000_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_gpio_50000000_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_gpio_50000000_P_status_IDX_0_ENUM_VAL_okay_EXISTS 1 +#define DT_N_S_soc_S_gpio_50000000_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_gpio_50000000, status, 0) +#define DT_N_S_soc_S_gpio_50000000_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_gpio_50000000, status, 0) +#define DT_N_S_soc_S_gpio_50000000_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_gpio_50000000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_gpio_50000000_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_gpio_50000000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_gpio_50000000_P_status_LEN 1 +#define DT_N_S_soc_S_gpio_50000000_P_status_EXISTS 1 +#define DT_N_S_soc_S_gpio_50000000_P_compatible {"nordic,nrf-gpio"} +#define DT_N_S_soc_S_gpio_50000000_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_gpio_50000000_P_compatible_IDX_0 "nordic,nrf-gpio" +#define DT_N_S_soc_S_gpio_50000000_P_compatible_IDX_0_STRING_UNQUOTED nordic,nrf-gpio +#define DT_N_S_soc_S_gpio_50000000_P_compatible_IDX_0_STRING_TOKEN nordic_nrf_gpio +#define DT_N_S_soc_S_gpio_50000000_P_compatible_IDX_0_STRING_UPPER_TOKEN NORDIC_NRF_GPIO +#define DT_N_S_soc_S_gpio_50000000_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_gpio_50000000, compatible, 0) +#define DT_N_S_soc_S_gpio_50000000_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_gpio_50000000, compatible, 0) +#define DT_N_S_soc_S_gpio_50000000_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_gpio_50000000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_gpio_50000000_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_gpio_50000000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_gpio_50000000_P_compatible_LEN 1 +#define DT_N_S_soc_S_gpio_50000000_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_gpio_50000000_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_gpio_50000000_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_gpio_50000000_P_wakeup_source 0 +#define DT_N_S_soc_S_gpio_50000000_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_gpio_50000000_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_gpio_50000000_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /zephyr,user + * + * Node identifier: DT_N_S_zephyr_user + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_zephyr_user_PATH "/zephyr,user" + +/* Node's name with unit-address: */ +#define DT_N_S_zephyr_user_FULL_NAME "zephyr,user" +#define DT_N_S_zephyr_user_FULL_NAME_UNQUOTED zephyr,user +#define DT_N_S_zephyr_user_FULL_NAME_TOKEN zephyr_user +#define DT_N_S_zephyr_user_FULL_NAME_UPPER_TOKEN ZEPHYR_USER + +/* Node parent (/) identifier: */ +#define DT_N_S_zephyr_user_PARENT DT_N + +/* Node's index in its parent's list of children: */ +#define DT_N_S_zephyr_user_CHILD_IDX 9 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_zephyr_user_NODELABEL_NUM 0 +#define DT_N_S_zephyr_user_FOREACH_NODELABEL(fn) +#define DT_N_S_zephyr_user_FOREACH_NODELABEL_VARGS(fn, ...) +#define DT_N_S_zephyr_user_FOREACH_ANCESTOR(fn) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_zephyr_user_CHILD_NUM 0 +#define DT_N_S_zephyr_user_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_zephyr_user_FOREACH_CHILD(fn) +#define DT_N_S_zephyr_user_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_zephyr_user_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_zephyr_user_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_zephyr_user_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_zephyr_user_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_zephyr_user_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_zephyr_user_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's dependency ordinal: */ +#define DT_N_S_zephyr_user_ORD 13 +#define DT_N_S_zephyr_user_ORD_STR_SORTABLE 00013 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_zephyr_user_REQUIRES_ORDS \ + 0, /* / */ \ + 10, /* /soc/adc@40007000 */ \ + 12, /* /soc/gpio@50000000 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_zephyr_user_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_zephyr_user_EXISTS 1 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_zephyr_user_REG_NUM 0 +#define DT_N_S_zephyr_user_RANGES_NUM 0 +#define DT_N_S_zephyr_user_FOREACH_RANGE(fn) +#define DT_N_S_zephyr_user_IRQ_NUM 0 +#define DT_N_S_zephyr_user_IRQ_LEVEL 0 +#define DT_N_S_zephyr_user_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_zephyr_user_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_zephyr_user_P_hum_en_gpios_IDX_0_EXISTS 1 +#define DT_N_S_zephyr_user_P_hum_en_gpios_IDX_0_PH DT_N_S_soc_S_gpio_50000000 +#define DT_N_S_zephyr_user_P_hum_en_gpios_IDX_0_VAL_pin 2 +#define DT_N_S_zephyr_user_P_hum_en_gpios_IDX_0_VAL_pin_EXISTS 1 +#define DT_N_S_zephyr_user_P_hum_en_gpios_IDX_0_VAL_flags 0 +#define DT_N_S_zephyr_user_P_hum_en_gpios_IDX_0_VAL_flags_EXISTS 1 +#define DT_N_S_zephyr_user_P_hum_en_gpios_FOREACH_PROP_ELEM(fn) fn(DT_N_S_zephyr_user, hum_en_gpios, 0) +#define DT_N_S_zephyr_user_P_hum_en_gpios_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_zephyr_user, hum_en_gpios, 0) +#define DT_N_S_zephyr_user_P_hum_en_gpios_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_zephyr_user, hum_en_gpios, 0, __VA_ARGS__) +#define DT_N_S_zephyr_user_P_hum_en_gpios_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_zephyr_user, hum_en_gpios, 0, __VA_ARGS__) +#define DT_N_S_zephyr_user_P_hum_en_gpios_LEN 1 +#define DT_N_S_zephyr_user_P_hum_en_gpios_EXISTS 1 +#define DT_N_S_zephyr_user_P_do2_gpios_IDX_0_EXISTS 1 +#define DT_N_S_zephyr_user_P_do2_gpios_IDX_0_PH DT_N_S_soc_S_gpio_50000000 +#define DT_N_S_zephyr_user_P_do2_gpios_IDX_0_VAL_pin 3 +#define DT_N_S_zephyr_user_P_do2_gpios_IDX_0_VAL_pin_EXISTS 1 +#define DT_N_S_zephyr_user_P_do2_gpios_IDX_0_VAL_flags 512 +#define DT_N_S_zephyr_user_P_do2_gpios_IDX_0_VAL_flags_EXISTS 1 +#define DT_N_S_zephyr_user_P_do2_gpios_FOREACH_PROP_ELEM(fn) fn(DT_N_S_zephyr_user, do2_gpios, 0) +#define DT_N_S_zephyr_user_P_do2_gpios_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_zephyr_user, do2_gpios, 0) +#define DT_N_S_zephyr_user_P_do2_gpios_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_zephyr_user, do2_gpios, 0, __VA_ARGS__) +#define DT_N_S_zephyr_user_P_do2_gpios_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_zephyr_user, do2_gpios, 0, __VA_ARGS__) +#define DT_N_S_zephyr_user_P_do2_gpios_LEN 1 +#define DT_N_S_zephyr_user_P_do2_gpios_EXISTS 1 +#define DT_N_S_zephyr_user_P_do_en_gpios_IDX_0_EXISTS 1 +#define DT_N_S_zephyr_user_P_do_en_gpios_IDX_0_PH DT_N_S_soc_S_gpio_50000000 +#define DT_N_S_zephyr_user_P_do_en_gpios_IDX_0_VAL_pin 9 +#define DT_N_S_zephyr_user_P_do_en_gpios_IDX_0_VAL_pin_EXISTS 1 +#define DT_N_S_zephyr_user_P_do_en_gpios_IDX_0_VAL_flags 0 +#define DT_N_S_zephyr_user_P_do_en_gpios_IDX_0_VAL_flags_EXISTS 1 +#define DT_N_S_zephyr_user_P_do_en_gpios_FOREACH_PROP_ELEM(fn) fn(DT_N_S_zephyr_user, do_en_gpios, 0) +#define DT_N_S_zephyr_user_P_do_en_gpios_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_zephyr_user, do_en_gpios, 0) +#define DT_N_S_zephyr_user_P_do_en_gpios_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_zephyr_user, do_en_gpios, 0, __VA_ARGS__) +#define DT_N_S_zephyr_user_P_do_en_gpios_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_zephyr_user, do_en_gpios, 0, __VA_ARGS__) +#define DT_N_S_zephyr_user_P_do_en_gpios_LEN 1 +#define DT_N_S_zephyr_user_P_do_en_gpios_EXISTS 1 +#define DT_N_S_zephyr_user_P_do1_gpios_IDX_0_EXISTS 1 +#define DT_N_S_zephyr_user_P_do1_gpios_IDX_0_PH DT_N_S_soc_S_gpio_50000000 +#define DT_N_S_zephyr_user_P_do1_gpios_IDX_0_VAL_pin 10 +#define DT_N_S_zephyr_user_P_do1_gpios_IDX_0_VAL_pin_EXISTS 1 +#define DT_N_S_zephyr_user_P_do1_gpios_IDX_0_VAL_flags 0 +#define DT_N_S_zephyr_user_P_do1_gpios_IDX_0_VAL_flags_EXISTS 1 +#define DT_N_S_zephyr_user_P_do1_gpios_FOREACH_PROP_ELEM(fn) fn(DT_N_S_zephyr_user, do1_gpios, 0) +#define DT_N_S_zephyr_user_P_do1_gpios_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_zephyr_user, do1_gpios, 0) +#define DT_N_S_zephyr_user_P_do1_gpios_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_zephyr_user, do1_gpios, 0, __VA_ARGS__) +#define DT_N_S_zephyr_user_P_do1_gpios_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_zephyr_user, do1_gpios, 0, __VA_ARGS__) +#define DT_N_S_zephyr_user_P_do1_gpios_LEN 1 +#define DT_N_S_zephyr_user_P_do1_gpios_EXISTS 1 +#define DT_N_S_zephyr_user_P_btt_meas_en_gpios_IDX_0_EXISTS 1 +#define DT_N_S_zephyr_user_P_btt_meas_en_gpios_IDX_0_PH DT_N_S_soc_S_gpio_50000000 +#define DT_N_S_zephyr_user_P_btt_meas_en_gpios_IDX_0_VAL_pin 29 +#define DT_N_S_zephyr_user_P_btt_meas_en_gpios_IDX_0_VAL_pin_EXISTS 1 +#define DT_N_S_zephyr_user_P_btt_meas_en_gpios_IDX_0_VAL_flags 0 +#define DT_N_S_zephyr_user_P_btt_meas_en_gpios_IDX_0_VAL_flags_EXISTS 1 +#define DT_N_S_zephyr_user_P_btt_meas_en_gpios_FOREACH_PROP_ELEM(fn) fn(DT_N_S_zephyr_user, btt_meas_en_gpios, 0) +#define DT_N_S_zephyr_user_P_btt_meas_en_gpios_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_zephyr_user, btt_meas_en_gpios, 0) +#define DT_N_S_zephyr_user_P_btt_meas_en_gpios_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_zephyr_user, btt_meas_en_gpios, 0, __VA_ARGS__) +#define DT_N_S_zephyr_user_P_btt_meas_en_gpios_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_zephyr_user, btt_meas_en_gpios, 0, __VA_ARGS__) +#define DT_N_S_zephyr_user_P_btt_meas_en_gpios_LEN 1 +#define DT_N_S_zephyr_user_P_btt_meas_en_gpios_EXISTS 1 +#define DT_N_S_zephyr_user_P_io_channels_IDX_0_EXISTS 1 +#define DT_N_S_zephyr_user_P_io_channels_IDX_0_PH DT_N_S_soc_S_adc_40007000 +#define DT_N_S_zephyr_user_P_io_channels_IDX_0_VAL_input 6 +#define DT_N_S_zephyr_user_P_io_channels_IDX_0_VAL_input_EXISTS 1 +#define DT_N_S_zephyr_user_P_io_channels_FOREACH_PROP_ELEM(fn) fn(DT_N_S_zephyr_user, io_channels, 0) +#define DT_N_S_zephyr_user_P_io_channels_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_zephyr_user, io_channels, 0) +#define DT_N_S_zephyr_user_P_io_channels_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_zephyr_user, io_channels, 0, __VA_ARGS__) +#define DT_N_S_zephyr_user_P_io_channels_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_zephyr_user, io_channels, 0, __VA_ARGS__) +#define DT_N_S_zephyr_user_P_io_channels_LEN 1 +#define DT_N_S_zephyr_user_P_io_channels_EXISTS 1 + +/* + * Devicetree node: /buttons + * + * Node identifier: DT_N_S_buttons + * + * Binding (compatible = gpio-keys): + * $ZEPHYR_BASE/dts/bindings/input/gpio-keys.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_buttons_PATH "/buttons" + +/* Node's name with unit-address: */ +#define DT_N_S_buttons_FULL_NAME "buttons" +#define DT_N_S_buttons_FULL_NAME_UNQUOTED buttons +#define DT_N_S_buttons_FULL_NAME_TOKEN buttons +#define DT_N_S_buttons_FULL_NAME_UPPER_TOKEN BUTTONS + +/* Node parent (/) identifier: */ +#define DT_N_S_buttons_PARENT DT_N + +/* Node's index in its parent's list of children: */ +#define DT_N_S_buttons_CHILD_IDX 8 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_buttons_NODELABEL_NUM 0 +#define DT_N_S_buttons_FOREACH_NODELABEL(fn) +#define DT_N_S_buttons_FOREACH_NODELABEL_VARGS(fn, ...) +#define DT_N_S_buttons_FOREACH_ANCESTOR(fn) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_buttons_CHILD_NUM 1 +#define DT_N_S_buttons_CHILD_NUM_STATUS_OKAY 1 +#define DT_N_S_buttons_FOREACH_CHILD(fn) fn(DT_N_S_buttons_S_button_0) +#define DT_N_S_buttons_FOREACH_CHILD_SEP(fn, sep) fn(DT_N_S_buttons_S_button_0) +#define DT_N_S_buttons_FOREACH_CHILD_VARGS(fn, ...) fn(DT_N_S_buttons_S_button_0, __VA_ARGS__) +#define DT_N_S_buttons_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) fn(DT_N_S_buttons_S_button_0, __VA_ARGS__) +#define DT_N_S_buttons_FOREACH_CHILD_STATUS_OKAY(fn) fn(DT_N_S_buttons_S_button_0) +#define DT_N_S_buttons_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) fn(DT_N_S_buttons_S_button_0) +#define DT_N_S_buttons_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) fn(DT_N_S_buttons_S_button_0, __VA_ARGS__) +#define DT_N_S_buttons_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) fn(DT_N_S_buttons_S_button_0, __VA_ARGS__) + +/* Node's dependency ordinal: */ +#define DT_N_S_buttons_ORD 14 +#define DT_N_S_buttons_ORD_STR_SORTABLE 00014 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_buttons_REQUIRES_ORDS \ + 0, /* / */ \ + 12, /* /soc/gpio@50000000 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_buttons_SUPPORTS_ORDS \ + 15, /* /buttons/button_0 */ + +/* Existence and alternate IDs: */ +#define DT_N_S_buttons_EXISTS 1 +#define DT_N_INST_0_gpio_keys DT_N_S_buttons + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_buttons_REG_NUM 0 +#define DT_N_S_buttons_RANGES_NUM 0 +#define DT_N_S_buttons_FOREACH_RANGE(fn) +#define DT_N_S_buttons_IRQ_NUM 0 +#define DT_N_S_buttons_IRQ_LEVEL 0 +#define DT_N_S_buttons_COMPAT_MATCHES_gpio_keys 1 +#define DT_N_S_buttons_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_buttons_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_buttons_P_debounce_interval_ms 30 +#define DT_N_S_buttons_P_debounce_interval_ms_EXISTS 1 +#define DT_N_S_buttons_P_polling_mode 0 +#define DT_N_S_buttons_P_polling_mode_EXISTS 1 +#define DT_N_S_buttons_P_no_disconnect 0 +#define DT_N_S_buttons_P_no_disconnect_EXISTS 1 +#define DT_N_S_buttons_P_compatible {"gpio-keys"} +#define DT_N_S_buttons_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_buttons_P_compatible_IDX_0 "gpio-keys" +#define DT_N_S_buttons_P_compatible_IDX_0_STRING_UNQUOTED gpio-keys +#define DT_N_S_buttons_P_compatible_IDX_0_STRING_TOKEN gpio_keys +#define DT_N_S_buttons_P_compatible_IDX_0_STRING_UPPER_TOKEN GPIO_KEYS +#define DT_N_S_buttons_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_buttons, compatible, 0) +#define DT_N_S_buttons_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_buttons, compatible, 0) +#define DT_N_S_buttons_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_buttons, compatible, 0, __VA_ARGS__) +#define DT_N_S_buttons_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_buttons, compatible, 0, __VA_ARGS__) +#define DT_N_S_buttons_P_compatible_LEN 1 +#define DT_N_S_buttons_P_compatible_EXISTS 1 +#define DT_N_S_buttons_P_zephyr_deferred_init 0 +#define DT_N_S_buttons_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_buttons_P_wakeup_source 0 +#define DT_N_S_buttons_P_wakeup_source_EXISTS 1 +#define DT_N_S_buttons_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_buttons_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /buttons/button_0 + * + * Node identifier: DT_N_S_buttons_S_button_0 + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_buttons_S_button_0_PATH "/buttons/button_0" + +/* Node's name with unit-address: */ +#define DT_N_S_buttons_S_button_0_FULL_NAME "button_0" +#define DT_N_S_buttons_S_button_0_FULL_NAME_UNQUOTED button_0 +#define DT_N_S_buttons_S_button_0_FULL_NAME_TOKEN button_0 +#define DT_N_S_buttons_S_button_0_FULL_NAME_UPPER_TOKEN BUTTON_0 + +/* Node parent (/buttons) identifier: */ +#define DT_N_S_buttons_S_button_0_PARENT DT_N_S_buttons + +/* Node's index in its parent's list of children: */ +#define DT_N_S_buttons_S_button_0_CHILD_IDX 0 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_buttons_S_button_0_NODELABEL_NUM 1 +#define DT_N_S_buttons_S_button_0_FOREACH_NODELABEL(fn) fn(button0) +#define DT_N_S_buttons_S_button_0_FOREACH_NODELABEL_VARGS(fn, ...) fn(button0, __VA_ARGS__) +#define DT_N_S_buttons_S_button_0_FOREACH_ANCESTOR(fn) fn(DT_N_S_buttons) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_buttons_S_button_0_CHILD_NUM 0 +#define DT_N_S_buttons_S_button_0_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_buttons_S_button_0_FOREACH_CHILD(fn) +#define DT_N_S_buttons_S_button_0_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_buttons_S_button_0_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_buttons_S_button_0_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_buttons_S_button_0_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_buttons_S_button_0_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_buttons_S_button_0_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_buttons_S_button_0_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's dependency ordinal: */ +#define DT_N_S_buttons_S_button_0_ORD 15 +#define DT_N_S_buttons_S_button_0_ORD_STR_SORTABLE 00015 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_buttons_S_button_0_REQUIRES_ORDS \ + 12, /* /soc/gpio@50000000 */ \ + 14, /* /buttons */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_buttons_S_button_0_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_buttons_S_button_0_EXISTS 1 +#define DT_N_ALIAS_sw0 DT_N_S_buttons_S_button_0 +#define DT_N_ALIAS_mcuboot_button0 DT_N_S_buttons_S_button_0 +#define DT_N_NODELABEL_button0 DT_N_S_buttons_S_button_0 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_buttons_S_button_0_REG_NUM 0 +#define DT_N_S_buttons_S_button_0_RANGES_NUM 0 +#define DT_N_S_buttons_S_button_0_FOREACH_RANGE(fn) +#define DT_N_S_buttons_S_button_0_IRQ_NUM 0 +#define DT_N_S_buttons_S_button_0_IRQ_LEVEL 0 +#define DT_N_S_buttons_S_button_0_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_buttons_S_button_0_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_buttons_S_button_0_P_gpios_IDX_0_EXISTS 1 +#define DT_N_S_buttons_S_button_0_P_gpios_IDX_0_PH DT_N_S_soc_S_gpio_50000000 +#define DT_N_S_buttons_S_button_0_P_gpios_IDX_0_VAL_pin 28 +#define DT_N_S_buttons_S_button_0_P_gpios_IDX_0_VAL_pin_EXISTS 1 +#define DT_N_S_buttons_S_button_0_P_gpios_IDX_0_VAL_flags 17 +#define DT_N_S_buttons_S_button_0_P_gpios_IDX_0_VAL_flags_EXISTS 1 +#define DT_N_S_buttons_S_button_0_P_gpios_FOREACH_PROP_ELEM(fn) fn(DT_N_S_buttons_S_button_0, gpios, 0) +#define DT_N_S_buttons_S_button_0_P_gpios_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_buttons_S_button_0, gpios, 0) +#define DT_N_S_buttons_S_button_0_P_gpios_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_buttons_S_button_0, gpios, 0, __VA_ARGS__) +#define DT_N_S_buttons_S_button_0_P_gpios_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_buttons_S_button_0, gpios, 0, __VA_ARGS__) +#define DT_N_S_buttons_S_button_0_P_gpios_LEN 1 +#define DT_N_S_buttons_S_button_0_P_gpios_EXISTS 1 +#define DT_N_S_buttons_S_button_0_P_label "Push button switch 0" +#define DT_N_S_buttons_S_button_0_P_label_STRING_UNQUOTED Push button switch 0 +#define DT_N_S_buttons_S_button_0_P_label_STRING_TOKEN Push_button_switch_0 +#define DT_N_S_buttons_S_button_0_P_label_STRING_UPPER_TOKEN PUSH_BUTTON_SWITCH_0 +#define DT_N_S_buttons_S_button_0_P_label_IDX_0 "Push button switch 0" +#define DT_N_S_buttons_S_button_0_P_label_IDX_0_EXISTS 1 +#define DT_N_S_buttons_S_button_0_P_label_FOREACH_PROP_ELEM(fn) fn(DT_N_S_buttons_S_button_0, label, 0) +#define DT_N_S_buttons_S_button_0_P_label_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_buttons_S_button_0, label, 0) +#define DT_N_S_buttons_S_button_0_P_label_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_buttons_S_button_0, label, 0, __VA_ARGS__) +#define DT_N_S_buttons_S_button_0_P_label_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_buttons_S_button_0, label, 0, __VA_ARGS__) +#define DT_N_S_buttons_S_button_0_P_label_LEN 1 +#define DT_N_S_buttons_S_button_0_P_label_EXISTS 1 +#define DT_N_S_buttons_S_button_0_P_zephyr_code 11 +#define DT_N_S_buttons_S_button_0_P_zephyr_code_EXISTS 1 + +/* + * Devicetree node: /cpus + * + * Node identifier: DT_N_S_cpus + */ + +/* Node's full path: */ +#define DT_N_S_cpus_PATH "/cpus" + +/* Node's name with unit-address: */ +#define DT_N_S_cpus_FULL_NAME "cpus" +#define DT_N_S_cpus_FULL_NAME_UNQUOTED cpus +#define DT_N_S_cpus_FULL_NAME_TOKEN cpus +#define DT_N_S_cpus_FULL_NAME_UPPER_TOKEN CPUS + +/* Node parent (/) identifier: */ +#define DT_N_S_cpus_PARENT DT_N + +/* Node's index in its parent's list of children: */ +#define DT_N_S_cpus_CHILD_IDX 6 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_cpus_NODELABEL_NUM 0 +#define DT_N_S_cpus_FOREACH_NODELABEL(fn) +#define DT_N_S_cpus_FOREACH_NODELABEL_VARGS(fn, ...) +#define DT_N_S_cpus_FOREACH_ANCESTOR(fn) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_cpus_CHILD_NUM 1 +#define DT_N_S_cpus_CHILD_NUM_STATUS_OKAY 1 +#define DT_N_S_cpus_FOREACH_CHILD(fn) fn(DT_N_S_cpus_S_cpu_0) +#define DT_N_S_cpus_FOREACH_CHILD_SEP(fn, sep) fn(DT_N_S_cpus_S_cpu_0) +#define DT_N_S_cpus_FOREACH_CHILD_VARGS(fn, ...) fn(DT_N_S_cpus_S_cpu_0, __VA_ARGS__) +#define DT_N_S_cpus_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) fn(DT_N_S_cpus_S_cpu_0, __VA_ARGS__) +#define DT_N_S_cpus_FOREACH_CHILD_STATUS_OKAY(fn) fn(DT_N_S_cpus_S_cpu_0) +#define DT_N_S_cpus_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) fn(DT_N_S_cpus_S_cpu_0) +#define DT_N_S_cpus_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) fn(DT_N_S_cpus_S_cpu_0, __VA_ARGS__) +#define DT_N_S_cpus_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) fn(DT_N_S_cpus_S_cpu_0, __VA_ARGS__) + +/* Node's dependency ordinal: */ +#define DT_N_S_cpus_ORD 16 +#define DT_N_S_cpus_ORD_STR_SORTABLE 00016 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_cpus_REQUIRES_ORDS \ + 0, /* / */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_cpus_SUPPORTS_ORDS \ + 17, /* /cpus/cpu@0 */ + +/* Existence and alternate IDs: */ +#define DT_N_S_cpus_EXISTS 1 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_cpus_REG_NUM 0 +#define DT_N_S_cpus_RANGES_NUM 0 +#define DT_N_S_cpus_FOREACH_RANGE(fn) +#define DT_N_S_cpus_IRQ_NUM 0 +#define DT_N_S_cpus_IRQ_LEVEL 0 +#define DT_N_S_cpus_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_cpus_PINCTRL_NUM 0 + +/* (No generic property macros) */ + +/* + * Devicetree node: /cpus/cpu@0 + * + * Node identifier: DT_N_S_cpus_S_cpu_0 + * + * Binding (compatible = arm,cortex-m4f): + * $ZEPHYR_BASE/dts/bindings/cpu/arm,cortex-m4f.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_cpus_S_cpu_0_PATH "/cpus/cpu@0" + +/* Node's name with unit-address: */ +#define DT_N_S_cpus_S_cpu_0_FULL_NAME "cpu@0" +#define DT_N_S_cpus_S_cpu_0_FULL_NAME_UNQUOTED cpu@0 +#define DT_N_S_cpus_S_cpu_0_FULL_NAME_TOKEN cpu_0 +#define DT_N_S_cpus_S_cpu_0_FULL_NAME_UPPER_TOKEN CPU_0 + +/* Node parent (/cpus) identifier: */ +#define DT_N_S_cpus_S_cpu_0_PARENT DT_N_S_cpus + +/* Node's index in its parent's list of children: */ +#define DT_N_S_cpus_S_cpu_0_CHILD_IDX 0 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_cpus_S_cpu_0_NODELABEL_NUM 0 +#define DT_N_S_cpus_S_cpu_0_FOREACH_NODELABEL(fn) +#define DT_N_S_cpus_S_cpu_0_FOREACH_NODELABEL_VARGS(fn, ...) +#define DT_N_S_cpus_S_cpu_0_FOREACH_ANCESTOR(fn) fn(DT_N_S_cpus) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_cpus_S_cpu_0_CHILD_NUM 1 +#define DT_N_S_cpus_S_cpu_0_CHILD_NUM_STATUS_OKAY 1 +#define DT_N_S_cpus_S_cpu_0_FOREACH_CHILD(fn) fn(DT_N_S_cpus_S_cpu_0_S_itm_e0000000) +#define DT_N_S_cpus_S_cpu_0_FOREACH_CHILD_SEP(fn, sep) fn(DT_N_S_cpus_S_cpu_0_S_itm_e0000000) +#define DT_N_S_cpus_S_cpu_0_FOREACH_CHILD_VARGS(fn, ...) fn(DT_N_S_cpus_S_cpu_0_S_itm_e0000000, __VA_ARGS__) +#define DT_N_S_cpus_S_cpu_0_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) fn(DT_N_S_cpus_S_cpu_0_S_itm_e0000000, __VA_ARGS__) +#define DT_N_S_cpus_S_cpu_0_FOREACH_CHILD_STATUS_OKAY(fn) fn(DT_N_S_cpus_S_cpu_0_S_itm_e0000000) +#define DT_N_S_cpus_S_cpu_0_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) fn(DT_N_S_cpus_S_cpu_0_S_itm_e0000000) +#define DT_N_S_cpus_S_cpu_0_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) fn(DT_N_S_cpus_S_cpu_0_S_itm_e0000000, __VA_ARGS__) +#define DT_N_S_cpus_S_cpu_0_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) fn(DT_N_S_cpus_S_cpu_0_S_itm_e0000000, __VA_ARGS__) + +/* Node's dependency ordinal: */ +#define DT_N_S_cpus_S_cpu_0_ORD 17 +#define DT_N_S_cpus_S_cpu_0_ORD_STR_SORTABLE 00017 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_cpus_S_cpu_0_REQUIRES_ORDS \ + 16, /* /cpus */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_cpus_S_cpu_0_SUPPORTS_ORDS \ + 18, /* /cpus/cpu@0/itm@e0000000 */ + +/* Existence and alternate IDs: */ +#define DT_N_S_cpus_S_cpu_0_EXISTS 1 +#define DT_N_INST_0_arm_cortex_m4f DT_N_S_cpus_S_cpu_0 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_cpus_S_cpu_0_REG_NUM 1 +#define DT_N_S_cpus_S_cpu_0_REG_IDX_0_EXISTS 1 +#define DT_N_S_cpus_S_cpu_0_REG_IDX_0_VAL_ADDRESS 0 /* 0x0 */ +#define DT_N_S_cpus_S_cpu_0_RANGES_NUM 0 +#define DT_N_S_cpus_S_cpu_0_FOREACH_RANGE(fn) +#define DT_N_S_cpus_S_cpu_0_IRQ_NUM 0 +#define DT_N_S_cpus_S_cpu_0_IRQ_LEVEL 0 +#define DT_N_S_cpus_S_cpu_0_COMPAT_MATCHES_arm_cortex_m4f 1 +#define DT_N_S_cpus_S_cpu_0_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_cpus_S_cpu_0_COMPAT_VENDOR_IDX_0 "ARM Ltd." +#define DT_N_S_cpus_S_cpu_0_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_cpus_S_cpu_0_COMPAT_MODEL_IDX_0 "cortex-m4f" +#define DT_N_S_cpus_S_cpu_0_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_cpus_S_cpu_0_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_cpus_S_cpu_0_P_compatible {"arm,cortex-m4f"} +#define DT_N_S_cpus_S_cpu_0_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_cpus_S_cpu_0_P_compatible_IDX_0 "arm,cortex-m4f" +#define DT_N_S_cpus_S_cpu_0_P_compatible_IDX_0_STRING_UNQUOTED arm,cortex-m4f +#define DT_N_S_cpus_S_cpu_0_P_compatible_IDX_0_STRING_TOKEN arm_cortex_m4f +#define DT_N_S_cpus_S_cpu_0_P_compatible_IDX_0_STRING_UPPER_TOKEN ARM_CORTEX_M4F +#define DT_N_S_cpus_S_cpu_0_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_cpus_S_cpu_0, compatible, 0) +#define DT_N_S_cpus_S_cpu_0_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_cpus_S_cpu_0, compatible, 0) +#define DT_N_S_cpus_S_cpu_0_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_cpus_S_cpu_0, compatible, 0, __VA_ARGS__) +#define DT_N_S_cpus_S_cpu_0_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_cpus_S_cpu_0, compatible, 0, __VA_ARGS__) +#define DT_N_S_cpus_S_cpu_0_P_compatible_LEN 1 +#define DT_N_S_cpus_S_cpu_0_P_compatible_EXISTS 1 +#define DT_N_S_cpus_S_cpu_0_P_reg {0 /* 0x0 */} +#define DT_N_S_cpus_S_cpu_0_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_cpus_S_cpu_0_P_reg_IDX_0 0 +#define DT_N_S_cpus_S_cpu_0_P_reg_EXISTS 1 +#define DT_N_S_cpus_S_cpu_0_P_zephyr_deferred_init 0 +#define DT_N_S_cpus_S_cpu_0_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_cpus_S_cpu_0_P_wakeup_source 0 +#define DT_N_S_cpus_S_cpu_0_P_wakeup_source_EXISTS 1 +#define DT_N_S_cpus_S_cpu_0_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_cpus_S_cpu_0_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /cpus/cpu@0/itm@e0000000 + * + * Node identifier: DT_N_S_cpus_S_cpu_0_S_itm_e0000000 + * + * Binding (compatible = arm,armv7m-itm): + * $ZEPHYR_BASE/dts/bindings/debug/arm,armv7m-itm.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_cpus_S_cpu_0_S_itm_e0000000_PATH "/cpus/cpu@0/itm@e0000000" + +/* Node's name with unit-address: */ +#define DT_N_S_cpus_S_cpu_0_S_itm_e0000000_FULL_NAME "itm@e0000000" +#define DT_N_S_cpus_S_cpu_0_S_itm_e0000000_FULL_NAME_UNQUOTED itm@e0000000 +#define DT_N_S_cpus_S_cpu_0_S_itm_e0000000_FULL_NAME_TOKEN itm_e0000000 +#define DT_N_S_cpus_S_cpu_0_S_itm_e0000000_FULL_NAME_UPPER_TOKEN ITM_E0000000 + +/* Node parent (/cpus/cpu@0) identifier: */ +#define DT_N_S_cpus_S_cpu_0_S_itm_e0000000_PARENT DT_N_S_cpus_S_cpu_0 + +/* Node's index in its parent's list of children: */ +#define DT_N_S_cpus_S_cpu_0_S_itm_e0000000_CHILD_IDX 0 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_cpus_S_cpu_0_S_itm_e0000000_NODELABEL_NUM 1 +#define DT_N_S_cpus_S_cpu_0_S_itm_e0000000_FOREACH_NODELABEL(fn) fn(itm) +#define DT_N_S_cpus_S_cpu_0_S_itm_e0000000_FOREACH_NODELABEL_VARGS(fn, ...) fn(itm, __VA_ARGS__) +#define DT_N_S_cpus_S_cpu_0_S_itm_e0000000_FOREACH_ANCESTOR(fn) fn(DT_N_S_cpus_S_cpu_0) fn(DT_N_S_cpus) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_cpus_S_cpu_0_S_itm_e0000000_CHILD_NUM 0 +#define DT_N_S_cpus_S_cpu_0_S_itm_e0000000_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_cpus_S_cpu_0_S_itm_e0000000_FOREACH_CHILD(fn) +#define DT_N_S_cpus_S_cpu_0_S_itm_e0000000_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_cpus_S_cpu_0_S_itm_e0000000_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_cpus_S_cpu_0_S_itm_e0000000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_cpus_S_cpu_0_S_itm_e0000000_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_cpus_S_cpu_0_S_itm_e0000000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_cpus_S_cpu_0_S_itm_e0000000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_cpus_S_cpu_0_S_itm_e0000000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's dependency ordinal: */ +#define DT_N_S_cpus_S_cpu_0_S_itm_e0000000_ORD 18 +#define DT_N_S_cpus_S_cpu_0_S_itm_e0000000_ORD_STR_SORTABLE 00018 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_cpus_S_cpu_0_S_itm_e0000000_REQUIRES_ORDS \ + 17, /* /cpus/cpu@0 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_cpus_S_cpu_0_S_itm_e0000000_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_cpus_S_cpu_0_S_itm_e0000000_EXISTS 1 +#define DT_N_INST_0_arm_armv7m_itm DT_N_S_cpus_S_cpu_0_S_itm_e0000000 +#define DT_N_NODELABEL_itm DT_N_S_cpus_S_cpu_0_S_itm_e0000000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_cpus_S_cpu_0_S_itm_e0000000_REG_NUM 1 +#define DT_N_S_cpus_S_cpu_0_S_itm_e0000000_REG_IDX_0_EXISTS 1 +#define DT_N_S_cpus_S_cpu_0_S_itm_e0000000_REG_IDX_0_VAL_ADDRESS 3758096384 /* 0xe0000000 */ +#define DT_N_S_cpus_S_cpu_0_S_itm_e0000000_REG_IDX_0_VAL_SIZE 4096 /* 0x1000 */ +#define DT_N_S_cpus_S_cpu_0_S_itm_e0000000_RANGES_NUM 0 +#define DT_N_S_cpus_S_cpu_0_S_itm_e0000000_FOREACH_RANGE(fn) +#define DT_N_S_cpus_S_cpu_0_S_itm_e0000000_IRQ_NUM 0 +#define DT_N_S_cpus_S_cpu_0_S_itm_e0000000_IRQ_LEVEL 0 +#define DT_N_S_cpus_S_cpu_0_S_itm_e0000000_COMPAT_MATCHES_arm_armv7m_itm 1 +#define DT_N_S_cpus_S_cpu_0_S_itm_e0000000_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_cpus_S_cpu_0_S_itm_e0000000_COMPAT_VENDOR_IDX_0 "ARM Ltd." +#define DT_N_S_cpus_S_cpu_0_S_itm_e0000000_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_cpus_S_cpu_0_S_itm_e0000000_COMPAT_MODEL_IDX_0 "armv7m-itm" +#define DT_N_S_cpus_S_cpu_0_S_itm_e0000000_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_cpus_S_cpu_0_S_itm_e0000000_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_cpus_S_cpu_0_S_itm_e0000000_P_swo_ref_frequency 32000000 +#define DT_N_S_cpus_S_cpu_0_S_itm_e0000000_P_swo_ref_frequency_EXISTS 1 +#define DT_N_S_cpus_S_cpu_0_S_itm_e0000000_P_compatible {"arm,armv7m-itm"} +#define DT_N_S_cpus_S_cpu_0_S_itm_e0000000_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_cpus_S_cpu_0_S_itm_e0000000_P_compatible_IDX_0 "arm,armv7m-itm" +#define DT_N_S_cpus_S_cpu_0_S_itm_e0000000_P_compatible_IDX_0_STRING_UNQUOTED arm,armv7m-itm +#define DT_N_S_cpus_S_cpu_0_S_itm_e0000000_P_compatible_IDX_0_STRING_TOKEN arm_armv7m_itm +#define DT_N_S_cpus_S_cpu_0_S_itm_e0000000_P_compatible_IDX_0_STRING_UPPER_TOKEN ARM_ARMV7M_ITM +#define DT_N_S_cpus_S_cpu_0_S_itm_e0000000_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_cpus_S_cpu_0_S_itm_e0000000, compatible, 0) +#define DT_N_S_cpus_S_cpu_0_S_itm_e0000000_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_cpus_S_cpu_0_S_itm_e0000000, compatible, 0) +#define DT_N_S_cpus_S_cpu_0_S_itm_e0000000_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_cpus_S_cpu_0_S_itm_e0000000, compatible, 0, __VA_ARGS__) +#define DT_N_S_cpus_S_cpu_0_S_itm_e0000000_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_cpus_S_cpu_0_S_itm_e0000000, compatible, 0, __VA_ARGS__) +#define DT_N_S_cpus_S_cpu_0_S_itm_e0000000_P_compatible_LEN 1 +#define DT_N_S_cpus_S_cpu_0_S_itm_e0000000_P_compatible_EXISTS 1 +#define DT_N_S_cpus_S_cpu_0_S_itm_e0000000_P_reg {3758096384 /* 0xe0000000 */, 4096 /* 0x1000 */} +#define DT_N_S_cpus_S_cpu_0_S_itm_e0000000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_cpus_S_cpu_0_S_itm_e0000000_P_reg_IDX_0 3758096384 +#define DT_N_S_cpus_S_cpu_0_S_itm_e0000000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_cpus_S_cpu_0_S_itm_e0000000_P_reg_IDX_1 4096 +#define DT_N_S_cpus_S_cpu_0_S_itm_e0000000_P_reg_EXISTS 1 +#define DT_N_S_cpus_S_cpu_0_S_itm_e0000000_P_zephyr_deferred_init 0 +#define DT_N_S_cpus_S_cpu_0_S_itm_e0000000_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_cpus_S_cpu_0_S_itm_e0000000_P_wakeup_source 0 +#define DT_N_S_cpus_S_cpu_0_S_itm_e0000000_P_wakeup_source_EXISTS 1 +#define DT_N_S_cpus_S_cpu_0_S_itm_e0000000_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_cpus_S_cpu_0_S_itm_e0000000_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/gpio@50000300 + * + * Node identifier: DT_N_S_soc_S_gpio_50000300 + * + * Binding (compatible = nordic,nrf-gpio): + * $ZEPHYR_BASE/dts/bindings/gpio/nordic,nrf-gpio.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_gpio_50000300_PATH "/soc/gpio@50000300" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_gpio_50000300_FULL_NAME "gpio@50000300" +#define DT_N_S_soc_S_gpio_50000300_FULL_NAME_UNQUOTED gpio@50000300 +#define DT_N_S_soc_S_gpio_50000300_FULL_NAME_TOKEN gpio_50000300 +#define DT_N_S_soc_S_gpio_50000300_FULL_NAME_UPPER_TOKEN GPIO_50000300 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_gpio_50000300_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_gpio_50000300_CHILD_IDX 52 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_gpio_50000300_NODELABEL_NUM 1 +#define DT_N_S_soc_S_gpio_50000300_FOREACH_NODELABEL(fn) fn(gpio1) +#define DT_N_S_soc_S_gpio_50000300_FOREACH_NODELABEL_VARGS(fn, ...) fn(gpio1, __VA_ARGS__) +#define DT_N_S_soc_S_gpio_50000300_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_gpio_50000300_CHILD_NUM 0 +#define DT_N_S_soc_S_gpio_50000300_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_gpio_50000300_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_gpio_50000300_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_gpio_50000300_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_gpio_50000300_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_gpio_50000300_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_gpio_50000300_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_gpio_50000300_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_gpio_50000300_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_gpio_50000300_ORD 19 +#define DT_N_S_soc_S_gpio_50000300_ORD_STR_SORTABLE 00019 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_gpio_50000300_REQUIRES_ORDS \ + 6, /* /soc */ \ + 11, /* /soc/gpiote@40006000 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_gpio_50000300_SUPPORTS_ORDS \ + 20, /* /leds */ \ + 22, /* /leds/led_1 */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_gpio_50000300_EXISTS 1 +#define DT_N_INST_1_nordic_nrf_gpio DT_N_S_soc_S_gpio_50000300 +#define DT_N_NODELABEL_gpio1 DT_N_S_soc_S_gpio_50000300 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_gpio_50000300_REG_NUM 2 +#define DT_N_S_soc_S_gpio_50000300_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_gpio_50000300_REG_IDX_0_VAL_ADDRESS 1342178048 /* 0x50000300 */ +#define DT_N_S_soc_S_gpio_50000300_REG_IDX_0_VAL_SIZE 512 /* 0x200 */ +#define DT_N_S_soc_S_gpio_50000300_REG_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_gpio_50000300_REG_IDX_1_VAL_ADDRESS 1342179328 /* 0x50000800 */ +#define DT_N_S_soc_S_gpio_50000300_REG_IDX_1_VAL_SIZE 768 /* 0x300 */ +#define DT_N_S_soc_S_gpio_50000300_RANGES_NUM 0 +#define DT_N_S_soc_S_gpio_50000300_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_gpio_50000300_IRQ_NUM 0 +#define DT_N_S_soc_S_gpio_50000300_IRQ_LEVEL 0 +#define DT_N_S_soc_S_gpio_50000300_COMPAT_MATCHES_nordic_nrf_gpio 1 +#define DT_N_S_soc_S_gpio_50000300_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_gpio_50000300_COMPAT_VENDOR_IDX_0 "Nordic Semiconductor" +#define DT_N_S_soc_S_gpio_50000300_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_gpio_50000300_COMPAT_MODEL_IDX_0 "nrf-gpio" +#define DT_N_S_soc_S_gpio_50000300_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_gpio_50000300_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_gpio_50000300_P_reg {1342178048 /* 0x50000300 */, 512 /* 0x200 */, 1342179328 /* 0x50000800 */, 768 /* 0x300 */} +#define DT_N_S_soc_S_gpio_50000300_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_gpio_50000300_P_reg_IDX_0 1342178048 +#define DT_N_S_soc_S_gpio_50000300_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_gpio_50000300_P_reg_IDX_1 512 +#define DT_N_S_soc_S_gpio_50000300_P_reg_IDX_2_EXISTS 1 +#define DT_N_S_soc_S_gpio_50000300_P_reg_IDX_2 1342179328 +#define DT_N_S_soc_S_gpio_50000300_P_reg_IDX_3_EXISTS 1 +#define DT_N_S_soc_S_gpio_50000300_P_reg_IDX_3 768 +#define DT_N_S_soc_S_gpio_50000300_P_reg_EXISTS 1 +#define DT_N_S_soc_S_gpio_50000300_P_gpiote_instance DT_N_S_soc_S_gpiote_40006000 +#define DT_N_S_soc_S_gpio_50000300_P_gpiote_instance_IDX_0 DT_N_S_soc_S_gpiote_40006000 +#define DT_N_S_soc_S_gpio_50000300_P_gpiote_instance_IDX_0_PH DT_N_S_soc_S_gpiote_40006000 +#define DT_N_S_soc_S_gpio_50000300_P_gpiote_instance_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_gpio_50000300_P_gpiote_instance_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_gpio_50000300, gpiote_instance, 0) +#define DT_N_S_soc_S_gpio_50000300_P_gpiote_instance_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_gpio_50000300, gpiote_instance, 0) +#define DT_N_S_soc_S_gpio_50000300_P_gpiote_instance_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_gpio_50000300, gpiote_instance, 0, __VA_ARGS__) +#define DT_N_S_soc_S_gpio_50000300_P_gpiote_instance_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_gpio_50000300, gpiote_instance, 0, __VA_ARGS__) +#define DT_N_S_soc_S_gpio_50000300_P_gpiote_instance_LEN 1 +#define DT_N_S_soc_S_gpio_50000300_P_gpiote_instance_EXISTS 1 +#define DT_N_S_soc_S_gpio_50000300_P_port 1 +#define DT_N_S_soc_S_gpio_50000300_P_port_EXISTS 1 +#define DT_N_S_soc_S_gpio_50000300_P_gpio_controller 1 +#define DT_N_S_soc_S_gpio_50000300_P_gpio_controller_EXISTS 1 +#define DT_N_S_soc_S_gpio_50000300_P_ngpios 10 +#define DT_N_S_soc_S_gpio_50000300_P_ngpios_EXISTS 1 +#define DT_N_S_soc_S_gpio_50000300_P_status "okay" +#define DT_N_S_soc_S_gpio_50000300_P_status_STRING_UNQUOTED okay +#define DT_N_S_soc_S_gpio_50000300_P_status_STRING_TOKEN okay +#define DT_N_S_soc_S_gpio_50000300_P_status_STRING_UPPER_TOKEN OKAY +#define DT_N_S_soc_S_gpio_50000300_P_status_IDX_0 "okay" +#define DT_N_S_soc_S_gpio_50000300_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_gpio_50000300_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_gpio_50000300_P_status_IDX_0_ENUM_VAL_okay_EXISTS 1 +#define DT_N_S_soc_S_gpio_50000300_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_gpio_50000300, status, 0) +#define DT_N_S_soc_S_gpio_50000300_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_gpio_50000300, status, 0) +#define DT_N_S_soc_S_gpio_50000300_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_gpio_50000300, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_gpio_50000300_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_gpio_50000300, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_gpio_50000300_P_status_LEN 1 +#define DT_N_S_soc_S_gpio_50000300_P_status_EXISTS 1 +#define DT_N_S_soc_S_gpio_50000300_P_compatible {"nordic,nrf-gpio"} +#define DT_N_S_soc_S_gpio_50000300_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_gpio_50000300_P_compatible_IDX_0 "nordic,nrf-gpio" +#define DT_N_S_soc_S_gpio_50000300_P_compatible_IDX_0_STRING_UNQUOTED nordic,nrf-gpio +#define DT_N_S_soc_S_gpio_50000300_P_compatible_IDX_0_STRING_TOKEN nordic_nrf_gpio +#define DT_N_S_soc_S_gpio_50000300_P_compatible_IDX_0_STRING_UPPER_TOKEN NORDIC_NRF_GPIO +#define DT_N_S_soc_S_gpio_50000300_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_gpio_50000300, compatible, 0) +#define DT_N_S_soc_S_gpio_50000300_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_gpio_50000300, compatible, 0) +#define DT_N_S_soc_S_gpio_50000300_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_gpio_50000300, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_gpio_50000300_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_gpio_50000300, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_gpio_50000300_P_compatible_LEN 1 +#define DT_N_S_soc_S_gpio_50000300_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_gpio_50000300_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_gpio_50000300_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_gpio_50000300_P_wakeup_source 0 +#define DT_N_S_soc_S_gpio_50000300_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_gpio_50000300_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_gpio_50000300_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /leds + * + * Node identifier: DT_N_S_leds + * + * Binding (compatible = gpio-leds): + * $ZEPHYR_BASE/dts/bindings/led/gpio-leds.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_leds_PATH "/leds" + +/* Node's name with unit-address: */ +#define DT_N_S_leds_FULL_NAME "leds" +#define DT_N_S_leds_FULL_NAME_UNQUOTED leds +#define DT_N_S_leds_FULL_NAME_TOKEN leds +#define DT_N_S_leds_FULL_NAME_UPPER_TOKEN LEDS + +/* Node parent (/) identifier: */ +#define DT_N_S_leds_PARENT DT_N + +/* Node's index in its parent's list of children: */ +#define DT_N_S_leds_CHILD_IDX 7 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_leds_NODELABEL_NUM 0 +#define DT_N_S_leds_FOREACH_NODELABEL(fn) +#define DT_N_S_leds_FOREACH_NODELABEL_VARGS(fn, ...) +#define DT_N_S_leds_FOREACH_ANCESTOR(fn) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_leds_CHILD_NUM 2 +#define DT_N_S_leds_CHILD_NUM_STATUS_OKAY 2 +#define DT_N_S_leds_FOREACH_CHILD(fn) fn(DT_N_S_leds_S_led_0) fn(DT_N_S_leds_S_led_1) +#define DT_N_S_leds_FOREACH_CHILD_SEP(fn, sep) fn(DT_N_S_leds_S_led_0) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_leds_S_led_1) +#define DT_N_S_leds_FOREACH_CHILD_VARGS(fn, ...) fn(DT_N_S_leds_S_led_0, __VA_ARGS__) fn(DT_N_S_leds_S_led_1, __VA_ARGS__) +#define DT_N_S_leds_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) fn(DT_N_S_leds_S_led_0, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_leds_S_led_1, __VA_ARGS__) +#define DT_N_S_leds_FOREACH_CHILD_STATUS_OKAY(fn) fn(DT_N_S_leds_S_led_0) fn(DT_N_S_leds_S_led_1) +#define DT_N_S_leds_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) fn(DT_N_S_leds_S_led_0) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_leds_S_led_1) +#define DT_N_S_leds_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) fn(DT_N_S_leds_S_led_0, __VA_ARGS__) fn(DT_N_S_leds_S_led_1, __VA_ARGS__) +#define DT_N_S_leds_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) fn(DT_N_S_leds_S_led_0, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_leds_S_led_1, __VA_ARGS__) + +/* Node's dependency ordinal: */ +#define DT_N_S_leds_ORD 20 +#define DT_N_S_leds_ORD_STR_SORTABLE 00020 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_leds_REQUIRES_ORDS \ + 0, /* / */ \ + 12, /* /soc/gpio@50000000 */ \ + 19, /* /soc/gpio@50000300 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_leds_SUPPORTS_ORDS \ + 21, /* /leds/led_0 */ \ + 22, /* /leds/led_1 */ + +/* Existence and alternate IDs: */ +#define DT_N_S_leds_EXISTS 1 +#define DT_N_INST_0_gpio_leds DT_N_S_leds + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_leds_REG_NUM 0 +#define DT_N_S_leds_RANGES_NUM 0 +#define DT_N_S_leds_FOREACH_RANGE(fn) +#define DT_N_S_leds_IRQ_NUM 0 +#define DT_N_S_leds_IRQ_LEVEL 0 +#define DT_N_S_leds_COMPAT_MATCHES_gpio_leds 1 +#define DT_N_S_leds_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_leds_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_leds_P_compatible {"gpio-leds"} +#define DT_N_S_leds_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_leds_P_compatible_IDX_0 "gpio-leds" +#define DT_N_S_leds_P_compatible_IDX_0_STRING_UNQUOTED gpio-leds +#define DT_N_S_leds_P_compatible_IDX_0_STRING_TOKEN gpio_leds +#define DT_N_S_leds_P_compatible_IDX_0_STRING_UPPER_TOKEN GPIO_LEDS +#define DT_N_S_leds_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_leds, compatible, 0) +#define DT_N_S_leds_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_leds, compatible, 0) +#define DT_N_S_leds_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_leds, compatible, 0, __VA_ARGS__) +#define DT_N_S_leds_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_leds, compatible, 0, __VA_ARGS__) +#define DT_N_S_leds_P_compatible_LEN 1 +#define DT_N_S_leds_P_compatible_EXISTS 1 + +/* + * Devicetree node: /leds/led_0 + * + * Node identifier: DT_N_S_leds_S_led_0 + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_leds_S_led_0_PATH "/leds/led_0" + +/* Node's name with unit-address: */ +#define DT_N_S_leds_S_led_0_FULL_NAME "led_0" +#define DT_N_S_leds_S_led_0_FULL_NAME_UNQUOTED led_0 +#define DT_N_S_leds_S_led_0_FULL_NAME_TOKEN led_0 +#define DT_N_S_leds_S_led_0_FULL_NAME_UPPER_TOKEN LED_0 + +/* Node parent (/leds) identifier: */ +#define DT_N_S_leds_S_led_0_PARENT DT_N_S_leds + +/* Node's index in its parent's list of children: */ +#define DT_N_S_leds_S_led_0_CHILD_IDX 0 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_leds_S_led_0_NODELABEL_NUM 1 +#define DT_N_S_leds_S_led_0_FOREACH_NODELABEL(fn) fn(led0) +#define DT_N_S_leds_S_led_0_FOREACH_NODELABEL_VARGS(fn, ...) fn(led0, __VA_ARGS__) +#define DT_N_S_leds_S_led_0_FOREACH_ANCESTOR(fn) fn(DT_N_S_leds) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_leds_S_led_0_CHILD_NUM 0 +#define DT_N_S_leds_S_led_0_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_leds_S_led_0_FOREACH_CHILD(fn) +#define DT_N_S_leds_S_led_0_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_leds_S_led_0_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_leds_S_led_0_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_leds_S_led_0_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_leds_S_led_0_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_leds_S_led_0_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_leds_S_led_0_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's dependency ordinal: */ +#define DT_N_S_leds_S_led_0_ORD 21 +#define DT_N_S_leds_S_led_0_ORD_STR_SORTABLE 00021 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_leds_S_led_0_REQUIRES_ORDS \ + 12, /* /soc/gpio@50000000 */ \ + 20, /* /leds */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_leds_S_led_0_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_leds_S_led_0_EXISTS 1 +#define DT_N_ALIAS_led0 DT_N_S_leds_S_led_0 +#define DT_N_ALIAS_bootloader_led0 DT_N_S_leds_S_led_0 +#define DT_N_ALIAS_mcuboot_led0 DT_N_S_leds_S_led_0 +#define DT_N_NODELABEL_led0 DT_N_S_leds_S_led_0 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_leds_S_led_0_REG_NUM 0 +#define DT_N_S_leds_S_led_0_RANGES_NUM 0 +#define DT_N_S_leds_S_led_0_FOREACH_RANGE(fn) +#define DT_N_S_leds_S_led_0_IRQ_NUM 0 +#define DT_N_S_leds_S_led_0_IRQ_LEVEL 0 +#define DT_N_S_leds_S_led_0_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_leds_S_led_0_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_leds_S_led_0_P_gpios_IDX_0_EXISTS 1 +#define DT_N_S_leds_S_led_0_P_gpios_IDX_0_PH DT_N_S_soc_S_gpio_50000000 +#define DT_N_S_leds_S_led_0_P_gpios_IDX_0_VAL_pin 5 +#define DT_N_S_leds_S_led_0_P_gpios_IDX_0_VAL_pin_EXISTS 1 +#define DT_N_S_leds_S_led_0_P_gpios_IDX_0_VAL_flags 1 +#define DT_N_S_leds_S_led_0_P_gpios_IDX_0_VAL_flags_EXISTS 1 +#define DT_N_S_leds_S_led_0_P_gpios_FOREACH_PROP_ELEM(fn) fn(DT_N_S_leds_S_led_0, gpios, 0) +#define DT_N_S_leds_S_led_0_P_gpios_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_leds_S_led_0, gpios, 0) +#define DT_N_S_leds_S_led_0_P_gpios_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_leds_S_led_0, gpios, 0, __VA_ARGS__) +#define DT_N_S_leds_S_led_0_P_gpios_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_leds_S_led_0, gpios, 0, __VA_ARGS__) +#define DT_N_S_leds_S_led_0_P_gpios_LEN 1 +#define DT_N_S_leds_S_led_0_P_gpios_EXISTS 1 +#define DT_N_S_leds_S_led_0_P_label "Red LED 0" +#define DT_N_S_leds_S_led_0_P_label_STRING_UNQUOTED Red LED 0 +#define DT_N_S_leds_S_led_0_P_label_STRING_TOKEN Red_LED_0 +#define DT_N_S_leds_S_led_0_P_label_STRING_UPPER_TOKEN RED_LED_0 +#define DT_N_S_leds_S_led_0_P_label_IDX_0 "Red LED 0" +#define DT_N_S_leds_S_led_0_P_label_IDX_0_EXISTS 1 +#define DT_N_S_leds_S_led_0_P_label_FOREACH_PROP_ELEM(fn) fn(DT_N_S_leds_S_led_0, label, 0) +#define DT_N_S_leds_S_led_0_P_label_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_leds_S_led_0, label, 0) +#define DT_N_S_leds_S_led_0_P_label_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_leds_S_led_0, label, 0, __VA_ARGS__) +#define DT_N_S_leds_S_led_0_P_label_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_leds_S_led_0, label, 0, __VA_ARGS__) +#define DT_N_S_leds_S_led_0_P_label_LEN 1 +#define DT_N_S_leds_S_led_0_P_label_EXISTS 1 + +/* + * Devicetree node: /leds/led_1 + * + * Node identifier: DT_N_S_leds_S_led_1 + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_leds_S_led_1_PATH "/leds/led_1" + +/* Node's name with unit-address: */ +#define DT_N_S_leds_S_led_1_FULL_NAME "led_1" +#define DT_N_S_leds_S_led_1_FULL_NAME_UNQUOTED led_1 +#define DT_N_S_leds_S_led_1_FULL_NAME_TOKEN led_1 +#define DT_N_S_leds_S_led_1_FULL_NAME_UPPER_TOKEN LED_1 + +/* Node parent (/leds) identifier: */ +#define DT_N_S_leds_S_led_1_PARENT DT_N_S_leds + +/* Node's index in its parent's list of children: */ +#define DT_N_S_leds_S_led_1_CHILD_IDX 1 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_leds_S_led_1_NODELABEL_NUM 1 +#define DT_N_S_leds_S_led_1_FOREACH_NODELABEL(fn) fn(led1) +#define DT_N_S_leds_S_led_1_FOREACH_NODELABEL_VARGS(fn, ...) fn(led1, __VA_ARGS__) +#define DT_N_S_leds_S_led_1_FOREACH_ANCESTOR(fn) fn(DT_N_S_leds) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_leds_S_led_1_CHILD_NUM 0 +#define DT_N_S_leds_S_led_1_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_leds_S_led_1_FOREACH_CHILD(fn) +#define DT_N_S_leds_S_led_1_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_leds_S_led_1_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_leds_S_led_1_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_leds_S_led_1_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_leds_S_led_1_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_leds_S_led_1_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_leds_S_led_1_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's dependency ordinal: */ +#define DT_N_S_leds_S_led_1_ORD 22 +#define DT_N_S_leds_S_led_1_ORD_STR_SORTABLE 00022 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_leds_S_led_1_REQUIRES_ORDS \ + 19, /* /soc/gpio@50000300 */ \ + 20, /* /leds */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_leds_S_led_1_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_leds_S_led_1_EXISTS 1 +#define DT_N_ALIAS_led1 DT_N_S_leds_S_led_1 +#define DT_N_NODELABEL_led1 DT_N_S_leds_S_led_1 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_leds_S_led_1_REG_NUM 0 +#define DT_N_S_leds_S_led_1_RANGES_NUM 0 +#define DT_N_S_leds_S_led_1_FOREACH_RANGE(fn) +#define DT_N_S_leds_S_led_1_IRQ_NUM 0 +#define DT_N_S_leds_S_led_1_IRQ_LEVEL 0 +#define DT_N_S_leds_S_led_1_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_leds_S_led_1_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_leds_S_led_1_P_gpios_IDX_0_EXISTS 1 +#define DT_N_S_leds_S_led_1_P_gpios_IDX_0_PH DT_N_S_soc_S_gpio_50000300 +#define DT_N_S_leds_S_led_1_P_gpios_IDX_0_VAL_pin 9 +#define DT_N_S_leds_S_led_1_P_gpios_IDX_0_VAL_pin_EXISTS 1 +#define DT_N_S_leds_S_led_1_P_gpios_IDX_0_VAL_flags 1 +#define DT_N_S_leds_S_led_1_P_gpios_IDX_0_VAL_flags_EXISTS 1 +#define DT_N_S_leds_S_led_1_P_gpios_FOREACH_PROP_ELEM(fn) fn(DT_N_S_leds_S_led_1, gpios, 0) +#define DT_N_S_leds_S_led_1_P_gpios_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_leds_S_led_1, gpios, 0) +#define DT_N_S_leds_S_led_1_P_gpios_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_leds_S_led_1, gpios, 0, __VA_ARGS__) +#define DT_N_S_leds_S_led_1_P_gpios_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_leds_S_led_1, gpios, 0, __VA_ARGS__) +#define DT_N_S_leds_S_led_1_P_gpios_LEN 1 +#define DT_N_S_leds_S_led_1_P_gpios_EXISTS 1 +#define DT_N_S_leds_S_led_1_P_label "Green LED 1" +#define DT_N_S_leds_S_led_1_P_label_STRING_UNQUOTED Green LED 1 +#define DT_N_S_leds_S_led_1_P_label_STRING_TOKEN Green_LED_1 +#define DT_N_S_leds_S_led_1_P_label_STRING_UPPER_TOKEN GREEN_LED_1 +#define DT_N_S_leds_S_led_1_P_label_IDX_0 "Green LED 1" +#define DT_N_S_leds_S_led_1_P_label_IDX_0_EXISTS 1 +#define DT_N_S_leds_S_led_1_P_label_FOREACH_PROP_ELEM(fn) fn(DT_N_S_leds_S_led_1, label, 0) +#define DT_N_S_leds_S_led_1_P_label_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_leds_S_led_1, label, 0) +#define DT_N_S_leds_S_led_1_P_label_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_leds_S_led_1, label, 0, __VA_ARGS__) +#define DT_N_S_leds_S_led_1_P_label_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_leds_S_led_1, label, 0, __VA_ARGS__) +#define DT_N_S_leds_S_led_1_P_label_LEN 1 +#define DT_N_S_leds_S_led_1_P_label_EXISTS 1 + +/* + * Devicetree node: /soc/acl@4001e000 + * + * Node identifier: DT_N_S_soc_S_acl_4001e000 + * + * Binding (compatible = nordic,nrf-acl): + * $ZEPHYR_BASE/dts/bindings/arm/nordic,nrf-acl.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_acl_4001e000_PATH "/soc/acl@4001e000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_acl_4001e000_FULL_NAME "acl@4001e000" +#define DT_N_S_soc_S_acl_4001e000_FULL_NAME_UNQUOTED acl@4001e000 +#define DT_N_S_soc_S_acl_4001e000_FULL_NAME_TOKEN acl_4001e000 +#define DT_N_S_soc_S_acl_4001e000_FULL_NAME_UPPER_TOKEN ACL_4001E000 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_acl_4001e000_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_acl_4001e000_CHILD_IDX 38 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_acl_4001e000_NODELABEL_NUM 1 +#define DT_N_S_soc_S_acl_4001e000_FOREACH_NODELABEL(fn) fn(acl) +#define DT_N_S_soc_S_acl_4001e000_FOREACH_NODELABEL_VARGS(fn, ...) fn(acl, __VA_ARGS__) +#define DT_N_S_soc_S_acl_4001e000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_acl_4001e000_CHILD_NUM 0 +#define DT_N_S_soc_S_acl_4001e000_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_acl_4001e000_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_acl_4001e000_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_acl_4001e000_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_acl_4001e000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_acl_4001e000_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_acl_4001e000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_acl_4001e000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_acl_4001e000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_acl_4001e000_ORD 23 +#define DT_N_S_soc_S_acl_4001e000_ORD_STR_SORTABLE 00023 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_acl_4001e000_REQUIRES_ORDS \ + 6, /* /soc */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_acl_4001e000_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_acl_4001e000_EXISTS 1 +#define DT_N_INST_0_nordic_nrf_acl DT_N_S_soc_S_acl_4001e000 +#define DT_N_NODELABEL_acl DT_N_S_soc_S_acl_4001e000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_acl_4001e000_REG_NUM 1 +#define DT_N_S_soc_S_acl_4001e000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_acl_4001e000_REG_IDX_0_VAL_ADDRESS 1073864704 /* 0x4001e000 */ +#define DT_N_S_soc_S_acl_4001e000_REG_IDX_0_VAL_SIZE 4096 /* 0x1000 */ +#define DT_N_S_soc_S_acl_4001e000_RANGES_NUM 0 +#define DT_N_S_soc_S_acl_4001e000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_acl_4001e000_IRQ_NUM 0 +#define DT_N_S_soc_S_acl_4001e000_IRQ_LEVEL 0 +#define DT_N_S_soc_S_acl_4001e000_COMPAT_MATCHES_nordic_nrf_acl 1 +#define DT_N_S_soc_S_acl_4001e000_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_acl_4001e000_COMPAT_VENDOR_IDX_0 "Nordic Semiconductor" +#define DT_N_S_soc_S_acl_4001e000_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_acl_4001e000_COMPAT_MODEL_IDX_0 "nrf-acl" +#define DT_N_S_soc_S_acl_4001e000_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_acl_4001e000_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_acl_4001e000_P_reg {1073864704 /* 0x4001e000 */, 4096 /* 0x1000 */} +#define DT_N_S_soc_S_acl_4001e000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_acl_4001e000_P_reg_IDX_0 1073864704 +#define DT_N_S_soc_S_acl_4001e000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_acl_4001e000_P_reg_IDX_1 4096 +#define DT_N_S_soc_S_acl_4001e000_P_reg_EXISTS 1 +#define DT_N_S_soc_S_acl_4001e000_P_status "okay" +#define DT_N_S_soc_S_acl_4001e000_P_status_STRING_UNQUOTED okay +#define DT_N_S_soc_S_acl_4001e000_P_status_STRING_TOKEN okay +#define DT_N_S_soc_S_acl_4001e000_P_status_STRING_UPPER_TOKEN OKAY +#define DT_N_S_soc_S_acl_4001e000_P_status_IDX_0 "okay" +#define DT_N_S_soc_S_acl_4001e000_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_acl_4001e000_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_acl_4001e000_P_status_IDX_0_ENUM_VAL_okay_EXISTS 1 +#define DT_N_S_soc_S_acl_4001e000_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_acl_4001e000, status, 0) +#define DT_N_S_soc_S_acl_4001e000_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_acl_4001e000, status, 0) +#define DT_N_S_soc_S_acl_4001e000_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_acl_4001e000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_acl_4001e000_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_acl_4001e000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_acl_4001e000_P_status_LEN 1 +#define DT_N_S_soc_S_acl_4001e000_P_status_EXISTS 1 +#define DT_N_S_soc_S_acl_4001e000_P_compatible {"nordic,nrf-acl"} +#define DT_N_S_soc_S_acl_4001e000_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_acl_4001e000_P_compatible_IDX_0 "nordic,nrf-acl" +#define DT_N_S_soc_S_acl_4001e000_P_compatible_IDX_0_STRING_UNQUOTED nordic,nrf-acl +#define DT_N_S_soc_S_acl_4001e000_P_compatible_IDX_0_STRING_TOKEN nordic_nrf_acl +#define DT_N_S_soc_S_acl_4001e000_P_compatible_IDX_0_STRING_UPPER_TOKEN NORDIC_NRF_ACL +#define DT_N_S_soc_S_acl_4001e000_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_acl_4001e000, compatible, 0) +#define DT_N_S_soc_S_acl_4001e000_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_acl_4001e000, compatible, 0) +#define DT_N_S_soc_S_acl_4001e000_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_acl_4001e000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_acl_4001e000_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_acl_4001e000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_acl_4001e000_P_compatible_LEN 1 +#define DT_N_S_soc_S_acl_4001e000_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_acl_4001e000_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_acl_4001e000_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_acl_4001e000_P_wakeup_source 0 +#define DT_N_S_soc_S_acl_4001e000_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_acl_4001e000_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_acl_4001e000_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/ccm@4000f000 + * + * Node identifier: DT_N_S_soc_S_ccm_4000f000 + * + * Binding (compatible = nordic,nrf-ccm): + * $ZEPHYR_BASE/dts/bindings/crypto/nordic,nrf-ccm.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_ccm_4000f000_PATH "/soc/ccm@4000f000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_ccm_4000f000_FULL_NAME "ccm@4000f000" +#define DT_N_S_soc_S_ccm_4000f000_FULL_NAME_UNQUOTED ccm@4000f000 +#define DT_N_S_soc_S_ccm_4000f000_FULL_NAME_TOKEN ccm_4000f000 +#define DT_N_S_soc_S_ccm_4000f000_FULL_NAME_UPPER_TOKEN CCM_4000F000 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_ccm_4000f000_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_ccm_4000f000_CHILD_IDX 23 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_ccm_4000f000_NODELABEL_NUM 1 +#define DT_N_S_soc_S_ccm_4000f000_FOREACH_NODELABEL(fn) fn(ccm) +#define DT_N_S_soc_S_ccm_4000f000_FOREACH_NODELABEL_VARGS(fn, ...) fn(ccm, __VA_ARGS__) +#define DT_N_S_soc_S_ccm_4000f000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_ccm_4000f000_CHILD_NUM 0 +#define DT_N_S_soc_S_ccm_4000f000_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_ccm_4000f000_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_ccm_4000f000_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_ccm_4000f000_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_ccm_4000f000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_ccm_4000f000_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_ccm_4000f000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_ccm_4000f000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_ccm_4000f000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_ccm_4000f000_ORD 24 +#define DT_N_S_soc_S_ccm_4000f000_ORD_STR_SORTABLE 00024 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_ccm_4000f000_REQUIRES_ORDS \ + 6, /* /soc */ \ + 7, /* /soc/interrupt-controller@e000e100 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_ccm_4000f000_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_ccm_4000f000_EXISTS 1 +#define DT_N_INST_0_nordic_nrf_ccm DT_N_S_soc_S_ccm_4000f000 +#define DT_N_NODELABEL_ccm DT_N_S_soc_S_ccm_4000f000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_ccm_4000f000_REG_NUM 1 +#define DT_N_S_soc_S_ccm_4000f000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_ccm_4000f000_REG_IDX_0_VAL_ADDRESS 1073803264 /* 0x4000f000 */ +#define DT_N_S_soc_S_ccm_4000f000_REG_IDX_0_VAL_SIZE 4096 /* 0x1000 */ +#define DT_N_S_soc_S_ccm_4000f000_RANGES_NUM 0 +#define DT_N_S_soc_S_ccm_4000f000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_ccm_4000f000_IRQ_NUM 1 +#define DT_N_S_soc_S_ccm_4000f000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_ccm_4000f000_IRQ_IDX_0_VAL_irq 15 +#define DT_N_S_soc_S_ccm_4000f000_IRQ_IDX_0_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_ccm_4000f000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_ccm_4000f000_IRQ_IDX_0_VAL_priority 1 +#define DT_N_S_soc_S_ccm_4000f000_IRQ_IDX_0_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_ccm_4000f000_IRQ_IDX_0_CONTROLLER DT_N_S_soc_S_interrupt_controller_e000e100 +#define DT_N_S_soc_S_ccm_4000f000_IRQ_LEVEL 1 +#define DT_N_S_soc_S_ccm_4000f000_COMPAT_MATCHES_nordic_nrf_ccm 1 +#define DT_N_S_soc_S_ccm_4000f000_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_ccm_4000f000_COMPAT_VENDOR_IDX_0 "Nordic Semiconductor" +#define DT_N_S_soc_S_ccm_4000f000_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_ccm_4000f000_COMPAT_MODEL_IDX_0 "nrf-ccm" +#define DT_N_S_soc_S_ccm_4000f000_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_ccm_4000f000_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_ccm_4000f000_P_reg {1073803264 /* 0x4000f000 */, 4096 /* 0x1000 */} +#define DT_N_S_soc_S_ccm_4000f000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_ccm_4000f000_P_reg_IDX_0 1073803264 +#define DT_N_S_soc_S_ccm_4000f000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_ccm_4000f000_P_reg_IDX_1 4096 +#define DT_N_S_soc_S_ccm_4000f000_P_reg_EXISTS 1 +#define DT_N_S_soc_S_ccm_4000f000_P_interrupts {15 /* 0xf */, 1 /* 0x1 */} +#define DT_N_S_soc_S_ccm_4000f000_P_interrupts_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_ccm_4000f000_P_interrupts_IDX_0 15 +#define DT_N_S_soc_S_ccm_4000f000_P_interrupts_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_ccm_4000f000_P_interrupts_IDX_1 1 +#define DT_N_S_soc_S_ccm_4000f000_P_interrupts_EXISTS 1 +#define DT_N_S_soc_S_ccm_4000f000_P_length_field_length_8_bits 1 +#define DT_N_S_soc_S_ccm_4000f000_P_length_field_length_8_bits_EXISTS 1 +#define DT_N_S_soc_S_ccm_4000f000_P_headermask_supported 1 +#define DT_N_S_soc_S_ccm_4000f000_P_headermask_supported_EXISTS 1 +#define DT_N_S_soc_S_ccm_4000f000_P_status "okay" +#define DT_N_S_soc_S_ccm_4000f000_P_status_STRING_UNQUOTED okay +#define DT_N_S_soc_S_ccm_4000f000_P_status_STRING_TOKEN okay +#define DT_N_S_soc_S_ccm_4000f000_P_status_STRING_UPPER_TOKEN OKAY +#define DT_N_S_soc_S_ccm_4000f000_P_status_IDX_0 "okay" +#define DT_N_S_soc_S_ccm_4000f000_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_ccm_4000f000_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_ccm_4000f000_P_status_IDX_0_ENUM_VAL_okay_EXISTS 1 +#define DT_N_S_soc_S_ccm_4000f000_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_ccm_4000f000, status, 0) +#define DT_N_S_soc_S_ccm_4000f000_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_ccm_4000f000, status, 0) +#define DT_N_S_soc_S_ccm_4000f000_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_ccm_4000f000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_ccm_4000f000_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_ccm_4000f000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_ccm_4000f000_P_status_LEN 1 +#define DT_N_S_soc_S_ccm_4000f000_P_status_EXISTS 1 +#define DT_N_S_soc_S_ccm_4000f000_P_compatible {"nordic,nrf-ccm"} +#define DT_N_S_soc_S_ccm_4000f000_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_ccm_4000f000_P_compatible_IDX_0 "nordic,nrf-ccm" +#define DT_N_S_soc_S_ccm_4000f000_P_compatible_IDX_0_STRING_UNQUOTED nordic,nrf-ccm +#define DT_N_S_soc_S_ccm_4000f000_P_compatible_IDX_0_STRING_TOKEN nordic_nrf_ccm +#define DT_N_S_soc_S_ccm_4000f000_P_compatible_IDX_0_STRING_UPPER_TOKEN NORDIC_NRF_CCM +#define DT_N_S_soc_S_ccm_4000f000_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_ccm_4000f000, compatible, 0) +#define DT_N_S_soc_S_ccm_4000f000_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_ccm_4000f000, compatible, 0) +#define DT_N_S_soc_S_ccm_4000f000_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_ccm_4000f000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_ccm_4000f000_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_ccm_4000f000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_ccm_4000f000_P_compatible_LEN 1 +#define DT_N_S_soc_S_ccm_4000f000_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_ccm_4000f000_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_ccm_4000f000_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_ccm_4000f000_P_wakeup_source 0 +#define DT_N_S_soc_S_ccm_4000f000_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_ccm_4000f000_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_ccm_4000f000_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/clock@40000000 + * + * Node identifier: DT_N_S_soc_S_clock_40000000 + * + * Binding (compatible = nordic,nrf-clock): + * $ZEPHYR_BASE/dts/bindings/clock/nordic,nrf-clock.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_clock_40000000_PATH "/soc/clock@40000000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_clock_40000000_FULL_NAME "clock@40000000" +#define DT_N_S_soc_S_clock_40000000_FULL_NAME_UNQUOTED clock@40000000 +#define DT_N_S_soc_S_clock_40000000_FULL_NAME_TOKEN clock_40000000 +#define DT_N_S_soc_S_clock_40000000_FULL_NAME_UPPER_TOKEN CLOCK_40000000 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_clock_40000000_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_clock_40000000_CHILD_IDX 5 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_clock_40000000_NODELABEL_NUM 1 +#define DT_N_S_soc_S_clock_40000000_FOREACH_NODELABEL(fn) fn(clock) +#define DT_N_S_soc_S_clock_40000000_FOREACH_NODELABEL_VARGS(fn, ...) fn(clock, __VA_ARGS__) +#define DT_N_S_soc_S_clock_40000000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_clock_40000000_CHILD_NUM 0 +#define DT_N_S_soc_S_clock_40000000_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_clock_40000000_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_clock_40000000_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_clock_40000000_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_clock_40000000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_clock_40000000_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_clock_40000000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_clock_40000000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_clock_40000000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_clock_40000000_ORD 25 +#define DT_N_S_soc_S_clock_40000000_ORD_STR_SORTABLE 00025 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_clock_40000000_REQUIRES_ORDS \ + 6, /* /soc */ \ + 7, /* /soc/interrupt-controller@e000e100 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_clock_40000000_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_clock_40000000_EXISTS 1 +#define DT_N_INST_0_nordic_nrf_clock DT_N_S_soc_S_clock_40000000 +#define DT_N_NODELABEL_clock DT_N_S_soc_S_clock_40000000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_clock_40000000_REG_NUM 1 +#define DT_N_S_soc_S_clock_40000000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_clock_40000000_REG_IDX_0_VAL_ADDRESS 1073741824 /* 0x40000000 */ +#define DT_N_S_soc_S_clock_40000000_REG_IDX_0_VAL_SIZE 4096 /* 0x1000 */ +#define DT_N_S_soc_S_clock_40000000_RANGES_NUM 0 +#define DT_N_S_soc_S_clock_40000000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_clock_40000000_IRQ_NUM 1 +#define DT_N_S_soc_S_clock_40000000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_clock_40000000_IRQ_IDX_0_VAL_irq 0 +#define DT_N_S_soc_S_clock_40000000_IRQ_IDX_0_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_clock_40000000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_clock_40000000_IRQ_IDX_0_VAL_priority 1 +#define DT_N_S_soc_S_clock_40000000_IRQ_IDX_0_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_clock_40000000_IRQ_IDX_0_CONTROLLER DT_N_S_soc_S_interrupt_controller_e000e100 +#define DT_N_S_soc_S_clock_40000000_IRQ_LEVEL 1 +#define DT_N_S_soc_S_clock_40000000_COMPAT_MATCHES_nordic_nrf_clock 1 +#define DT_N_S_soc_S_clock_40000000_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_clock_40000000_COMPAT_VENDOR_IDX_0 "Nordic Semiconductor" +#define DT_N_S_soc_S_clock_40000000_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_clock_40000000_COMPAT_MODEL_IDX_0 "nrf-clock" +#define DT_N_S_soc_S_clock_40000000_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_clock_40000000_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_clock_40000000_P_reg {1073741824 /* 0x40000000 */, 4096 /* 0x1000 */} +#define DT_N_S_soc_S_clock_40000000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_clock_40000000_P_reg_IDX_0 1073741824 +#define DT_N_S_soc_S_clock_40000000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_clock_40000000_P_reg_IDX_1 4096 +#define DT_N_S_soc_S_clock_40000000_P_reg_EXISTS 1 +#define DT_N_S_soc_S_clock_40000000_P_interrupts {0 /* 0x0 */, 1 /* 0x1 */} +#define DT_N_S_soc_S_clock_40000000_P_interrupts_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_clock_40000000_P_interrupts_IDX_0 0 +#define DT_N_S_soc_S_clock_40000000_P_interrupts_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_clock_40000000_P_interrupts_IDX_1 1 +#define DT_N_S_soc_S_clock_40000000_P_interrupts_EXISTS 1 +#define DT_N_S_soc_S_clock_40000000_P_status "okay" +#define DT_N_S_soc_S_clock_40000000_P_status_STRING_UNQUOTED okay +#define DT_N_S_soc_S_clock_40000000_P_status_STRING_TOKEN okay +#define DT_N_S_soc_S_clock_40000000_P_status_STRING_UPPER_TOKEN OKAY +#define DT_N_S_soc_S_clock_40000000_P_status_IDX_0 "okay" +#define DT_N_S_soc_S_clock_40000000_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_clock_40000000_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_clock_40000000_P_status_IDX_0_ENUM_VAL_okay_EXISTS 1 +#define DT_N_S_soc_S_clock_40000000_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_clock_40000000, status, 0) +#define DT_N_S_soc_S_clock_40000000_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_clock_40000000, status, 0) +#define DT_N_S_soc_S_clock_40000000_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_clock_40000000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_clock_40000000_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_clock_40000000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_clock_40000000_P_status_LEN 1 +#define DT_N_S_soc_S_clock_40000000_P_status_EXISTS 1 +#define DT_N_S_soc_S_clock_40000000_P_compatible {"nordic,nrf-clock"} +#define DT_N_S_soc_S_clock_40000000_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_clock_40000000_P_compatible_IDX_0 "nordic,nrf-clock" +#define DT_N_S_soc_S_clock_40000000_P_compatible_IDX_0_STRING_UNQUOTED nordic,nrf-clock +#define DT_N_S_soc_S_clock_40000000_P_compatible_IDX_0_STRING_TOKEN nordic_nrf_clock +#define DT_N_S_soc_S_clock_40000000_P_compatible_IDX_0_STRING_UPPER_TOKEN NORDIC_NRF_CLOCK +#define DT_N_S_soc_S_clock_40000000_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_clock_40000000, compatible, 0) +#define DT_N_S_soc_S_clock_40000000_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_clock_40000000, compatible, 0) +#define DT_N_S_soc_S_clock_40000000_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_clock_40000000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_clock_40000000_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_clock_40000000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_clock_40000000_P_compatible_LEN 1 +#define DT_N_S_soc_S_clock_40000000_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_clock_40000000_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_clock_40000000_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_clock_40000000_P_wakeup_source 0 +#define DT_N_S_soc_S_clock_40000000_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_clock_40000000_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_clock_40000000_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/comparator@40013000 + * + * Node identifier: DT_N_S_soc_S_comparator_40013000 + * + * Binding (compatible = nordic,nrf-comp): + * $ZEPHYR_BASE/dts/bindings/comparator/nordic,nrf-comp.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_comparator_40013000_PATH "/soc/comparator@40013000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_comparator_40013000_FULL_NAME "comparator@40013000" +#define DT_N_S_soc_S_comparator_40013000_FULL_NAME_UNQUOTED comparator@40013000 +#define DT_N_S_soc_S_comparator_40013000_FULL_NAME_TOKEN comparator_40013000 +#define DT_N_S_soc_S_comparator_40013000_FULL_NAME_UPPER_TOKEN COMPARATOR_40013000 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_comparator_40013000_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_comparator_40013000_CHILD_IDX 27 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_comparator_40013000_NODELABEL_NUM 1 +#define DT_N_S_soc_S_comparator_40013000_FOREACH_NODELABEL(fn) fn(comp) +#define DT_N_S_soc_S_comparator_40013000_FOREACH_NODELABEL_VARGS(fn, ...) fn(comp, __VA_ARGS__) +#define DT_N_S_soc_S_comparator_40013000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_comparator_40013000_CHILD_NUM 0 +#define DT_N_S_soc_S_comparator_40013000_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_comparator_40013000_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_comparator_40013000_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_comparator_40013000_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_comparator_40013000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_comparator_40013000_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_comparator_40013000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_comparator_40013000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_comparator_40013000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_comparator_40013000_ORD 26 +#define DT_N_S_soc_S_comparator_40013000_ORD_STR_SORTABLE 00026 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_comparator_40013000_REQUIRES_ORDS \ + 6, /* /soc */ \ + 7, /* /soc/interrupt-controller@e000e100 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_comparator_40013000_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_comparator_40013000_EXISTS 1 +#define DT_N_INST_0_nordic_nrf_comp DT_N_S_soc_S_comparator_40013000 +#define DT_N_NODELABEL_comp DT_N_S_soc_S_comparator_40013000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_comparator_40013000_REG_NUM 1 +#define DT_N_S_soc_S_comparator_40013000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_comparator_40013000_REG_IDX_0_VAL_ADDRESS 1073819648 /* 0x40013000 */ +#define DT_N_S_soc_S_comparator_40013000_REG_IDX_0_VAL_SIZE 4096 /* 0x1000 */ +#define DT_N_S_soc_S_comparator_40013000_RANGES_NUM 0 +#define DT_N_S_soc_S_comparator_40013000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_comparator_40013000_IRQ_NUM 1 +#define DT_N_S_soc_S_comparator_40013000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_comparator_40013000_IRQ_IDX_0_VAL_irq 19 +#define DT_N_S_soc_S_comparator_40013000_IRQ_IDX_0_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_comparator_40013000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_comparator_40013000_IRQ_IDX_0_VAL_priority 1 +#define DT_N_S_soc_S_comparator_40013000_IRQ_IDX_0_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_comparator_40013000_IRQ_IDX_0_CONTROLLER DT_N_S_soc_S_interrupt_controller_e000e100 +#define DT_N_S_soc_S_comparator_40013000_IRQ_LEVEL 1 +#define DT_N_S_soc_S_comparator_40013000_COMPAT_MATCHES_nordic_nrf_comp 1 +#define DT_N_S_soc_S_comparator_40013000_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_comparator_40013000_COMPAT_VENDOR_IDX_0 "Nordic Semiconductor" +#define DT_N_S_soc_S_comparator_40013000_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_comparator_40013000_COMPAT_MODEL_IDX_0 "nrf-comp" +#define DT_N_S_soc_S_comparator_40013000_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_comparator_40013000_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_comparator_40013000_P_enable_hyst 0 +#define DT_N_S_soc_S_comparator_40013000_P_enable_hyst_EXISTS 1 +#define DT_N_S_soc_S_comparator_40013000_P_status "disabled" +#define DT_N_S_soc_S_comparator_40013000_P_status_STRING_UNQUOTED disabled +#define DT_N_S_soc_S_comparator_40013000_P_status_STRING_TOKEN disabled +#define DT_N_S_soc_S_comparator_40013000_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_soc_S_comparator_40013000_P_status_IDX_0 "disabled" +#define DT_N_S_soc_S_comparator_40013000_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_comparator_40013000_P_status_IDX_0_ENUM_IDX 2 +#define DT_N_S_soc_S_comparator_40013000_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_comparator_40013000_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_comparator_40013000, status, 0) +#define DT_N_S_soc_S_comparator_40013000_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_comparator_40013000, status, 0) +#define DT_N_S_soc_S_comparator_40013000_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_comparator_40013000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_comparator_40013000_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_comparator_40013000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_comparator_40013000_P_status_LEN 1 +#define DT_N_S_soc_S_comparator_40013000_P_status_EXISTS 1 +#define DT_N_S_soc_S_comparator_40013000_P_compatible {"nordic,nrf-comp"} +#define DT_N_S_soc_S_comparator_40013000_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_comparator_40013000_P_compatible_IDX_0 "nordic,nrf-comp" +#define DT_N_S_soc_S_comparator_40013000_P_compatible_IDX_0_STRING_UNQUOTED nordic,nrf-comp +#define DT_N_S_soc_S_comparator_40013000_P_compatible_IDX_0_STRING_TOKEN nordic_nrf_comp +#define DT_N_S_soc_S_comparator_40013000_P_compatible_IDX_0_STRING_UPPER_TOKEN NORDIC_NRF_COMP +#define DT_N_S_soc_S_comparator_40013000_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_comparator_40013000, compatible, 0) +#define DT_N_S_soc_S_comparator_40013000_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_comparator_40013000, compatible, 0) +#define DT_N_S_soc_S_comparator_40013000_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_comparator_40013000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_comparator_40013000_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_comparator_40013000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_comparator_40013000_P_compatible_LEN 1 +#define DT_N_S_soc_S_comparator_40013000_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_comparator_40013000_P_reg {1073819648 /* 0x40013000 */, 4096 /* 0x1000 */} +#define DT_N_S_soc_S_comparator_40013000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_comparator_40013000_P_reg_IDX_0 1073819648 +#define DT_N_S_soc_S_comparator_40013000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_comparator_40013000_P_reg_IDX_1 4096 +#define DT_N_S_soc_S_comparator_40013000_P_reg_EXISTS 1 +#define DT_N_S_soc_S_comparator_40013000_P_interrupts {19 /* 0x13 */, 1 /* 0x1 */} +#define DT_N_S_soc_S_comparator_40013000_P_interrupts_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_comparator_40013000_P_interrupts_IDX_0 19 +#define DT_N_S_soc_S_comparator_40013000_P_interrupts_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_comparator_40013000_P_interrupts_IDX_1 1 +#define DT_N_S_soc_S_comparator_40013000_P_interrupts_EXISTS 1 +#define DT_N_S_soc_S_comparator_40013000_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_comparator_40013000_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_comparator_40013000_P_wakeup_source 0 +#define DT_N_S_soc_S_comparator_40013000_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_comparator_40013000_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_comparator_40013000_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/ecb@4000e000 + * + * Node identifier: DT_N_S_soc_S_ecb_4000e000 + * + * Binding (compatible = nordic,nrf-ecb): + * $ZEPHYR_BASE/dts/bindings/crypto/nordic,nrf-ecb.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_ecb_4000e000_PATH "/soc/ecb@4000e000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_ecb_4000e000_FULL_NAME "ecb@4000e000" +#define DT_N_S_soc_S_ecb_4000e000_FULL_NAME_UNQUOTED ecb@4000e000 +#define DT_N_S_soc_S_ecb_4000e000_FULL_NAME_TOKEN ecb_4000e000 +#define DT_N_S_soc_S_ecb_4000e000_FULL_NAME_UPPER_TOKEN ECB_4000E000 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_ecb_4000e000_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_ecb_4000e000_CHILD_IDX 22 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_ecb_4000e000_NODELABEL_NUM 1 +#define DT_N_S_soc_S_ecb_4000e000_FOREACH_NODELABEL(fn) fn(ecb) +#define DT_N_S_soc_S_ecb_4000e000_FOREACH_NODELABEL_VARGS(fn, ...) fn(ecb, __VA_ARGS__) +#define DT_N_S_soc_S_ecb_4000e000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_ecb_4000e000_CHILD_NUM 0 +#define DT_N_S_soc_S_ecb_4000e000_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_ecb_4000e000_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_ecb_4000e000_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_ecb_4000e000_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_ecb_4000e000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_ecb_4000e000_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_ecb_4000e000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_ecb_4000e000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_ecb_4000e000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_ecb_4000e000_ORD 27 +#define DT_N_S_soc_S_ecb_4000e000_ORD_STR_SORTABLE 00027 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_ecb_4000e000_REQUIRES_ORDS \ + 6, /* /soc */ \ + 7, /* /soc/interrupt-controller@e000e100 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_ecb_4000e000_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_ecb_4000e000_EXISTS 1 +#define DT_N_INST_0_nordic_nrf_ecb DT_N_S_soc_S_ecb_4000e000 +#define DT_N_NODELABEL_ecb DT_N_S_soc_S_ecb_4000e000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_ecb_4000e000_REG_NUM 1 +#define DT_N_S_soc_S_ecb_4000e000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_ecb_4000e000_REG_IDX_0_VAL_ADDRESS 1073799168 /* 0x4000e000 */ +#define DT_N_S_soc_S_ecb_4000e000_REG_IDX_0_VAL_SIZE 4096 /* 0x1000 */ +#define DT_N_S_soc_S_ecb_4000e000_RANGES_NUM 0 +#define DT_N_S_soc_S_ecb_4000e000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_ecb_4000e000_IRQ_NUM 1 +#define DT_N_S_soc_S_ecb_4000e000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_ecb_4000e000_IRQ_IDX_0_VAL_irq 14 +#define DT_N_S_soc_S_ecb_4000e000_IRQ_IDX_0_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_ecb_4000e000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_ecb_4000e000_IRQ_IDX_0_VAL_priority 1 +#define DT_N_S_soc_S_ecb_4000e000_IRQ_IDX_0_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_ecb_4000e000_IRQ_IDX_0_CONTROLLER DT_N_S_soc_S_interrupt_controller_e000e100 +#define DT_N_S_soc_S_ecb_4000e000_IRQ_LEVEL 1 +#define DT_N_S_soc_S_ecb_4000e000_COMPAT_MATCHES_nordic_nrf_ecb 1 +#define DT_N_S_soc_S_ecb_4000e000_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_ecb_4000e000_COMPAT_VENDOR_IDX_0 "Nordic Semiconductor" +#define DT_N_S_soc_S_ecb_4000e000_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_ecb_4000e000_COMPAT_MODEL_IDX_0 "nrf-ecb" +#define DT_N_S_soc_S_ecb_4000e000_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_ecb_4000e000_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_ecb_4000e000_P_reg {1073799168 /* 0x4000e000 */, 4096 /* 0x1000 */} +#define DT_N_S_soc_S_ecb_4000e000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_ecb_4000e000_P_reg_IDX_0 1073799168 +#define DT_N_S_soc_S_ecb_4000e000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_ecb_4000e000_P_reg_IDX_1 4096 +#define DT_N_S_soc_S_ecb_4000e000_P_reg_EXISTS 1 +#define DT_N_S_soc_S_ecb_4000e000_P_interrupts {14 /* 0xe */, 1 /* 0x1 */} +#define DT_N_S_soc_S_ecb_4000e000_P_interrupts_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_ecb_4000e000_P_interrupts_IDX_0 14 +#define DT_N_S_soc_S_ecb_4000e000_P_interrupts_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_ecb_4000e000_P_interrupts_IDX_1 1 +#define DT_N_S_soc_S_ecb_4000e000_P_interrupts_EXISTS 1 +#define DT_N_S_soc_S_ecb_4000e000_P_status "okay" +#define DT_N_S_soc_S_ecb_4000e000_P_status_STRING_UNQUOTED okay +#define DT_N_S_soc_S_ecb_4000e000_P_status_STRING_TOKEN okay +#define DT_N_S_soc_S_ecb_4000e000_P_status_STRING_UPPER_TOKEN OKAY +#define DT_N_S_soc_S_ecb_4000e000_P_status_IDX_0 "okay" +#define DT_N_S_soc_S_ecb_4000e000_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_ecb_4000e000_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_ecb_4000e000_P_status_IDX_0_ENUM_VAL_okay_EXISTS 1 +#define DT_N_S_soc_S_ecb_4000e000_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_ecb_4000e000, status, 0) +#define DT_N_S_soc_S_ecb_4000e000_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_ecb_4000e000, status, 0) +#define DT_N_S_soc_S_ecb_4000e000_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_ecb_4000e000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_ecb_4000e000_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_ecb_4000e000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_ecb_4000e000_P_status_LEN 1 +#define DT_N_S_soc_S_ecb_4000e000_P_status_EXISTS 1 +#define DT_N_S_soc_S_ecb_4000e000_P_compatible {"nordic,nrf-ecb"} +#define DT_N_S_soc_S_ecb_4000e000_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_ecb_4000e000_P_compatible_IDX_0 "nordic,nrf-ecb" +#define DT_N_S_soc_S_ecb_4000e000_P_compatible_IDX_0_STRING_UNQUOTED nordic,nrf-ecb +#define DT_N_S_soc_S_ecb_4000e000_P_compatible_IDX_0_STRING_TOKEN nordic_nrf_ecb +#define DT_N_S_soc_S_ecb_4000e000_P_compatible_IDX_0_STRING_UPPER_TOKEN NORDIC_NRF_ECB +#define DT_N_S_soc_S_ecb_4000e000_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_ecb_4000e000, compatible, 0) +#define DT_N_S_soc_S_ecb_4000e000_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_ecb_4000e000, compatible, 0) +#define DT_N_S_soc_S_ecb_4000e000_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_ecb_4000e000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_ecb_4000e000_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_ecb_4000e000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_ecb_4000e000_P_compatible_LEN 1 +#define DT_N_S_soc_S_ecb_4000e000_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_ecb_4000e000_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_ecb_4000e000_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_ecb_4000e000_P_wakeup_source 0 +#define DT_N_S_soc_S_ecb_4000e000_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_ecb_4000e000_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_ecb_4000e000_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/egu@40014000 + * + * Node identifier: DT_N_S_soc_S_egu_40014000 + * + * Binding (compatible = nordic,nrf-egu): + * $ZEPHYR_BASE/dts/bindings/arm/nordic,nrf-egu.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_egu_40014000_PATH "/soc/egu@40014000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_egu_40014000_FULL_NAME "egu@40014000" +#define DT_N_S_soc_S_egu_40014000_FULL_NAME_UNQUOTED egu@40014000 +#define DT_N_S_soc_S_egu_40014000_FULL_NAME_TOKEN egu_40014000 +#define DT_N_S_soc_S_egu_40014000_FULL_NAME_UPPER_TOKEN EGU_40014000 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_egu_40014000_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_egu_40014000_CHILD_IDX 28 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_egu_40014000_NODELABEL_NUM 2 +#define DT_N_S_soc_S_egu_40014000_FOREACH_NODELABEL(fn) fn(egu0) fn(swi0) +#define DT_N_S_soc_S_egu_40014000_FOREACH_NODELABEL_VARGS(fn, ...) fn(egu0, __VA_ARGS__) fn(swi0, __VA_ARGS__) +#define DT_N_S_soc_S_egu_40014000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_egu_40014000_CHILD_NUM 0 +#define DT_N_S_soc_S_egu_40014000_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_egu_40014000_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_egu_40014000_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_egu_40014000_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_egu_40014000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_egu_40014000_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_egu_40014000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_egu_40014000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_egu_40014000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_egu_40014000_ORD 28 +#define DT_N_S_soc_S_egu_40014000_ORD_STR_SORTABLE 00028 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_egu_40014000_REQUIRES_ORDS \ + 6, /* /soc */ \ + 7, /* /soc/interrupt-controller@e000e100 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_egu_40014000_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_egu_40014000_EXISTS 1 +#define DT_N_INST_0_nordic_nrf_egu DT_N_S_soc_S_egu_40014000 +#define DT_N_INST_0_nordic_nrf_swi DT_N_S_soc_S_egu_40014000 +#define DT_N_NODELABEL_egu0 DT_N_S_soc_S_egu_40014000 +#define DT_N_NODELABEL_swi0 DT_N_S_soc_S_egu_40014000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_egu_40014000_REG_NUM 1 +#define DT_N_S_soc_S_egu_40014000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_egu_40014000_REG_IDX_0_VAL_ADDRESS 1073823744 /* 0x40014000 */ +#define DT_N_S_soc_S_egu_40014000_REG_IDX_0_VAL_SIZE 4096 /* 0x1000 */ +#define DT_N_S_soc_S_egu_40014000_RANGES_NUM 0 +#define DT_N_S_soc_S_egu_40014000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_egu_40014000_IRQ_NUM 1 +#define DT_N_S_soc_S_egu_40014000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_egu_40014000_IRQ_IDX_0_VAL_irq 20 +#define DT_N_S_soc_S_egu_40014000_IRQ_IDX_0_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_egu_40014000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_egu_40014000_IRQ_IDX_0_VAL_priority 1 +#define DT_N_S_soc_S_egu_40014000_IRQ_IDX_0_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_egu_40014000_IRQ_IDX_0_CONTROLLER DT_N_S_soc_S_interrupt_controller_e000e100 +#define DT_N_S_soc_S_egu_40014000_IRQ_LEVEL 1 +#define DT_N_S_soc_S_egu_40014000_COMPAT_MATCHES_nordic_nrf_egu 1 +#define DT_N_S_soc_S_egu_40014000_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_egu_40014000_COMPAT_VENDOR_IDX_0 "Nordic Semiconductor" +#define DT_N_S_soc_S_egu_40014000_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_egu_40014000_COMPAT_MODEL_IDX_0 "nrf-egu" +#define DT_N_S_soc_S_egu_40014000_COMPAT_MATCHES_nordic_nrf_swi 1 +#define DT_N_S_soc_S_egu_40014000_COMPAT_VENDOR_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_egu_40014000_COMPAT_VENDOR_IDX_1 "Nordic Semiconductor" +#define DT_N_S_soc_S_egu_40014000_COMPAT_MODEL_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_egu_40014000_COMPAT_MODEL_IDX_1 "nrf-swi" +#define DT_N_S_soc_S_egu_40014000_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_egu_40014000_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_egu_40014000_P_reg {1073823744 /* 0x40014000 */, 4096 /* 0x1000 */} +#define DT_N_S_soc_S_egu_40014000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_egu_40014000_P_reg_IDX_0 1073823744 +#define DT_N_S_soc_S_egu_40014000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_egu_40014000_P_reg_IDX_1 4096 +#define DT_N_S_soc_S_egu_40014000_P_reg_EXISTS 1 +#define DT_N_S_soc_S_egu_40014000_P_interrupts {20 /* 0x14 */, 1 /* 0x1 */} +#define DT_N_S_soc_S_egu_40014000_P_interrupts_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_egu_40014000_P_interrupts_IDX_0 20 +#define DT_N_S_soc_S_egu_40014000_P_interrupts_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_egu_40014000_P_interrupts_IDX_1 1 +#define DT_N_S_soc_S_egu_40014000_P_interrupts_EXISTS 1 +#define DT_N_S_soc_S_egu_40014000_P_status "okay" +#define DT_N_S_soc_S_egu_40014000_P_status_STRING_UNQUOTED okay +#define DT_N_S_soc_S_egu_40014000_P_status_STRING_TOKEN okay +#define DT_N_S_soc_S_egu_40014000_P_status_STRING_UPPER_TOKEN OKAY +#define DT_N_S_soc_S_egu_40014000_P_status_IDX_0 "okay" +#define DT_N_S_soc_S_egu_40014000_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_egu_40014000_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_egu_40014000_P_status_IDX_0_ENUM_VAL_okay_EXISTS 1 +#define DT_N_S_soc_S_egu_40014000_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_egu_40014000, status, 0) +#define DT_N_S_soc_S_egu_40014000_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_egu_40014000, status, 0) +#define DT_N_S_soc_S_egu_40014000_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_egu_40014000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_egu_40014000_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_egu_40014000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_egu_40014000_P_status_LEN 1 +#define DT_N_S_soc_S_egu_40014000_P_status_EXISTS 1 +#define DT_N_S_soc_S_egu_40014000_P_compatible {"nordic,nrf-egu", "nordic,nrf-swi"} +#define DT_N_S_soc_S_egu_40014000_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_egu_40014000_P_compatible_IDX_0 "nordic,nrf-egu" +#define DT_N_S_soc_S_egu_40014000_P_compatible_IDX_0_STRING_UNQUOTED nordic,nrf-egu +#define DT_N_S_soc_S_egu_40014000_P_compatible_IDX_0_STRING_TOKEN nordic_nrf_egu +#define DT_N_S_soc_S_egu_40014000_P_compatible_IDX_0_STRING_UPPER_TOKEN NORDIC_NRF_EGU +#define DT_N_S_soc_S_egu_40014000_P_compatible_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_egu_40014000_P_compatible_IDX_1 "nordic,nrf-swi" +#define DT_N_S_soc_S_egu_40014000_P_compatible_IDX_1_STRING_UNQUOTED nordic,nrf-swi +#define DT_N_S_soc_S_egu_40014000_P_compatible_IDX_1_STRING_TOKEN nordic_nrf_swi +#define DT_N_S_soc_S_egu_40014000_P_compatible_IDX_1_STRING_UPPER_TOKEN NORDIC_NRF_SWI +#define DT_N_S_soc_S_egu_40014000_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_egu_40014000, compatible, 0) \ + fn(DT_N_S_soc_S_egu_40014000, compatible, 1) +#define DT_N_S_soc_S_egu_40014000_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_egu_40014000, compatible, 0) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_egu_40014000, compatible, 1) +#define DT_N_S_soc_S_egu_40014000_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_egu_40014000, compatible, 0, __VA_ARGS__) \ + fn(DT_N_S_soc_S_egu_40014000, compatible, 1, __VA_ARGS__) +#define DT_N_S_soc_S_egu_40014000_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_egu_40014000, compatible, 0, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_egu_40014000, compatible, 1, __VA_ARGS__) +#define DT_N_S_soc_S_egu_40014000_P_compatible_LEN 2 +#define DT_N_S_soc_S_egu_40014000_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_egu_40014000_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_egu_40014000_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_egu_40014000_P_wakeup_source 0 +#define DT_N_S_soc_S_egu_40014000_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_egu_40014000_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_egu_40014000_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/egu@40015000 + * + * Node identifier: DT_N_S_soc_S_egu_40015000 + * + * Binding (compatible = nordic,nrf-egu): + * $ZEPHYR_BASE/dts/bindings/arm/nordic,nrf-egu.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_egu_40015000_PATH "/soc/egu@40015000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_egu_40015000_FULL_NAME "egu@40015000" +#define DT_N_S_soc_S_egu_40015000_FULL_NAME_UNQUOTED egu@40015000 +#define DT_N_S_soc_S_egu_40015000_FULL_NAME_TOKEN egu_40015000 +#define DT_N_S_soc_S_egu_40015000_FULL_NAME_UPPER_TOKEN EGU_40015000 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_egu_40015000_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_egu_40015000_CHILD_IDX 29 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_egu_40015000_NODELABEL_NUM 2 +#define DT_N_S_soc_S_egu_40015000_FOREACH_NODELABEL(fn) fn(egu1) fn(swi1) +#define DT_N_S_soc_S_egu_40015000_FOREACH_NODELABEL_VARGS(fn, ...) fn(egu1, __VA_ARGS__) fn(swi1, __VA_ARGS__) +#define DT_N_S_soc_S_egu_40015000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_egu_40015000_CHILD_NUM 0 +#define DT_N_S_soc_S_egu_40015000_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_egu_40015000_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_egu_40015000_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_egu_40015000_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_egu_40015000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_egu_40015000_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_egu_40015000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_egu_40015000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_egu_40015000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_egu_40015000_ORD 29 +#define DT_N_S_soc_S_egu_40015000_ORD_STR_SORTABLE 00029 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_egu_40015000_REQUIRES_ORDS \ + 6, /* /soc */ \ + 7, /* /soc/interrupt-controller@e000e100 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_egu_40015000_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_egu_40015000_EXISTS 1 +#define DT_N_INST_1_nordic_nrf_egu DT_N_S_soc_S_egu_40015000 +#define DT_N_INST_1_nordic_nrf_swi DT_N_S_soc_S_egu_40015000 +#define DT_N_NODELABEL_egu1 DT_N_S_soc_S_egu_40015000 +#define DT_N_NODELABEL_swi1 DT_N_S_soc_S_egu_40015000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_egu_40015000_REG_NUM 1 +#define DT_N_S_soc_S_egu_40015000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_egu_40015000_REG_IDX_0_VAL_ADDRESS 1073827840 /* 0x40015000 */ +#define DT_N_S_soc_S_egu_40015000_REG_IDX_0_VAL_SIZE 4096 /* 0x1000 */ +#define DT_N_S_soc_S_egu_40015000_RANGES_NUM 0 +#define DT_N_S_soc_S_egu_40015000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_egu_40015000_IRQ_NUM 1 +#define DT_N_S_soc_S_egu_40015000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_egu_40015000_IRQ_IDX_0_VAL_irq 21 +#define DT_N_S_soc_S_egu_40015000_IRQ_IDX_0_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_egu_40015000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_egu_40015000_IRQ_IDX_0_VAL_priority 1 +#define DT_N_S_soc_S_egu_40015000_IRQ_IDX_0_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_egu_40015000_IRQ_IDX_0_CONTROLLER DT_N_S_soc_S_interrupt_controller_e000e100 +#define DT_N_S_soc_S_egu_40015000_IRQ_LEVEL 1 +#define DT_N_S_soc_S_egu_40015000_COMPAT_MATCHES_nordic_nrf_egu 1 +#define DT_N_S_soc_S_egu_40015000_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_egu_40015000_COMPAT_VENDOR_IDX_0 "Nordic Semiconductor" +#define DT_N_S_soc_S_egu_40015000_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_egu_40015000_COMPAT_MODEL_IDX_0 "nrf-egu" +#define DT_N_S_soc_S_egu_40015000_COMPAT_MATCHES_nordic_nrf_swi 1 +#define DT_N_S_soc_S_egu_40015000_COMPAT_VENDOR_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_egu_40015000_COMPAT_VENDOR_IDX_1 "Nordic Semiconductor" +#define DT_N_S_soc_S_egu_40015000_COMPAT_MODEL_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_egu_40015000_COMPAT_MODEL_IDX_1 "nrf-swi" +#define DT_N_S_soc_S_egu_40015000_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_egu_40015000_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_egu_40015000_P_reg {1073827840 /* 0x40015000 */, 4096 /* 0x1000 */} +#define DT_N_S_soc_S_egu_40015000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_egu_40015000_P_reg_IDX_0 1073827840 +#define DT_N_S_soc_S_egu_40015000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_egu_40015000_P_reg_IDX_1 4096 +#define DT_N_S_soc_S_egu_40015000_P_reg_EXISTS 1 +#define DT_N_S_soc_S_egu_40015000_P_interrupts {21 /* 0x15 */, 1 /* 0x1 */} +#define DT_N_S_soc_S_egu_40015000_P_interrupts_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_egu_40015000_P_interrupts_IDX_0 21 +#define DT_N_S_soc_S_egu_40015000_P_interrupts_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_egu_40015000_P_interrupts_IDX_1 1 +#define DT_N_S_soc_S_egu_40015000_P_interrupts_EXISTS 1 +#define DT_N_S_soc_S_egu_40015000_P_status "okay" +#define DT_N_S_soc_S_egu_40015000_P_status_STRING_UNQUOTED okay +#define DT_N_S_soc_S_egu_40015000_P_status_STRING_TOKEN okay +#define DT_N_S_soc_S_egu_40015000_P_status_STRING_UPPER_TOKEN OKAY +#define DT_N_S_soc_S_egu_40015000_P_status_IDX_0 "okay" +#define DT_N_S_soc_S_egu_40015000_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_egu_40015000_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_egu_40015000_P_status_IDX_0_ENUM_VAL_okay_EXISTS 1 +#define DT_N_S_soc_S_egu_40015000_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_egu_40015000, status, 0) +#define DT_N_S_soc_S_egu_40015000_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_egu_40015000, status, 0) +#define DT_N_S_soc_S_egu_40015000_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_egu_40015000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_egu_40015000_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_egu_40015000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_egu_40015000_P_status_LEN 1 +#define DT_N_S_soc_S_egu_40015000_P_status_EXISTS 1 +#define DT_N_S_soc_S_egu_40015000_P_compatible {"nordic,nrf-egu", "nordic,nrf-swi"} +#define DT_N_S_soc_S_egu_40015000_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_egu_40015000_P_compatible_IDX_0 "nordic,nrf-egu" +#define DT_N_S_soc_S_egu_40015000_P_compatible_IDX_0_STRING_UNQUOTED nordic,nrf-egu +#define DT_N_S_soc_S_egu_40015000_P_compatible_IDX_0_STRING_TOKEN nordic_nrf_egu +#define DT_N_S_soc_S_egu_40015000_P_compatible_IDX_0_STRING_UPPER_TOKEN NORDIC_NRF_EGU +#define DT_N_S_soc_S_egu_40015000_P_compatible_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_egu_40015000_P_compatible_IDX_1 "nordic,nrf-swi" +#define DT_N_S_soc_S_egu_40015000_P_compatible_IDX_1_STRING_UNQUOTED nordic,nrf-swi +#define DT_N_S_soc_S_egu_40015000_P_compatible_IDX_1_STRING_TOKEN nordic_nrf_swi +#define DT_N_S_soc_S_egu_40015000_P_compatible_IDX_1_STRING_UPPER_TOKEN NORDIC_NRF_SWI +#define DT_N_S_soc_S_egu_40015000_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_egu_40015000, compatible, 0) \ + fn(DT_N_S_soc_S_egu_40015000, compatible, 1) +#define DT_N_S_soc_S_egu_40015000_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_egu_40015000, compatible, 0) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_egu_40015000, compatible, 1) +#define DT_N_S_soc_S_egu_40015000_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_egu_40015000, compatible, 0, __VA_ARGS__) \ + fn(DT_N_S_soc_S_egu_40015000, compatible, 1, __VA_ARGS__) +#define DT_N_S_soc_S_egu_40015000_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_egu_40015000, compatible, 0, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_egu_40015000, compatible, 1, __VA_ARGS__) +#define DT_N_S_soc_S_egu_40015000_P_compatible_LEN 2 +#define DT_N_S_soc_S_egu_40015000_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_egu_40015000_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_egu_40015000_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_egu_40015000_P_wakeup_source 0 +#define DT_N_S_soc_S_egu_40015000_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_egu_40015000_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_egu_40015000_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/egu@40016000 + * + * Node identifier: DT_N_S_soc_S_egu_40016000 + * + * Binding (compatible = nordic,nrf-egu): + * $ZEPHYR_BASE/dts/bindings/arm/nordic,nrf-egu.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_egu_40016000_PATH "/soc/egu@40016000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_egu_40016000_FULL_NAME "egu@40016000" +#define DT_N_S_soc_S_egu_40016000_FULL_NAME_UNQUOTED egu@40016000 +#define DT_N_S_soc_S_egu_40016000_FULL_NAME_TOKEN egu_40016000 +#define DT_N_S_soc_S_egu_40016000_FULL_NAME_UPPER_TOKEN EGU_40016000 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_egu_40016000_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_egu_40016000_CHILD_IDX 30 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_egu_40016000_NODELABEL_NUM 2 +#define DT_N_S_soc_S_egu_40016000_FOREACH_NODELABEL(fn) fn(egu2) fn(swi2) +#define DT_N_S_soc_S_egu_40016000_FOREACH_NODELABEL_VARGS(fn, ...) fn(egu2, __VA_ARGS__) fn(swi2, __VA_ARGS__) +#define DT_N_S_soc_S_egu_40016000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_egu_40016000_CHILD_NUM 0 +#define DT_N_S_soc_S_egu_40016000_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_egu_40016000_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_egu_40016000_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_egu_40016000_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_egu_40016000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_egu_40016000_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_egu_40016000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_egu_40016000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_egu_40016000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_egu_40016000_ORD 30 +#define DT_N_S_soc_S_egu_40016000_ORD_STR_SORTABLE 00030 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_egu_40016000_REQUIRES_ORDS \ + 6, /* /soc */ \ + 7, /* /soc/interrupt-controller@e000e100 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_egu_40016000_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_egu_40016000_EXISTS 1 +#define DT_N_INST_2_nordic_nrf_egu DT_N_S_soc_S_egu_40016000 +#define DT_N_INST_2_nordic_nrf_swi DT_N_S_soc_S_egu_40016000 +#define DT_N_NODELABEL_egu2 DT_N_S_soc_S_egu_40016000 +#define DT_N_NODELABEL_swi2 DT_N_S_soc_S_egu_40016000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_egu_40016000_REG_NUM 1 +#define DT_N_S_soc_S_egu_40016000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_egu_40016000_REG_IDX_0_VAL_ADDRESS 1073831936 /* 0x40016000 */ +#define DT_N_S_soc_S_egu_40016000_REG_IDX_0_VAL_SIZE 4096 /* 0x1000 */ +#define DT_N_S_soc_S_egu_40016000_RANGES_NUM 0 +#define DT_N_S_soc_S_egu_40016000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_egu_40016000_IRQ_NUM 1 +#define DT_N_S_soc_S_egu_40016000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_egu_40016000_IRQ_IDX_0_VAL_irq 22 +#define DT_N_S_soc_S_egu_40016000_IRQ_IDX_0_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_egu_40016000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_egu_40016000_IRQ_IDX_0_VAL_priority 1 +#define DT_N_S_soc_S_egu_40016000_IRQ_IDX_0_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_egu_40016000_IRQ_IDX_0_CONTROLLER DT_N_S_soc_S_interrupt_controller_e000e100 +#define DT_N_S_soc_S_egu_40016000_IRQ_LEVEL 1 +#define DT_N_S_soc_S_egu_40016000_COMPAT_MATCHES_nordic_nrf_egu 1 +#define DT_N_S_soc_S_egu_40016000_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_egu_40016000_COMPAT_VENDOR_IDX_0 "Nordic Semiconductor" +#define DT_N_S_soc_S_egu_40016000_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_egu_40016000_COMPAT_MODEL_IDX_0 "nrf-egu" +#define DT_N_S_soc_S_egu_40016000_COMPAT_MATCHES_nordic_nrf_swi 1 +#define DT_N_S_soc_S_egu_40016000_COMPAT_VENDOR_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_egu_40016000_COMPAT_VENDOR_IDX_1 "Nordic Semiconductor" +#define DT_N_S_soc_S_egu_40016000_COMPAT_MODEL_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_egu_40016000_COMPAT_MODEL_IDX_1 "nrf-swi" +#define DT_N_S_soc_S_egu_40016000_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_egu_40016000_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_egu_40016000_P_reg {1073831936 /* 0x40016000 */, 4096 /* 0x1000 */} +#define DT_N_S_soc_S_egu_40016000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_egu_40016000_P_reg_IDX_0 1073831936 +#define DT_N_S_soc_S_egu_40016000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_egu_40016000_P_reg_IDX_1 4096 +#define DT_N_S_soc_S_egu_40016000_P_reg_EXISTS 1 +#define DT_N_S_soc_S_egu_40016000_P_interrupts {22 /* 0x16 */, 1 /* 0x1 */} +#define DT_N_S_soc_S_egu_40016000_P_interrupts_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_egu_40016000_P_interrupts_IDX_0 22 +#define DT_N_S_soc_S_egu_40016000_P_interrupts_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_egu_40016000_P_interrupts_IDX_1 1 +#define DT_N_S_soc_S_egu_40016000_P_interrupts_EXISTS 1 +#define DT_N_S_soc_S_egu_40016000_P_status "okay" +#define DT_N_S_soc_S_egu_40016000_P_status_STRING_UNQUOTED okay +#define DT_N_S_soc_S_egu_40016000_P_status_STRING_TOKEN okay +#define DT_N_S_soc_S_egu_40016000_P_status_STRING_UPPER_TOKEN OKAY +#define DT_N_S_soc_S_egu_40016000_P_status_IDX_0 "okay" +#define DT_N_S_soc_S_egu_40016000_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_egu_40016000_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_egu_40016000_P_status_IDX_0_ENUM_VAL_okay_EXISTS 1 +#define DT_N_S_soc_S_egu_40016000_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_egu_40016000, status, 0) +#define DT_N_S_soc_S_egu_40016000_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_egu_40016000, status, 0) +#define DT_N_S_soc_S_egu_40016000_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_egu_40016000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_egu_40016000_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_egu_40016000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_egu_40016000_P_status_LEN 1 +#define DT_N_S_soc_S_egu_40016000_P_status_EXISTS 1 +#define DT_N_S_soc_S_egu_40016000_P_compatible {"nordic,nrf-egu", "nordic,nrf-swi"} +#define DT_N_S_soc_S_egu_40016000_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_egu_40016000_P_compatible_IDX_0 "nordic,nrf-egu" +#define DT_N_S_soc_S_egu_40016000_P_compatible_IDX_0_STRING_UNQUOTED nordic,nrf-egu +#define DT_N_S_soc_S_egu_40016000_P_compatible_IDX_0_STRING_TOKEN nordic_nrf_egu +#define DT_N_S_soc_S_egu_40016000_P_compatible_IDX_0_STRING_UPPER_TOKEN NORDIC_NRF_EGU +#define DT_N_S_soc_S_egu_40016000_P_compatible_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_egu_40016000_P_compatible_IDX_1 "nordic,nrf-swi" +#define DT_N_S_soc_S_egu_40016000_P_compatible_IDX_1_STRING_UNQUOTED nordic,nrf-swi +#define DT_N_S_soc_S_egu_40016000_P_compatible_IDX_1_STRING_TOKEN nordic_nrf_swi +#define DT_N_S_soc_S_egu_40016000_P_compatible_IDX_1_STRING_UPPER_TOKEN NORDIC_NRF_SWI +#define DT_N_S_soc_S_egu_40016000_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_egu_40016000, compatible, 0) \ + fn(DT_N_S_soc_S_egu_40016000, compatible, 1) +#define DT_N_S_soc_S_egu_40016000_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_egu_40016000, compatible, 0) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_egu_40016000, compatible, 1) +#define DT_N_S_soc_S_egu_40016000_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_egu_40016000, compatible, 0, __VA_ARGS__) \ + fn(DT_N_S_soc_S_egu_40016000, compatible, 1, __VA_ARGS__) +#define DT_N_S_soc_S_egu_40016000_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_egu_40016000, compatible, 0, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_egu_40016000, compatible, 1, __VA_ARGS__) +#define DT_N_S_soc_S_egu_40016000_P_compatible_LEN 2 +#define DT_N_S_soc_S_egu_40016000_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_egu_40016000_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_egu_40016000_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_egu_40016000_P_wakeup_source 0 +#define DT_N_S_soc_S_egu_40016000_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_egu_40016000_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_egu_40016000_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/egu@40017000 + * + * Node identifier: DT_N_S_soc_S_egu_40017000 + * + * Binding (compatible = nordic,nrf-egu): + * $ZEPHYR_BASE/dts/bindings/arm/nordic,nrf-egu.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_egu_40017000_PATH "/soc/egu@40017000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_egu_40017000_FULL_NAME "egu@40017000" +#define DT_N_S_soc_S_egu_40017000_FULL_NAME_UNQUOTED egu@40017000 +#define DT_N_S_soc_S_egu_40017000_FULL_NAME_TOKEN egu_40017000 +#define DT_N_S_soc_S_egu_40017000_FULL_NAME_UPPER_TOKEN EGU_40017000 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_egu_40017000_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_egu_40017000_CHILD_IDX 31 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_egu_40017000_NODELABEL_NUM 2 +#define DT_N_S_soc_S_egu_40017000_FOREACH_NODELABEL(fn) fn(egu3) fn(swi3) +#define DT_N_S_soc_S_egu_40017000_FOREACH_NODELABEL_VARGS(fn, ...) fn(egu3, __VA_ARGS__) fn(swi3, __VA_ARGS__) +#define DT_N_S_soc_S_egu_40017000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_egu_40017000_CHILD_NUM 0 +#define DT_N_S_soc_S_egu_40017000_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_egu_40017000_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_egu_40017000_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_egu_40017000_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_egu_40017000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_egu_40017000_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_egu_40017000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_egu_40017000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_egu_40017000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_egu_40017000_ORD 31 +#define DT_N_S_soc_S_egu_40017000_ORD_STR_SORTABLE 00031 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_egu_40017000_REQUIRES_ORDS \ + 6, /* /soc */ \ + 7, /* /soc/interrupt-controller@e000e100 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_egu_40017000_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_egu_40017000_EXISTS 1 +#define DT_N_INST_3_nordic_nrf_egu DT_N_S_soc_S_egu_40017000 +#define DT_N_INST_3_nordic_nrf_swi DT_N_S_soc_S_egu_40017000 +#define DT_N_NODELABEL_egu3 DT_N_S_soc_S_egu_40017000 +#define DT_N_NODELABEL_swi3 DT_N_S_soc_S_egu_40017000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_egu_40017000_REG_NUM 1 +#define DT_N_S_soc_S_egu_40017000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_egu_40017000_REG_IDX_0_VAL_ADDRESS 1073836032 /* 0x40017000 */ +#define DT_N_S_soc_S_egu_40017000_REG_IDX_0_VAL_SIZE 4096 /* 0x1000 */ +#define DT_N_S_soc_S_egu_40017000_RANGES_NUM 0 +#define DT_N_S_soc_S_egu_40017000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_egu_40017000_IRQ_NUM 1 +#define DT_N_S_soc_S_egu_40017000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_egu_40017000_IRQ_IDX_0_VAL_irq 23 +#define DT_N_S_soc_S_egu_40017000_IRQ_IDX_0_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_egu_40017000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_egu_40017000_IRQ_IDX_0_VAL_priority 1 +#define DT_N_S_soc_S_egu_40017000_IRQ_IDX_0_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_egu_40017000_IRQ_IDX_0_CONTROLLER DT_N_S_soc_S_interrupt_controller_e000e100 +#define DT_N_S_soc_S_egu_40017000_IRQ_LEVEL 1 +#define DT_N_S_soc_S_egu_40017000_COMPAT_MATCHES_nordic_nrf_egu 1 +#define DT_N_S_soc_S_egu_40017000_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_egu_40017000_COMPAT_VENDOR_IDX_0 "Nordic Semiconductor" +#define DT_N_S_soc_S_egu_40017000_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_egu_40017000_COMPAT_MODEL_IDX_0 "nrf-egu" +#define DT_N_S_soc_S_egu_40017000_COMPAT_MATCHES_nordic_nrf_swi 1 +#define DT_N_S_soc_S_egu_40017000_COMPAT_VENDOR_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_egu_40017000_COMPAT_VENDOR_IDX_1 "Nordic Semiconductor" +#define DT_N_S_soc_S_egu_40017000_COMPAT_MODEL_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_egu_40017000_COMPAT_MODEL_IDX_1 "nrf-swi" +#define DT_N_S_soc_S_egu_40017000_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_egu_40017000_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_egu_40017000_P_reg {1073836032 /* 0x40017000 */, 4096 /* 0x1000 */} +#define DT_N_S_soc_S_egu_40017000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_egu_40017000_P_reg_IDX_0 1073836032 +#define DT_N_S_soc_S_egu_40017000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_egu_40017000_P_reg_IDX_1 4096 +#define DT_N_S_soc_S_egu_40017000_P_reg_EXISTS 1 +#define DT_N_S_soc_S_egu_40017000_P_interrupts {23 /* 0x17 */, 1 /* 0x1 */} +#define DT_N_S_soc_S_egu_40017000_P_interrupts_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_egu_40017000_P_interrupts_IDX_0 23 +#define DT_N_S_soc_S_egu_40017000_P_interrupts_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_egu_40017000_P_interrupts_IDX_1 1 +#define DT_N_S_soc_S_egu_40017000_P_interrupts_EXISTS 1 +#define DT_N_S_soc_S_egu_40017000_P_status "okay" +#define DT_N_S_soc_S_egu_40017000_P_status_STRING_UNQUOTED okay +#define DT_N_S_soc_S_egu_40017000_P_status_STRING_TOKEN okay +#define DT_N_S_soc_S_egu_40017000_P_status_STRING_UPPER_TOKEN OKAY +#define DT_N_S_soc_S_egu_40017000_P_status_IDX_0 "okay" +#define DT_N_S_soc_S_egu_40017000_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_egu_40017000_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_egu_40017000_P_status_IDX_0_ENUM_VAL_okay_EXISTS 1 +#define DT_N_S_soc_S_egu_40017000_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_egu_40017000, status, 0) +#define DT_N_S_soc_S_egu_40017000_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_egu_40017000, status, 0) +#define DT_N_S_soc_S_egu_40017000_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_egu_40017000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_egu_40017000_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_egu_40017000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_egu_40017000_P_status_LEN 1 +#define DT_N_S_soc_S_egu_40017000_P_status_EXISTS 1 +#define DT_N_S_soc_S_egu_40017000_P_compatible {"nordic,nrf-egu", "nordic,nrf-swi"} +#define DT_N_S_soc_S_egu_40017000_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_egu_40017000_P_compatible_IDX_0 "nordic,nrf-egu" +#define DT_N_S_soc_S_egu_40017000_P_compatible_IDX_0_STRING_UNQUOTED nordic,nrf-egu +#define DT_N_S_soc_S_egu_40017000_P_compatible_IDX_0_STRING_TOKEN nordic_nrf_egu +#define DT_N_S_soc_S_egu_40017000_P_compatible_IDX_0_STRING_UPPER_TOKEN NORDIC_NRF_EGU +#define DT_N_S_soc_S_egu_40017000_P_compatible_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_egu_40017000_P_compatible_IDX_1 "nordic,nrf-swi" +#define DT_N_S_soc_S_egu_40017000_P_compatible_IDX_1_STRING_UNQUOTED nordic,nrf-swi +#define DT_N_S_soc_S_egu_40017000_P_compatible_IDX_1_STRING_TOKEN nordic_nrf_swi +#define DT_N_S_soc_S_egu_40017000_P_compatible_IDX_1_STRING_UPPER_TOKEN NORDIC_NRF_SWI +#define DT_N_S_soc_S_egu_40017000_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_egu_40017000, compatible, 0) \ + fn(DT_N_S_soc_S_egu_40017000, compatible, 1) +#define DT_N_S_soc_S_egu_40017000_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_egu_40017000, compatible, 0) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_egu_40017000, compatible, 1) +#define DT_N_S_soc_S_egu_40017000_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_egu_40017000, compatible, 0, __VA_ARGS__) \ + fn(DT_N_S_soc_S_egu_40017000, compatible, 1, __VA_ARGS__) +#define DT_N_S_soc_S_egu_40017000_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_egu_40017000, compatible, 0, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_egu_40017000, compatible, 1, __VA_ARGS__) +#define DT_N_S_soc_S_egu_40017000_P_compatible_LEN 2 +#define DT_N_S_soc_S_egu_40017000_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_egu_40017000_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_egu_40017000_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_egu_40017000_P_wakeup_source 0 +#define DT_N_S_soc_S_egu_40017000_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_egu_40017000_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_egu_40017000_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/egu@40018000 + * + * Node identifier: DT_N_S_soc_S_egu_40018000 + * + * Binding (compatible = nordic,nrf-egu): + * $ZEPHYR_BASE/dts/bindings/arm/nordic,nrf-egu.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_egu_40018000_PATH "/soc/egu@40018000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_egu_40018000_FULL_NAME "egu@40018000" +#define DT_N_S_soc_S_egu_40018000_FULL_NAME_UNQUOTED egu@40018000 +#define DT_N_S_soc_S_egu_40018000_FULL_NAME_TOKEN egu_40018000 +#define DT_N_S_soc_S_egu_40018000_FULL_NAME_UPPER_TOKEN EGU_40018000 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_egu_40018000_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_egu_40018000_CHILD_IDX 32 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_egu_40018000_NODELABEL_NUM 2 +#define DT_N_S_soc_S_egu_40018000_FOREACH_NODELABEL(fn) fn(egu4) fn(swi4) +#define DT_N_S_soc_S_egu_40018000_FOREACH_NODELABEL_VARGS(fn, ...) fn(egu4, __VA_ARGS__) fn(swi4, __VA_ARGS__) +#define DT_N_S_soc_S_egu_40018000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_egu_40018000_CHILD_NUM 0 +#define DT_N_S_soc_S_egu_40018000_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_egu_40018000_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_egu_40018000_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_egu_40018000_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_egu_40018000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_egu_40018000_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_egu_40018000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_egu_40018000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_egu_40018000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_egu_40018000_ORD 32 +#define DT_N_S_soc_S_egu_40018000_ORD_STR_SORTABLE 00032 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_egu_40018000_REQUIRES_ORDS \ + 6, /* /soc */ \ + 7, /* /soc/interrupt-controller@e000e100 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_egu_40018000_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_egu_40018000_EXISTS 1 +#define DT_N_INST_4_nordic_nrf_egu DT_N_S_soc_S_egu_40018000 +#define DT_N_INST_4_nordic_nrf_swi DT_N_S_soc_S_egu_40018000 +#define DT_N_NODELABEL_egu4 DT_N_S_soc_S_egu_40018000 +#define DT_N_NODELABEL_swi4 DT_N_S_soc_S_egu_40018000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_egu_40018000_REG_NUM 1 +#define DT_N_S_soc_S_egu_40018000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_egu_40018000_REG_IDX_0_VAL_ADDRESS 1073840128 /* 0x40018000 */ +#define DT_N_S_soc_S_egu_40018000_REG_IDX_0_VAL_SIZE 4096 /* 0x1000 */ +#define DT_N_S_soc_S_egu_40018000_RANGES_NUM 0 +#define DT_N_S_soc_S_egu_40018000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_egu_40018000_IRQ_NUM 1 +#define DT_N_S_soc_S_egu_40018000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_egu_40018000_IRQ_IDX_0_VAL_irq 24 +#define DT_N_S_soc_S_egu_40018000_IRQ_IDX_0_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_egu_40018000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_egu_40018000_IRQ_IDX_0_VAL_priority 1 +#define DT_N_S_soc_S_egu_40018000_IRQ_IDX_0_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_egu_40018000_IRQ_IDX_0_CONTROLLER DT_N_S_soc_S_interrupt_controller_e000e100 +#define DT_N_S_soc_S_egu_40018000_IRQ_LEVEL 1 +#define DT_N_S_soc_S_egu_40018000_COMPAT_MATCHES_nordic_nrf_egu 1 +#define DT_N_S_soc_S_egu_40018000_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_egu_40018000_COMPAT_VENDOR_IDX_0 "Nordic Semiconductor" +#define DT_N_S_soc_S_egu_40018000_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_egu_40018000_COMPAT_MODEL_IDX_0 "nrf-egu" +#define DT_N_S_soc_S_egu_40018000_COMPAT_MATCHES_nordic_nrf_swi 1 +#define DT_N_S_soc_S_egu_40018000_COMPAT_VENDOR_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_egu_40018000_COMPAT_VENDOR_IDX_1 "Nordic Semiconductor" +#define DT_N_S_soc_S_egu_40018000_COMPAT_MODEL_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_egu_40018000_COMPAT_MODEL_IDX_1 "nrf-swi" +#define DT_N_S_soc_S_egu_40018000_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_egu_40018000_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_egu_40018000_P_reg {1073840128 /* 0x40018000 */, 4096 /* 0x1000 */} +#define DT_N_S_soc_S_egu_40018000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_egu_40018000_P_reg_IDX_0 1073840128 +#define DT_N_S_soc_S_egu_40018000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_egu_40018000_P_reg_IDX_1 4096 +#define DT_N_S_soc_S_egu_40018000_P_reg_EXISTS 1 +#define DT_N_S_soc_S_egu_40018000_P_interrupts {24 /* 0x18 */, 1 /* 0x1 */} +#define DT_N_S_soc_S_egu_40018000_P_interrupts_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_egu_40018000_P_interrupts_IDX_0 24 +#define DT_N_S_soc_S_egu_40018000_P_interrupts_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_egu_40018000_P_interrupts_IDX_1 1 +#define DT_N_S_soc_S_egu_40018000_P_interrupts_EXISTS 1 +#define DT_N_S_soc_S_egu_40018000_P_status "okay" +#define DT_N_S_soc_S_egu_40018000_P_status_STRING_UNQUOTED okay +#define DT_N_S_soc_S_egu_40018000_P_status_STRING_TOKEN okay +#define DT_N_S_soc_S_egu_40018000_P_status_STRING_UPPER_TOKEN OKAY +#define DT_N_S_soc_S_egu_40018000_P_status_IDX_0 "okay" +#define DT_N_S_soc_S_egu_40018000_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_egu_40018000_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_egu_40018000_P_status_IDX_0_ENUM_VAL_okay_EXISTS 1 +#define DT_N_S_soc_S_egu_40018000_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_egu_40018000, status, 0) +#define DT_N_S_soc_S_egu_40018000_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_egu_40018000, status, 0) +#define DT_N_S_soc_S_egu_40018000_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_egu_40018000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_egu_40018000_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_egu_40018000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_egu_40018000_P_status_LEN 1 +#define DT_N_S_soc_S_egu_40018000_P_status_EXISTS 1 +#define DT_N_S_soc_S_egu_40018000_P_compatible {"nordic,nrf-egu", "nordic,nrf-swi"} +#define DT_N_S_soc_S_egu_40018000_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_egu_40018000_P_compatible_IDX_0 "nordic,nrf-egu" +#define DT_N_S_soc_S_egu_40018000_P_compatible_IDX_0_STRING_UNQUOTED nordic,nrf-egu +#define DT_N_S_soc_S_egu_40018000_P_compatible_IDX_0_STRING_TOKEN nordic_nrf_egu +#define DT_N_S_soc_S_egu_40018000_P_compatible_IDX_0_STRING_UPPER_TOKEN NORDIC_NRF_EGU +#define DT_N_S_soc_S_egu_40018000_P_compatible_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_egu_40018000_P_compatible_IDX_1 "nordic,nrf-swi" +#define DT_N_S_soc_S_egu_40018000_P_compatible_IDX_1_STRING_UNQUOTED nordic,nrf-swi +#define DT_N_S_soc_S_egu_40018000_P_compatible_IDX_1_STRING_TOKEN nordic_nrf_swi +#define DT_N_S_soc_S_egu_40018000_P_compatible_IDX_1_STRING_UPPER_TOKEN NORDIC_NRF_SWI +#define DT_N_S_soc_S_egu_40018000_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_egu_40018000, compatible, 0) \ + fn(DT_N_S_soc_S_egu_40018000, compatible, 1) +#define DT_N_S_soc_S_egu_40018000_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_egu_40018000, compatible, 0) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_egu_40018000, compatible, 1) +#define DT_N_S_soc_S_egu_40018000_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_egu_40018000, compatible, 0, __VA_ARGS__) \ + fn(DT_N_S_soc_S_egu_40018000, compatible, 1, __VA_ARGS__) +#define DT_N_S_soc_S_egu_40018000_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_egu_40018000, compatible, 0, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_egu_40018000, compatible, 1, __VA_ARGS__) +#define DT_N_S_soc_S_egu_40018000_P_compatible_LEN 2 +#define DT_N_S_soc_S_egu_40018000_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_egu_40018000_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_egu_40018000_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_egu_40018000_P_wakeup_source 0 +#define DT_N_S_soc_S_egu_40018000_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_egu_40018000_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_egu_40018000_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/egu@40019000 + * + * Node identifier: DT_N_S_soc_S_egu_40019000 + * + * Binding (compatible = nordic,nrf-egu): + * $ZEPHYR_BASE/dts/bindings/arm/nordic,nrf-egu.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_egu_40019000_PATH "/soc/egu@40019000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_egu_40019000_FULL_NAME "egu@40019000" +#define DT_N_S_soc_S_egu_40019000_FULL_NAME_UNQUOTED egu@40019000 +#define DT_N_S_soc_S_egu_40019000_FULL_NAME_TOKEN egu_40019000 +#define DT_N_S_soc_S_egu_40019000_FULL_NAME_UPPER_TOKEN EGU_40019000 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_egu_40019000_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_egu_40019000_CHILD_IDX 33 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_egu_40019000_NODELABEL_NUM 2 +#define DT_N_S_soc_S_egu_40019000_FOREACH_NODELABEL(fn) fn(egu5) fn(swi5) +#define DT_N_S_soc_S_egu_40019000_FOREACH_NODELABEL_VARGS(fn, ...) fn(egu5, __VA_ARGS__) fn(swi5, __VA_ARGS__) +#define DT_N_S_soc_S_egu_40019000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_egu_40019000_CHILD_NUM 0 +#define DT_N_S_soc_S_egu_40019000_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_egu_40019000_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_egu_40019000_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_egu_40019000_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_egu_40019000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_egu_40019000_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_egu_40019000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_egu_40019000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_egu_40019000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_egu_40019000_ORD 33 +#define DT_N_S_soc_S_egu_40019000_ORD_STR_SORTABLE 00033 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_egu_40019000_REQUIRES_ORDS \ + 6, /* /soc */ \ + 7, /* /soc/interrupt-controller@e000e100 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_egu_40019000_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_egu_40019000_EXISTS 1 +#define DT_N_INST_5_nordic_nrf_egu DT_N_S_soc_S_egu_40019000 +#define DT_N_INST_5_nordic_nrf_swi DT_N_S_soc_S_egu_40019000 +#define DT_N_NODELABEL_egu5 DT_N_S_soc_S_egu_40019000 +#define DT_N_NODELABEL_swi5 DT_N_S_soc_S_egu_40019000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_egu_40019000_REG_NUM 1 +#define DT_N_S_soc_S_egu_40019000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_egu_40019000_REG_IDX_0_VAL_ADDRESS 1073844224 /* 0x40019000 */ +#define DT_N_S_soc_S_egu_40019000_REG_IDX_0_VAL_SIZE 4096 /* 0x1000 */ +#define DT_N_S_soc_S_egu_40019000_RANGES_NUM 0 +#define DT_N_S_soc_S_egu_40019000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_egu_40019000_IRQ_NUM 1 +#define DT_N_S_soc_S_egu_40019000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_egu_40019000_IRQ_IDX_0_VAL_irq 25 +#define DT_N_S_soc_S_egu_40019000_IRQ_IDX_0_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_egu_40019000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_egu_40019000_IRQ_IDX_0_VAL_priority 1 +#define DT_N_S_soc_S_egu_40019000_IRQ_IDX_0_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_egu_40019000_IRQ_IDX_0_CONTROLLER DT_N_S_soc_S_interrupt_controller_e000e100 +#define DT_N_S_soc_S_egu_40019000_IRQ_LEVEL 1 +#define DT_N_S_soc_S_egu_40019000_COMPAT_MATCHES_nordic_nrf_egu 1 +#define DT_N_S_soc_S_egu_40019000_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_egu_40019000_COMPAT_VENDOR_IDX_0 "Nordic Semiconductor" +#define DT_N_S_soc_S_egu_40019000_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_egu_40019000_COMPAT_MODEL_IDX_0 "nrf-egu" +#define DT_N_S_soc_S_egu_40019000_COMPAT_MATCHES_nordic_nrf_swi 1 +#define DT_N_S_soc_S_egu_40019000_COMPAT_VENDOR_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_egu_40019000_COMPAT_VENDOR_IDX_1 "Nordic Semiconductor" +#define DT_N_S_soc_S_egu_40019000_COMPAT_MODEL_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_egu_40019000_COMPAT_MODEL_IDX_1 "nrf-swi" +#define DT_N_S_soc_S_egu_40019000_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_egu_40019000_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_egu_40019000_P_reg {1073844224 /* 0x40019000 */, 4096 /* 0x1000 */} +#define DT_N_S_soc_S_egu_40019000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_egu_40019000_P_reg_IDX_0 1073844224 +#define DT_N_S_soc_S_egu_40019000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_egu_40019000_P_reg_IDX_1 4096 +#define DT_N_S_soc_S_egu_40019000_P_reg_EXISTS 1 +#define DT_N_S_soc_S_egu_40019000_P_interrupts {25 /* 0x19 */, 1 /* 0x1 */} +#define DT_N_S_soc_S_egu_40019000_P_interrupts_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_egu_40019000_P_interrupts_IDX_0 25 +#define DT_N_S_soc_S_egu_40019000_P_interrupts_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_egu_40019000_P_interrupts_IDX_1 1 +#define DT_N_S_soc_S_egu_40019000_P_interrupts_EXISTS 1 +#define DT_N_S_soc_S_egu_40019000_P_status "okay" +#define DT_N_S_soc_S_egu_40019000_P_status_STRING_UNQUOTED okay +#define DT_N_S_soc_S_egu_40019000_P_status_STRING_TOKEN okay +#define DT_N_S_soc_S_egu_40019000_P_status_STRING_UPPER_TOKEN OKAY +#define DT_N_S_soc_S_egu_40019000_P_status_IDX_0 "okay" +#define DT_N_S_soc_S_egu_40019000_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_egu_40019000_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_egu_40019000_P_status_IDX_0_ENUM_VAL_okay_EXISTS 1 +#define DT_N_S_soc_S_egu_40019000_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_egu_40019000, status, 0) +#define DT_N_S_soc_S_egu_40019000_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_egu_40019000, status, 0) +#define DT_N_S_soc_S_egu_40019000_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_egu_40019000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_egu_40019000_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_egu_40019000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_egu_40019000_P_status_LEN 1 +#define DT_N_S_soc_S_egu_40019000_P_status_EXISTS 1 +#define DT_N_S_soc_S_egu_40019000_P_compatible {"nordic,nrf-egu", "nordic,nrf-swi"} +#define DT_N_S_soc_S_egu_40019000_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_egu_40019000_P_compatible_IDX_0 "nordic,nrf-egu" +#define DT_N_S_soc_S_egu_40019000_P_compatible_IDX_0_STRING_UNQUOTED nordic,nrf-egu +#define DT_N_S_soc_S_egu_40019000_P_compatible_IDX_0_STRING_TOKEN nordic_nrf_egu +#define DT_N_S_soc_S_egu_40019000_P_compatible_IDX_0_STRING_UPPER_TOKEN NORDIC_NRF_EGU +#define DT_N_S_soc_S_egu_40019000_P_compatible_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_egu_40019000_P_compatible_IDX_1 "nordic,nrf-swi" +#define DT_N_S_soc_S_egu_40019000_P_compatible_IDX_1_STRING_UNQUOTED nordic,nrf-swi +#define DT_N_S_soc_S_egu_40019000_P_compatible_IDX_1_STRING_TOKEN nordic_nrf_swi +#define DT_N_S_soc_S_egu_40019000_P_compatible_IDX_1_STRING_UPPER_TOKEN NORDIC_NRF_SWI +#define DT_N_S_soc_S_egu_40019000_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_egu_40019000, compatible, 0) \ + fn(DT_N_S_soc_S_egu_40019000, compatible, 1) +#define DT_N_S_soc_S_egu_40019000_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_egu_40019000, compatible, 0) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_egu_40019000, compatible, 1) +#define DT_N_S_soc_S_egu_40019000_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_egu_40019000, compatible, 0, __VA_ARGS__) \ + fn(DT_N_S_soc_S_egu_40019000, compatible, 1, __VA_ARGS__) +#define DT_N_S_soc_S_egu_40019000_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_egu_40019000, compatible, 0, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_egu_40019000, compatible, 1, __VA_ARGS__) +#define DT_N_S_soc_S_egu_40019000_P_compatible_LEN 2 +#define DT_N_S_soc_S_egu_40019000_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_egu_40019000_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_egu_40019000_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_egu_40019000_P_wakeup_source 0 +#define DT_N_S_soc_S_egu_40019000_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_egu_40019000_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_egu_40019000_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/ficr@10000000 + * + * Node identifier: DT_N_S_soc_S_ficr_10000000 + * + * Binding (compatible = nordic,nrf-ficr): + * $ZEPHYR_BASE/dts/bindings/misc/nordic,nrf-ficr.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_ficr_10000000_PATH "/soc/ficr@10000000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_ficr_10000000_FULL_NAME "ficr@10000000" +#define DT_N_S_soc_S_ficr_10000000_FULL_NAME_UNQUOTED ficr@10000000 +#define DT_N_S_soc_S_ficr_10000000_FULL_NAME_TOKEN ficr_10000000 +#define DT_N_S_soc_S_ficr_10000000_FULL_NAME_UPPER_TOKEN FICR_10000000 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_ficr_10000000_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_ficr_10000000_CHILD_IDX 2 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_ficr_10000000_NODELABEL_NUM 1 +#define DT_N_S_soc_S_ficr_10000000_FOREACH_NODELABEL(fn) fn(ficr) +#define DT_N_S_soc_S_ficr_10000000_FOREACH_NODELABEL_VARGS(fn, ...) fn(ficr, __VA_ARGS__) +#define DT_N_S_soc_S_ficr_10000000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_ficr_10000000_CHILD_NUM 0 +#define DT_N_S_soc_S_ficr_10000000_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_ficr_10000000_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_ficr_10000000_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_ficr_10000000_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_ficr_10000000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_ficr_10000000_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_ficr_10000000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_ficr_10000000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_ficr_10000000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_ficr_10000000_ORD 34 +#define DT_N_S_soc_S_ficr_10000000_ORD_STR_SORTABLE 00034 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_ficr_10000000_REQUIRES_ORDS \ + 6, /* /soc */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_ficr_10000000_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_ficr_10000000_EXISTS 1 +#define DT_N_INST_0_nordic_nrf_ficr DT_N_S_soc_S_ficr_10000000 +#define DT_N_NODELABEL_ficr DT_N_S_soc_S_ficr_10000000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_ficr_10000000_REG_NUM 1 +#define DT_N_S_soc_S_ficr_10000000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_ficr_10000000_REG_IDX_0_VAL_ADDRESS 268435456 /* 0x10000000 */ +#define DT_N_S_soc_S_ficr_10000000_REG_IDX_0_VAL_SIZE 4096 /* 0x1000 */ +#define DT_N_S_soc_S_ficr_10000000_RANGES_NUM 0 +#define DT_N_S_soc_S_ficr_10000000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_ficr_10000000_IRQ_NUM 0 +#define DT_N_S_soc_S_ficr_10000000_IRQ_LEVEL 0 +#define DT_N_S_soc_S_ficr_10000000_COMPAT_MATCHES_nordic_nrf_ficr 1 +#define DT_N_S_soc_S_ficr_10000000_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_ficr_10000000_COMPAT_VENDOR_IDX_0 "Nordic Semiconductor" +#define DT_N_S_soc_S_ficr_10000000_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_ficr_10000000_COMPAT_MODEL_IDX_0 "nrf-ficr" +#define DT_N_S_soc_S_ficr_10000000_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_ficr_10000000_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_ficr_10000000_P_reg {268435456 /* 0x10000000 */, 4096 /* 0x1000 */} +#define DT_N_S_soc_S_ficr_10000000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_ficr_10000000_P_reg_IDX_0 268435456 +#define DT_N_S_soc_S_ficr_10000000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_ficr_10000000_P_reg_IDX_1 4096 +#define DT_N_S_soc_S_ficr_10000000_P_reg_EXISTS 1 +#define DT_N_S_soc_S_ficr_10000000_P_status "okay" +#define DT_N_S_soc_S_ficr_10000000_P_status_STRING_UNQUOTED okay +#define DT_N_S_soc_S_ficr_10000000_P_status_STRING_TOKEN okay +#define DT_N_S_soc_S_ficr_10000000_P_status_STRING_UPPER_TOKEN OKAY +#define DT_N_S_soc_S_ficr_10000000_P_status_IDX_0 "okay" +#define DT_N_S_soc_S_ficr_10000000_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_ficr_10000000_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_ficr_10000000_P_status_IDX_0_ENUM_VAL_okay_EXISTS 1 +#define DT_N_S_soc_S_ficr_10000000_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_ficr_10000000, status, 0) +#define DT_N_S_soc_S_ficr_10000000_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_ficr_10000000, status, 0) +#define DT_N_S_soc_S_ficr_10000000_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_ficr_10000000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_ficr_10000000_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_ficr_10000000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_ficr_10000000_P_status_LEN 1 +#define DT_N_S_soc_S_ficr_10000000_P_status_EXISTS 1 +#define DT_N_S_soc_S_ficr_10000000_P_compatible {"nordic,nrf-ficr"} +#define DT_N_S_soc_S_ficr_10000000_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_ficr_10000000_P_compatible_IDX_0 "nordic,nrf-ficr" +#define DT_N_S_soc_S_ficr_10000000_P_compatible_IDX_0_STRING_UNQUOTED nordic,nrf-ficr +#define DT_N_S_soc_S_ficr_10000000_P_compatible_IDX_0_STRING_TOKEN nordic_nrf_ficr +#define DT_N_S_soc_S_ficr_10000000_P_compatible_IDX_0_STRING_UPPER_TOKEN NORDIC_NRF_FICR +#define DT_N_S_soc_S_ficr_10000000_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_ficr_10000000, compatible, 0) +#define DT_N_S_soc_S_ficr_10000000_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_ficr_10000000, compatible, 0) +#define DT_N_S_soc_S_ficr_10000000_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_ficr_10000000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_ficr_10000000_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_ficr_10000000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_ficr_10000000_P_compatible_LEN 1 +#define DT_N_S_soc_S_ficr_10000000_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_ficr_10000000_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_ficr_10000000_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_ficr_10000000_P_wakeup_source 0 +#define DT_N_S_soc_S_ficr_10000000_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_ficr_10000000_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_ficr_10000000_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/i2c@40003000 + * + * Node identifier: DT_N_S_soc_S_i2c_40003000 + * + * Binding (compatible = nordic,nrf-twim): + * $ZEPHYR_BASE/dts/bindings/i2c/nordic,nrf-twim.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_i2c_40003000_PATH "/soc/i2c@40003000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_i2c_40003000_FULL_NAME "i2c@40003000" +#define DT_N_S_soc_S_i2c_40003000_FULL_NAME_UNQUOTED i2c@40003000 +#define DT_N_S_soc_S_i2c_40003000_FULL_NAME_TOKEN i2c_40003000 +#define DT_N_S_soc_S_i2c_40003000_FULL_NAME_UPPER_TOKEN I2C_40003000 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_i2c_40003000_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_i2c_40003000_CHILD_IDX 9 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_i2c_40003000_NODELABEL_NUM 1 +#define DT_N_S_soc_S_i2c_40003000_FOREACH_NODELABEL(fn) fn(i2c0) +#define DT_N_S_soc_S_i2c_40003000_FOREACH_NODELABEL_VARGS(fn, ...) fn(i2c0, __VA_ARGS__) +#define DT_N_S_soc_S_i2c_40003000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_i2c_40003000_CHILD_NUM 0 +#define DT_N_S_soc_S_i2c_40003000_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_i2c_40003000_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_i2c_40003000_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_i2c_40003000_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_i2c_40003000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_i2c_40003000_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_i2c_40003000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_i2c_40003000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_i2c_40003000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_i2c_40003000_ORD 35 +#define DT_N_S_soc_S_i2c_40003000_ORD_STR_SORTABLE 00035 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_i2c_40003000_REQUIRES_ORDS \ + 6, /* /soc */ \ + 7, /* /soc/interrupt-controller@e000e100 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_i2c_40003000_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_i2c_40003000_EXISTS 1 +#define DT_N_INST_0_nordic_nrf_twim DT_N_S_soc_S_i2c_40003000 +#define DT_N_NODELABEL_i2c0 DT_N_S_soc_S_i2c_40003000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_i2c_40003000_REG_NUM 1 +#define DT_N_S_soc_S_i2c_40003000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2c_40003000_REG_IDX_0_VAL_ADDRESS 1073754112 /* 0x40003000 */ +#define DT_N_S_soc_S_i2c_40003000_REG_IDX_0_VAL_SIZE 4096 /* 0x1000 */ +#define DT_N_S_soc_S_i2c_40003000_RANGES_NUM 0 +#define DT_N_S_soc_S_i2c_40003000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_i2c_40003000_IRQ_NUM 1 +#define DT_N_S_soc_S_i2c_40003000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2c_40003000_IRQ_IDX_0_VAL_irq 3 +#define DT_N_S_soc_S_i2c_40003000_IRQ_IDX_0_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_i2c_40003000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2c_40003000_IRQ_IDX_0_VAL_priority 1 +#define DT_N_S_soc_S_i2c_40003000_IRQ_IDX_0_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_i2c_40003000_IRQ_IDX_0_CONTROLLER DT_N_S_soc_S_interrupt_controller_e000e100 +#define DT_N_S_soc_S_i2c_40003000_IRQ_LEVEL 1 +#define DT_N_S_soc_S_i2c_40003000_COMPAT_MATCHES_nordic_nrf_twim 1 +#define DT_N_S_soc_S_i2c_40003000_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2c_40003000_COMPAT_VENDOR_IDX_0 "Nordic Semiconductor" +#define DT_N_S_soc_S_i2c_40003000_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2c_40003000_COMPAT_MODEL_IDX_0 "nrf-twim" +#define DT_N_S_soc_S_i2c_40003000_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_i2c_40003000_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_i2c_40003000_P_zephyr_concat_buf_size 16 +#define DT_N_S_soc_S_i2c_40003000_P_zephyr_concat_buf_size_EXISTS 1 +#define DT_N_S_soc_S_i2c_40003000_P_zephyr_flash_buf_max_size 16 +#define DT_N_S_soc_S_i2c_40003000_P_zephyr_flash_buf_max_size_EXISTS 1 +#define DT_N_S_soc_S_i2c_40003000_P_reg {1073754112 /* 0x40003000 */, 4096 /* 0x1000 */} +#define DT_N_S_soc_S_i2c_40003000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2c_40003000_P_reg_IDX_0 1073754112 +#define DT_N_S_soc_S_i2c_40003000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_i2c_40003000_P_reg_IDX_1 4096 +#define DT_N_S_soc_S_i2c_40003000_P_reg_EXISTS 1 +#define DT_N_S_soc_S_i2c_40003000_P_interrupts {3 /* 0x3 */, 1 /* 0x1 */} +#define DT_N_S_soc_S_i2c_40003000_P_interrupts_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2c_40003000_P_interrupts_IDX_0 3 +#define DT_N_S_soc_S_i2c_40003000_P_interrupts_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_i2c_40003000_P_interrupts_IDX_1 1 +#define DT_N_S_soc_S_i2c_40003000_P_interrupts_EXISTS 1 +#define DT_N_S_soc_S_i2c_40003000_P_easydma_maxcnt_bits 16 +#define DT_N_S_soc_S_i2c_40003000_P_easydma_maxcnt_bits_EXISTS 1 +#define DT_N_S_soc_S_i2c_40003000_P_sq_size 4 +#define DT_N_S_soc_S_i2c_40003000_P_sq_size_EXISTS 1 +#define DT_N_S_soc_S_i2c_40003000_P_cq_size 4 +#define DT_N_S_soc_S_i2c_40003000_P_cq_size_EXISTS 1 +#define DT_N_S_soc_S_i2c_40003000_P_status "disabled" +#define DT_N_S_soc_S_i2c_40003000_P_status_STRING_UNQUOTED disabled +#define DT_N_S_soc_S_i2c_40003000_P_status_STRING_TOKEN disabled +#define DT_N_S_soc_S_i2c_40003000_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_soc_S_i2c_40003000_P_status_IDX_0 "disabled" +#define DT_N_S_soc_S_i2c_40003000_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2c_40003000_P_status_IDX_0_ENUM_IDX 2 +#define DT_N_S_soc_S_i2c_40003000_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_i2c_40003000_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_i2c_40003000, status, 0) +#define DT_N_S_soc_S_i2c_40003000_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_i2c_40003000, status, 0) +#define DT_N_S_soc_S_i2c_40003000_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_i2c_40003000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_i2c_40003000_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_i2c_40003000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_i2c_40003000_P_status_LEN 1 +#define DT_N_S_soc_S_i2c_40003000_P_status_EXISTS 1 +#define DT_N_S_soc_S_i2c_40003000_P_compatible {"nordic,nrf-twim"} +#define DT_N_S_soc_S_i2c_40003000_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2c_40003000_P_compatible_IDX_0 "nordic,nrf-twim" +#define DT_N_S_soc_S_i2c_40003000_P_compatible_IDX_0_STRING_UNQUOTED nordic,nrf-twim +#define DT_N_S_soc_S_i2c_40003000_P_compatible_IDX_0_STRING_TOKEN nordic_nrf_twim +#define DT_N_S_soc_S_i2c_40003000_P_compatible_IDX_0_STRING_UPPER_TOKEN NORDIC_NRF_TWIM +#define DT_N_S_soc_S_i2c_40003000_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_i2c_40003000, compatible, 0) +#define DT_N_S_soc_S_i2c_40003000_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_i2c_40003000, compatible, 0) +#define DT_N_S_soc_S_i2c_40003000_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_i2c_40003000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_i2c_40003000_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_i2c_40003000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_i2c_40003000_P_compatible_LEN 1 +#define DT_N_S_soc_S_i2c_40003000_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_i2c_40003000_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_i2c_40003000_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_i2c_40003000_P_wakeup_source 0 +#define DT_N_S_soc_S_i2c_40003000_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_i2c_40003000_P_zephyr_pm_device_runtime_auto 1 +#define DT_N_S_soc_S_i2c_40003000_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/i2c@40004000 + * + * Node identifier: DT_N_S_soc_S_i2c_40004000 + * + * Binding (compatible = nordic,nrf-twim): + * $ZEPHYR_BASE/dts/bindings/i2c/nordic,nrf-twim.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_i2c_40004000_PATH "/soc/i2c@40004000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_i2c_40004000_FULL_NAME "i2c@40004000" +#define DT_N_S_soc_S_i2c_40004000_FULL_NAME_UNQUOTED i2c@40004000 +#define DT_N_S_soc_S_i2c_40004000_FULL_NAME_TOKEN i2c_40004000 +#define DT_N_S_soc_S_i2c_40004000_FULL_NAME_UPPER_TOKEN I2C_40004000 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_i2c_40004000_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_i2c_40004000_CHILD_IDX 11 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_i2c_40004000_NODELABEL_NUM 1 +#define DT_N_S_soc_S_i2c_40004000_FOREACH_NODELABEL(fn) fn(i2c1) +#define DT_N_S_soc_S_i2c_40004000_FOREACH_NODELABEL_VARGS(fn, ...) fn(i2c1, __VA_ARGS__) +#define DT_N_S_soc_S_i2c_40004000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_i2c_40004000_CHILD_NUM 0 +#define DT_N_S_soc_S_i2c_40004000_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_i2c_40004000_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_i2c_40004000_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_i2c_40004000_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_i2c_40004000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_i2c_40004000_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_i2c_40004000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_i2c_40004000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_i2c_40004000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_i2c_40004000_ORD 36 +#define DT_N_S_soc_S_i2c_40004000_ORD_STR_SORTABLE 00036 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_i2c_40004000_REQUIRES_ORDS \ + 6, /* /soc */ \ + 7, /* /soc/interrupt-controller@e000e100 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_i2c_40004000_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_i2c_40004000_EXISTS 1 +#define DT_N_INST_1_nordic_nrf_twim DT_N_S_soc_S_i2c_40004000 +#define DT_N_NODELABEL_i2c1 DT_N_S_soc_S_i2c_40004000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_i2c_40004000_REG_NUM 1 +#define DT_N_S_soc_S_i2c_40004000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2c_40004000_REG_IDX_0_VAL_ADDRESS 1073758208 /* 0x40004000 */ +#define DT_N_S_soc_S_i2c_40004000_REG_IDX_0_VAL_SIZE 4096 /* 0x1000 */ +#define DT_N_S_soc_S_i2c_40004000_RANGES_NUM 0 +#define DT_N_S_soc_S_i2c_40004000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_i2c_40004000_IRQ_NUM 1 +#define DT_N_S_soc_S_i2c_40004000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2c_40004000_IRQ_IDX_0_VAL_irq 4 +#define DT_N_S_soc_S_i2c_40004000_IRQ_IDX_0_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_i2c_40004000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2c_40004000_IRQ_IDX_0_VAL_priority 1 +#define DT_N_S_soc_S_i2c_40004000_IRQ_IDX_0_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_i2c_40004000_IRQ_IDX_0_CONTROLLER DT_N_S_soc_S_interrupt_controller_e000e100 +#define DT_N_S_soc_S_i2c_40004000_IRQ_LEVEL 1 +#define DT_N_S_soc_S_i2c_40004000_COMPAT_MATCHES_nordic_nrf_twim 1 +#define DT_N_S_soc_S_i2c_40004000_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2c_40004000_COMPAT_VENDOR_IDX_0 "Nordic Semiconductor" +#define DT_N_S_soc_S_i2c_40004000_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2c_40004000_COMPAT_MODEL_IDX_0 "nrf-twim" +#define DT_N_S_soc_S_i2c_40004000_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_i2c_40004000_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_i2c_40004000_P_zephyr_concat_buf_size 16 +#define DT_N_S_soc_S_i2c_40004000_P_zephyr_concat_buf_size_EXISTS 1 +#define DT_N_S_soc_S_i2c_40004000_P_zephyr_flash_buf_max_size 16 +#define DT_N_S_soc_S_i2c_40004000_P_zephyr_flash_buf_max_size_EXISTS 1 +#define DT_N_S_soc_S_i2c_40004000_P_reg {1073758208 /* 0x40004000 */, 4096 /* 0x1000 */} +#define DT_N_S_soc_S_i2c_40004000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2c_40004000_P_reg_IDX_0 1073758208 +#define DT_N_S_soc_S_i2c_40004000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_i2c_40004000_P_reg_IDX_1 4096 +#define DT_N_S_soc_S_i2c_40004000_P_reg_EXISTS 1 +#define DT_N_S_soc_S_i2c_40004000_P_interrupts {4 /* 0x4 */, 1 /* 0x1 */} +#define DT_N_S_soc_S_i2c_40004000_P_interrupts_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2c_40004000_P_interrupts_IDX_0 4 +#define DT_N_S_soc_S_i2c_40004000_P_interrupts_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_i2c_40004000_P_interrupts_IDX_1 1 +#define DT_N_S_soc_S_i2c_40004000_P_interrupts_EXISTS 1 +#define DT_N_S_soc_S_i2c_40004000_P_easydma_maxcnt_bits 16 +#define DT_N_S_soc_S_i2c_40004000_P_easydma_maxcnt_bits_EXISTS 1 +#define DT_N_S_soc_S_i2c_40004000_P_sq_size 4 +#define DT_N_S_soc_S_i2c_40004000_P_sq_size_EXISTS 1 +#define DT_N_S_soc_S_i2c_40004000_P_cq_size 4 +#define DT_N_S_soc_S_i2c_40004000_P_cq_size_EXISTS 1 +#define DT_N_S_soc_S_i2c_40004000_P_status "disabled" +#define DT_N_S_soc_S_i2c_40004000_P_status_STRING_UNQUOTED disabled +#define DT_N_S_soc_S_i2c_40004000_P_status_STRING_TOKEN disabled +#define DT_N_S_soc_S_i2c_40004000_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_soc_S_i2c_40004000_P_status_IDX_0 "disabled" +#define DT_N_S_soc_S_i2c_40004000_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2c_40004000_P_status_IDX_0_ENUM_IDX 2 +#define DT_N_S_soc_S_i2c_40004000_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_i2c_40004000_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_i2c_40004000, status, 0) +#define DT_N_S_soc_S_i2c_40004000_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_i2c_40004000, status, 0) +#define DT_N_S_soc_S_i2c_40004000_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_i2c_40004000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_i2c_40004000_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_i2c_40004000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_i2c_40004000_P_status_LEN 1 +#define DT_N_S_soc_S_i2c_40004000_P_status_EXISTS 1 +#define DT_N_S_soc_S_i2c_40004000_P_compatible {"nordic,nrf-twim"} +#define DT_N_S_soc_S_i2c_40004000_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2c_40004000_P_compatible_IDX_0 "nordic,nrf-twim" +#define DT_N_S_soc_S_i2c_40004000_P_compatible_IDX_0_STRING_UNQUOTED nordic,nrf-twim +#define DT_N_S_soc_S_i2c_40004000_P_compatible_IDX_0_STRING_TOKEN nordic_nrf_twim +#define DT_N_S_soc_S_i2c_40004000_P_compatible_IDX_0_STRING_UPPER_TOKEN NORDIC_NRF_TWIM +#define DT_N_S_soc_S_i2c_40004000_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_i2c_40004000, compatible, 0) +#define DT_N_S_soc_S_i2c_40004000_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_i2c_40004000, compatible, 0) +#define DT_N_S_soc_S_i2c_40004000_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_i2c_40004000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_i2c_40004000_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_i2c_40004000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_i2c_40004000_P_compatible_LEN 1 +#define DT_N_S_soc_S_i2c_40004000_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_i2c_40004000_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_i2c_40004000_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_i2c_40004000_P_wakeup_source 0 +#define DT_N_S_soc_S_i2c_40004000_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_i2c_40004000_P_zephyr_pm_device_runtime_auto 1 +#define DT_N_S_soc_S_i2c_40004000_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/i2s@40025000 + * + * Node identifier: DT_N_S_soc_S_i2s_40025000 + * + * Binding (compatible = nordic,nrf-i2s): + * $ZEPHYR_BASE/dts/bindings/i2s/nordic,nrf-i2s.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_i2s_40025000_PATH "/soc/i2s@40025000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_i2s_40025000_FULL_NAME "i2s@40025000" +#define DT_N_S_soc_S_i2s_40025000_FULL_NAME_UNQUOTED i2s@40025000 +#define DT_N_S_soc_S_i2s_40025000_FULL_NAME_TOKEN i2s_40025000 +#define DT_N_S_soc_S_i2s_40025000_FULL_NAME_UPPER_TOKEN I2S_40025000 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_i2s_40025000_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_i2s_40025000_CHILD_IDX 46 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_i2s_40025000_NODELABEL_NUM 1 +#define DT_N_S_soc_S_i2s_40025000_FOREACH_NODELABEL(fn) fn(i2s0) +#define DT_N_S_soc_S_i2s_40025000_FOREACH_NODELABEL_VARGS(fn, ...) fn(i2s0, __VA_ARGS__) +#define DT_N_S_soc_S_i2s_40025000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_i2s_40025000_CHILD_NUM 0 +#define DT_N_S_soc_S_i2s_40025000_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_i2s_40025000_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_i2s_40025000_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_i2s_40025000_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_i2s_40025000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_i2s_40025000_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_i2s_40025000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_i2s_40025000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_i2s_40025000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_i2s_40025000_ORD 37 +#define DT_N_S_soc_S_i2s_40025000_ORD_STR_SORTABLE 00037 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_i2s_40025000_REQUIRES_ORDS \ + 6, /* /soc */ \ + 7, /* /soc/interrupt-controller@e000e100 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_i2s_40025000_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_i2s_40025000_EXISTS 1 +#define DT_N_INST_0_nordic_nrf_i2s DT_N_S_soc_S_i2s_40025000 +#define DT_N_NODELABEL_i2s0 DT_N_S_soc_S_i2s_40025000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_i2s_40025000_REG_NUM 1 +#define DT_N_S_soc_S_i2s_40025000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2s_40025000_REG_IDX_0_VAL_ADDRESS 1073893376 /* 0x40025000 */ +#define DT_N_S_soc_S_i2s_40025000_REG_IDX_0_VAL_SIZE 4096 /* 0x1000 */ +#define DT_N_S_soc_S_i2s_40025000_RANGES_NUM 0 +#define DT_N_S_soc_S_i2s_40025000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_i2s_40025000_IRQ_NUM 1 +#define DT_N_S_soc_S_i2s_40025000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2s_40025000_IRQ_IDX_0_VAL_irq 37 +#define DT_N_S_soc_S_i2s_40025000_IRQ_IDX_0_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_i2s_40025000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2s_40025000_IRQ_IDX_0_VAL_priority 1 +#define DT_N_S_soc_S_i2s_40025000_IRQ_IDX_0_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_i2s_40025000_IRQ_IDX_0_CONTROLLER DT_N_S_soc_S_interrupt_controller_e000e100 +#define DT_N_S_soc_S_i2s_40025000_IRQ_LEVEL 1 +#define DT_N_S_soc_S_i2s_40025000_COMPAT_MATCHES_nordic_nrf_i2s 1 +#define DT_N_S_soc_S_i2s_40025000_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2s_40025000_COMPAT_VENDOR_IDX_0 "Nordic Semiconductor" +#define DT_N_S_soc_S_i2s_40025000_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2s_40025000_COMPAT_MODEL_IDX_0 "nrf-i2s" +#define DT_N_S_soc_S_i2s_40025000_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_i2s_40025000_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_i2s_40025000_P_reg {1073893376 /* 0x40025000 */, 4096 /* 0x1000 */} +#define DT_N_S_soc_S_i2s_40025000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2s_40025000_P_reg_IDX_0 1073893376 +#define DT_N_S_soc_S_i2s_40025000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_i2s_40025000_P_reg_IDX_1 4096 +#define DT_N_S_soc_S_i2s_40025000_P_reg_EXISTS 1 +#define DT_N_S_soc_S_i2s_40025000_P_interrupts {37 /* 0x25 */, 1 /* 0x1 */} +#define DT_N_S_soc_S_i2s_40025000_P_interrupts_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2s_40025000_P_interrupts_IDX_0 37 +#define DT_N_S_soc_S_i2s_40025000_P_interrupts_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_i2s_40025000_P_interrupts_IDX_1 1 +#define DT_N_S_soc_S_i2s_40025000_P_interrupts_EXISTS 1 +#define DT_N_S_soc_S_i2s_40025000_P_clock_source "PCLK32M_HFXO" +#define DT_N_S_soc_S_i2s_40025000_P_clock_source_STRING_UNQUOTED PCLK32M_HFXO +#define DT_N_S_soc_S_i2s_40025000_P_clock_source_STRING_TOKEN PCLK32M_HFXO +#define DT_N_S_soc_S_i2s_40025000_P_clock_source_STRING_UPPER_TOKEN PCLK32M_HFXO +#define DT_N_S_soc_S_i2s_40025000_P_clock_source_IDX_0 "PCLK32M_HFXO" +#define DT_N_S_soc_S_i2s_40025000_P_clock_source_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2s_40025000_P_clock_source_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_i2s_40025000_P_clock_source_IDX_0_ENUM_VAL_PCLK32M_HFXO_EXISTS 1 +#define DT_N_S_soc_S_i2s_40025000_P_clock_source_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_i2s_40025000, clock_source, 0) +#define DT_N_S_soc_S_i2s_40025000_P_clock_source_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_i2s_40025000, clock_source, 0) +#define DT_N_S_soc_S_i2s_40025000_P_clock_source_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_i2s_40025000, clock_source, 0, __VA_ARGS__) +#define DT_N_S_soc_S_i2s_40025000_P_clock_source_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_i2s_40025000, clock_source, 0, __VA_ARGS__) +#define DT_N_S_soc_S_i2s_40025000_P_clock_source_LEN 1 +#define DT_N_S_soc_S_i2s_40025000_P_clock_source_EXISTS 1 +#define DT_N_S_soc_S_i2s_40025000_P_status "disabled" +#define DT_N_S_soc_S_i2s_40025000_P_status_STRING_UNQUOTED disabled +#define DT_N_S_soc_S_i2s_40025000_P_status_STRING_TOKEN disabled +#define DT_N_S_soc_S_i2s_40025000_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_soc_S_i2s_40025000_P_status_IDX_0 "disabled" +#define DT_N_S_soc_S_i2s_40025000_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2s_40025000_P_status_IDX_0_ENUM_IDX 2 +#define DT_N_S_soc_S_i2s_40025000_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_i2s_40025000_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_i2s_40025000, status, 0) +#define DT_N_S_soc_S_i2s_40025000_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_i2s_40025000, status, 0) +#define DT_N_S_soc_S_i2s_40025000_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_i2s_40025000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_i2s_40025000_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_i2s_40025000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_i2s_40025000_P_status_LEN 1 +#define DT_N_S_soc_S_i2s_40025000_P_status_EXISTS 1 +#define DT_N_S_soc_S_i2s_40025000_P_compatible {"nordic,nrf-i2s"} +#define DT_N_S_soc_S_i2s_40025000_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2s_40025000_P_compatible_IDX_0 "nordic,nrf-i2s" +#define DT_N_S_soc_S_i2s_40025000_P_compatible_IDX_0_STRING_UNQUOTED nordic,nrf-i2s +#define DT_N_S_soc_S_i2s_40025000_P_compatible_IDX_0_STRING_TOKEN nordic_nrf_i2s +#define DT_N_S_soc_S_i2s_40025000_P_compatible_IDX_0_STRING_UPPER_TOKEN NORDIC_NRF_I2S +#define DT_N_S_soc_S_i2s_40025000_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_i2s_40025000, compatible, 0) +#define DT_N_S_soc_S_i2s_40025000_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_i2s_40025000, compatible, 0) +#define DT_N_S_soc_S_i2s_40025000_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_i2s_40025000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_i2s_40025000_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_i2s_40025000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_i2s_40025000_P_compatible_LEN 1 +#define DT_N_S_soc_S_i2s_40025000_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_i2s_40025000_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_i2s_40025000_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_i2s_40025000_P_wakeup_source 0 +#define DT_N_S_soc_S_i2s_40025000_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_i2s_40025000_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_i2s_40025000_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/memory@20000000 + * + * Node identifier: DT_N_S_soc_S_memory_20000000 + * + * Binding (compatible = mmio-sram): + * $ZEPHYR_BASE/dts/bindings/sram/mmio-sram.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_memory_20000000_PATH "/soc/memory@20000000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_memory_20000000_FULL_NAME "memory@20000000" +#define DT_N_S_soc_S_memory_20000000_FULL_NAME_UNQUOTED memory@20000000 +#define DT_N_S_soc_S_memory_20000000_FULL_NAME_TOKEN memory_20000000 +#define DT_N_S_soc_S_memory_20000000_FULL_NAME_UPPER_TOKEN MEMORY_20000000 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_memory_20000000_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_memory_20000000_CHILD_IDX 4 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_memory_20000000_NODELABEL_NUM 1 +#define DT_N_S_soc_S_memory_20000000_FOREACH_NODELABEL(fn) fn(sram0) +#define DT_N_S_soc_S_memory_20000000_FOREACH_NODELABEL_VARGS(fn, ...) fn(sram0, __VA_ARGS__) +#define DT_N_S_soc_S_memory_20000000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_memory_20000000_CHILD_NUM 0 +#define DT_N_S_soc_S_memory_20000000_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_memory_20000000_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_memory_20000000_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_memory_20000000_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_memory_20000000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_memory_20000000_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_memory_20000000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_memory_20000000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_memory_20000000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_memory_20000000_ORD 38 +#define DT_N_S_soc_S_memory_20000000_ORD_STR_SORTABLE 00038 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_memory_20000000_REQUIRES_ORDS \ + 6, /* /soc */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_memory_20000000_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_memory_20000000_EXISTS 1 +#define DT_N_INST_0_mmio_sram DT_N_S_soc_S_memory_20000000 +#define DT_N_NODELABEL_sram0 DT_N_S_soc_S_memory_20000000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_memory_20000000_REG_NUM 1 +#define DT_N_S_soc_S_memory_20000000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_memory_20000000_REG_IDX_0_VAL_ADDRESS 536870912 /* 0x20000000 */ +#define DT_N_S_soc_S_memory_20000000_REG_IDX_0_VAL_SIZE 131072 /* 0x20000 */ +#define DT_N_S_soc_S_memory_20000000_RANGES_NUM 0 +#define DT_N_S_soc_S_memory_20000000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_memory_20000000_IRQ_NUM 0 +#define DT_N_S_soc_S_memory_20000000_IRQ_LEVEL 0 +#define DT_N_S_soc_S_memory_20000000_COMPAT_MATCHES_mmio_sram 1 +#define DT_N_S_soc_S_memory_20000000_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_memory_20000000_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_memory_20000000_P_reg {536870912 /* 0x20000000 */, 131072 /* 0x20000 */} +#define DT_N_S_soc_S_memory_20000000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_memory_20000000_P_reg_IDX_0 536870912 +#define DT_N_S_soc_S_memory_20000000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_memory_20000000_P_reg_IDX_1 131072 +#define DT_N_S_soc_S_memory_20000000_P_reg_EXISTS 1 +#define DT_N_S_soc_S_memory_20000000_P_compatible {"mmio-sram"} +#define DT_N_S_soc_S_memory_20000000_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_memory_20000000_P_compatible_IDX_0 "mmio-sram" +#define DT_N_S_soc_S_memory_20000000_P_compatible_IDX_0_STRING_UNQUOTED mmio-sram +#define DT_N_S_soc_S_memory_20000000_P_compatible_IDX_0_STRING_TOKEN mmio_sram +#define DT_N_S_soc_S_memory_20000000_P_compatible_IDX_0_STRING_UPPER_TOKEN MMIO_SRAM +#define DT_N_S_soc_S_memory_20000000_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_memory_20000000, compatible, 0) +#define DT_N_S_soc_S_memory_20000000_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_memory_20000000, compatible, 0) +#define DT_N_S_soc_S_memory_20000000_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_memory_20000000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_memory_20000000_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_memory_20000000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_memory_20000000_P_compatible_LEN 1 +#define DT_N_S_soc_S_memory_20000000_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_memory_20000000_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_memory_20000000_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_memory_20000000_P_wakeup_source 0 +#define DT_N_S_soc_S_memory_20000000_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_memory_20000000_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_memory_20000000_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/mwu@40020000 + * + * Node identifier: DT_N_S_soc_S_mwu_40020000 + * + * Binding (compatible = nordic,nrf-mwu): + * $ZEPHYR_BASE/dts/bindings/arm/nordic,nrf-mwu.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_mwu_40020000_PATH "/soc/mwu@40020000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_mwu_40020000_FULL_NAME "mwu@40020000" +#define DT_N_S_soc_S_mwu_40020000_FULL_NAME_UNQUOTED mwu@40020000 +#define DT_N_S_soc_S_mwu_40020000_FULL_NAME_TOKEN mwu_40020000 +#define DT_N_S_soc_S_mwu_40020000_FULL_NAME_UPPER_TOKEN MWU_40020000 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_mwu_40020000_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_mwu_40020000_CHILD_IDX 41 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_mwu_40020000_NODELABEL_NUM 1 +#define DT_N_S_soc_S_mwu_40020000_FOREACH_NODELABEL(fn) fn(mwu) +#define DT_N_S_soc_S_mwu_40020000_FOREACH_NODELABEL_VARGS(fn, ...) fn(mwu, __VA_ARGS__) +#define DT_N_S_soc_S_mwu_40020000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_mwu_40020000_CHILD_NUM 0 +#define DT_N_S_soc_S_mwu_40020000_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_mwu_40020000_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_mwu_40020000_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_mwu_40020000_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_mwu_40020000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_mwu_40020000_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_mwu_40020000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_mwu_40020000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_mwu_40020000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_mwu_40020000_ORD 39 +#define DT_N_S_soc_S_mwu_40020000_ORD_STR_SORTABLE 00039 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_mwu_40020000_REQUIRES_ORDS \ + 6, /* /soc */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_mwu_40020000_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_mwu_40020000_EXISTS 1 +#define DT_N_INST_0_nordic_nrf_mwu DT_N_S_soc_S_mwu_40020000 +#define DT_N_NODELABEL_mwu DT_N_S_soc_S_mwu_40020000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_mwu_40020000_REG_NUM 1 +#define DT_N_S_soc_S_mwu_40020000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_mwu_40020000_REG_IDX_0_VAL_ADDRESS 1073872896 /* 0x40020000 */ +#define DT_N_S_soc_S_mwu_40020000_REG_IDX_0_VAL_SIZE 4096 /* 0x1000 */ +#define DT_N_S_soc_S_mwu_40020000_RANGES_NUM 0 +#define DT_N_S_soc_S_mwu_40020000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_mwu_40020000_IRQ_NUM 0 +#define DT_N_S_soc_S_mwu_40020000_IRQ_LEVEL 0 +#define DT_N_S_soc_S_mwu_40020000_COMPAT_MATCHES_nordic_nrf_mwu 1 +#define DT_N_S_soc_S_mwu_40020000_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_mwu_40020000_COMPAT_VENDOR_IDX_0 "Nordic Semiconductor" +#define DT_N_S_soc_S_mwu_40020000_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_mwu_40020000_COMPAT_MODEL_IDX_0 "nrf-mwu" +#define DT_N_S_soc_S_mwu_40020000_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_mwu_40020000_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_mwu_40020000_P_reg {1073872896 /* 0x40020000 */, 4096 /* 0x1000 */} +#define DT_N_S_soc_S_mwu_40020000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_mwu_40020000_P_reg_IDX_0 1073872896 +#define DT_N_S_soc_S_mwu_40020000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_mwu_40020000_P_reg_IDX_1 4096 +#define DT_N_S_soc_S_mwu_40020000_P_reg_EXISTS 1 +#define DT_N_S_soc_S_mwu_40020000_P_status "okay" +#define DT_N_S_soc_S_mwu_40020000_P_status_STRING_UNQUOTED okay +#define DT_N_S_soc_S_mwu_40020000_P_status_STRING_TOKEN okay +#define DT_N_S_soc_S_mwu_40020000_P_status_STRING_UPPER_TOKEN OKAY +#define DT_N_S_soc_S_mwu_40020000_P_status_IDX_0 "okay" +#define DT_N_S_soc_S_mwu_40020000_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_mwu_40020000_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_mwu_40020000_P_status_IDX_0_ENUM_VAL_okay_EXISTS 1 +#define DT_N_S_soc_S_mwu_40020000_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_mwu_40020000, status, 0) +#define DT_N_S_soc_S_mwu_40020000_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_mwu_40020000, status, 0) +#define DT_N_S_soc_S_mwu_40020000_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_mwu_40020000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_mwu_40020000_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_mwu_40020000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_mwu_40020000_P_status_LEN 1 +#define DT_N_S_soc_S_mwu_40020000_P_status_EXISTS 1 +#define DT_N_S_soc_S_mwu_40020000_P_compatible {"nordic,nrf-mwu"} +#define DT_N_S_soc_S_mwu_40020000_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_mwu_40020000_P_compatible_IDX_0 "nordic,nrf-mwu" +#define DT_N_S_soc_S_mwu_40020000_P_compatible_IDX_0_STRING_UNQUOTED nordic,nrf-mwu +#define DT_N_S_soc_S_mwu_40020000_P_compatible_IDX_0_STRING_TOKEN nordic_nrf_mwu +#define DT_N_S_soc_S_mwu_40020000_P_compatible_IDX_0_STRING_UPPER_TOKEN NORDIC_NRF_MWU +#define DT_N_S_soc_S_mwu_40020000_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_mwu_40020000, compatible, 0) +#define DT_N_S_soc_S_mwu_40020000_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_mwu_40020000, compatible, 0) +#define DT_N_S_soc_S_mwu_40020000_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_mwu_40020000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_mwu_40020000_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_mwu_40020000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_mwu_40020000_P_compatible_LEN 1 +#define DT_N_S_soc_S_mwu_40020000_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_mwu_40020000_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_mwu_40020000_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_mwu_40020000_P_wakeup_source 0 +#define DT_N_S_soc_S_mwu_40020000_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_mwu_40020000_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_mwu_40020000_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/nfct@40005000 + * + * Node identifier: DT_N_S_soc_S_nfct_40005000 + * + * Binding (compatible = nordic,nrf-nfct): + * $ZEPHYR_BASE/dts/bindings/net/wireless/nordic,nrf-nfct.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_nfct_40005000_PATH "/soc/nfct@40005000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_nfct_40005000_FULL_NAME "nfct@40005000" +#define DT_N_S_soc_S_nfct_40005000_FULL_NAME_UNQUOTED nfct@40005000 +#define DT_N_S_soc_S_nfct_40005000_FULL_NAME_TOKEN nfct_40005000 +#define DT_N_S_soc_S_nfct_40005000_FULL_NAME_UPPER_TOKEN NFCT_40005000 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_nfct_40005000_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_nfct_40005000_CHILD_IDX 13 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_nfct_40005000_NODELABEL_NUM 1 +#define DT_N_S_soc_S_nfct_40005000_FOREACH_NODELABEL(fn) fn(nfct) +#define DT_N_S_soc_S_nfct_40005000_FOREACH_NODELABEL_VARGS(fn, ...) fn(nfct, __VA_ARGS__) +#define DT_N_S_soc_S_nfct_40005000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_nfct_40005000_CHILD_NUM 0 +#define DT_N_S_soc_S_nfct_40005000_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_nfct_40005000_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_nfct_40005000_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_nfct_40005000_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_nfct_40005000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_nfct_40005000_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_nfct_40005000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_nfct_40005000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_nfct_40005000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_nfct_40005000_ORD 40 +#define DT_N_S_soc_S_nfct_40005000_ORD_STR_SORTABLE 00040 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_nfct_40005000_REQUIRES_ORDS \ + 6, /* /soc */ \ + 7, /* /soc/interrupt-controller@e000e100 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_nfct_40005000_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_nfct_40005000_EXISTS 1 +#define DT_N_INST_0_nordic_nrf_nfct DT_N_S_soc_S_nfct_40005000 +#define DT_N_NODELABEL_nfct DT_N_S_soc_S_nfct_40005000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_nfct_40005000_REG_NUM 1 +#define DT_N_S_soc_S_nfct_40005000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_nfct_40005000_REG_IDX_0_VAL_ADDRESS 1073762304 /* 0x40005000 */ +#define DT_N_S_soc_S_nfct_40005000_REG_IDX_0_VAL_SIZE 4096 /* 0x1000 */ +#define DT_N_S_soc_S_nfct_40005000_RANGES_NUM 0 +#define DT_N_S_soc_S_nfct_40005000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_nfct_40005000_IRQ_NUM 1 +#define DT_N_S_soc_S_nfct_40005000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_nfct_40005000_IRQ_IDX_0_VAL_irq 5 +#define DT_N_S_soc_S_nfct_40005000_IRQ_IDX_0_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_nfct_40005000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_nfct_40005000_IRQ_IDX_0_VAL_priority 1 +#define DT_N_S_soc_S_nfct_40005000_IRQ_IDX_0_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_nfct_40005000_IRQ_IDX_0_CONTROLLER DT_N_S_soc_S_interrupt_controller_e000e100 +#define DT_N_S_soc_S_nfct_40005000_IRQ_LEVEL 1 +#define DT_N_S_soc_S_nfct_40005000_COMPAT_MATCHES_nordic_nrf_nfct 1 +#define DT_N_S_soc_S_nfct_40005000_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_nfct_40005000_COMPAT_VENDOR_IDX_0 "Nordic Semiconductor" +#define DT_N_S_soc_S_nfct_40005000_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_nfct_40005000_COMPAT_MODEL_IDX_0 "nrf-nfct" +#define DT_N_S_soc_S_nfct_40005000_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_nfct_40005000_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_nfct_40005000_P_reg {1073762304 /* 0x40005000 */, 4096 /* 0x1000 */} +#define DT_N_S_soc_S_nfct_40005000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_nfct_40005000_P_reg_IDX_0 1073762304 +#define DT_N_S_soc_S_nfct_40005000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_nfct_40005000_P_reg_IDX_1 4096 +#define DT_N_S_soc_S_nfct_40005000_P_reg_EXISTS 1 +#define DT_N_S_soc_S_nfct_40005000_P_interrupts {5 /* 0x5 */, 1 /* 0x1 */} +#define DT_N_S_soc_S_nfct_40005000_P_interrupts_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_nfct_40005000_P_interrupts_IDX_0 5 +#define DT_N_S_soc_S_nfct_40005000_P_interrupts_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_nfct_40005000_P_interrupts_IDX_1 1 +#define DT_N_S_soc_S_nfct_40005000_P_interrupts_EXISTS 1 +#define DT_N_S_soc_S_nfct_40005000_P_status "disabled" +#define DT_N_S_soc_S_nfct_40005000_P_status_STRING_UNQUOTED disabled +#define DT_N_S_soc_S_nfct_40005000_P_status_STRING_TOKEN disabled +#define DT_N_S_soc_S_nfct_40005000_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_soc_S_nfct_40005000_P_status_IDX_0 "disabled" +#define DT_N_S_soc_S_nfct_40005000_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_nfct_40005000_P_status_IDX_0_ENUM_IDX 2 +#define DT_N_S_soc_S_nfct_40005000_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_nfct_40005000_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_nfct_40005000, status, 0) +#define DT_N_S_soc_S_nfct_40005000_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_nfct_40005000, status, 0) +#define DT_N_S_soc_S_nfct_40005000_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_nfct_40005000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_nfct_40005000_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_nfct_40005000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_nfct_40005000_P_status_LEN 1 +#define DT_N_S_soc_S_nfct_40005000_P_status_EXISTS 1 +#define DT_N_S_soc_S_nfct_40005000_P_compatible {"nordic,nrf-nfct"} +#define DT_N_S_soc_S_nfct_40005000_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_nfct_40005000_P_compatible_IDX_0 "nordic,nrf-nfct" +#define DT_N_S_soc_S_nfct_40005000_P_compatible_IDX_0_STRING_UNQUOTED nordic,nrf-nfct +#define DT_N_S_soc_S_nfct_40005000_P_compatible_IDX_0_STRING_TOKEN nordic_nrf_nfct +#define DT_N_S_soc_S_nfct_40005000_P_compatible_IDX_0_STRING_UPPER_TOKEN NORDIC_NRF_NFCT +#define DT_N_S_soc_S_nfct_40005000_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_nfct_40005000, compatible, 0) +#define DT_N_S_soc_S_nfct_40005000_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_nfct_40005000, compatible, 0) +#define DT_N_S_soc_S_nfct_40005000_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_nfct_40005000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_nfct_40005000_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_nfct_40005000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_nfct_40005000_P_compatible_LEN 1 +#define DT_N_S_soc_S_nfct_40005000_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_nfct_40005000_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_nfct_40005000_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_nfct_40005000_P_wakeup_source 0 +#define DT_N_S_soc_S_nfct_40005000_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_nfct_40005000_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_nfct_40005000_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/pdm@4001d000 + * + * Node identifier: DT_N_S_soc_S_pdm_4001d000 + * + * Binding (compatible = nordic,nrf-pdm): + * $ZEPHYR_BASE/dts/bindings/audio/nordic,nrf-pdm.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_pdm_4001d000_PATH "/soc/pdm@4001d000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_pdm_4001d000_FULL_NAME "pdm@4001d000" +#define DT_N_S_soc_S_pdm_4001d000_FULL_NAME_UNQUOTED pdm@4001d000 +#define DT_N_S_soc_S_pdm_4001d000_FULL_NAME_TOKEN pdm_4001d000 +#define DT_N_S_soc_S_pdm_4001d000_FULL_NAME_UPPER_TOKEN PDM_4001D000 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_pdm_4001d000_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_pdm_4001d000_CHILD_IDX 37 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_pdm_4001d000_NODELABEL_NUM 1 +#define DT_N_S_soc_S_pdm_4001d000_FOREACH_NODELABEL(fn) fn(pdm0) +#define DT_N_S_soc_S_pdm_4001d000_FOREACH_NODELABEL_VARGS(fn, ...) fn(pdm0, __VA_ARGS__) +#define DT_N_S_soc_S_pdm_4001d000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_pdm_4001d000_CHILD_NUM 0 +#define DT_N_S_soc_S_pdm_4001d000_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_pdm_4001d000_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_pdm_4001d000_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_pdm_4001d000_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_pdm_4001d000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_pdm_4001d000_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_pdm_4001d000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_pdm_4001d000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_pdm_4001d000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_pdm_4001d000_ORD 41 +#define DT_N_S_soc_S_pdm_4001d000_ORD_STR_SORTABLE 00041 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_pdm_4001d000_REQUIRES_ORDS \ + 6, /* /soc */ \ + 7, /* /soc/interrupt-controller@e000e100 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_pdm_4001d000_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_pdm_4001d000_EXISTS 1 +#define DT_N_INST_0_nordic_nrf_pdm DT_N_S_soc_S_pdm_4001d000 +#define DT_N_NODELABEL_pdm0 DT_N_S_soc_S_pdm_4001d000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_pdm_4001d000_REG_NUM 1 +#define DT_N_S_soc_S_pdm_4001d000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_pdm_4001d000_REG_IDX_0_VAL_ADDRESS 1073860608 /* 0x4001d000 */ +#define DT_N_S_soc_S_pdm_4001d000_REG_IDX_0_VAL_SIZE 4096 /* 0x1000 */ +#define DT_N_S_soc_S_pdm_4001d000_RANGES_NUM 0 +#define DT_N_S_soc_S_pdm_4001d000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_pdm_4001d000_IRQ_NUM 1 +#define DT_N_S_soc_S_pdm_4001d000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_pdm_4001d000_IRQ_IDX_0_VAL_irq 29 +#define DT_N_S_soc_S_pdm_4001d000_IRQ_IDX_0_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_pdm_4001d000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_pdm_4001d000_IRQ_IDX_0_VAL_priority 1 +#define DT_N_S_soc_S_pdm_4001d000_IRQ_IDX_0_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_pdm_4001d000_IRQ_IDX_0_CONTROLLER DT_N_S_soc_S_interrupt_controller_e000e100 +#define DT_N_S_soc_S_pdm_4001d000_IRQ_LEVEL 1 +#define DT_N_S_soc_S_pdm_4001d000_COMPAT_MATCHES_nordic_nrf_pdm 1 +#define DT_N_S_soc_S_pdm_4001d000_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_pdm_4001d000_COMPAT_VENDOR_IDX_0 "Nordic Semiconductor" +#define DT_N_S_soc_S_pdm_4001d000_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_pdm_4001d000_COMPAT_MODEL_IDX_0 "nrf-pdm" +#define DT_N_S_soc_S_pdm_4001d000_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_pdm_4001d000_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_pdm_4001d000_P_reg {1073860608 /* 0x4001d000 */, 4096 /* 0x1000 */} +#define DT_N_S_soc_S_pdm_4001d000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_pdm_4001d000_P_reg_IDX_0 1073860608 +#define DT_N_S_soc_S_pdm_4001d000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_pdm_4001d000_P_reg_IDX_1 4096 +#define DT_N_S_soc_S_pdm_4001d000_P_reg_EXISTS 1 +#define DT_N_S_soc_S_pdm_4001d000_P_interrupts {29 /* 0x1d */, 1 /* 0x1 */} +#define DT_N_S_soc_S_pdm_4001d000_P_interrupts_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_pdm_4001d000_P_interrupts_IDX_0 29 +#define DT_N_S_soc_S_pdm_4001d000_P_interrupts_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_pdm_4001d000_P_interrupts_IDX_1 1 +#define DT_N_S_soc_S_pdm_4001d000_P_interrupts_EXISTS 1 +#define DT_N_S_soc_S_pdm_4001d000_P_clock_source "PCLK32M_HFXO" +#define DT_N_S_soc_S_pdm_4001d000_P_clock_source_STRING_UNQUOTED PCLK32M_HFXO +#define DT_N_S_soc_S_pdm_4001d000_P_clock_source_STRING_TOKEN PCLK32M_HFXO +#define DT_N_S_soc_S_pdm_4001d000_P_clock_source_STRING_UPPER_TOKEN PCLK32M_HFXO +#define DT_N_S_soc_S_pdm_4001d000_P_clock_source_IDX_0 "PCLK32M_HFXO" +#define DT_N_S_soc_S_pdm_4001d000_P_clock_source_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_pdm_4001d000_P_clock_source_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_pdm_4001d000_P_clock_source_IDX_0_ENUM_VAL_PCLK32M_HFXO_EXISTS 1 +#define DT_N_S_soc_S_pdm_4001d000_P_clock_source_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_pdm_4001d000, clock_source, 0) +#define DT_N_S_soc_S_pdm_4001d000_P_clock_source_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_pdm_4001d000, clock_source, 0) +#define DT_N_S_soc_S_pdm_4001d000_P_clock_source_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_pdm_4001d000, clock_source, 0, __VA_ARGS__) +#define DT_N_S_soc_S_pdm_4001d000_P_clock_source_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_pdm_4001d000, clock_source, 0, __VA_ARGS__) +#define DT_N_S_soc_S_pdm_4001d000_P_clock_source_LEN 1 +#define DT_N_S_soc_S_pdm_4001d000_P_clock_source_EXISTS 1 +#define DT_N_S_soc_S_pdm_4001d000_P_queue_size 4 +#define DT_N_S_soc_S_pdm_4001d000_P_queue_size_EXISTS 1 +#define DT_N_S_soc_S_pdm_4001d000_P_status "disabled" +#define DT_N_S_soc_S_pdm_4001d000_P_status_STRING_UNQUOTED disabled +#define DT_N_S_soc_S_pdm_4001d000_P_status_STRING_TOKEN disabled +#define DT_N_S_soc_S_pdm_4001d000_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_soc_S_pdm_4001d000_P_status_IDX_0 "disabled" +#define DT_N_S_soc_S_pdm_4001d000_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_pdm_4001d000_P_status_IDX_0_ENUM_IDX 2 +#define DT_N_S_soc_S_pdm_4001d000_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_pdm_4001d000_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_pdm_4001d000, status, 0) +#define DT_N_S_soc_S_pdm_4001d000_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_pdm_4001d000, status, 0) +#define DT_N_S_soc_S_pdm_4001d000_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_pdm_4001d000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_pdm_4001d000_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_pdm_4001d000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_pdm_4001d000_P_status_LEN 1 +#define DT_N_S_soc_S_pdm_4001d000_P_status_EXISTS 1 +#define DT_N_S_soc_S_pdm_4001d000_P_compatible {"nordic,nrf-pdm"} +#define DT_N_S_soc_S_pdm_4001d000_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_pdm_4001d000_P_compatible_IDX_0 "nordic,nrf-pdm" +#define DT_N_S_soc_S_pdm_4001d000_P_compatible_IDX_0_STRING_UNQUOTED nordic,nrf-pdm +#define DT_N_S_soc_S_pdm_4001d000_P_compatible_IDX_0_STRING_TOKEN nordic_nrf_pdm +#define DT_N_S_soc_S_pdm_4001d000_P_compatible_IDX_0_STRING_UPPER_TOKEN NORDIC_NRF_PDM +#define DT_N_S_soc_S_pdm_4001d000_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_pdm_4001d000, compatible, 0) +#define DT_N_S_soc_S_pdm_4001d000_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_pdm_4001d000, compatible, 0) +#define DT_N_S_soc_S_pdm_4001d000_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_pdm_4001d000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_pdm_4001d000_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_pdm_4001d000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_pdm_4001d000_P_compatible_LEN 1 +#define DT_N_S_soc_S_pdm_4001d000_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_pdm_4001d000_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_pdm_4001d000_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_pdm_4001d000_P_wakeup_source 0 +#define DT_N_S_soc_S_pdm_4001d000_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_pdm_4001d000_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_pdm_4001d000_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/ppi@4001f000 + * + * Node identifier: DT_N_S_soc_S_ppi_4001f000 + * + * Binding (compatible = nordic,nrf-ppi): + * $ZEPHYR_BASE/dts/bindings/misc/nordic,nrf-ppi.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_ppi_4001f000_PATH "/soc/ppi@4001f000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_ppi_4001f000_FULL_NAME "ppi@4001f000" +#define DT_N_S_soc_S_ppi_4001f000_FULL_NAME_UNQUOTED ppi@4001f000 +#define DT_N_S_soc_S_ppi_4001f000_FULL_NAME_TOKEN ppi_4001f000 +#define DT_N_S_soc_S_ppi_4001f000_FULL_NAME_UPPER_TOKEN PPI_4001F000 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_ppi_4001f000_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_ppi_4001f000_CHILD_IDX 40 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_ppi_4001f000_NODELABEL_NUM 1 +#define DT_N_S_soc_S_ppi_4001f000_FOREACH_NODELABEL(fn) fn(ppi) +#define DT_N_S_soc_S_ppi_4001f000_FOREACH_NODELABEL_VARGS(fn, ...) fn(ppi, __VA_ARGS__) +#define DT_N_S_soc_S_ppi_4001f000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_ppi_4001f000_CHILD_NUM 0 +#define DT_N_S_soc_S_ppi_4001f000_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_ppi_4001f000_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_ppi_4001f000_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_ppi_4001f000_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_ppi_4001f000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_ppi_4001f000_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_ppi_4001f000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_ppi_4001f000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_ppi_4001f000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_ppi_4001f000_ORD 42 +#define DT_N_S_soc_S_ppi_4001f000_ORD_STR_SORTABLE 00042 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_ppi_4001f000_REQUIRES_ORDS \ + 6, /* /soc */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_ppi_4001f000_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_ppi_4001f000_EXISTS 1 +#define DT_N_INST_0_nordic_nrf_ppi DT_N_S_soc_S_ppi_4001f000 +#define DT_N_NODELABEL_ppi DT_N_S_soc_S_ppi_4001f000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_ppi_4001f000_REG_NUM 1 +#define DT_N_S_soc_S_ppi_4001f000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_ppi_4001f000_REG_IDX_0_VAL_ADDRESS 1073868800 /* 0x4001f000 */ +#define DT_N_S_soc_S_ppi_4001f000_REG_IDX_0_VAL_SIZE 4096 /* 0x1000 */ +#define DT_N_S_soc_S_ppi_4001f000_RANGES_NUM 0 +#define DT_N_S_soc_S_ppi_4001f000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_ppi_4001f000_IRQ_NUM 0 +#define DT_N_S_soc_S_ppi_4001f000_IRQ_LEVEL 0 +#define DT_N_S_soc_S_ppi_4001f000_COMPAT_MATCHES_nordic_nrf_ppi 1 +#define DT_N_S_soc_S_ppi_4001f000_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_ppi_4001f000_COMPAT_VENDOR_IDX_0 "Nordic Semiconductor" +#define DT_N_S_soc_S_ppi_4001f000_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_ppi_4001f000_COMPAT_MODEL_IDX_0 "nrf-ppi" +#define DT_N_S_soc_S_ppi_4001f000_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_ppi_4001f000_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_ppi_4001f000_P_reg {1073868800 /* 0x4001f000 */, 4096 /* 0x1000 */} +#define DT_N_S_soc_S_ppi_4001f000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_ppi_4001f000_P_reg_IDX_0 1073868800 +#define DT_N_S_soc_S_ppi_4001f000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_ppi_4001f000_P_reg_IDX_1 4096 +#define DT_N_S_soc_S_ppi_4001f000_P_reg_EXISTS 1 +#define DT_N_S_soc_S_ppi_4001f000_P_status "okay" +#define DT_N_S_soc_S_ppi_4001f000_P_status_STRING_UNQUOTED okay +#define DT_N_S_soc_S_ppi_4001f000_P_status_STRING_TOKEN okay +#define DT_N_S_soc_S_ppi_4001f000_P_status_STRING_UPPER_TOKEN OKAY +#define DT_N_S_soc_S_ppi_4001f000_P_status_IDX_0 "okay" +#define DT_N_S_soc_S_ppi_4001f000_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_ppi_4001f000_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_ppi_4001f000_P_status_IDX_0_ENUM_VAL_okay_EXISTS 1 +#define DT_N_S_soc_S_ppi_4001f000_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_ppi_4001f000, status, 0) +#define DT_N_S_soc_S_ppi_4001f000_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_ppi_4001f000, status, 0) +#define DT_N_S_soc_S_ppi_4001f000_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_ppi_4001f000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_ppi_4001f000_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_ppi_4001f000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_ppi_4001f000_P_status_LEN 1 +#define DT_N_S_soc_S_ppi_4001f000_P_status_EXISTS 1 +#define DT_N_S_soc_S_ppi_4001f000_P_compatible {"nordic,nrf-ppi"} +#define DT_N_S_soc_S_ppi_4001f000_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_ppi_4001f000_P_compatible_IDX_0 "nordic,nrf-ppi" +#define DT_N_S_soc_S_ppi_4001f000_P_compatible_IDX_0_STRING_UNQUOTED nordic,nrf-ppi +#define DT_N_S_soc_S_ppi_4001f000_P_compatible_IDX_0_STRING_TOKEN nordic_nrf_ppi +#define DT_N_S_soc_S_ppi_4001f000_P_compatible_IDX_0_STRING_UPPER_TOKEN NORDIC_NRF_PPI +#define DT_N_S_soc_S_ppi_4001f000_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_ppi_4001f000, compatible, 0) +#define DT_N_S_soc_S_ppi_4001f000_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_ppi_4001f000, compatible, 0) +#define DT_N_S_soc_S_ppi_4001f000_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_ppi_4001f000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_ppi_4001f000_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_ppi_4001f000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_ppi_4001f000_P_compatible_LEN 1 +#define DT_N_S_soc_S_ppi_4001f000_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_ppi_4001f000_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_ppi_4001f000_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_ppi_4001f000_P_wakeup_source 0 +#define DT_N_S_soc_S_ppi_4001f000_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_ppi_4001f000_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_ppi_4001f000_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/pwm@4001c000 + * + * Node identifier: DT_N_S_soc_S_pwm_4001c000 + * + * Binding (compatible = nordic,nrf-pwm): + * $ZEPHYR_BASE/dts/bindings/pwm/nordic,nrf-pwm.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_pwm_4001c000_PATH "/soc/pwm@4001c000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_pwm_4001c000_FULL_NAME "pwm@4001c000" +#define DT_N_S_soc_S_pwm_4001c000_FULL_NAME_UNQUOTED pwm@4001c000 +#define DT_N_S_soc_S_pwm_4001c000_FULL_NAME_TOKEN pwm_4001c000 +#define DT_N_S_soc_S_pwm_4001c000_FULL_NAME_UPPER_TOKEN PWM_4001C000 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_pwm_4001c000_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_pwm_4001c000_CHILD_IDX 36 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_pwm_4001c000_NODELABEL_NUM 1 +#define DT_N_S_soc_S_pwm_4001c000_FOREACH_NODELABEL(fn) fn(pwm0) +#define DT_N_S_soc_S_pwm_4001c000_FOREACH_NODELABEL_VARGS(fn, ...) fn(pwm0, __VA_ARGS__) +#define DT_N_S_soc_S_pwm_4001c000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_pwm_4001c000_CHILD_NUM 0 +#define DT_N_S_soc_S_pwm_4001c000_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_pwm_4001c000_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_pwm_4001c000_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_pwm_4001c000_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_pwm_4001c000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_pwm_4001c000_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_pwm_4001c000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_pwm_4001c000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_pwm_4001c000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_pwm_4001c000_ORD 43 +#define DT_N_S_soc_S_pwm_4001c000_ORD_STR_SORTABLE 00043 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_pwm_4001c000_REQUIRES_ORDS \ + 6, /* /soc */ \ + 7, /* /soc/interrupt-controller@e000e100 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_pwm_4001c000_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_pwm_4001c000_EXISTS 1 +#define DT_N_INST_0_nordic_nrf_pwm DT_N_S_soc_S_pwm_4001c000 +#define DT_N_NODELABEL_pwm0 DT_N_S_soc_S_pwm_4001c000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_pwm_4001c000_REG_NUM 1 +#define DT_N_S_soc_S_pwm_4001c000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_pwm_4001c000_REG_IDX_0_VAL_ADDRESS 1073856512 /* 0x4001c000 */ +#define DT_N_S_soc_S_pwm_4001c000_REG_IDX_0_VAL_SIZE 4096 /* 0x1000 */ +#define DT_N_S_soc_S_pwm_4001c000_RANGES_NUM 0 +#define DT_N_S_soc_S_pwm_4001c000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_pwm_4001c000_IRQ_NUM 1 +#define DT_N_S_soc_S_pwm_4001c000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_pwm_4001c000_IRQ_IDX_0_VAL_irq 28 +#define DT_N_S_soc_S_pwm_4001c000_IRQ_IDX_0_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_pwm_4001c000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_pwm_4001c000_IRQ_IDX_0_VAL_priority 1 +#define DT_N_S_soc_S_pwm_4001c000_IRQ_IDX_0_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_pwm_4001c000_IRQ_IDX_0_CONTROLLER DT_N_S_soc_S_interrupt_controller_e000e100 +#define DT_N_S_soc_S_pwm_4001c000_IRQ_LEVEL 1 +#define DT_N_S_soc_S_pwm_4001c000_COMPAT_MATCHES_nordic_nrf_pwm 1 +#define DT_N_S_soc_S_pwm_4001c000_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_pwm_4001c000_COMPAT_VENDOR_IDX_0 "Nordic Semiconductor" +#define DT_N_S_soc_S_pwm_4001c000_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_pwm_4001c000_COMPAT_MODEL_IDX_0 "nrf-pwm" +#define DT_N_S_soc_S_pwm_4001c000_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_pwm_4001c000_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_pwm_4001c000_P_reg {1073856512 /* 0x4001c000 */, 4096 /* 0x1000 */} +#define DT_N_S_soc_S_pwm_4001c000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_pwm_4001c000_P_reg_IDX_0 1073856512 +#define DT_N_S_soc_S_pwm_4001c000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_pwm_4001c000_P_reg_IDX_1 4096 +#define DT_N_S_soc_S_pwm_4001c000_P_reg_EXISTS 1 +#define DT_N_S_soc_S_pwm_4001c000_P_center_aligned 0 +#define DT_N_S_soc_S_pwm_4001c000_P_center_aligned_EXISTS 1 +#define DT_N_S_soc_S_pwm_4001c000_P_status "disabled" +#define DT_N_S_soc_S_pwm_4001c000_P_status_STRING_UNQUOTED disabled +#define DT_N_S_soc_S_pwm_4001c000_P_status_STRING_TOKEN disabled +#define DT_N_S_soc_S_pwm_4001c000_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_soc_S_pwm_4001c000_P_status_IDX_0 "disabled" +#define DT_N_S_soc_S_pwm_4001c000_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_pwm_4001c000_P_status_IDX_0_ENUM_IDX 2 +#define DT_N_S_soc_S_pwm_4001c000_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_pwm_4001c000_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_pwm_4001c000, status, 0) +#define DT_N_S_soc_S_pwm_4001c000_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_pwm_4001c000, status, 0) +#define DT_N_S_soc_S_pwm_4001c000_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_pwm_4001c000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_pwm_4001c000_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_pwm_4001c000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_pwm_4001c000_P_status_LEN 1 +#define DT_N_S_soc_S_pwm_4001c000_P_status_EXISTS 1 +#define DT_N_S_soc_S_pwm_4001c000_P_compatible {"nordic,nrf-pwm"} +#define DT_N_S_soc_S_pwm_4001c000_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_pwm_4001c000_P_compatible_IDX_0 "nordic,nrf-pwm" +#define DT_N_S_soc_S_pwm_4001c000_P_compatible_IDX_0_STRING_UNQUOTED nordic,nrf-pwm +#define DT_N_S_soc_S_pwm_4001c000_P_compatible_IDX_0_STRING_TOKEN nordic_nrf_pwm +#define DT_N_S_soc_S_pwm_4001c000_P_compatible_IDX_0_STRING_UPPER_TOKEN NORDIC_NRF_PWM +#define DT_N_S_soc_S_pwm_4001c000_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_pwm_4001c000, compatible, 0) +#define DT_N_S_soc_S_pwm_4001c000_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_pwm_4001c000, compatible, 0) +#define DT_N_S_soc_S_pwm_4001c000_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_pwm_4001c000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_pwm_4001c000_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_pwm_4001c000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_pwm_4001c000_P_compatible_LEN 1 +#define DT_N_S_soc_S_pwm_4001c000_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_pwm_4001c000_P_interrupts {28 /* 0x1c */, 1 /* 0x1 */} +#define DT_N_S_soc_S_pwm_4001c000_P_interrupts_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_pwm_4001c000_P_interrupts_IDX_0 28 +#define DT_N_S_soc_S_pwm_4001c000_P_interrupts_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_pwm_4001c000_P_interrupts_IDX_1 1 +#define DT_N_S_soc_S_pwm_4001c000_P_interrupts_EXISTS 1 +#define DT_N_S_soc_S_pwm_4001c000_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_pwm_4001c000_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_pwm_4001c000_P_wakeup_source 0 +#define DT_N_S_soc_S_pwm_4001c000_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_pwm_4001c000_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_pwm_4001c000_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/pwm@40021000 + * + * Node identifier: DT_N_S_soc_S_pwm_40021000 + * + * Binding (compatible = nordic,nrf-pwm): + * $ZEPHYR_BASE/dts/bindings/pwm/nordic,nrf-pwm.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_pwm_40021000_PATH "/soc/pwm@40021000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_pwm_40021000_FULL_NAME "pwm@40021000" +#define DT_N_S_soc_S_pwm_40021000_FULL_NAME_UNQUOTED pwm@40021000 +#define DT_N_S_soc_S_pwm_40021000_FULL_NAME_TOKEN pwm_40021000 +#define DT_N_S_soc_S_pwm_40021000_FULL_NAME_UPPER_TOKEN PWM_40021000 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_pwm_40021000_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_pwm_40021000_CHILD_IDX 42 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_pwm_40021000_NODELABEL_NUM 1 +#define DT_N_S_soc_S_pwm_40021000_FOREACH_NODELABEL(fn) fn(pwm1) +#define DT_N_S_soc_S_pwm_40021000_FOREACH_NODELABEL_VARGS(fn, ...) fn(pwm1, __VA_ARGS__) +#define DT_N_S_soc_S_pwm_40021000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_pwm_40021000_CHILD_NUM 0 +#define DT_N_S_soc_S_pwm_40021000_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_pwm_40021000_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_pwm_40021000_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_pwm_40021000_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_pwm_40021000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_pwm_40021000_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_pwm_40021000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_pwm_40021000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_pwm_40021000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_pwm_40021000_ORD 44 +#define DT_N_S_soc_S_pwm_40021000_ORD_STR_SORTABLE 00044 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_pwm_40021000_REQUIRES_ORDS \ + 6, /* /soc */ \ + 7, /* /soc/interrupt-controller@e000e100 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_pwm_40021000_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_pwm_40021000_EXISTS 1 +#define DT_N_INST_1_nordic_nrf_pwm DT_N_S_soc_S_pwm_40021000 +#define DT_N_NODELABEL_pwm1 DT_N_S_soc_S_pwm_40021000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_pwm_40021000_REG_NUM 1 +#define DT_N_S_soc_S_pwm_40021000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_pwm_40021000_REG_IDX_0_VAL_ADDRESS 1073876992 /* 0x40021000 */ +#define DT_N_S_soc_S_pwm_40021000_REG_IDX_0_VAL_SIZE 4096 /* 0x1000 */ +#define DT_N_S_soc_S_pwm_40021000_RANGES_NUM 0 +#define DT_N_S_soc_S_pwm_40021000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_pwm_40021000_IRQ_NUM 1 +#define DT_N_S_soc_S_pwm_40021000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_pwm_40021000_IRQ_IDX_0_VAL_irq 33 +#define DT_N_S_soc_S_pwm_40021000_IRQ_IDX_0_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_pwm_40021000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_pwm_40021000_IRQ_IDX_0_VAL_priority 1 +#define DT_N_S_soc_S_pwm_40021000_IRQ_IDX_0_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_pwm_40021000_IRQ_IDX_0_CONTROLLER DT_N_S_soc_S_interrupt_controller_e000e100 +#define DT_N_S_soc_S_pwm_40021000_IRQ_LEVEL 1 +#define DT_N_S_soc_S_pwm_40021000_COMPAT_MATCHES_nordic_nrf_pwm 1 +#define DT_N_S_soc_S_pwm_40021000_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_pwm_40021000_COMPAT_VENDOR_IDX_0 "Nordic Semiconductor" +#define DT_N_S_soc_S_pwm_40021000_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_pwm_40021000_COMPAT_MODEL_IDX_0 "nrf-pwm" +#define DT_N_S_soc_S_pwm_40021000_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_pwm_40021000_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_pwm_40021000_P_reg {1073876992 /* 0x40021000 */, 4096 /* 0x1000 */} +#define DT_N_S_soc_S_pwm_40021000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_pwm_40021000_P_reg_IDX_0 1073876992 +#define DT_N_S_soc_S_pwm_40021000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_pwm_40021000_P_reg_IDX_1 4096 +#define DT_N_S_soc_S_pwm_40021000_P_reg_EXISTS 1 +#define DT_N_S_soc_S_pwm_40021000_P_center_aligned 0 +#define DT_N_S_soc_S_pwm_40021000_P_center_aligned_EXISTS 1 +#define DT_N_S_soc_S_pwm_40021000_P_status "disabled" +#define DT_N_S_soc_S_pwm_40021000_P_status_STRING_UNQUOTED disabled +#define DT_N_S_soc_S_pwm_40021000_P_status_STRING_TOKEN disabled +#define DT_N_S_soc_S_pwm_40021000_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_soc_S_pwm_40021000_P_status_IDX_0 "disabled" +#define DT_N_S_soc_S_pwm_40021000_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_pwm_40021000_P_status_IDX_0_ENUM_IDX 2 +#define DT_N_S_soc_S_pwm_40021000_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_pwm_40021000_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_pwm_40021000, status, 0) +#define DT_N_S_soc_S_pwm_40021000_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_pwm_40021000, status, 0) +#define DT_N_S_soc_S_pwm_40021000_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_pwm_40021000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_pwm_40021000_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_pwm_40021000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_pwm_40021000_P_status_LEN 1 +#define DT_N_S_soc_S_pwm_40021000_P_status_EXISTS 1 +#define DT_N_S_soc_S_pwm_40021000_P_compatible {"nordic,nrf-pwm"} +#define DT_N_S_soc_S_pwm_40021000_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_pwm_40021000_P_compatible_IDX_0 "nordic,nrf-pwm" +#define DT_N_S_soc_S_pwm_40021000_P_compatible_IDX_0_STRING_UNQUOTED nordic,nrf-pwm +#define DT_N_S_soc_S_pwm_40021000_P_compatible_IDX_0_STRING_TOKEN nordic_nrf_pwm +#define DT_N_S_soc_S_pwm_40021000_P_compatible_IDX_0_STRING_UPPER_TOKEN NORDIC_NRF_PWM +#define DT_N_S_soc_S_pwm_40021000_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_pwm_40021000, compatible, 0) +#define DT_N_S_soc_S_pwm_40021000_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_pwm_40021000, compatible, 0) +#define DT_N_S_soc_S_pwm_40021000_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_pwm_40021000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_pwm_40021000_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_pwm_40021000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_pwm_40021000_P_compatible_LEN 1 +#define DT_N_S_soc_S_pwm_40021000_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_pwm_40021000_P_interrupts {33 /* 0x21 */, 1 /* 0x1 */} +#define DT_N_S_soc_S_pwm_40021000_P_interrupts_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_pwm_40021000_P_interrupts_IDX_0 33 +#define DT_N_S_soc_S_pwm_40021000_P_interrupts_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_pwm_40021000_P_interrupts_IDX_1 1 +#define DT_N_S_soc_S_pwm_40021000_P_interrupts_EXISTS 1 +#define DT_N_S_soc_S_pwm_40021000_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_pwm_40021000_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_pwm_40021000_P_wakeup_source 0 +#define DT_N_S_soc_S_pwm_40021000_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_pwm_40021000_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_pwm_40021000_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/pwm@40022000 + * + * Node identifier: DT_N_S_soc_S_pwm_40022000 + * + * Binding (compatible = nordic,nrf-pwm): + * $ZEPHYR_BASE/dts/bindings/pwm/nordic,nrf-pwm.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_pwm_40022000_PATH "/soc/pwm@40022000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_pwm_40022000_FULL_NAME "pwm@40022000" +#define DT_N_S_soc_S_pwm_40022000_FULL_NAME_UNQUOTED pwm@40022000 +#define DT_N_S_soc_S_pwm_40022000_FULL_NAME_TOKEN pwm_40022000 +#define DT_N_S_soc_S_pwm_40022000_FULL_NAME_UPPER_TOKEN PWM_40022000 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_pwm_40022000_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_pwm_40022000_CHILD_IDX 43 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_pwm_40022000_NODELABEL_NUM 1 +#define DT_N_S_soc_S_pwm_40022000_FOREACH_NODELABEL(fn) fn(pwm2) +#define DT_N_S_soc_S_pwm_40022000_FOREACH_NODELABEL_VARGS(fn, ...) fn(pwm2, __VA_ARGS__) +#define DT_N_S_soc_S_pwm_40022000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_pwm_40022000_CHILD_NUM 0 +#define DT_N_S_soc_S_pwm_40022000_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_pwm_40022000_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_pwm_40022000_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_pwm_40022000_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_pwm_40022000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_pwm_40022000_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_pwm_40022000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_pwm_40022000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_pwm_40022000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_pwm_40022000_ORD 45 +#define DT_N_S_soc_S_pwm_40022000_ORD_STR_SORTABLE 00045 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_pwm_40022000_REQUIRES_ORDS \ + 6, /* /soc */ \ + 7, /* /soc/interrupt-controller@e000e100 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_pwm_40022000_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_pwm_40022000_EXISTS 1 +#define DT_N_INST_2_nordic_nrf_pwm DT_N_S_soc_S_pwm_40022000 +#define DT_N_NODELABEL_pwm2 DT_N_S_soc_S_pwm_40022000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_pwm_40022000_REG_NUM 1 +#define DT_N_S_soc_S_pwm_40022000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_pwm_40022000_REG_IDX_0_VAL_ADDRESS 1073881088 /* 0x40022000 */ +#define DT_N_S_soc_S_pwm_40022000_REG_IDX_0_VAL_SIZE 4096 /* 0x1000 */ +#define DT_N_S_soc_S_pwm_40022000_RANGES_NUM 0 +#define DT_N_S_soc_S_pwm_40022000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_pwm_40022000_IRQ_NUM 1 +#define DT_N_S_soc_S_pwm_40022000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_pwm_40022000_IRQ_IDX_0_VAL_irq 34 +#define DT_N_S_soc_S_pwm_40022000_IRQ_IDX_0_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_pwm_40022000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_pwm_40022000_IRQ_IDX_0_VAL_priority 1 +#define DT_N_S_soc_S_pwm_40022000_IRQ_IDX_0_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_pwm_40022000_IRQ_IDX_0_CONTROLLER DT_N_S_soc_S_interrupt_controller_e000e100 +#define DT_N_S_soc_S_pwm_40022000_IRQ_LEVEL 1 +#define DT_N_S_soc_S_pwm_40022000_COMPAT_MATCHES_nordic_nrf_pwm 1 +#define DT_N_S_soc_S_pwm_40022000_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_pwm_40022000_COMPAT_VENDOR_IDX_0 "Nordic Semiconductor" +#define DT_N_S_soc_S_pwm_40022000_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_pwm_40022000_COMPAT_MODEL_IDX_0 "nrf-pwm" +#define DT_N_S_soc_S_pwm_40022000_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_pwm_40022000_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_pwm_40022000_P_reg {1073881088 /* 0x40022000 */, 4096 /* 0x1000 */} +#define DT_N_S_soc_S_pwm_40022000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_pwm_40022000_P_reg_IDX_0 1073881088 +#define DT_N_S_soc_S_pwm_40022000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_pwm_40022000_P_reg_IDX_1 4096 +#define DT_N_S_soc_S_pwm_40022000_P_reg_EXISTS 1 +#define DT_N_S_soc_S_pwm_40022000_P_center_aligned 0 +#define DT_N_S_soc_S_pwm_40022000_P_center_aligned_EXISTS 1 +#define DT_N_S_soc_S_pwm_40022000_P_status "disabled" +#define DT_N_S_soc_S_pwm_40022000_P_status_STRING_UNQUOTED disabled +#define DT_N_S_soc_S_pwm_40022000_P_status_STRING_TOKEN disabled +#define DT_N_S_soc_S_pwm_40022000_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_soc_S_pwm_40022000_P_status_IDX_0 "disabled" +#define DT_N_S_soc_S_pwm_40022000_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_pwm_40022000_P_status_IDX_0_ENUM_IDX 2 +#define DT_N_S_soc_S_pwm_40022000_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_pwm_40022000_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_pwm_40022000, status, 0) +#define DT_N_S_soc_S_pwm_40022000_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_pwm_40022000, status, 0) +#define DT_N_S_soc_S_pwm_40022000_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_pwm_40022000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_pwm_40022000_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_pwm_40022000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_pwm_40022000_P_status_LEN 1 +#define DT_N_S_soc_S_pwm_40022000_P_status_EXISTS 1 +#define DT_N_S_soc_S_pwm_40022000_P_compatible {"nordic,nrf-pwm"} +#define DT_N_S_soc_S_pwm_40022000_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_pwm_40022000_P_compatible_IDX_0 "nordic,nrf-pwm" +#define DT_N_S_soc_S_pwm_40022000_P_compatible_IDX_0_STRING_UNQUOTED nordic,nrf-pwm +#define DT_N_S_soc_S_pwm_40022000_P_compatible_IDX_0_STRING_TOKEN nordic_nrf_pwm +#define DT_N_S_soc_S_pwm_40022000_P_compatible_IDX_0_STRING_UPPER_TOKEN NORDIC_NRF_PWM +#define DT_N_S_soc_S_pwm_40022000_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_pwm_40022000, compatible, 0) +#define DT_N_S_soc_S_pwm_40022000_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_pwm_40022000, compatible, 0) +#define DT_N_S_soc_S_pwm_40022000_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_pwm_40022000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_pwm_40022000_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_pwm_40022000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_pwm_40022000_P_compatible_LEN 1 +#define DT_N_S_soc_S_pwm_40022000_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_pwm_40022000_P_interrupts {34 /* 0x22 */, 1 /* 0x1 */} +#define DT_N_S_soc_S_pwm_40022000_P_interrupts_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_pwm_40022000_P_interrupts_IDX_0 34 +#define DT_N_S_soc_S_pwm_40022000_P_interrupts_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_pwm_40022000_P_interrupts_IDX_1 1 +#define DT_N_S_soc_S_pwm_40022000_P_interrupts_EXISTS 1 +#define DT_N_S_soc_S_pwm_40022000_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_pwm_40022000_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_pwm_40022000_P_wakeup_source 0 +#define DT_N_S_soc_S_pwm_40022000_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_pwm_40022000_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_pwm_40022000_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/pwm@4002d000 + * + * Node identifier: DT_N_S_soc_S_pwm_4002d000 + * + * Binding (compatible = nordic,nrf-pwm): + * $ZEPHYR_BASE/dts/bindings/pwm/nordic,nrf-pwm.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_pwm_4002d000_PATH "/soc/pwm@4002d000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_pwm_4002d000_FULL_NAME "pwm@4002d000" +#define DT_N_S_soc_S_pwm_4002d000_FULL_NAME_UNQUOTED pwm@4002d000 +#define DT_N_S_soc_S_pwm_4002d000_FULL_NAME_TOKEN pwm_4002d000 +#define DT_N_S_soc_S_pwm_4002d000_FULL_NAME_UPPER_TOKEN PWM_4002D000 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_pwm_4002d000_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_pwm_4002d000_CHILD_IDX 49 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_pwm_4002d000_NODELABEL_NUM 1 +#define DT_N_S_soc_S_pwm_4002d000_FOREACH_NODELABEL(fn) fn(pwm3) +#define DT_N_S_soc_S_pwm_4002d000_FOREACH_NODELABEL_VARGS(fn, ...) fn(pwm3, __VA_ARGS__) +#define DT_N_S_soc_S_pwm_4002d000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_pwm_4002d000_CHILD_NUM 0 +#define DT_N_S_soc_S_pwm_4002d000_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_pwm_4002d000_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_pwm_4002d000_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_pwm_4002d000_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_pwm_4002d000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_pwm_4002d000_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_pwm_4002d000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_pwm_4002d000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_pwm_4002d000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_pwm_4002d000_ORD 46 +#define DT_N_S_soc_S_pwm_4002d000_ORD_STR_SORTABLE 00046 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_pwm_4002d000_REQUIRES_ORDS \ + 6, /* /soc */ \ + 7, /* /soc/interrupt-controller@e000e100 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_pwm_4002d000_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_pwm_4002d000_EXISTS 1 +#define DT_N_INST_3_nordic_nrf_pwm DT_N_S_soc_S_pwm_4002d000 +#define DT_N_NODELABEL_pwm3 DT_N_S_soc_S_pwm_4002d000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_pwm_4002d000_REG_NUM 1 +#define DT_N_S_soc_S_pwm_4002d000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_pwm_4002d000_REG_IDX_0_VAL_ADDRESS 1073926144 /* 0x4002d000 */ +#define DT_N_S_soc_S_pwm_4002d000_REG_IDX_0_VAL_SIZE 4096 /* 0x1000 */ +#define DT_N_S_soc_S_pwm_4002d000_RANGES_NUM 0 +#define DT_N_S_soc_S_pwm_4002d000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_pwm_4002d000_IRQ_NUM 1 +#define DT_N_S_soc_S_pwm_4002d000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_pwm_4002d000_IRQ_IDX_0_VAL_irq 45 +#define DT_N_S_soc_S_pwm_4002d000_IRQ_IDX_0_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_pwm_4002d000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_pwm_4002d000_IRQ_IDX_0_VAL_priority 1 +#define DT_N_S_soc_S_pwm_4002d000_IRQ_IDX_0_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_pwm_4002d000_IRQ_IDX_0_CONTROLLER DT_N_S_soc_S_interrupt_controller_e000e100 +#define DT_N_S_soc_S_pwm_4002d000_IRQ_LEVEL 1 +#define DT_N_S_soc_S_pwm_4002d000_COMPAT_MATCHES_nordic_nrf_pwm 1 +#define DT_N_S_soc_S_pwm_4002d000_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_pwm_4002d000_COMPAT_VENDOR_IDX_0 "Nordic Semiconductor" +#define DT_N_S_soc_S_pwm_4002d000_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_pwm_4002d000_COMPAT_MODEL_IDX_0 "nrf-pwm" +#define DT_N_S_soc_S_pwm_4002d000_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_pwm_4002d000_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_pwm_4002d000_P_reg {1073926144 /* 0x4002d000 */, 4096 /* 0x1000 */} +#define DT_N_S_soc_S_pwm_4002d000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_pwm_4002d000_P_reg_IDX_0 1073926144 +#define DT_N_S_soc_S_pwm_4002d000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_pwm_4002d000_P_reg_IDX_1 4096 +#define DT_N_S_soc_S_pwm_4002d000_P_reg_EXISTS 1 +#define DT_N_S_soc_S_pwm_4002d000_P_center_aligned 0 +#define DT_N_S_soc_S_pwm_4002d000_P_center_aligned_EXISTS 1 +#define DT_N_S_soc_S_pwm_4002d000_P_status "disabled" +#define DT_N_S_soc_S_pwm_4002d000_P_status_STRING_UNQUOTED disabled +#define DT_N_S_soc_S_pwm_4002d000_P_status_STRING_TOKEN disabled +#define DT_N_S_soc_S_pwm_4002d000_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_soc_S_pwm_4002d000_P_status_IDX_0 "disabled" +#define DT_N_S_soc_S_pwm_4002d000_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_pwm_4002d000_P_status_IDX_0_ENUM_IDX 2 +#define DT_N_S_soc_S_pwm_4002d000_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_pwm_4002d000_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_pwm_4002d000, status, 0) +#define DT_N_S_soc_S_pwm_4002d000_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_pwm_4002d000, status, 0) +#define DT_N_S_soc_S_pwm_4002d000_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_pwm_4002d000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_pwm_4002d000_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_pwm_4002d000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_pwm_4002d000_P_status_LEN 1 +#define DT_N_S_soc_S_pwm_4002d000_P_status_EXISTS 1 +#define DT_N_S_soc_S_pwm_4002d000_P_compatible {"nordic,nrf-pwm"} +#define DT_N_S_soc_S_pwm_4002d000_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_pwm_4002d000_P_compatible_IDX_0 "nordic,nrf-pwm" +#define DT_N_S_soc_S_pwm_4002d000_P_compatible_IDX_0_STRING_UNQUOTED nordic,nrf-pwm +#define DT_N_S_soc_S_pwm_4002d000_P_compatible_IDX_0_STRING_TOKEN nordic_nrf_pwm +#define DT_N_S_soc_S_pwm_4002d000_P_compatible_IDX_0_STRING_UPPER_TOKEN NORDIC_NRF_PWM +#define DT_N_S_soc_S_pwm_4002d000_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_pwm_4002d000, compatible, 0) +#define DT_N_S_soc_S_pwm_4002d000_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_pwm_4002d000, compatible, 0) +#define DT_N_S_soc_S_pwm_4002d000_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_pwm_4002d000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_pwm_4002d000_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_pwm_4002d000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_pwm_4002d000_P_compatible_LEN 1 +#define DT_N_S_soc_S_pwm_4002d000_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_pwm_4002d000_P_interrupts {45 /* 0x2d */, 1 /* 0x1 */} +#define DT_N_S_soc_S_pwm_4002d000_P_interrupts_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_pwm_4002d000_P_interrupts_IDX_0 45 +#define DT_N_S_soc_S_pwm_4002d000_P_interrupts_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_pwm_4002d000_P_interrupts_IDX_1 1 +#define DT_N_S_soc_S_pwm_4002d000_P_interrupts_EXISTS 1 +#define DT_N_S_soc_S_pwm_4002d000_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_pwm_4002d000_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_pwm_4002d000_P_wakeup_source 0 +#define DT_N_S_soc_S_pwm_4002d000_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_pwm_4002d000_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_pwm_4002d000_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/qdec@40012000 + * + * Node identifier: DT_N_S_soc_S_qdec_40012000 + * + * Binding (compatible = nordic,nrf-qdec): + * $ZEPHYR_BASE/dts/bindings/sensor/nordic,nrf-qdec.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_qdec_40012000_PATH "/soc/qdec@40012000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_qdec_40012000_FULL_NAME "qdec@40012000" +#define DT_N_S_soc_S_qdec_40012000_FULL_NAME_UNQUOTED qdec@40012000 +#define DT_N_S_soc_S_qdec_40012000_FULL_NAME_TOKEN qdec_40012000 +#define DT_N_S_soc_S_qdec_40012000_FULL_NAME_UPPER_TOKEN QDEC_40012000 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_qdec_40012000_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_qdec_40012000_CHILD_IDX 26 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_qdec_40012000_NODELABEL_NUM 2 +#define DT_N_S_soc_S_qdec_40012000_FOREACH_NODELABEL(fn) fn(qdec) fn(qdec0) +#define DT_N_S_soc_S_qdec_40012000_FOREACH_NODELABEL_VARGS(fn, ...) fn(qdec, __VA_ARGS__) fn(qdec0, __VA_ARGS__) +#define DT_N_S_soc_S_qdec_40012000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_qdec_40012000_CHILD_NUM 0 +#define DT_N_S_soc_S_qdec_40012000_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_qdec_40012000_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_qdec_40012000_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_qdec_40012000_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_qdec_40012000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_qdec_40012000_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_qdec_40012000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_qdec_40012000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_qdec_40012000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_qdec_40012000_ORD 47 +#define DT_N_S_soc_S_qdec_40012000_ORD_STR_SORTABLE 00047 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_qdec_40012000_REQUIRES_ORDS \ + 6, /* /soc */ \ + 7, /* /soc/interrupt-controller@e000e100 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_qdec_40012000_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_qdec_40012000_EXISTS 1 +#define DT_N_INST_0_nordic_nrf_qdec DT_N_S_soc_S_qdec_40012000 +#define DT_N_NODELABEL_qdec DT_N_S_soc_S_qdec_40012000 +#define DT_N_NODELABEL_qdec0 DT_N_S_soc_S_qdec_40012000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_qdec_40012000_REG_NUM 1 +#define DT_N_S_soc_S_qdec_40012000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_qdec_40012000_REG_IDX_0_VAL_ADDRESS 1073815552 /* 0x40012000 */ +#define DT_N_S_soc_S_qdec_40012000_REG_IDX_0_VAL_SIZE 4096 /* 0x1000 */ +#define DT_N_S_soc_S_qdec_40012000_RANGES_NUM 0 +#define DT_N_S_soc_S_qdec_40012000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_qdec_40012000_IRQ_NUM 1 +#define DT_N_S_soc_S_qdec_40012000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_qdec_40012000_IRQ_IDX_0_VAL_irq 18 +#define DT_N_S_soc_S_qdec_40012000_IRQ_IDX_0_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_qdec_40012000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_qdec_40012000_IRQ_IDX_0_VAL_priority 1 +#define DT_N_S_soc_S_qdec_40012000_IRQ_IDX_0_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_qdec_40012000_IRQ_IDX_0_CONTROLLER DT_N_S_soc_S_interrupt_controller_e000e100 +#define DT_N_S_soc_S_qdec_40012000_IRQ_LEVEL 1 +#define DT_N_S_soc_S_qdec_40012000_COMPAT_MATCHES_nordic_nrf_qdec 1 +#define DT_N_S_soc_S_qdec_40012000_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_qdec_40012000_COMPAT_VENDOR_IDX_0 "Nordic Semiconductor" +#define DT_N_S_soc_S_qdec_40012000_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_qdec_40012000_COMPAT_MODEL_IDX_0 "nrf-qdec" +#define DT_N_S_soc_S_qdec_40012000_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_qdec_40012000_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_qdec_40012000_P_reg {1073815552 /* 0x40012000 */, 4096 /* 0x1000 */} +#define DT_N_S_soc_S_qdec_40012000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_qdec_40012000_P_reg_IDX_0 1073815552 +#define DT_N_S_soc_S_qdec_40012000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_qdec_40012000_P_reg_IDX_1 4096 +#define DT_N_S_soc_S_qdec_40012000_P_reg_EXISTS 1 +#define DT_N_S_soc_S_qdec_40012000_P_interrupts {18 /* 0x12 */, 1 /* 0x1 */} +#define DT_N_S_soc_S_qdec_40012000_P_interrupts_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_qdec_40012000_P_interrupts_IDX_0 18 +#define DT_N_S_soc_S_qdec_40012000_P_interrupts_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_qdec_40012000_P_interrupts_IDX_1 1 +#define DT_N_S_soc_S_qdec_40012000_P_interrupts_EXISTS 1 +#define DT_N_S_soc_S_qdec_40012000_P_status "disabled" +#define DT_N_S_soc_S_qdec_40012000_P_status_STRING_UNQUOTED disabled +#define DT_N_S_soc_S_qdec_40012000_P_status_STRING_TOKEN disabled +#define DT_N_S_soc_S_qdec_40012000_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_soc_S_qdec_40012000_P_status_IDX_0 "disabled" +#define DT_N_S_soc_S_qdec_40012000_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_qdec_40012000_P_status_IDX_0_ENUM_IDX 2 +#define DT_N_S_soc_S_qdec_40012000_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_qdec_40012000_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_qdec_40012000, status, 0) +#define DT_N_S_soc_S_qdec_40012000_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_qdec_40012000, status, 0) +#define DT_N_S_soc_S_qdec_40012000_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_qdec_40012000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_qdec_40012000_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_qdec_40012000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_qdec_40012000_P_status_LEN 1 +#define DT_N_S_soc_S_qdec_40012000_P_status_EXISTS 1 +#define DT_N_S_soc_S_qdec_40012000_P_compatible {"nordic,nrf-qdec"} +#define DT_N_S_soc_S_qdec_40012000_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_qdec_40012000_P_compatible_IDX_0 "nordic,nrf-qdec" +#define DT_N_S_soc_S_qdec_40012000_P_compatible_IDX_0_STRING_UNQUOTED nordic,nrf-qdec +#define DT_N_S_soc_S_qdec_40012000_P_compatible_IDX_0_STRING_TOKEN nordic_nrf_qdec +#define DT_N_S_soc_S_qdec_40012000_P_compatible_IDX_0_STRING_UPPER_TOKEN NORDIC_NRF_QDEC +#define DT_N_S_soc_S_qdec_40012000_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_qdec_40012000, compatible, 0) +#define DT_N_S_soc_S_qdec_40012000_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_qdec_40012000, compatible, 0) +#define DT_N_S_soc_S_qdec_40012000_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_qdec_40012000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_qdec_40012000_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_qdec_40012000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_qdec_40012000_P_compatible_LEN 1 +#define DT_N_S_soc_S_qdec_40012000_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_qdec_40012000_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_qdec_40012000_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_qdec_40012000_P_wakeup_source 0 +#define DT_N_S_soc_S_qdec_40012000_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_qdec_40012000_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_qdec_40012000_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/random@4000d000 + * + * Node identifier: DT_N_S_soc_S_random_4000d000 + * + * Binding (compatible = nordic,nrf-rng): + * $ZEPHYR_BASE/dts/bindings/rng/nordic,nrf-rng.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_random_4000d000_PATH "/soc/random@4000d000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_random_4000d000_FULL_NAME "random@4000d000" +#define DT_N_S_soc_S_random_4000d000_FULL_NAME_UNQUOTED random@4000d000 +#define DT_N_S_soc_S_random_4000d000_FULL_NAME_TOKEN random_4000d000 +#define DT_N_S_soc_S_random_4000d000_FULL_NAME_UPPER_TOKEN RANDOM_4000D000 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_random_4000d000_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_random_4000d000_CHILD_IDX 21 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_random_4000d000_NODELABEL_NUM 1 +#define DT_N_S_soc_S_random_4000d000_FOREACH_NODELABEL(fn) fn(rng) +#define DT_N_S_soc_S_random_4000d000_FOREACH_NODELABEL_VARGS(fn, ...) fn(rng, __VA_ARGS__) +#define DT_N_S_soc_S_random_4000d000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_random_4000d000_CHILD_NUM 0 +#define DT_N_S_soc_S_random_4000d000_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_random_4000d000_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_random_4000d000_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_random_4000d000_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_random_4000d000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_random_4000d000_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_random_4000d000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_random_4000d000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_random_4000d000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_random_4000d000_ORD 48 +#define DT_N_S_soc_S_random_4000d000_ORD_STR_SORTABLE 00048 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_random_4000d000_REQUIRES_ORDS \ + 6, /* /soc */ \ + 7, /* /soc/interrupt-controller@e000e100 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_random_4000d000_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_random_4000d000_EXISTS 1 +#define DT_N_INST_0_nordic_nrf_rng DT_N_S_soc_S_random_4000d000 +#define DT_N_NODELABEL_rng DT_N_S_soc_S_random_4000d000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_random_4000d000_REG_NUM 1 +#define DT_N_S_soc_S_random_4000d000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_random_4000d000_REG_IDX_0_VAL_ADDRESS 1073795072 /* 0x4000d000 */ +#define DT_N_S_soc_S_random_4000d000_REG_IDX_0_VAL_SIZE 4096 /* 0x1000 */ +#define DT_N_S_soc_S_random_4000d000_RANGES_NUM 0 +#define DT_N_S_soc_S_random_4000d000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_random_4000d000_IRQ_NUM 1 +#define DT_N_S_soc_S_random_4000d000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_random_4000d000_IRQ_IDX_0_VAL_irq 13 +#define DT_N_S_soc_S_random_4000d000_IRQ_IDX_0_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_random_4000d000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_random_4000d000_IRQ_IDX_0_VAL_priority 1 +#define DT_N_S_soc_S_random_4000d000_IRQ_IDX_0_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_random_4000d000_IRQ_IDX_0_CONTROLLER DT_N_S_soc_S_interrupt_controller_e000e100 +#define DT_N_S_soc_S_random_4000d000_IRQ_LEVEL 1 +#define DT_N_S_soc_S_random_4000d000_COMPAT_MATCHES_nordic_nrf_rng 1 +#define DT_N_S_soc_S_random_4000d000_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_random_4000d000_COMPAT_VENDOR_IDX_0 "Nordic Semiconductor" +#define DT_N_S_soc_S_random_4000d000_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_random_4000d000_COMPAT_MODEL_IDX_0 "nrf-rng" +#define DT_N_S_soc_S_random_4000d000_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_random_4000d000_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_random_4000d000_P_reg {1073795072 /* 0x4000d000 */, 4096 /* 0x1000 */} +#define DT_N_S_soc_S_random_4000d000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_random_4000d000_P_reg_IDX_0 1073795072 +#define DT_N_S_soc_S_random_4000d000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_random_4000d000_P_reg_IDX_1 4096 +#define DT_N_S_soc_S_random_4000d000_P_reg_EXISTS 1 +#define DT_N_S_soc_S_random_4000d000_P_interrupts {13 /* 0xd */, 1 /* 0x1 */} +#define DT_N_S_soc_S_random_4000d000_P_interrupts_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_random_4000d000_P_interrupts_IDX_0 13 +#define DT_N_S_soc_S_random_4000d000_P_interrupts_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_random_4000d000_P_interrupts_IDX_1 1 +#define DT_N_S_soc_S_random_4000d000_P_interrupts_EXISTS 1 +#define DT_N_S_soc_S_random_4000d000_P_status "okay" +#define DT_N_S_soc_S_random_4000d000_P_status_STRING_UNQUOTED okay +#define DT_N_S_soc_S_random_4000d000_P_status_STRING_TOKEN okay +#define DT_N_S_soc_S_random_4000d000_P_status_STRING_UPPER_TOKEN OKAY +#define DT_N_S_soc_S_random_4000d000_P_status_IDX_0 "okay" +#define DT_N_S_soc_S_random_4000d000_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_random_4000d000_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_random_4000d000_P_status_IDX_0_ENUM_VAL_okay_EXISTS 1 +#define DT_N_S_soc_S_random_4000d000_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_random_4000d000, status, 0) +#define DT_N_S_soc_S_random_4000d000_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_random_4000d000, status, 0) +#define DT_N_S_soc_S_random_4000d000_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_random_4000d000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_random_4000d000_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_random_4000d000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_random_4000d000_P_status_LEN 1 +#define DT_N_S_soc_S_random_4000d000_P_status_EXISTS 1 +#define DT_N_S_soc_S_random_4000d000_P_compatible {"nordic,nrf-rng"} +#define DT_N_S_soc_S_random_4000d000_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_random_4000d000_P_compatible_IDX_0 "nordic,nrf-rng" +#define DT_N_S_soc_S_random_4000d000_P_compatible_IDX_0_STRING_UNQUOTED nordic,nrf-rng +#define DT_N_S_soc_S_random_4000d000_P_compatible_IDX_0_STRING_TOKEN nordic_nrf_rng +#define DT_N_S_soc_S_random_4000d000_P_compatible_IDX_0_STRING_UPPER_TOKEN NORDIC_NRF_RNG +#define DT_N_S_soc_S_random_4000d000_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_random_4000d000, compatible, 0) +#define DT_N_S_soc_S_random_4000d000_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_random_4000d000, compatible, 0) +#define DT_N_S_soc_S_random_4000d000_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_random_4000d000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_random_4000d000_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_random_4000d000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_random_4000d000_P_compatible_LEN 1 +#define DT_N_S_soc_S_random_4000d000_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_random_4000d000_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_random_4000d000_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_random_4000d000_P_wakeup_source 0 +#define DT_N_S_soc_S_random_4000d000_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_random_4000d000_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_random_4000d000_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/rtc@4000b000 + * + * Node identifier: DT_N_S_soc_S_rtc_4000b000 + * + * Binding (compatible = nordic,nrf-rtc): + * $ZEPHYR_BASE/dts/bindings/rtc/nordic,nrf-rtc.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_rtc_4000b000_PATH "/soc/rtc@4000b000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_rtc_4000b000_FULL_NAME "rtc@4000b000" +#define DT_N_S_soc_S_rtc_4000b000_FULL_NAME_UNQUOTED rtc@4000b000 +#define DT_N_S_soc_S_rtc_4000b000_FULL_NAME_TOKEN rtc_4000b000 +#define DT_N_S_soc_S_rtc_4000b000_FULL_NAME_UPPER_TOKEN RTC_4000B000 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_rtc_4000b000_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_rtc_4000b000_CHILD_IDX 19 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_rtc_4000b000_NODELABEL_NUM 1 +#define DT_N_S_soc_S_rtc_4000b000_FOREACH_NODELABEL(fn) fn(rtc0) +#define DT_N_S_soc_S_rtc_4000b000_FOREACH_NODELABEL_VARGS(fn, ...) fn(rtc0, __VA_ARGS__) +#define DT_N_S_soc_S_rtc_4000b000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_rtc_4000b000_CHILD_NUM 0 +#define DT_N_S_soc_S_rtc_4000b000_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_rtc_4000b000_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_rtc_4000b000_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_rtc_4000b000_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_rtc_4000b000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_rtc_4000b000_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_rtc_4000b000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_rtc_4000b000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_rtc_4000b000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_rtc_4000b000_ORD 49 +#define DT_N_S_soc_S_rtc_4000b000_ORD_STR_SORTABLE 00049 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_rtc_4000b000_REQUIRES_ORDS \ + 6, /* /soc */ \ + 7, /* /soc/interrupt-controller@e000e100 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_rtc_4000b000_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_rtc_4000b000_EXISTS 1 +#define DT_N_INST_0_nordic_nrf_rtc DT_N_S_soc_S_rtc_4000b000 +#define DT_N_NODELABEL_rtc0 DT_N_S_soc_S_rtc_4000b000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_rtc_4000b000_REG_NUM 1 +#define DT_N_S_soc_S_rtc_4000b000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_rtc_4000b000_REG_IDX_0_VAL_ADDRESS 1073786880 /* 0x4000b000 */ +#define DT_N_S_soc_S_rtc_4000b000_REG_IDX_0_VAL_SIZE 4096 /* 0x1000 */ +#define DT_N_S_soc_S_rtc_4000b000_RANGES_NUM 0 +#define DT_N_S_soc_S_rtc_4000b000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_rtc_4000b000_IRQ_NUM 1 +#define DT_N_S_soc_S_rtc_4000b000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_rtc_4000b000_IRQ_IDX_0_VAL_irq 11 +#define DT_N_S_soc_S_rtc_4000b000_IRQ_IDX_0_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_rtc_4000b000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_rtc_4000b000_IRQ_IDX_0_VAL_priority 1 +#define DT_N_S_soc_S_rtc_4000b000_IRQ_IDX_0_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_rtc_4000b000_IRQ_IDX_0_CONTROLLER DT_N_S_soc_S_interrupt_controller_e000e100 +#define DT_N_S_soc_S_rtc_4000b000_IRQ_LEVEL 1 +#define DT_N_S_soc_S_rtc_4000b000_COMPAT_MATCHES_nordic_nrf_rtc 1 +#define DT_N_S_soc_S_rtc_4000b000_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_rtc_4000b000_COMPAT_VENDOR_IDX_0 "Nordic Semiconductor" +#define DT_N_S_soc_S_rtc_4000b000_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_rtc_4000b000_COMPAT_MODEL_IDX_0 "nrf-rtc" +#define DT_N_S_soc_S_rtc_4000b000_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_rtc_4000b000_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_rtc_4000b000_P_reg {1073786880 /* 0x4000b000 */, 4096 /* 0x1000 */} +#define DT_N_S_soc_S_rtc_4000b000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_rtc_4000b000_P_reg_IDX_0 1073786880 +#define DT_N_S_soc_S_rtc_4000b000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_rtc_4000b000_P_reg_IDX_1 4096 +#define DT_N_S_soc_S_rtc_4000b000_P_reg_EXISTS 1 +#define DT_N_S_soc_S_rtc_4000b000_P_cc_num 3 +#define DT_N_S_soc_S_rtc_4000b000_P_cc_num_EXISTS 1 +#define DT_N_S_soc_S_rtc_4000b000_P_ppi_wrap 0 +#define DT_N_S_soc_S_rtc_4000b000_P_ppi_wrap_EXISTS 1 +#define DT_N_S_soc_S_rtc_4000b000_P_fixed_top 0 +#define DT_N_S_soc_S_rtc_4000b000_P_fixed_top_EXISTS 1 +#define DT_N_S_soc_S_rtc_4000b000_P_zli 0 +#define DT_N_S_soc_S_rtc_4000b000_P_zli_EXISTS 1 +#define DT_N_S_soc_S_rtc_4000b000_P_clock_frequency 32768 +#define DT_N_S_soc_S_rtc_4000b000_P_clock_frequency_EXISTS 1 +#define DT_N_S_soc_S_rtc_4000b000_P_interrupts {11 /* 0xb */, 1 /* 0x1 */} +#define DT_N_S_soc_S_rtc_4000b000_P_interrupts_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_rtc_4000b000_P_interrupts_IDX_0 11 +#define DT_N_S_soc_S_rtc_4000b000_P_interrupts_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_rtc_4000b000_P_interrupts_IDX_1 1 +#define DT_N_S_soc_S_rtc_4000b000_P_interrupts_EXISTS 1 +#define DT_N_S_soc_S_rtc_4000b000_P_prescaler 1 +#define DT_N_S_soc_S_rtc_4000b000_P_prescaler_EXISTS 1 +#define DT_N_S_soc_S_rtc_4000b000_P_status "disabled" +#define DT_N_S_soc_S_rtc_4000b000_P_status_STRING_UNQUOTED disabled +#define DT_N_S_soc_S_rtc_4000b000_P_status_STRING_TOKEN disabled +#define DT_N_S_soc_S_rtc_4000b000_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_soc_S_rtc_4000b000_P_status_IDX_0 "disabled" +#define DT_N_S_soc_S_rtc_4000b000_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_rtc_4000b000_P_status_IDX_0_ENUM_IDX 2 +#define DT_N_S_soc_S_rtc_4000b000_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_rtc_4000b000_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_rtc_4000b000, status, 0) +#define DT_N_S_soc_S_rtc_4000b000_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_rtc_4000b000, status, 0) +#define DT_N_S_soc_S_rtc_4000b000_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_rtc_4000b000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_rtc_4000b000_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_rtc_4000b000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_rtc_4000b000_P_status_LEN 1 +#define DT_N_S_soc_S_rtc_4000b000_P_status_EXISTS 1 +#define DT_N_S_soc_S_rtc_4000b000_P_compatible {"nordic,nrf-rtc"} +#define DT_N_S_soc_S_rtc_4000b000_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_rtc_4000b000_P_compatible_IDX_0 "nordic,nrf-rtc" +#define DT_N_S_soc_S_rtc_4000b000_P_compatible_IDX_0_STRING_UNQUOTED nordic,nrf-rtc +#define DT_N_S_soc_S_rtc_4000b000_P_compatible_IDX_0_STRING_TOKEN nordic_nrf_rtc +#define DT_N_S_soc_S_rtc_4000b000_P_compatible_IDX_0_STRING_UPPER_TOKEN NORDIC_NRF_RTC +#define DT_N_S_soc_S_rtc_4000b000_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_rtc_4000b000, compatible, 0) +#define DT_N_S_soc_S_rtc_4000b000_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_rtc_4000b000, compatible, 0) +#define DT_N_S_soc_S_rtc_4000b000_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_rtc_4000b000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_rtc_4000b000_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_rtc_4000b000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_rtc_4000b000_P_compatible_LEN 1 +#define DT_N_S_soc_S_rtc_4000b000_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_rtc_4000b000_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_rtc_4000b000_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_rtc_4000b000_P_wakeup_source 0 +#define DT_N_S_soc_S_rtc_4000b000_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_rtc_4000b000_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_rtc_4000b000_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/rtc@40011000 + * + * Node identifier: DT_N_S_soc_S_rtc_40011000 + * + * Binding (compatible = nordic,nrf-rtc): + * $ZEPHYR_BASE/dts/bindings/rtc/nordic,nrf-rtc.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_rtc_40011000_PATH "/soc/rtc@40011000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_rtc_40011000_FULL_NAME "rtc@40011000" +#define DT_N_S_soc_S_rtc_40011000_FULL_NAME_UNQUOTED rtc@40011000 +#define DT_N_S_soc_S_rtc_40011000_FULL_NAME_TOKEN rtc_40011000 +#define DT_N_S_soc_S_rtc_40011000_FULL_NAME_UPPER_TOKEN RTC_40011000 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_rtc_40011000_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_rtc_40011000_CHILD_IDX 25 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_rtc_40011000_NODELABEL_NUM 1 +#define DT_N_S_soc_S_rtc_40011000_FOREACH_NODELABEL(fn) fn(rtc1) +#define DT_N_S_soc_S_rtc_40011000_FOREACH_NODELABEL_VARGS(fn, ...) fn(rtc1, __VA_ARGS__) +#define DT_N_S_soc_S_rtc_40011000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_rtc_40011000_CHILD_NUM 0 +#define DT_N_S_soc_S_rtc_40011000_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_rtc_40011000_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_rtc_40011000_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_rtc_40011000_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_rtc_40011000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_rtc_40011000_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_rtc_40011000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_rtc_40011000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_rtc_40011000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_rtc_40011000_ORD 50 +#define DT_N_S_soc_S_rtc_40011000_ORD_STR_SORTABLE 00050 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_rtc_40011000_REQUIRES_ORDS \ + 6, /* /soc */ \ + 7, /* /soc/interrupt-controller@e000e100 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_rtc_40011000_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_rtc_40011000_EXISTS 1 +#define DT_N_INST_1_nordic_nrf_rtc DT_N_S_soc_S_rtc_40011000 +#define DT_N_NODELABEL_rtc1 DT_N_S_soc_S_rtc_40011000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_rtc_40011000_REG_NUM 1 +#define DT_N_S_soc_S_rtc_40011000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_rtc_40011000_REG_IDX_0_VAL_ADDRESS 1073811456 /* 0x40011000 */ +#define DT_N_S_soc_S_rtc_40011000_REG_IDX_0_VAL_SIZE 4096 /* 0x1000 */ +#define DT_N_S_soc_S_rtc_40011000_RANGES_NUM 0 +#define DT_N_S_soc_S_rtc_40011000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_rtc_40011000_IRQ_NUM 1 +#define DT_N_S_soc_S_rtc_40011000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_rtc_40011000_IRQ_IDX_0_VAL_irq 17 +#define DT_N_S_soc_S_rtc_40011000_IRQ_IDX_0_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_rtc_40011000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_rtc_40011000_IRQ_IDX_0_VAL_priority 1 +#define DT_N_S_soc_S_rtc_40011000_IRQ_IDX_0_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_rtc_40011000_IRQ_IDX_0_CONTROLLER DT_N_S_soc_S_interrupt_controller_e000e100 +#define DT_N_S_soc_S_rtc_40011000_IRQ_LEVEL 1 +#define DT_N_S_soc_S_rtc_40011000_COMPAT_MATCHES_nordic_nrf_rtc 1 +#define DT_N_S_soc_S_rtc_40011000_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_rtc_40011000_COMPAT_VENDOR_IDX_0 "Nordic Semiconductor" +#define DT_N_S_soc_S_rtc_40011000_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_rtc_40011000_COMPAT_MODEL_IDX_0 "nrf-rtc" +#define DT_N_S_soc_S_rtc_40011000_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_rtc_40011000_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_rtc_40011000_P_reg {1073811456 /* 0x40011000 */, 4096 /* 0x1000 */} +#define DT_N_S_soc_S_rtc_40011000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_rtc_40011000_P_reg_IDX_0 1073811456 +#define DT_N_S_soc_S_rtc_40011000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_rtc_40011000_P_reg_IDX_1 4096 +#define DT_N_S_soc_S_rtc_40011000_P_reg_EXISTS 1 +#define DT_N_S_soc_S_rtc_40011000_P_cc_num 4 +#define DT_N_S_soc_S_rtc_40011000_P_cc_num_EXISTS 1 +#define DT_N_S_soc_S_rtc_40011000_P_ppi_wrap 0 +#define DT_N_S_soc_S_rtc_40011000_P_ppi_wrap_EXISTS 1 +#define DT_N_S_soc_S_rtc_40011000_P_fixed_top 0 +#define DT_N_S_soc_S_rtc_40011000_P_fixed_top_EXISTS 1 +#define DT_N_S_soc_S_rtc_40011000_P_zli 0 +#define DT_N_S_soc_S_rtc_40011000_P_zli_EXISTS 1 +#define DT_N_S_soc_S_rtc_40011000_P_clock_frequency 32768 +#define DT_N_S_soc_S_rtc_40011000_P_clock_frequency_EXISTS 1 +#define DT_N_S_soc_S_rtc_40011000_P_interrupts {17 /* 0x11 */, 1 /* 0x1 */} +#define DT_N_S_soc_S_rtc_40011000_P_interrupts_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_rtc_40011000_P_interrupts_IDX_0 17 +#define DT_N_S_soc_S_rtc_40011000_P_interrupts_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_rtc_40011000_P_interrupts_IDX_1 1 +#define DT_N_S_soc_S_rtc_40011000_P_interrupts_EXISTS 1 +#define DT_N_S_soc_S_rtc_40011000_P_prescaler 1 +#define DT_N_S_soc_S_rtc_40011000_P_prescaler_EXISTS 1 +#define DT_N_S_soc_S_rtc_40011000_P_status "disabled" +#define DT_N_S_soc_S_rtc_40011000_P_status_STRING_UNQUOTED disabled +#define DT_N_S_soc_S_rtc_40011000_P_status_STRING_TOKEN disabled +#define DT_N_S_soc_S_rtc_40011000_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_soc_S_rtc_40011000_P_status_IDX_0 "disabled" +#define DT_N_S_soc_S_rtc_40011000_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_rtc_40011000_P_status_IDX_0_ENUM_IDX 2 +#define DT_N_S_soc_S_rtc_40011000_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_rtc_40011000_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_rtc_40011000, status, 0) +#define DT_N_S_soc_S_rtc_40011000_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_rtc_40011000, status, 0) +#define DT_N_S_soc_S_rtc_40011000_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_rtc_40011000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_rtc_40011000_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_rtc_40011000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_rtc_40011000_P_status_LEN 1 +#define DT_N_S_soc_S_rtc_40011000_P_status_EXISTS 1 +#define DT_N_S_soc_S_rtc_40011000_P_compatible {"nordic,nrf-rtc"} +#define DT_N_S_soc_S_rtc_40011000_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_rtc_40011000_P_compatible_IDX_0 "nordic,nrf-rtc" +#define DT_N_S_soc_S_rtc_40011000_P_compatible_IDX_0_STRING_UNQUOTED nordic,nrf-rtc +#define DT_N_S_soc_S_rtc_40011000_P_compatible_IDX_0_STRING_TOKEN nordic_nrf_rtc +#define DT_N_S_soc_S_rtc_40011000_P_compatible_IDX_0_STRING_UPPER_TOKEN NORDIC_NRF_RTC +#define DT_N_S_soc_S_rtc_40011000_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_rtc_40011000, compatible, 0) +#define DT_N_S_soc_S_rtc_40011000_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_rtc_40011000, compatible, 0) +#define DT_N_S_soc_S_rtc_40011000_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_rtc_40011000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_rtc_40011000_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_rtc_40011000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_rtc_40011000_P_compatible_LEN 1 +#define DT_N_S_soc_S_rtc_40011000_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_rtc_40011000_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_rtc_40011000_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_rtc_40011000_P_wakeup_source 0 +#define DT_N_S_soc_S_rtc_40011000_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_rtc_40011000_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_rtc_40011000_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/rtc@40024000 + * + * Node identifier: DT_N_S_soc_S_rtc_40024000 + * + * Binding (compatible = nordic,nrf-rtc): + * $ZEPHYR_BASE/dts/bindings/rtc/nordic,nrf-rtc.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_rtc_40024000_PATH "/soc/rtc@40024000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_rtc_40024000_FULL_NAME "rtc@40024000" +#define DT_N_S_soc_S_rtc_40024000_FULL_NAME_UNQUOTED rtc@40024000 +#define DT_N_S_soc_S_rtc_40024000_FULL_NAME_TOKEN rtc_40024000 +#define DT_N_S_soc_S_rtc_40024000_FULL_NAME_UPPER_TOKEN RTC_40024000 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_rtc_40024000_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_rtc_40024000_CHILD_IDX 45 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_rtc_40024000_NODELABEL_NUM 1 +#define DT_N_S_soc_S_rtc_40024000_FOREACH_NODELABEL(fn) fn(rtc2) +#define DT_N_S_soc_S_rtc_40024000_FOREACH_NODELABEL_VARGS(fn, ...) fn(rtc2, __VA_ARGS__) +#define DT_N_S_soc_S_rtc_40024000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_rtc_40024000_CHILD_NUM 0 +#define DT_N_S_soc_S_rtc_40024000_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_rtc_40024000_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_rtc_40024000_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_rtc_40024000_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_rtc_40024000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_rtc_40024000_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_rtc_40024000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_rtc_40024000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_rtc_40024000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_rtc_40024000_ORD 51 +#define DT_N_S_soc_S_rtc_40024000_ORD_STR_SORTABLE 00051 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_rtc_40024000_REQUIRES_ORDS \ + 6, /* /soc */ \ + 7, /* /soc/interrupt-controller@e000e100 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_rtc_40024000_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_rtc_40024000_EXISTS 1 +#define DT_N_INST_2_nordic_nrf_rtc DT_N_S_soc_S_rtc_40024000 +#define DT_N_NODELABEL_rtc2 DT_N_S_soc_S_rtc_40024000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_rtc_40024000_REG_NUM 1 +#define DT_N_S_soc_S_rtc_40024000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_rtc_40024000_REG_IDX_0_VAL_ADDRESS 1073889280 /* 0x40024000 */ +#define DT_N_S_soc_S_rtc_40024000_REG_IDX_0_VAL_SIZE 4096 /* 0x1000 */ +#define DT_N_S_soc_S_rtc_40024000_RANGES_NUM 0 +#define DT_N_S_soc_S_rtc_40024000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_rtc_40024000_IRQ_NUM 1 +#define DT_N_S_soc_S_rtc_40024000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_rtc_40024000_IRQ_IDX_0_VAL_irq 36 +#define DT_N_S_soc_S_rtc_40024000_IRQ_IDX_0_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_rtc_40024000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_rtc_40024000_IRQ_IDX_0_VAL_priority 1 +#define DT_N_S_soc_S_rtc_40024000_IRQ_IDX_0_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_rtc_40024000_IRQ_IDX_0_CONTROLLER DT_N_S_soc_S_interrupt_controller_e000e100 +#define DT_N_S_soc_S_rtc_40024000_IRQ_LEVEL 1 +#define DT_N_S_soc_S_rtc_40024000_COMPAT_MATCHES_nordic_nrf_rtc 1 +#define DT_N_S_soc_S_rtc_40024000_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_rtc_40024000_COMPAT_VENDOR_IDX_0 "Nordic Semiconductor" +#define DT_N_S_soc_S_rtc_40024000_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_rtc_40024000_COMPAT_MODEL_IDX_0 "nrf-rtc" +#define DT_N_S_soc_S_rtc_40024000_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_rtc_40024000_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_rtc_40024000_P_reg {1073889280 /* 0x40024000 */, 4096 /* 0x1000 */} +#define DT_N_S_soc_S_rtc_40024000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_rtc_40024000_P_reg_IDX_0 1073889280 +#define DT_N_S_soc_S_rtc_40024000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_rtc_40024000_P_reg_IDX_1 4096 +#define DT_N_S_soc_S_rtc_40024000_P_reg_EXISTS 1 +#define DT_N_S_soc_S_rtc_40024000_P_cc_num 4 +#define DT_N_S_soc_S_rtc_40024000_P_cc_num_EXISTS 1 +#define DT_N_S_soc_S_rtc_40024000_P_ppi_wrap 0 +#define DT_N_S_soc_S_rtc_40024000_P_ppi_wrap_EXISTS 1 +#define DT_N_S_soc_S_rtc_40024000_P_fixed_top 0 +#define DT_N_S_soc_S_rtc_40024000_P_fixed_top_EXISTS 1 +#define DT_N_S_soc_S_rtc_40024000_P_zli 0 +#define DT_N_S_soc_S_rtc_40024000_P_zli_EXISTS 1 +#define DT_N_S_soc_S_rtc_40024000_P_clock_frequency 32768 +#define DT_N_S_soc_S_rtc_40024000_P_clock_frequency_EXISTS 1 +#define DT_N_S_soc_S_rtc_40024000_P_interrupts {36 /* 0x24 */, 1 /* 0x1 */} +#define DT_N_S_soc_S_rtc_40024000_P_interrupts_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_rtc_40024000_P_interrupts_IDX_0 36 +#define DT_N_S_soc_S_rtc_40024000_P_interrupts_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_rtc_40024000_P_interrupts_IDX_1 1 +#define DT_N_S_soc_S_rtc_40024000_P_interrupts_EXISTS 1 +#define DT_N_S_soc_S_rtc_40024000_P_prescaler 1 +#define DT_N_S_soc_S_rtc_40024000_P_prescaler_EXISTS 1 +#define DT_N_S_soc_S_rtc_40024000_P_status "disabled" +#define DT_N_S_soc_S_rtc_40024000_P_status_STRING_UNQUOTED disabled +#define DT_N_S_soc_S_rtc_40024000_P_status_STRING_TOKEN disabled +#define DT_N_S_soc_S_rtc_40024000_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_soc_S_rtc_40024000_P_status_IDX_0 "disabled" +#define DT_N_S_soc_S_rtc_40024000_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_rtc_40024000_P_status_IDX_0_ENUM_IDX 2 +#define DT_N_S_soc_S_rtc_40024000_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_rtc_40024000_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_rtc_40024000, status, 0) +#define DT_N_S_soc_S_rtc_40024000_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_rtc_40024000, status, 0) +#define DT_N_S_soc_S_rtc_40024000_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_rtc_40024000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_rtc_40024000_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_rtc_40024000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_rtc_40024000_P_status_LEN 1 +#define DT_N_S_soc_S_rtc_40024000_P_status_EXISTS 1 +#define DT_N_S_soc_S_rtc_40024000_P_compatible {"nordic,nrf-rtc"} +#define DT_N_S_soc_S_rtc_40024000_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_rtc_40024000_P_compatible_IDX_0 "nordic,nrf-rtc" +#define DT_N_S_soc_S_rtc_40024000_P_compatible_IDX_0_STRING_UNQUOTED nordic,nrf-rtc +#define DT_N_S_soc_S_rtc_40024000_P_compatible_IDX_0_STRING_TOKEN nordic_nrf_rtc +#define DT_N_S_soc_S_rtc_40024000_P_compatible_IDX_0_STRING_UPPER_TOKEN NORDIC_NRF_RTC +#define DT_N_S_soc_S_rtc_40024000_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_rtc_40024000, compatible, 0) +#define DT_N_S_soc_S_rtc_40024000_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_rtc_40024000, compatible, 0) +#define DT_N_S_soc_S_rtc_40024000_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_rtc_40024000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_rtc_40024000_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_rtc_40024000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_rtc_40024000_P_compatible_LEN 1 +#define DT_N_S_soc_S_rtc_40024000_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_rtc_40024000_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_rtc_40024000_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_rtc_40024000_P_wakeup_source 0 +#define DT_N_S_soc_S_rtc_40024000_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_rtc_40024000_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_rtc_40024000_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/spi@40003000 + * + * Node identifier: DT_N_S_soc_S_spi_40003000 + * + * Binding (compatible = nordic,nrf-spim): + * $ZEPHYR_BASE/dts/bindings/spi/nordic,nrf-spim.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_spi_40003000_PATH "/soc/spi@40003000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_spi_40003000_FULL_NAME "spi@40003000" +#define DT_N_S_soc_S_spi_40003000_FULL_NAME_UNQUOTED spi@40003000 +#define DT_N_S_soc_S_spi_40003000_FULL_NAME_TOKEN spi_40003000 +#define DT_N_S_soc_S_spi_40003000_FULL_NAME_UPPER_TOKEN SPI_40003000 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_spi_40003000_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_spi_40003000_CHILD_IDX 10 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_spi_40003000_NODELABEL_NUM 1 +#define DT_N_S_soc_S_spi_40003000_FOREACH_NODELABEL(fn) fn(spi0) +#define DT_N_S_soc_S_spi_40003000_FOREACH_NODELABEL_VARGS(fn, ...) fn(spi0, __VA_ARGS__) +#define DT_N_S_soc_S_spi_40003000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_spi_40003000_CHILD_NUM 0 +#define DT_N_S_soc_S_spi_40003000_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_spi_40003000_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_spi_40003000_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_spi_40003000_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_spi_40003000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_spi_40003000_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_spi_40003000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_spi_40003000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_spi_40003000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_spi_40003000_ORD 52 +#define DT_N_S_soc_S_spi_40003000_ORD_STR_SORTABLE 00052 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_spi_40003000_REQUIRES_ORDS \ + 6, /* /soc */ \ + 7, /* /soc/interrupt-controller@e000e100 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_spi_40003000_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_spi_40003000_EXISTS 1 +#define DT_N_INST_0_nordic_nrf_spim DT_N_S_soc_S_spi_40003000 +#define DT_N_NODELABEL_spi0 DT_N_S_soc_S_spi_40003000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_spi_40003000_REG_NUM 1 +#define DT_N_S_soc_S_spi_40003000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_spi_40003000_REG_IDX_0_VAL_ADDRESS 1073754112 /* 0x40003000 */ +#define DT_N_S_soc_S_spi_40003000_REG_IDX_0_VAL_SIZE 4096 /* 0x1000 */ +#define DT_N_S_soc_S_spi_40003000_RANGES_NUM 0 +#define DT_N_S_soc_S_spi_40003000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_spi_40003000_IRQ_NUM 1 +#define DT_N_S_soc_S_spi_40003000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_spi_40003000_IRQ_IDX_0_VAL_irq 3 +#define DT_N_S_soc_S_spi_40003000_IRQ_IDX_0_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_spi_40003000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_spi_40003000_IRQ_IDX_0_VAL_priority 1 +#define DT_N_S_soc_S_spi_40003000_IRQ_IDX_0_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_spi_40003000_IRQ_IDX_0_CONTROLLER DT_N_S_soc_S_interrupt_controller_e000e100 +#define DT_N_S_soc_S_spi_40003000_IRQ_LEVEL 1 +#define DT_N_S_soc_S_spi_40003000_COMPAT_MATCHES_nordic_nrf_spim 1 +#define DT_N_S_soc_S_spi_40003000_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_spi_40003000_COMPAT_VENDOR_IDX_0 "Nordic Semiconductor" +#define DT_N_S_soc_S_spi_40003000_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_spi_40003000_COMPAT_MODEL_IDX_0 "nrf-spim" +#define DT_N_S_soc_S_spi_40003000_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_spi_40003000_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_spi_40003000_P_anomaly_58_workaround 0 +#define DT_N_S_soc_S_spi_40003000_P_anomaly_58_workaround_EXISTS 1 +#define DT_N_S_soc_S_spi_40003000_P_rx_delay_supported 0 +#define DT_N_S_soc_S_spi_40003000_P_rx_delay_supported_EXISTS 1 +#define DT_N_S_soc_S_spi_40003000_P_reg {1073754112 /* 0x40003000 */, 4096 /* 0x1000 */} +#define DT_N_S_soc_S_spi_40003000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_spi_40003000_P_reg_IDX_0 1073754112 +#define DT_N_S_soc_S_spi_40003000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_spi_40003000_P_reg_IDX_1 4096 +#define DT_N_S_soc_S_spi_40003000_P_reg_EXISTS 1 +#define DT_N_S_soc_S_spi_40003000_P_interrupts {3 /* 0x3 */, 1 /* 0x1 */} +#define DT_N_S_soc_S_spi_40003000_P_interrupts_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_spi_40003000_P_interrupts_IDX_0 3 +#define DT_N_S_soc_S_spi_40003000_P_interrupts_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_spi_40003000_P_interrupts_IDX_1 1 +#define DT_N_S_soc_S_spi_40003000_P_interrupts_EXISTS 1 +#define DT_N_S_soc_S_spi_40003000_P_max_frequency 8000000 +#define DT_N_S_soc_S_spi_40003000_P_max_frequency_EXISTS 1 +#define DT_N_S_soc_S_spi_40003000_P_overrun_character 255 +#define DT_N_S_soc_S_spi_40003000_P_overrun_character_EXISTS 1 +#define DT_N_S_soc_S_spi_40003000_P_easydma_maxcnt_bits 16 +#define DT_N_S_soc_S_spi_40003000_P_easydma_maxcnt_bits_EXISTS 1 +#define DT_N_S_soc_S_spi_40003000_P_status "disabled" +#define DT_N_S_soc_S_spi_40003000_P_status_STRING_UNQUOTED disabled +#define DT_N_S_soc_S_spi_40003000_P_status_STRING_TOKEN disabled +#define DT_N_S_soc_S_spi_40003000_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_soc_S_spi_40003000_P_status_IDX_0 "disabled" +#define DT_N_S_soc_S_spi_40003000_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_spi_40003000_P_status_IDX_0_ENUM_IDX 2 +#define DT_N_S_soc_S_spi_40003000_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_spi_40003000_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_spi_40003000, status, 0) +#define DT_N_S_soc_S_spi_40003000_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_spi_40003000, status, 0) +#define DT_N_S_soc_S_spi_40003000_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_spi_40003000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_spi_40003000_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_spi_40003000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_spi_40003000_P_status_LEN 1 +#define DT_N_S_soc_S_spi_40003000_P_status_EXISTS 1 +#define DT_N_S_soc_S_spi_40003000_P_compatible {"nordic,nrf-spim"} +#define DT_N_S_soc_S_spi_40003000_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_spi_40003000_P_compatible_IDX_0 "nordic,nrf-spim" +#define DT_N_S_soc_S_spi_40003000_P_compatible_IDX_0_STRING_UNQUOTED nordic,nrf-spim +#define DT_N_S_soc_S_spi_40003000_P_compatible_IDX_0_STRING_TOKEN nordic_nrf_spim +#define DT_N_S_soc_S_spi_40003000_P_compatible_IDX_0_STRING_UPPER_TOKEN NORDIC_NRF_SPIM +#define DT_N_S_soc_S_spi_40003000_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_spi_40003000, compatible, 0) +#define DT_N_S_soc_S_spi_40003000_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_spi_40003000, compatible, 0) +#define DT_N_S_soc_S_spi_40003000_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_spi_40003000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_spi_40003000_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_spi_40003000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_spi_40003000_P_compatible_LEN 1 +#define DT_N_S_soc_S_spi_40003000_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_spi_40003000_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_spi_40003000_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_spi_40003000_P_wakeup_source 0 +#define DT_N_S_soc_S_spi_40003000_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_spi_40003000_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_spi_40003000_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/spi@40004000 + * + * Node identifier: DT_N_S_soc_S_spi_40004000 + * + * Binding (compatible = nordic,nrf-spim): + * $ZEPHYR_BASE/dts/bindings/spi/nordic,nrf-spim.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_spi_40004000_PATH "/soc/spi@40004000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_spi_40004000_FULL_NAME "spi@40004000" +#define DT_N_S_soc_S_spi_40004000_FULL_NAME_UNQUOTED spi@40004000 +#define DT_N_S_soc_S_spi_40004000_FULL_NAME_TOKEN spi_40004000 +#define DT_N_S_soc_S_spi_40004000_FULL_NAME_UPPER_TOKEN SPI_40004000 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_spi_40004000_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_spi_40004000_CHILD_IDX 12 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_spi_40004000_NODELABEL_NUM 1 +#define DT_N_S_soc_S_spi_40004000_FOREACH_NODELABEL(fn) fn(spi1) +#define DT_N_S_soc_S_spi_40004000_FOREACH_NODELABEL_VARGS(fn, ...) fn(spi1, __VA_ARGS__) +#define DT_N_S_soc_S_spi_40004000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_spi_40004000_CHILD_NUM 0 +#define DT_N_S_soc_S_spi_40004000_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_spi_40004000_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_spi_40004000_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_spi_40004000_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_spi_40004000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_spi_40004000_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_spi_40004000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_spi_40004000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_spi_40004000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_spi_40004000_ORD 53 +#define DT_N_S_soc_S_spi_40004000_ORD_STR_SORTABLE 00053 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_spi_40004000_REQUIRES_ORDS \ + 6, /* /soc */ \ + 7, /* /soc/interrupt-controller@e000e100 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_spi_40004000_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_spi_40004000_EXISTS 1 +#define DT_N_INST_1_nordic_nrf_spim DT_N_S_soc_S_spi_40004000 +#define DT_N_NODELABEL_spi1 DT_N_S_soc_S_spi_40004000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_spi_40004000_REG_NUM 1 +#define DT_N_S_soc_S_spi_40004000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_spi_40004000_REG_IDX_0_VAL_ADDRESS 1073758208 /* 0x40004000 */ +#define DT_N_S_soc_S_spi_40004000_REG_IDX_0_VAL_SIZE 4096 /* 0x1000 */ +#define DT_N_S_soc_S_spi_40004000_RANGES_NUM 0 +#define DT_N_S_soc_S_spi_40004000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_spi_40004000_IRQ_NUM 1 +#define DT_N_S_soc_S_spi_40004000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_spi_40004000_IRQ_IDX_0_VAL_irq 4 +#define DT_N_S_soc_S_spi_40004000_IRQ_IDX_0_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_spi_40004000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_spi_40004000_IRQ_IDX_0_VAL_priority 1 +#define DT_N_S_soc_S_spi_40004000_IRQ_IDX_0_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_spi_40004000_IRQ_IDX_0_CONTROLLER DT_N_S_soc_S_interrupt_controller_e000e100 +#define DT_N_S_soc_S_spi_40004000_IRQ_LEVEL 1 +#define DT_N_S_soc_S_spi_40004000_COMPAT_MATCHES_nordic_nrf_spim 1 +#define DT_N_S_soc_S_spi_40004000_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_spi_40004000_COMPAT_VENDOR_IDX_0 "Nordic Semiconductor" +#define DT_N_S_soc_S_spi_40004000_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_spi_40004000_COMPAT_MODEL_IDX_0 "nrf-spim" +#define DT_N_S_soc_S_spi_40004000_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_spi_40004000_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_spi_40004000_P_anomaly_58_workaround 0 +#define DT_N_S_soc_S_spi_40004000_P_anomaly_58_workaround_EXISTS 1 +#define DT_N_S_soc_S_spi_40004000_P_rx_delay_supported 0 +#define DT_N_S_soc_S_spi_40004000_P_rx_delay_supported_EXISTS 1 +#define DT_N_S_soc_S_spi_40004000_P_reg {1073758208 /* 0x40004000 */, 4096 /* 0x1000 */} +#define DT_N_S_soc_S_spi_40004000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_spi_40004000_P_reg_IDX_0 1073758208 +#define DT_N_S_soc_S_spi_40004000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_spi_40004000_P_reg_IDX_1 4096 +#define DT_N_S_soc_S_spi_40004000_P_reg_EXISTS 1 +#define DT_N_S_soc_S_spi_40004000_P_interrupts {4 /* 0x4 */, 1 /* 0x1 */} +#define DT_N_S_soc_S_spi_40004000_P_interrupts_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_spi_40004000_P_interrupts_IDX_0 4 +#define DT_N_S_soc_S_spi_40004000_P_interrupts_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_spi_40004000_P_interrupts_IDX_1 1 +#define DT_N_S_soc_S_spi_40004000_P_interrupts_EXISTS 1 +#define DT_N_S_soc_S_spi_40004000_P_max_frequency 8000000 +#define DT_N_S_soc_S_spi_40004000_P_max_frequency_EXISTS 1 +#define DT_N_S_soc_S_spi_40004000_P_overrun_character 255 +#define DT_N_S_soc_S_spi_40004000_P_overrun_character_EXISTS 1 +#define DT_N_S_soc_S_spi_40004000_P_easydma_maxcnt_bits 16 +#define DT_N_S_soc_S_spi_40004000_P_easydma_maxcnt_bits_EXISTS 1 +#define DT_N_S_soc_S_spi_40004000_P_status "disabled" +#define DT_N_S_soc_S_spi_40004000_P_status_STRING_UNQUOTED disabled +#define DT_N_S_soc_S_spi_40004000_P_status_STRING_TOKEN disabled +#define DT_N_S_soc_S_spi_40004000_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_soc_S_spi_40004000_P_status_IDX_0 "disabled" +#define DT_N_S_soc_S_spi_40004000_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_spi_40004000_P_status_IDX_0_ENUM_IDX 2 +#define DT_N_S_soc_S_spi_40004000_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_spi_40004000_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_spi_40004000, status, 0) +#define DT_N_S_soc_S_spi_40004000_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_spi_40004000, status, 0) +#define DT_N_S_soc_S_spi_40004000_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_spi_40004000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_spi_40004000_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_spi_40004000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_spi_40004000_P_status_LEN 1 +#define DT_N_S_soc_S_spi_40004000_P_status_EXISTS 1 +#define DT_N_S_soc_S_spi_40004000_P_compatible {"nordic,nrf-spim"} +#define DT_N_S_soc_S_spi_40004000_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_spi_40004000_P_compatible_IDX_0 "nordic,nrf-spim" +#define DT_N_S_soc_S_spi_40004000_P_compatible_IDX_0_STRING_UNQUOTED nordic,nrf-spim +#define DT_N_S_soc_S_spi_40004000_P_compatible_IDX_0_STRING_TOKEN nordic_nrf_spim +#define DT_N_S_soc_S_spi_40004000_P_compatible_IDX_0_STRING_UPPER_TOKEN NORDIC_NRF_SPIM +#define DT_N_S_soc_S_spi_40004000_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_spi_40004000, compatible, 0) +#define DT_N_S_soc_S_spi_40004000_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_spi_40004000, compatible, 0) +#define DT_N_S_soc_S_spi_40004000_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_spi_40004000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_spi_40004000_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_spi_40004000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_spi_40004000_P_compatible_LEN 1 +#define DT_N_S_soc_S_spi_40004000_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_spi_40004000_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_spi_40004000_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_spi_40004000_P_wakeup_source 0 +#define DT_N_S_soc_S_spi_40004000_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_spi_40004000_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_spi_40004000_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/spi@40023000 + * + * Node identifier: DT_N_S_soc_S_spi_40023000 + * + * Binding (compatible = nordic,nrf-spim): + * $ZEPHYR_BASE/dts/bindings/spi/nordic,nrf-spim.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_spi_40023000_PATH "/soc/spi@40023000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_spi_40023000_FULL_NAME "spi@40023000" +#define DT_N_S_soc_S_spi_40023000_FULL_NAME_UNQUOTED spi@40023000 +#define DT_N_S_soc_S_spi_40023000_FULL_NAME_TOKEN spi_40023000 +#define DT_N_S_soc_S_spi_40023000_FULL_NAME_UPPER_TOKEN SPI_40023000 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_spi_40023000_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_spi_40023000_CHILD_IDX 44 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_spi_40023000_NODELABEL_NUM 1 +#define DT_N_S_soc_S_spi_40023000_FOREACH_NODELABEL(fn) fn(spi2) +#define DT_N_S_soc_S_spi_40023000_FOREACH_NODELABEL_VARGS(fn, ...) fn(spi2, __VA_ARGS__) +#define DT_N_S_soc_S_spi_40023000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_spi_40023000_CHILD_NUM 0 +#define DT_N_S_soc_S_spi_40023000_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_spi_40023000_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_spi_40023000_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_spi_40023000_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_spi_40023000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_spi_40023000_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_spi_40023000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_spi_40023000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_spi_40023000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_spi_40023000_ORD 54 +#define DT_N_S_soc_S_spi_40023000_ORD_STR_SORTABLE 00054 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_spi_40023000_REQUIRES_ORDS \ + 6, /* /soc */ \ + 7, /* /soc/interrupt-controller@e000e100 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_spi_40023000_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_spi_40023000_EXISTS 1 +#define DT_N_INST_2_nordic_nrf_spim DT_N_S_soc_S_spi_40023000 +#define DT_N_NODELABEL_spi2 DT_N_S_soc_S_spi_40023000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_spi_40023000_REG_NUM 1 +#define DT_N_S_soc_S_spi_40023000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_spi_40023000_REG_IDX_0_VAL_ADDRESS 1073885184 /* 0x40023000 */ +#define DT_N_S_soc_S_spi_40023000_REG_IDX_0_VAL_SIZE 4096 /* 0x1000 */ +#define DT_N_S_soc_S_spi_40023000_RANGES_NUM 0 +#define DT_N_S_soc_S_spi_40023000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_spi_40023000_IRQ_NUM 1 +#define DT_N_S_soc_S_spi_40023000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_spi_40023000_IRQ_IDX_0_VAL_irq 35 +#define DT_N_S_soc_S_spi_40023000_IRQ_IDX_0_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_spi_40023000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_spi_40023000_IRQ_IDX_0_VAL_priority 1 +#define DT_N_S_soc_S_spi_40023000_IRQ_IDX_0_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_spi_40023000_IRQ_IDX_0_CONTROLLER DT_N_S_soc_S_interrupt_controller_e000e100 +#define DT_N_S_soc_S_spi_40023000_IRQ_LEVEL 1 +#define DT_N_S_soc_S_spi_40023000_COMPAT_MATCHES_nordic_nrf_spim 1 +#define DT_N_S_soc_S_spi_40023000_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_spi_40023000_COMPAT_VENDOR_IDX_0 "Nordic Semiconductor" +#define DT_N_S_soc_S_spi_40023000_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_spi_40023000_COMPAT_MODEL_IDX_0 "nrf-spim" +#define DT_N_S_soc_S_spi_40023000_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_spi_40023000_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_spi_40023000_P_anomaly_58_workaround 0 +#define DT_N_S_soc_S_spi_40023000_P_anomaly_58_workaround_EXISTS 1 +#define DT_N_S_soc_S_spi_40023000_P_rx_delay_supported 0 +#define DT_N_S_soc_S_spi_40023000_P_rx_delay_supported_EXISTS 1 +#define DT_N_S_soc_S_spi_40023000_P_reg {1073885184 /* 0x40023000 */, 4096 /* 0x1000 */} +#define DT_N_S_soc_S_spi_40023000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_spi_40023000_P_reg_IDX_0 1073885184 +#define DT_N_S_soc_S_spi_40023000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_spi_40023000_P_reg_IDX_1 4096 +#define DT_N_S_soc_S_spi_40023000_P_reg_EXISTS 1 +#define DT_N_S_soc_S_spi_40023000_P_interrupts {35 /* 0x23 */, 1 /* 0x1 */} +#define DT_N_S_soc_S_spi_40023000_P_interrupts_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_spi_40023000_P_interrupts_IDX_0 35 +#define DT_N_S_soc_S_spi_40023000_P_interrupts_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_spi_40023000_P_interrupts_IDX_1 1 +#define DT_N_S_soc_S_spi_40023000_P_interrupts_EXISTS 1 +#define DT_N_S_soc_S_spi_40023000_P_max_frequency 8000000 +#define DT_N_S_soc_S_spi_40023000_P_max_frequency_EXISTS 1 +#define DT_N_S_soc_S_spi_40023000_P_overrun_character 255 +#define DT_N_S_soc_S_spi_40023000_P_overrun_character_EXISTS 1 +#define DT_N_S_soc_S_spi_40023000_P_easydma_maxcnt_bits 16 +#define DT_N_S_soc_S_spi_40023000_P_easydma_maxcnt_bits_EXISTS 1 +#define DT_N_S_soc_S_spi_40023000_P_status "disabled" +#define DT_N_S_soc_S_spi_40023000_P_status_STRING_UNQUOTED disabled +#define DT_N_S_soc_S_spi_40023000_P_status_STRING_TOKEN disabled +#define DT_N_S_soc_S_spi_40023000_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_soc_S_spi_40023000_P_status_IDX_0 "disabled" +#define DT_N_S_soc_S_spi_40023000_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_spi_40023000_P_status_IDX_0_ENUM_IDX 2 +#define DT_N_S_soc_S_spi_40023000_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_spi_40023000_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_spi_40023000, status, 0) +#define DT_N_S_soc_S_spi_40023000_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_spi_40023000, status, 0) +#define DT_N_S_soc_S_spi_40023000_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_spi_40023000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_spi_40023000_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_spi_40023000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_spi_40023000_P_status_LEN 1 +#define DT_N_S_soc_S_spi_40023000_P_status_EXISTS 1 +#define DT_N_S_soc_S_spi_40023000_P_compatible {"nordic,nrf-spim"} +#define DT_N_S_soc_S_spi_40023000_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_spi_40023000_P_compatible_IDX_0 "nordic,nrf-spim" +#define DT_N_S_soc_S_spi_40023000_P_compatible_IDX_0_STRING_UNQUOTED nordic,nrf-spim +#define DT_N_S_soc_S_spi_40023000_P_compatible_IDX_0_STRING_TOKEN nordic_nrf_spim +#define DT_N_S_soc_S_spi_40023000_P_compatible_IDX_0_STRING_UPPER_TOKEN NORDIC_NRF_SPIM +#define DT_N_S_soc_S_spi_40023000_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_spi_40023000, compatible, 0) +#define DT_N_S_soc_S_spi_40023000_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_spi_40023000, compatible, 0) +#define DT_N_S_soc_S_spi_40023000_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_spi_40023000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_spi_40023000_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_spi_40023000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_spi_40023000_P_compatible_LEN 1 +#define DT_N_S_soc_S_spi_40023000_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_spi_40023000_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_spi_40023000_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_spi_40023000_P_wakeup_source 0 +#define DT_N_S_soc_S_spi_40023000_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_spi_40023000_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_spi_40023000_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/spi@4002f000 + * + * Node identifier: DT_N_S_soc_S_spi_4002f000 + * + * Binding (compatible = nordic,nrf-spim): + * $ZEPHYR_BASE/dts/bindings/spi/nordic,nrf-spim.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_spi_4002f000_PATH "/soc/spi@4002f000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_spi_4002f000_FULL_NAME "spi@4002f000" +#define DT_N_S_soc_S_spi_4002f000_FULL_NAME_UNQUOTED spi@4002f000 +#define DT_N_S_soc_S_spi_4002f000_FULL_NAME_TOKEN spi_4002f000 +#define DT_N_S_soc_S_spi_4002f000_FULL_NAME_UPPER_TOKEN SPI_4002F000 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_spi_4002f000_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_spi_4002f000_CHILD_IDX 50 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_spi_4002f000_NODELABEL_NUM 1 +#define DT_N_S_soc_S_spi_4002f000_FOREACH_NODELABEL(fn) fn(spi3) +#define DT_N_S_soc_S_spi_4002f000_FOREACH_NODELABEL_VARGS(fn, ...) fn(spi3, __VA_ARGS__) +#define DT_N_S_soc_S_spi_4002f000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_spi_4002f000_CHILD_NUM 0 +#define DT_N_S_soc_S_spi_4002f000_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_spi_4002f000_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_spi_4002f000_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_spi_4002f000_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_spi_4002f000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_spi_4002f000_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_spi_4002f000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_spi_4002f000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_spi_4002f000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_spi_4002f000_ORD 55 +#define DT_N_S_soc_S_spi_4002f000_ORD_STR_SORTABLE 00055 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_spi_4002f000_REQUIRES_ORDS \ + 6, /* /soc */ \ + 7, /* /soc/interrupt-controller@e000e100 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_spi_4002f000_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_spi_4002f000_EXISTS 1 +#define DT_N_INST_3_nordic_nrf_spim DT_N_S_soc_S_spi_4002f000 +#define DT_N_NODELABEL_spi3 DT_N_S_soc_S_spi_4002f000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_spi_4002f000_REG_NUM 1 +#define DT_N_S_soc_S_spi_4002f000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_spi_4002f000_REG_IDX_0_VAL_ADDRESS 1073934336 /* 0x4002f000 */ +#define DT_N_S_soc_S_spi_4002f000_REG_IDX_0_VAL_SIZE 4096 /* 0x1000 */ +#define DT_N_S_soc_S_spi_4002f000_RANGES_NUM 0 +#define DT_N_S_soc_S_spi_4002f000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_spi_4002f000_IRQ_NUM 1 +#define DT_N_S_soc_S_spi_4002f000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_spi_4002f000_IRQ_IDX_0_VAL_irq 47 +#define DT_N_S_soc_S_spi_4002f000_IRQ_IDX_0_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_spi_4002f000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_spi_4002f000_IRQ_IDX_0_VAL_priority 1 +#define DT_N_S_soc_S_spi_4002f000_IRQ_IDX_0_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_spi_4002f000_IRQ_IDX_0_CONTROLLER DT_N_S_soc_S_interrupt_controller_e000e100 +#define DT_N_S_soc_S_spi_4002f000_IRQ_LEVEL 1 +#define DT_N_S_soc_S_spi_4002f000_COMPAT_MATCHES_nordic_nrf_spim 1 +#define DT_N_S_soc_S_spi_4002f000_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_spi_4002f000_COMPAT_VENDOR_IDX_0 "Nordic Semiconductor" +#define DT_N_S_soc_S_spi_4002f000_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_spi_4002f000_COMPAT_MODEL_IDX_0 "nrf-spim" +#define DT_N_S_soc_S_spi_4002f000_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_spi_4002f000_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_spi_4002f000_P_anomaly_58_workaround 0 +#define DT_N_S_soc_S_spi_4002f000_P_anomaly_58_workaround_EXISTS 1 +#define DT_N_S_soc_S_spi_4002f000_P_rx_delay_supported 1 +#define DT_N_S_soc_S_spi_4002f000_P_rx_delay_supported_EXISTS 1 +#define DT_N_S_soc_S_spi_4002f000_P_rx_delay 2 +#define DT_N_S_soc_S_spi_4002f000_P_rx_delay_IDX_0_ENUM_IDX 2 +#define DT_N_S_soc_S_spi_4002f000_P_rx_delay_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_spi_4002f000_P_rx_delay_IDX_0_ENUM_VAL_2_EXISTS 1 +#define DT_N_S_soc_S_spi_4002f000_P_rx_delay_EXISTS 1 +#define DT_N_S_soc_S_spi_4002f000_P_reg {1073934336 /* 0x4002f000 */, 4096 /* 0x1000 */} +#define DT_N_S_soc_S_spi_4002f000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_spi_4002f000_P_reg_IDX_0 1073934336 +#define DT_N_S_soc_S_spi_4002f000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_spi_4002f000_P_reg_IDX_1 4096 +#define DT_N_S_soc_S_spi_4002f000_P_reg_EXISTS 1 +#define DT_N_S_soc_S_spi_4002f000_P_interrupts {47 /* 0x2f */, 1 /* 0x1 */} +#define DT_N_S_soc_S_spi_4002f000_P_interrupts_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_spi_4002f000_P_interrupts_IDX_0 47 +#define DT_N_S_soc_S_spi_4002f000_P_interrupts_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_spi_4002f000_P_interrupts_IDX_1 1 +#define DT_N_S_soc_S_spi_4002f000_P_interrupts_EXISTS 1 +#define DT_N_S_soc_S_spi_4002f000_P_max_frequency 32000000 +#define DT_N_S_soc_S_spi_4002f000_P_max_frequency_EXISTS 1 +#define DT_N_S_soc_S_spi_4002f000_P_overrun_character 255 +#define DT_N_S_soc_S_spi_4002f000_P_overrun_character_EXISTS 1 +#define DT_N_S_soc_S_spi_4002f000_P_easydma_maxcnt_bits 16 +#define DT_N_S_soc_S_spi_4002f000_P_easydma_maxcnt_bits_EXISTS 1 +#define DT_N_S_soc_S_spi_4002f000_P_status "disabled" +#define DT_N_S_soc_S_spi_4002f000_P_status_STRING_UNQUOTED disabled +#define DT_N_S_soc_S_spi_4002f000_P_status_STRING_TOKEN disabled +#define DT_N_S_soc_S_spi_4002f000_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_soc_S_spi_4002f000_P_status_IDX_0 "disabled" +#define DT_N_S_soc_S_spi_4002f000_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_spi_4002f000_P_status_IDX_0_ENUM_IDX 2 +#define DT_N_S_soc_S_spi_4002f000_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_spi_4002f000_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_spi_4002f000, status, 0) +#define DT_N_S_soc_S_spi_4002f000_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_spi_4002f000, status, 0) +#define DT_N_S_soc_S_spi_4002f000_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_spi_4002f000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_spi_4002f000_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_spi_4002f000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_spi_4002f000_P_status_LEN 1 +#define DT_N_S_soc_S_spi_4002f000_P_status_EXISTS 1 +#define DT_N_S_soc_S_spi_4002f000_P_compatible {"nordic,nrf-spim"} +#define DT_N_S_soc_S_spi_4002f000_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_spi_4002f000_P_compatible_IDX_0 "nordic,nrf-spim" +#define DT_N_S_soc_S_spi_4002f000_P_compatible_IDX_0_STRING_UNQUOTED nordic,nrf-spim +#define DT_N_S_soc_S_spi_4002f000_P_compatible_IDX_0_STRING_TOKEN nordic_nrf_spim +#define DT_N_S_soc_S_spi_4002f000_P_compatible_IDX_0_STRING_UPPER_TOKEN NORDIC_NRF_SPIM +#define DT_N_S_soc_S_spi_4002f000_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_spi_4002f000, compatible, 0) +#define DT_N_S_soc_S_spi_4002f000_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_spi_4002f000, compatible, 0) +#define DT_N_S_soc_S_spi_4002f000_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_spi_4002f000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_spi_4002f000_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_spi_4002f000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_spi_4002f000_P_compatible_LEN 1 +#define DT_N_S_soc_S_spi_4002f000_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_spi_4002f000_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_spi_4002f000_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_spi_4002f000_P_wakeup_source 0 +#define DT_N_S_soc_S_spi_4002f000_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_spi_4002f000_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_spi_4002f000_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/temp@4000c000 + * + * Node identifier: DT_N_S_soc_S_temp_4000c000 + * + * Binding (compatible = nordic,nrf-temp): + * $ZEPHYR_BASE/dts/bindings/sensor/nordic,nrf-temp.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_temp_4000c000_PATH "/soc/temp@4000c000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_temp_4000c000_FULL_NAME "temp@4000c000" +#define DT_N_S_soc_S_temp_4000c000_FULL_NAME_UNQUOTED temp@4000c000 +#define DT_N_S_soc_S_temp_4000c000_FULL_NAME_TOKEN temp_4000c000 +#define DT_N_S_soc_S_temp_4000c000_FULL_NAME_UPPER_TOKEN TEMP_4000C000 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_temp_4000c000_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_temp_4000c000_CHILD_IDX 20 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_temp_4000c000_NODELABEL_NUM 1 +#define DT_N_S_soc_S_temp_4000c000_FOREACH_NODELABEL(fn) fn(temp) +#define DT_N_S_soc_S_temp_4000c000_FOREACH_NODELABEL_VARGS(fn, ...) fn(temp, __VA_ARGS__) +#define DT_N_S_soc_S_temp_4000c000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_temp_4000c000_CHILD_NUM 0 +#define DT_N_S_soc_S_temp_4000c000_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_temp_4000c000_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_temp_4000c000_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_temp_4000c000_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_temp_4000c000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_temp_4000c000_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_temp_4000c000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_temp_4000c000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_temp_4000c000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_temp_4000c000_ORD 56 +#define DT_N_S_soc_S_temp_4000c000_ORD_STR_SORTABLE 00056 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_temp_4000c000_REQUIRES_ORDS \ + 6, /* /soc */ \ + 7, /* /soc/interrupt-controller@e000e100 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_temp_4000c000_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_temp_4000c000_EXISTS 1 +#define DT_N_INST_0_nordic_nrf_temp DT_N_S_soc_S_temp_4000c000 +#define DT_N_NODELABEL_temp DT_N_S_soc_S_temp_4000c000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_temp_4000c000_REG_NUM 1 +#define DT_N_S_soc_S_temp_4000c000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_temp_4000c000_REG_IDX_0_VAL_ADDRESS 1073790976 /* 0x4000c000 */ +#define DT_N_S_soc_S_temp_4000c000_REG_IDX_0_VAL_SIZE 4096 /* 0x1000 */ +#define DT_N_S_soc_S_temp_4000c000_RANGES_NUM 0 +#define DT_N_S_soc_S_temp_4000c000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_temp_4000c000_IRQ_NUM 1 +#define DT_N_S_soc_S_temp_4000c000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_temp_4000c000_IRQ_IDX_0_VAL_irq 12 +#define DT_N_S_soc_S_temp_4000c000_IRQ_IDX_0_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_temp_4000c000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_temp_4000c000_IRQ_IDX_0_VAL_priority 1 +#define DT_N_S_soc_S_temp_4000c000_IRQ_IDX_0_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_temp_4000c000_IRQ_IDX_0_CONTROLLER DT_N_S_soc_S_interrupt_controller_e000e100 +#define DT_N_S_soc_S_temp_4000c000_IRQ_LEVEL 1 +#define DT_N_S_soc_S_temp_4000c000_COMPAT_MATCHES_nordic_nrf_temp 1 +#define DT_N_S_soc_S_temp_4000c000_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_temp_4000c000_COMPAT_VENDOR_IDX_0 "Nordic Semiconductor" +#define DT_N_S_soc_S_temp_4000c000_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_temp_4000c000_COMPAT_MODEL_IDX_0 "nrf-temp" +#define DT_N_S_soc_S_temp_4000c000_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_temp_4000c000_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_temp_4000c000_P_reg {1073790976 /* 0x4000c000 */, 4096 /* 0x1000 */} +#define DT_N_S_soc_S_temp_4000c000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_temp_4000c000_P_reg_IDX_0 1073790976 +#define DT_N_S_soc_S_temp_4000c000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_temp_4000c000_P_reg_IDX_1 4096 +#define DT_N_S_soc_S_temp_4000c000_P_reg_EXISTS 1 +#define DT_N_S_soc_S_temp_4000c000_P_interrupts {12 /* 0xc */, 1 /* 0x1 */} +#define DT_N_S_soc_S_temp_4000c000_P_interrupts_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_temp_4000c000_P_interrupts_IDX_0 12 +#define DT_N_S_soc_S_temp_4000c000_P_interrupts_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_temp_4000c000_P_interrupts_IDX_1 1 +#define DT_N_S_soc_S_temp_4000c000_P_interrupts_EXISTS 1 +#define DT_N_S_soc_S_temp_4000c000_P_status "okay" +#define DT_N_S_soc_S_temp_4000c000_P_status_STRING_UNQUOTED okay +#define DT_N_S_soc_S_temp_4000c000_P_status_STRING_TOKEN okay +#define DT_N_S_soc_S_temp_4000c000_P_status_STRING_UPPER_TOKEN OKAY +#define DT_N_S_soc_S_temp_4000c000_P_status_IDX_0 "okay" +#define DT_N_S_soc_S_temp_4000c000_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_temp_4000c000_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_temp_4000c000_P_status_IDX_0_ENUM_VAL_okay_EXISTS 1 +#define DT_N_S_soc_S_temp_4000c000_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_temp_4000c000, status, 0) +#define DT_N_S_soc_S_temp_4000c000_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_temp_4000c000, status, 0) +#define DT_N_S_soc_S_temp_4000c000_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_temp_4000c000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_temp_4000c000_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_temp_4000c000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_temp_4000c000_P_status_LEN 1 +#define DT_N_S_soc_S_temp_4000c000_P_status_EXISTS 1 +#define DT_N_S_soc_S_temp_4000c000_P_compatible {"nordic,nrf-temp"} +#define DT_N_S_soc_S_temp_4000c000_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_temp_4000c000_P_compatible_IDX_0 "nordic,nrf-temp" +#define DT_N_S_soc_S_temp_4000c000_P_compatible_IDX_0_STRING_UNQUOTED nordic,nrf-temp +#define DT_N_S_soc_S_temp_4000c000_P_compatible_IDX_0_STRING_TOKEN nordic_nrf_temp +#define DT_N_S_soc_S_temp_4000c000_P_compatible_IDX_0_STRING_UPPER_TOKEN NORDIC_NRF_TEMP +#define DT_N_S_soc_S_temp_4000c000_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_temp_4000c000, compatible, 0) +#define DT_N_S_soc_S_temp_4000c000_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_temp_4000c000, compatible, 0) +#define DT_N_S_soc_S_temp_4000c000_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_temp_4000c000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_temp_4000c000_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_temp_4000c000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_temp_4000c000_P_compatible_LEN 1 +#define DT_N_S_soc_S_temp_4000c000_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_temp_4000c000_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_temp_4000c000_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_temp_4000c000_P_wakeup_source 0 +#define DT_N_S_soc_S_temp_4000c000_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_temp_4000c000_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_temp_4000c000_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/timer@40008000 + * + * Node identifier: DT_N_S_soc_S_timer_40008000 + * + * Binding (compatible = nordic,nrf-timer): + * $ZEPHYR_BASE/dts/bindings/counter/nordic,nrf-timer.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_timer_40008000_PATH "/soc/timer@40008000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_timer_40008000_FULL_NAME "timer@40008000" +#define DT_N_S_soc_S_timer_40008000_FULL_NAME_UNQUOTED timer@40008000 +#define DT_N_S_soc_S_timer_40008000_FULL_NAME_TOKEN timer_40008000 +#define DT_N_S_soc_S_timer_40008000_FULL_NAME_UPPER_TOKEN TIMER_40008000 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_timer_40008000_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_timer_40008000_CHILD_IDX 16 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_timer_40008000_NODELABEL_NUM 1 +#define DT_N_S_soc_S_timer_40008000_FOREACH_NODELABEL(fn) fn(timer0) +#define DT_N_S_soc_S_timer_40008000_FOREACH_NODELABEL_VARGS(fn, ...) fn(timer0, __VA_ARGS__) +#define DT_N_S_soc_S_timer_40008000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_timer_40008000_CHILD_NUM 0 +#define DT_N_S_soc_S_timer_40008000_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_timer_40008000_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_timer_40008000_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_timer_40008000_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_timer_40008000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_timer_40008000_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_timer_40008000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_timer_40008000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_timer_40008000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_timer_40008000_ORD 57 +#define DT_N_S_soc_S_timer_40008000_ORD_STR_SORTABLE 00057 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_timer_40008000_REQUIRES_ORDS \ + 6, /* /soc */ \ + 7, /* /soc/interrupt-controller@e000e100 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_timer_40008000_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_timer_40008000_EXISTS 1 +#define DT_N_INST_0_nordic_nrf_timer DT_N_S_soc_S_timer_40008000 +#define DT_N_NODELABEL_timer0 DT_N_S_soc_S_timer_40008000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_timer_40008000_REG_NUM 1 +#define DT_N_S_soc_S_timer_40008000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timer_40008000_REG_IDX_0_VAL_ADDRESS 1073774592 /* 0x40008000 */ +#define DT_N_S_soc_S_timer_40008000_REG_IDX_0_VAL_SIZE 4096 /* 0x1000 */ +#define DT_N_S_soc_S_timer_40008000_RANGES_NUM 0 +#define DT_N_S_soc_S_timer_40008000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_timer_40008000_IRQ_NUM 1 +#define DT_N_S_soc_S_timer_40008000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timer_40008000_IRQ_IDX_0_VAL_irq 8 +#define DT_N_S_soc_S_timer_40008000_IRQ_IDX_0_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_timer_40008000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timer_40008000_IRQ_IDX_0_VAL_priority 1 +#define DT_N_S_soc_S_timer_40008000_IRQ_IDX_0_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_timer_40008000_IRQ_IDX_0_CONTROLLER DT_N_S_soc_S_interrupt_controller_e000e100 +#define DT_N_S_soc_S_timer_40008000_IRQ_LEVEL 1 +#define DT_N_S_soc_S_timer_40008000_COMPAT_MATCHES_nordic_nrf_timer 1 +#define DT_N_S_soc_S_timer_40008000_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timer_40008000_COMPAT_VENDOR_IDX_0 "Nordic Semiconductor" +#define DT_N_S_soc_S_timer_40008000_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timer_40008000_COMPAT_MODEL_IDX_0 "nrf-timer" +#define DT_N_S_soc_S_timer_40008000_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_timer_40008000_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_timer_40008000_P_reg {1073774592 /* 0x40008000 */, 4096 /* 0x1000 */} +#define DT_N_S_soc_S_timer_40008000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timer_40008000_P_reg_IDX_0 1073774592 +#define DT_N_S_soc_S_timer_40008000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_timer_40008000_P_reg_IDX_1 4096 +#define DT_N_S_soc_S_timer_40008000_P_reg_EXISTS 1 +#define DT_N_S_soc_S_timer_40008000_P_cc_num 4 +#define DT_N_S_soc_S_timer_40008000_P_cc_num_EXISTS 1 +#define DT_N_S_soc_S_timer_40008000_P_max_bit_width 32 +#define DT_N_S_soc_S_timer_40008000_P_max_bit_width_EXISTS 1 +#define DT_N_S_soc_S_timer_40008000_P_interrupts {8 /* 0x8 */, 1 /* 0x1 */} +#define DT_N_S_soc_S_timer_40008000_P_interrupts_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timer_40008000_P_interrupts_IDX_0 8 +#define DT_N_S_soc_S_timer_40008000_P_interrupts_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_timer_40008000_P_interrupts_IDX_1 1 +#define DT_N_S_soc_S_timer_40008000_P_interrupts_EXISTS 1 +#define DT_N_S_soc_S_timer_40008000_P_max_frequency 16000000 +#define DT_N_S_soc_S_timer_40008000_P_max_frequency_EXISTS 1 +#define DT_N_S_soc_S_timer_40008000_P_prescaler 0 +#define DT_N_S_soc_S_timer_40008000_P_prescaler_EXISTS 1 +#define DT_N_S_soc_S_timer_40008000_P_zli 0 +#define DT_N_S_soc_S_timer_40008000_P_zli_EXISTS 1 +#define DT_N_S_soc_S_timer_40008000_P_status "disabled" +#define DT_N_S_soc_S_timer_40008000_P_status_STRING_UNQUOTED disabled +#define DT_N_S_soc_S_timer_40008000_P_status_STRING_TOKEN disabled +#define DT_N_S_soc_S_timer_40008000_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_soc_S_timer_40008000_P_status_IDX_0 "disabled" +#define DT_N_S_soc_S_timer_40008000_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timer_40008000_P_status_IDX_0_ENUM_IDX 2 +#define DT_N_S_soc_S_timer_40008000_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_timer_40008000_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_timer_40008000, status, 0) +#define DT_N_S_soc_S_timer_40008000_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_timer_40008000, status, 0) +#define DT_N_S_soc_S_timer_40008000_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_timer_40008000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timer_40008000_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timer_40008000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timer_40008000_P_status_LEN 1 +#define DT_N_S_soc_S_timer_40008000_P_status_EXISTS 1 +#define DT_N_S_soc_S_timer_40008000_P_compatible {"nordic,nrf-timer"} +#define DT_N_S_soc_S_timer_40008000_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timer_40008000_P_compatible_IDX_0 "nordic,nrf-timer" +#define DT_N_S_soc_S_timer_40008000_P_compatible_IDX_0_STRING_UNQUOTED nordic,nrf-timer +#define DT_N_S_soc_S_timer_40008000_P_compatible_IDX_0_STRING_TOKEN nordic_nrf_timer +#define DT_N_S_soc_S_timer_40008000_P_compatible_IDX_0_STRING_UPPER_TOKEN NORDIC_NRF_TIMER +#define DT_N_S_soc_S_timer_40008000_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_timer_40008000, compatible, 0) +#define DT_N_S_soc_S_timer_40008000_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_timer_40008000, compatible, 0) +#define DT_N_S_soc_S_timer_40008000_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_timer_40008000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timer_40008000_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timer_40008000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timer_40008000_P_compatible_LEN 1 +#define DT_N_S_soc_S_timer_40008000_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_timer_40008000_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_timer_40008000_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_timer_40008000_P_wakeup_source 0 +#define DT_N_S_soc_S_timer_40008000_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_timer_40008000_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_timer_40008000_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/timer@4000a000 + * + * Node identifier: DT_N_S_soc_S_timer_4000a000 + * + * Binding (compatible = nordic,nrf-timer): + * $ZEPHYR_BASE/dts/bindings/counter/nordic,nrf-timer.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_timer_4000a000_PATH "/soc/timer@4000a000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_timer_4000a000_FULL_NAME "timer@4000a000" +#define DT_N_S_soc_S_timer_4000a000_FULL_NAME_UNQUOTED timer@4000a000 +#define DT_N_S_soc_S_timer_4000a000_FULL_NAME_TOKEN timer_4000a000 +#define DT_N_S_soc_S_timer_4000a000_FULL_NAME_UPPER_TOKEN TIMER_4000A000 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_timer_4000a000_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_timer_4000a000_CHILD_IDX 18 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_timer_4000a000_NODELABEL_NUM 1 +#define DT_N_S_soc_S_timer_4000a000_FOREACH_NODELABEL(fn) fn(timer2) +#define DT_N_S_soc_S_timer_4000a000_FOREACH_NODELABEL_VARGS(fn, ...) fn(timer2, __VA_ARGS__) +#define DT_N_S_soc_S_timer_4000a000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_timer_4000a000_CHILD_NUM 0 +#define DT_N_S_soc_S_timer_4000a000_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_timer_4000a000_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_timer_4000a000_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_timer_4000a000_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_timer_4000a000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_timer_4000a000_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_timer_4000a000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_timer_4000a000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_timer_4000a000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_timer_4000a000_ORD 58 +#define DT_N_S_soc_S_timer_4000a000_ORD_STR_SORTABLE 00058 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_timer_4000a000_REQUIRES_ORDS \ + 6, /* /soc */ \ + 7, /* /soc/interrupt-controller@e000e100 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_timer_4000a000_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_timer_4000a000_EXISTS 1 +#define DT_N_INST_2_nordic_nrf_timer DT_N_S_soc_S_timer_4000a000 +#define DT_N_NODELABEL_timer2 DT_N_S_soc_S_timer_4000a000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_timer_4000a000_REG_NUM 1 +#define DT_N_S_soc_S_timer_4000a000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timer_4000a000_REG_IDX_0_VAL_ADDRESS 1073782784 /* 0x4000a000 */ +#define DT_N_S_soc_S_timer_4000a000_REG_IDX_0_VAL_SIZE 4096 /* 0x1000 */ +#define DT_N_S_soc_S_timer_4000a000_RANGES_NUM 0 +#define DT_N_S_soc_S_timer_4000a000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_timer_4000a000_IRQ_NUM 1 +#define DT_N_S_soc_S_timer_4000a000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timer_4000a000_IRQ_IDX_0_VAL_irq 10 +#define DT_N_S_soc_S_timer_4000a000_IRQ_IDX_0_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_timer_4000a000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timer_4000a000_IRQ_IDX_0_VAL_priority 1 +#define DT_N_S_soc_S_timer_4000a000_IRQ_IDX_0_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_timer_4000a000_IRQ_IDX_0_CONTROLLER DT_N_S_soc_S_interrupt_controller_e000e100 +#define DT_N_S_soc_S_timer_4000a000_IRQ_LEVEL 1 +#define DT_N_S_soc_S_timer_4000a000_COMPAT_MATCHES_nordic_nrf_timer 1 +#define DT_N_S_soc_S_timer_4000a000_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timer_4000a000_COMPAT_VENDOR_IDX_0 "Nordic Semiconductor" +#define DT_N_S_soc_S_timer_4000a000_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timer_4000a000_COMPAT_MODEL_IDX_0 "nrf-timer" +#define DT_N_S_soc_S_timer_4000a000_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_timer_4000a000_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_timer_4000a000_P_reg {1073782784 /* 0x4000a000 */, 4096 /* 0x1000 */} +#define DT_N_S_soc_S_timer_4000a000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timer_4000a000_P_reg_IDX_0 1073782784 +#define DT_N_S_soc_S_timer_4000a000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_timer_4000a000_P_reg_IDX_1 4096 +#define DT_N_S_soc_S_timer_4000a000_P_reg_EXISTS 1 +#define DT_N_S_soc_S_timer_4000a000_P_cc_num 4 +#define DT_N_S_soc_S_timer_4000a000_P_cc_num_EXISTS 1 +#define DT_N_S_soc_S_timer_4000a000_P_max_bit_width 32 +#define DT_N_S_soc_S_timer_4000a000_P_max_bit_width_EXISTS 1 +#define DT_N_S_soc_S_timer_4000a000_P_interrupts {10 /* 0xa */, 1 /* 0x1 */} +#define DT_N_S_soc_S_timer_4000a000_P_interrupts_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timer_4000a000_P_interrupts_IDX_0 10 +#define DT_N_S_soc_S_timer_4000a000_P_interrupts_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_timer_4000a000_P_interrupts_IDX_1 1 +#define DT_N_S_soc_S_timer_4000a000_P_interrupts_EXISTS 1 +#define DT_N_S_soc_S_timer_4000a000_P_max_frequency 16000000 +#define DT_N_S_soc_S_timer_4000a000_P_max_frequency_EXISTS 1 +#define DT_N_S_soc_S_timer_4000a000_P_prescaler 0 +#define DT_N_S_soc_S_timer_4000a000_P_prescaler_EXISTS 1 +#define DT_N_S_soc_S_timer_4000a000_P_zli 0 +#define DT_N_S_soc_S_timer_4000a000_P_zli_EXISTS 1 +#define DT_N_S_soc_S_timer_4000a000_P_status "disabled" +#define DT_N_S_soc_S_timer_4000a000_P_status_STRING_UNQUOTED disabled +#define DT_N_S_soc_S_timer_4000a000_P_status_STRING_TOKEN disabled +#define DT_N_S_soc_S_timer_4000a000_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_soc_S_timer_4000a000_P_status_IDX_0 "disabled" +#define DT_N_S_soc_S_timer_4000a000_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timer_4000a000_P_status_IDX_0_ENUM_IDX 2 +#define DT_N_S_soc_S_timer_4000a000_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_timer_4000a000_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_timer_4000a000, status, 0) +#define DT_N_S_soc_S_timer_4000a000_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_timer_4000a000, status, 0) +#define DT_N_S_soc_S_timer_4000a000_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_timer_4000a000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timer_4000a000_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timer_4000a000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timer_4000a000_P_status_LEN 1 +#define DT_N_S_soc_S_timer_4000a000_P_status_EXISTS 1 +#define DT_N_S_soc_S_timer_4000a000_P_compatible {"nordic,nrf-timer"} +#define DT_N_S_soc_S_timer_4000a000_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timer_4000a000_P_compatible_IDX_0 "nordic,nrf-timer" +#define DT_N_S_soc_S_timer_4000a000_P_compatible_IDX_0_STRING_UNQUOTED nordic,nrf-timer +#define DT_N_S_soc_S_timer_4000a000_P_compatible_IDX_0_STRING_TOKEN nordic_nrf_timer +#define DT_N_S_soc_S_timer_4000a000_P_compatible_IDX_0_STRING_UPPER_TOKEN NORDIC_NRF_TIMER +#define DT_N_S_soc_S_timer_4000a000_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_timer_4000a000, compatible, 0) +#define DT_N_S_soc_S_timer_4000a000_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_timer_4000a000, compatible, 0) +#define DT_N_S_soc_S_timer_4000a000_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_timer_4000a000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timer_4000a000_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timer_4000a000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timer_4000a000_P_compatible_LEN 1 +#define DT_N_S_soc_S_timer_4000a000_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_timer_4000a000_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_timer_4000a000_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_timer_4000a000_P_wakeup_source 0 +#define DT_N_S_soc_S_timer_4000a000_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_timer_4000a000_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_timer_4000a000_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/timer@4001a000 + * + * Node identifier: DT_N_S_soc_S_timer_4001a000 + * + * Binding (compatible = nordic,nrf-timer): + * $ZEPHYR_BASE/dts/bindings/counter/nordic,nrf-timer.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_timer_4001a000_PATH "/soc/timer@4001a000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_timer_4001a000_FULL_NAME "timer@4001a000" +#define DT_N_S_soc_S_timer_4001a000_FULL_NAME_UNQUOTED timer@4001a000 +#define DT_N_S_soc_S_timer_4001a000_FULL_NAME_TOKEN timer_4001a000 +#define DT_N_S_soc_S_timer_4001a000_FULL_NAME_UPPER_TOKEN TIMER_4001A000 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_timer_4001a000_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_timer_4001a000_CHILD_IDX 34 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_timer_4001a000_NODELABEL_NUM 1 +#define DT_N_S_soc_S_timer_4001a000_FOREACH_NODELABEL(fn) fn(timer3) +#define DT_N_S_soc_S_timer_4001a000_FOREACH_NODELABEL_VARGS(fn, ...) fn(timer3, __VA_ARGS__) +#define DT_N_S_soc_S_timer_4001a000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_timer_4001a000_CHILD_NUM 0 +#define DT_N_S_soc_S_timer_4001a000_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_timer_4001a000_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_timer_4001a000_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_timer_4001a000_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_timer_4001a000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_timer_4001a000_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_timer_4001a000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_timer_4001a000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_timer_4001a000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_timer_4001a000_ORD 59 +#define DT_N_S_soc_S_timer_4001a000_ORD_STR_SORTABLE 00059 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_timer_4001a000_REQUIRES_ORDS \ + 6, /* /soc */ \ + 7, /* /soc/interrupt-controller@e000e100 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_timer_4001a000_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_timer_4001a000_EXISTS 1 +#define DT_N_INST_3_nordic_nrf_timer DT_N_S_soc_S_timer_4001a000 +#define DT_N_NODELABEL_timer3 DT_N_S_soc_S_timer_4001a000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_timer_4001a000_REG_NUM 1 +#define DT_N_S_soc_S_timer_4001a000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timer_4001a000_REG_IDX_0_VAL_ADDRESS 1073848320 /* 0x4001a000 */ +#define DT_N_S_soc_S_timer_4001a000_REG_IDX_0_VAL_SIZE 4096 /* 0x1000 */ +#define DT_N_S_soc_S_timer_4001a000_RANGES_NUM 0 +#define DT_N_S_soc_S_timer_4001a000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_timer_4001a000_IRQ_NUM 1 +#define DT_N_S_soc_S_timer_4001a000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timer_4001a000_IRQ_IDX_0_VAL_irq 26 +#define DT_N_S_soc_S_timer_4001a000_IRQ_IDX_0_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_timer_4001a000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timer_4001a000_IRQ_IDX_0_VAL_priority 1 +#define DT_N_S_soc_S_timer_4001a000_IRQ_IDX_0_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_timer_4001a000_IRQ_IDX_0_CONTROLLER DT_N_S_soc_S_interrupt_controller_e000e100 +#define DT_N_S_soc_S_timer_4001a000_IRQ_LEVEL 1 +#define DT_N_S_soc_S_timer_4001a000_COMPAT_MATCHES_nordic_nrf_timer 1 +#define DT_N_S_soc_S_timer_4001a000_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timer_4001a000_COMPAT_VENDOR_IDX_0 "Nordic Semiconductor" +#define DT_N_S_soc_S_timer_4001a000_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timer_4001a000_COMPAT_MODEL_IDX_0 "nrf-timer" +#define DT_N_S_soc_S_timer_4001a000_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_timer_4001a000_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_timer_4001a000_P_reg {1073848320 /* 0x4001a000 */, 4096 /* 0x1000 */} +#define DT_N_S_soc_S_timer_4001a000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timer_4001a000_P_reg_IDX_0 1073848320 +#define DT_N_S_soc_S_timer_4001a000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_timer_4001a000_P_reg_IDX_1 4096 +#define DT_N_S_soc_S_timer_4001a000_P_reg_EXISTS 1 +#define DT_N_S_soc_S_timer_4001a000_P_cc_num 6 +#define DT_N_S_soc_S_timer_4001a000_P_cc_num_EXISTS 1 +#define DT_N_S_soc_S_timer_4001a000_P_max_bit_width 32 +#define DT_N_S_soc_S_timer_4001a000_P_max_bit_width_EXISTS 1 +#define DT_N_S_soc_S_timer_4001a000_P_interrupts {26 /* 0x1a */, 1 /* 0x1 */} +#define DT_N_S_soc_S_timer_4001a000_P_interrupts_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timer_4001a000_P_interrupts_IDX_0 26 +#define DT_N_S_soc_S_timer_4001a000_P_interrupts_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_timer_4001a000_P_interrupts_IDX_1 1 +#define DT_N_S_soc_S_timer_4001a000_P_interrupts_EXISTS 1 +#define DT_N_S_soc_S_timer_4001a000_P_max_frequency 16000000 +#define DT_N_S_soc_S_timer_4001a000_P_max_frequency_EXISTS 1 +#define DT_N_S_soc_S_timer_4001a000_P_prescaler 0 +#define DT_N_S_soc_S_timer_4001a000_P_prescaler_EXISTS 1 +#define DT_N_S_soc_S_timer_4001a000_P_zli 0 +#define DT_N_S_soc_S_timer_4001a000_P_zli_EXISTS 1 +#define DT_N_S_soc_S_timer_4001a000_P_status "disabled" +#define DT_N_S_soc_S_timer_4001a000_P_status_STRING_UNQUOTED disabled +#define DT_N_S_soc_S_timer_4001a000_P_status_STRING_TOKEN disabled +#define DT_N_S_soc_S_timer_4001a000_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_soc_S_timer_4001a000_P_status_IDX_0 "disabled" +#define DT_N_S_soc_S_timer_4001a000_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timer_4001a000_P_status_IDX_0_ENUM_IDX 2 +#define DT_N_S_soc_S_timer_4001a000_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_timer_4001a000_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_timer_4001a000, status, 0) +#define DT_N_S_soc_S_timer_4001a000_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_timer_4001a000, status, 0) +#define DT_N_S_soc_S_timer_4001a000_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_timer_4001a000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timer_4001a000_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timer_4001a000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timer_4001a000_P_status_LEN 1 +#define DT_N_S_soc_S_timer_4001a000_P_status_EXISTS 1 +#define DT_N_S_soc_S_timer_4001a000_P_compatible {"nordic,nrf-timer"} +#define DT_N_S_soc_S_timer_4001a000_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timer_4001a000_P_compatible_IDX_0 "nordic,nrf-timer" +#define DT_N_S_soc_S_timer_4001a000_P_compatible_IDX_0_STRING_UNQUOTED nordic,nrf-timer +#define DT_N_S_soc_S_timer_4001a000_P_compatible_IDX_0_STRING_TOKEN nordic_nrf_timer +#define DT_N_S_soc_S_timer_4001a000_P_compatible_IDX_0_STRING_UPPER_TOKEN NORDIC_NRF_TIMER +#define DT_N_S_soc_S_timer_4001a000_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_timer_4001a000, compatible, 0) +#define DT_N_S_soc_S_timer_4001a000_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_timer_4001a000, compatible, 0) +#define DT_N_S_soc_S_timer_4001a000_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_timer_4001a000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timer_4001a000_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timer_4001a000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timer_4001a000_P_compatible_LEN 1 +#define DT_N_S_soc_S_timer_4001a000_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_timer_4001a000_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_timer_4001a000_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_timer_4001a000_P_wakeup_source 0 +#define DT_N_S_soc_S_timer_4001a000_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_timer_4001a000_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_timer_4001a000_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/timer@4001b000 + * + * Node identifier: DT_N_S_soc_S_timer_4001b000 + * + * Binding (compatible = nordic,nrf-timer): + * $ZEPHYR_BASE/dts/bindings/counter/nordic,nrf-timer.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_timer_4001b000_PATH "/soc/timer@4001b000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_timer_4001b000_FULL_NAME "timer@4001b000" +#define DT_N_S_soc_S_timer_4001b000_FULL_NAME_UNQUOTED timer@4001b000 +#define DT_N_S_soc_S_timer_4001b000_FULL_NAME_TOKEN timer_4001b000 +#define DT_N_S_soc_S_timer_4001b000_FULL_NAME_UPPER_TOKEN TIMER_4001B000 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_timer_4001b000_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_timer_4001b000_CHILD_IDX 35 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_timer_4001b000_NODELABEL_NUM 1 +#define DT_N_S_soc_S_timer_4001b000_FOREACH_NODELABEL(fn) fn(timer4) +#define DT_N_S_soc_S_timer_4001b000_FOREACH_NODELABEL_VARGS(fn, ...) fn(timer4, __VA_ARGS__) +#define DT_N_S_soc_S_timer_4001b000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_timer_4001b000_CHILD_NUM 0 +#define DT_N_S_soc_S_timer_4001b000_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_timer_4001b000_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_timer_4001b000_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_timer_4001b000_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_timer_4001b000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_timer_4001b000_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_timer_4001b000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_timer_4001b000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_timer_4001b000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_timer_4001b000_ORD 60 +#define DT_N_S_soc_S_timer_4001b000_ORD_STR_SORTABLE 00060 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_timer_4001b000_REQUIRES_ORDS \ + 6, /* /soc */ \ + 7, /* /soc/interrupt-controller@e000e100 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_timer_4001b000_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_timer_4001b000_EXISTS 1 +#define DT_N_INST_4_nordic_nrf_timer DT_N_S_soc_S_timer_4001b000 +#define DT_N_NODELABEL_timer4 DT_N_S_soc_S_timer_4001b000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_timer_4001b000_REG_NUM 1 +#define DT_N_S_soc_S_timer_4001b000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timer_4001b000_REG_IDX_0_VAL_ADDRESS 1073852416 /* 0x4001b000 */ +#define DT_N_S_soc_S_timer_4001b000_REG_IDX_0_VAL_SIZE 4096 /* 0x1000 */ +#define DT_N_S_soc_S_timer_4001b000_RANGES_NUM 0 +#define DT_N_S_soc_S_timer_4001b000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_timer_4001b000_IRQ_NUM 1 +#define DT_N_S_soc_S_timer_4001b000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timer_4001b000_IRQ_IDX_0_VAL_irq 27 +#define DT_N_S_soc_S_timer_4001b000_IRQ_IDX_0_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_timer_4001b000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timer_4001b000_IRQ_IDX_0_VAL_priority 1 +#define DT_N_S_soc_S_timer_4001b000_IRQ_IDX_0_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_timer_4001b000_IRQ_IDX_0_CONTROLLER DT_N_S_soc_S_interrupt_controller_e000e100 +#define DT_N_S_soc_S_timer_4001b000_IRQ_LEVEL 1 +#define DT_N_S_soc_S_timer_4001b000_COMPAT_MATCHES_nordic_nrf_timer 1 +#define DT_N_S_soc_S_timer_4001b000_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timer_4001b000_COMPAT_VENDOR_IDX_0 "Nordic Semiconductor" +#define DT_N_S_soc_S_timer_4001b000_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timer_4001b000_COMPAT_MODEL_IDX_0 "nrf-timer" +#define DT_N_S_soc_S_timer_4001b000_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_timer_4001b000_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_timer_4001b000_P_reg {1073852416 /* 0x4001b000 */, 4096 /* 0x1000 */} +#define DT_N_S_soc_S_timer_4001b000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timer_4001b000_P_reg_IDX_0 1073852416 +#define DT_N_S_soc_S_timer_4001b000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_timer_4001b000_P_reg_IDX_1 4096 +#define DT_N_S_soc_S_timer_4001b000_P_reg_EXISTS 1 +#define DT_N_S_soc_S_timer_4001b000_P_cc_num 6 +#define DT_N_S_soc_S_timer_4001b000_P_cc_num_EXISTS 1 +#define DT_N_S_soc_S_timer_4001b000_P_max_bit_width 32 +#define DT_N_S_soc_S_timer_4001b000_P_max_bit_width_EXISTS 1 +#define DT_N_S_soc_S_timer_4001b000_P_interrupts {27 /* 0x1b */, 1 /* 0x1 */} +#define DT_N_S_soc_S_timer_4001b000_P_interrupts_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timer_4001b000_P_interrupts_IDX_0 27 +#define DT_N_S_soc_S_timer_4001b000_P_interrupts_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_timer_4001b000_P_interrupts_IDX_1 1 +#define DT_N_S_soc_S_timer_4001b000_P_interrupts_EXISTS 1 +#define DT_N_S_soc_S_timer_4001b000_P_max_frequency 16000000 +#define DT_N_S_soc_S_timer_4001b000_P_max_frequency_EXISTS 1 +#define DT_N_S_soc_S_timer_4001b000_P_prescaler 0 +#define DT_N_S_soc_S_timer_4001b000_P_prescaler_EXISTS 1 +#define DT_N_S_soc_S_timer_4001b000_P_zli 0 +#define DT_N_S_soc_S_timer_4001b000_P_zli_EXISTS 1 +#define DT_N_S_soc_S_timer_4001b000_P_status "disabled" +#define DT_N_S_soc_S_timer_4001b000_P_status_STRING_UNQUOTED disabled +#define DT_N_S_soc_S_timer_4001b000_P_status_STRING_TOKEN disabled +#define DT_N_S_soc_S_timer_4001b000_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_soc_S_timer_4001b000_P_status_IDX_0 "disabled" +#define DT_N_S_soc_S_timer_4001b000_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timer_4001b000_P_status_IDX_0_ENUM_IDX 2 +#define DT_N_S_soc_S_timer_4001b000_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_timer_4001b000_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_timer_4001b000, status, 0) +#define DT_N_S_soc_S_timer_4001b000_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_timer_4001b000, status, 0) +#define DT_N_S_soc_S_timer_4001b000_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_timer_4001b000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timer_4001b000_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timer_4001b000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timer_4001b000_P_status_LEN 1 +#define DT_N_S_soc_S_timer_4001b000_P_status_EXISTS 1 +#define DT_N_S_soc_S_timer_4001b000_P_compatible {"nordic,nrf-timer"} +#define DT_N_S_soc_S_timer_4001b000_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timer_4001b000_P_compatible_IDX_0 "nordic,nrf-timer" +#define DT_N_S_soc_S_timer_4001b000_P_compatible_IDX_0_STRING_UNQUOTED nordic,nrf-timer +#define DT_N_S_soc_S_timer_4001b000_P_compatible_IDX_0_STRING_TOKEN nordic_nrf_timer +#define DT_N_S_soc_S_timer_4001b000_P_compatible_IDX_0_STRING_UPPER_TOKEN NORDIC_NRF_TIMER +#define DT_N_S_soc_S_timer_4001b000_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_timer_4001b000, compatible, 0) +#define DT_N_S_soc_S_timer_4001b000_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_timer_4001b000, compatible, 0) +#define DT_N_S_soc_S_timer_4001b000_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_timer_4001b000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timer_4001b000_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timer_4001b000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timer_4001b000_P_compatible_LEN 1 +#define DT_N_S_soc_S_timer_4001b000_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_timer_4001b000_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_timer_4001b000_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_timer_4001b000_P_wakeup_source 0 +#define DT_N_S_soc_S_timer_4001b000_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_timer_4001b000_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_timer_4001b000_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/timer@e000e010 + * + * Node identifier: DT_N_S_soc_S_timer_e000e010 + * + * Binding (compatible = arm,armv7m-systick): + * $ZEPHYR_BASE/dts/bindings/timer/arm,armv7m-systick.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_timer_e000e010_PATH "/soc/timer@e000e010" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_timer_e000e010_FULL_NAME "timer@e000e010" +#define DT_N_S_soc_S_timer_e000e010_FULL_NAME_UNQUOTED timer@e000e010 +#define DT_N_S_soc_S_timer_e000e010_FULL_NAME_TOKEN timer_e000e010 +#define DT_N_S_soc_S_timer_e000e010_FULL_NAME_UPPER_TOKEN TIMER_E000E010 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_timer_e000e010_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_timer_e000e010_CHILD_IDX 1 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_timer_e000e010_NODELABEL_NUM 1 +#define DT_N_S_soc_S_timer_e000e010_FOREACH_NODELABEL(fn) fn(systick) +#define DT_N_S_soc_S_timer_e000e010_FOREACH_NODELABEL_VARGS(fn, ...) fn(systick, __VA_ARGS__) +#define DT_N_S_soc_S_timer_e000e010_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_timer_e000e010_CHILD_NUM 0 +#define DT_N_S_soc_S_timer_e000e010_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_timer_e000e010_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_timer_e000e010_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_timer_e000e010_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_timer_e000e010_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_timer_e000e010_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_timer_e000e010_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_timer_e000e010_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_timer_e000e010_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_timer_e000e010_ORD 61 +#define DT_N_S_soc_S_timer_e000e010_ORD_STR_SORTABLE 00061 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_timer_e000e010_REQUIRES_ORDS \ + 6, /* /soc */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_timer_e000e010_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_timer_e000e010_EXISTS 1 +#define DT_N_INST_0_arm_armv7m_systick DT_N_S_soc_S_timer_e000e010 +#define DT_N_NODELABEL_systick DT_N_S_soc_S_timer_e000e010 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_timer_e000e010_REG_NUM 1 +#define DT_N_S_soc_S_timer_e000e010_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timer_e000e010_REG_IDX_0_VAL_ADDRESS 3758153744 /* 0xe000e010 */ +#define DT_N_S_soc_S_timer_e000e010_REG_IDX_0_VAL_SIZE 16 /* 0x10 */ +#define DT_N_S_soc_S_timer_e000e010_RANGES_NUM 0 +#define DT_N_S_soc_S_timer_e000e010_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_timer_e000e010_IRQ_NUM 0 +#define DT_N_S_soc_S_timer_e000e010_IRQ_LEVEL 0 +#define DT_N_S_soc_S_timer_e000e010_COMPAT_MATCHES_arm_armv7m_systick 1 +#define DT_N_S_soc_S_timer_e000e010_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timer_e000e010_COMPAT_VENDOR_IDX_0 "ARM Ltd." +#define DT_N_S_soc_S_timer_e000e010_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timer_e000e010_COMPAT_MODEL_IDX_0 "armv7m-systick" +#define DT_N_S_soc_S_timer_e000e010_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_timer_e000e010_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_timer_e000e010_P_reg {3758153744 /* 0xe000e010 */, 16 /* 0x10 */} +#define DT_N_S_soc_S_timer_e000e010_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timer_e000e010_P_reg_IDX_0 3758153744 +#define DT_N_S_soc_S_timer_e000e010_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_timer_e000e010_P_reg_IDX_1 16 +#define DT_N_S_soc_S_timer_e000e010_P_reg_EXISTS 1 +#define DT_N_S_soc_S_timer_e000e010_P_status "disabled" +#define DT_N_S_soc_S_timer_e000e010_P_status_STRING_UNQUOTED disabled +#define DT_N_S_soc_S_timer_e000e010_P_status_STRING_TOKEN disabled +#define DT_N_S_soc_S_timer_e000e010_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_soc_S_timer_e000e010_P_status_IDX_0 "disabled" +#define DT_N_S_soc_S_timer_e000e010_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timer_e000e010_P_status_IDX_0_ENUM_IDX 2 +#define DT_N_S_soc_S_timer_e000e010_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_timer_e000e010_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_timer_e000e010, status, 0) +#define DT_N_S_soc_S_timer_e000e010_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_timer_e000e010, status, 0) +#define DT_N_S_soc_S_timer_e000e010_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_timer_e000e010, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timer_e000e010_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timer_e000e010, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timer_e000e010_P_status_LEN 1 +#define DT_N_S_soc_S_timer_e000e010_P_status_EXISTS 1 +#define DT_N_S_soc_S_timer_e000e010_P_compatible {"arm,armv7m-systick"} +#define DT_N_S_soc_S_timer_e000e010_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timer_e000e010_P_compatible_IDX_0 "arm,armv7m-systick" +#define DT_N_S_soc_S_timer_e000e010_P_compatible_IDX_0_STRING_UNQUOTED arm,armv7m-systick +#define DT_N_S_soc_S_timer_e000e010_P_compatible_IDX_0_STRING_TOKEN arm_armv7m_systick +#define DT_N_S_soc_S_timer_e000e010_P_compatible_IDX_0_STRING_UPPER_TOKEN ARM_ARMV7M_SYSTICK +#define DT_N_S_soc_S_timer_e000e010_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_timer_e000e010, compatible, 0) +#define DT_N_S_soc_S_timer_e000e010_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_timer_e000e010, compatible, 0) +#define DT_N_S_soc_S_timer_e000e010_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_timer_e000e010, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timer_e000e010_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timer_e000e010, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timer_e000e010_P_compatible_LEN 1 +#define DT_N_S_soc_S_timer_e000e010_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_timer_e000e010_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_timer_e000e010_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_timer_e000e010_P_wakeup_source 0 +#define DT_N_S_soc_S_timer_e000e010_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_timer_e000e010_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_timer_e000e010_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/uart@40002000 + * + * Node identifier: DT_N_S_soc_S_uart_40002000 + * + * Binding (compatible = nordic,nrf-uarte): + * $ZEPHYR_BASE/dts/bindings/serial/nordic,nrf-uarte.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_uart_40002000_PATH "/soc/uart@40002000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_uart_40002000_FULL_NAME "uart@40002000" +#define DT_N_S_soc_S_uart_40002000_FULL_NAME_UNQUOTED uart@40002000 +#define DT_N_S_soc_S_uart_40002000_FULL_NAME_TOKEN uart_40002000 +#define DT_N_S_soc_S_uart_40002000_FULL_NAME_UPPER_TOKEN UART_40002000 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_uart_40002000_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_uart_40002000_CHILD_IDX 8 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_uart_40002000_NODELABEL_NUM 1 +#define DT_N_S_soc_S_uart_40002000_FOREACH_NODELABEL(fn) fn(uart0) +#define DT_N_S_soc_S_uart_40002000_FOREACH_NODELABEL_VARGS(fn, ...) fn(uart0, __VA_ARGS__) +#define DT_N_S_soc_S_uart_40002000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_uart_40002000_CHILD_NUM 0 +#define DT_N_S_soc_S_uart_40002000_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_uart_40002000_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_uart_40002000_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_uart_40002000_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_uart_40002000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_uart_40002000_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_uart_40002000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_uart_40002000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_uart_40002000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_uart_40002000_ORD 62 +#define DT_N_S_soc_S_uart_40002000_ORD_STR_SORTABLE 00062 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_uart_40002000_REQUIRES_ORDS \ + 6, /* /soc */ \ + 7, /* /soc/interrupt-controller@e000e100 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_uart_40002000_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_uart_40002000_EXISTS 1 +#define DT_N_INST_0_nordic_nrf_uarte DT_N_S_soc_S_uart_40002000 +#define DT_N_NODELABEL_uart0 DT_N_S_soc_S_uart_40002000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_uart_40002000_REG_NUM 1 +#define DT_N_S_soc_S_uart_40002000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_uart_40002000_REG_IDX_0_VAL_ADDRESS 1073750016 /* 0x40002000 */ +#define DT_N_S_soc_S_uart_40002000_REG_IDX_0_VAL_SIZE 4096 /* 0x1000 */ +#define DT_N_S_soc_S_uart_40002000_RANGES_NUM 0 +#define DT_N_S_soc_S_uart_40002000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_uart_40002000_IRQ_NUM 1 +#define DT_N_S_soc_S_uart_40002000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_uart_40002000_IRQ_IDX_0_VAL_irq 2 +#define DT_N_S_soc_S_uart_40002000_IRQ_IDX_0_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_uart_40002000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_uart_40002000_IRQ_IDX_0_VAL_priority 1 +#define DT_N_S_soc_S_uart_40002000_IRQ_IDX_0_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_uart_40002000_IRQ_IDX_0_CONTROLLER DT_N_S_soc_S_interrupt_controller_e000e100 +#define DT_N_S_soc_S_uart_40002000_IRQ_LEVEL 1 +#define DT_N_S_soc_S_uart_40002000_COMPAT_MATCHES_nordic_nrf_uarte 1 +#define DT_N_S_soc_S_uart_40002000_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_uart_40002000_COMPAT_VENDOR_IDX_0 "Nordic Semiconductor" +#define DT_N_S_soc_S_uart_40002000_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_uart_40002000_COMPAT_MODEL_IDX_0 "nrf-uarte" +#define DT_N_S_soc_S_uart_40002000_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_uart_40002000_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_uart_40002000_P_endtx_stoptx_supported 0 +#define DT_N_S_soc_S_uart_40002000_P_endtx_stoptx_supported_EXISTS 1 +#define DT_N_S_soc_S_uart_40002000_P_frame_timeout_supported 0 +#define DT_N_S_soc_S_uart_40002000_P_frame_timeout_supported_EXISTS 1 +#define DT_N_S_soc_S_uart_40002000_P_reg {1073750016 /* 0x40002000 */, 4096 /* 0x1000 */} +#define DT_N_S_soc_S_uart_40002000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_uart_40002000_P_reg_IDX_0 1073750016 +#define DT_N_S_soc_S_uart_40002000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_uart_40002000_P_reg_IDX_1 4096 +#define DT_N_S_soc_S_uart_40002000_P_reg_EXISTS 1 +#define DT_N_S_soc_S_uart_40002000_P_interrupts {2 /* 0x2 */, 1 /* 0x1 */} +#define DT_N_S_soc_S_uart_40002000_P_interrupts_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_uart_40002000_P_interrupts_IDX_0 2 +#define DT_N_S_soc_S_uart_40002000_P_interrupts_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_uart_40002000_P_interrupts_IDX_1 1 +#define DT_N_S_soc_S_uart_40002000_P_interrupts_EXISTS 1 +#define DT_N_S_soc_S_uart_40002000_P_disable_rx 0 +#define DT_N_S_soc_S_uart_40002000_P_disable_rx_EXISTS 1 +#define DT_N_S_soc_S_uart_40002000_P_hw_flow_control 0 +#define DT_N_S_soc_S_uart_40002000_P_hw_flow_control_EXISTS 1 +#define DT_N_S_soc_S_uart_40002000_P_status "disabled" +#define DT_N_S_soc_S_uart_40002000_P_status_STRING_UNQUOTED disabled +#define DT_N_S_soc_S_uart_40002000_P_status_STRING_TOKEN disabled +#define DT_N_S_soc_S_uart_40002000_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_soc_S_uart_40002000_P_status_IDX_0 "disabled" +#define DT_N_S_soc_S_uart_40002000_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_uart_40002000_P_status_IDX_0_ENUM_IDX 2 +#define DT_N_S_soc_S_uart_40002000_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_uart_40002000_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_uart_40002000, status, 0) +#define DT_N_S_soc_S_uart_40002000_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_uart_40002000, status, 0) +#define DT_N_S_soc_S_uart_40002000_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_uart_40002000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_uart_40002000_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_uart_40002000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_uart_40002000_P_status_LEN 1 +#define DT_N_S_soc_S_uart_40002000_P_status_EXISTS 1 +#define DT_N_S_soc_S_uart_40002000_P_compatible {"nordic,nrf-uarte"} +#define DT_N_S_soc_S_uart_40002000_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_uart_40002000_P_compatible_IDX_0 "nordic,nrf-uarte" +#define DT_N_S_soc_S_uart_40002000_P_compatible_IDX_0_STRING_UNQUOTED nordic,nrf-uarte +#define DT_N_S_soc_S_uart_40002000_P_compatible_IDX_0_STRING_TOKEN nordic_nrf_uarte +#define DT_N_S_soc_S_uart_40002000_P_compatible_IDX_0_STRING_UPPER_TOKEN NORDIC_NRF_UARTE +#define DT_N_S_soc_S_uart_40002000_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_uart_40002000, compatible, 0) +#define DT_N_S_soc_S_uart_40002000_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_uart_40002000, compatible, 0) +#define DT_N_S_soc_S_uart_40002000_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_uart_40002000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_uart_40002000_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_uart_40002000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_uart_40002000_P_compatible_LEN 1 +#define DT_N_S_soc_S_uart_40002000_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_uart_40002000_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_uart_40002000_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_uart_40002000_P_wakeup_source 0 +#define DT_N_S_soc_S_uart_40002000_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_uart_40002000_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_uart_40002000_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/uart@40028000 + * + * Node identifier: DT_N_S_soc_S_uart_40028000 + * + * Binding (compatible = nordic,nrf-uarte): + * $ZEPHYR_BASE/dts/bindings/serial/nordic,nrf-uarte.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_uart_40028000_PATH "/soc/uart@40028000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_uart_40028000_FULL_NAME "uart@40028000" +#define DT_N_S_soc_S_uart_40028000_FULL_NAME_UNQUOTED uart@40028000 +#define DT_N_S_soc_S_uart_40028000_FULL_NAME_TOKEN uart_40028000 +#define DT_N_S_soc_S_uart_40028000_FULL_NAME_UPPER_TOKEN UART_40028000 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_uart_40028000_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_uart_40028000_CHILD_IDX 48 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_uart_40028000_NODELABEL_NUM 1 +#define DT_N_S_soc_S_uart_40028000_FOREACH_NODELABEL(fn) fn(uart1) +#define DT_N_S_soc_S_uart_40028000_FOREACH_NODELABEL_VARGS(fn, ...) fn(uart1, __VA_ARGS__) +#define DT_N_S_soc_S_uart_40028000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_uart_40028000_CHILD_NUM 0 +#define DT_N_S_soc_S_uart_40028000_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_uart_40028000_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_uart_40028000_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_uart_40028000_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_uart_40028000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_uart_40028000_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_uart_40028000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_uart_40028000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_uart_40028000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_uart_40028000_ORD 63 +#define DT_N_S_soc_S_uart_40028000_ORD_STR_SORTABLE 00063 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_uart_40028000_REQUIRES_ORDS \ + 6, /* /soc */ \ + 7, /* /soc/interrupt-controller@e000e100 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_uart_40028000_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_uart_40028000_EXISTS 1 +#define DT_N_INST_1_nordic_nrf_uarte DT_N_S_soc_S_uart_40028000 +#define DT_N_NODELABEL_uart1 DT_N_S_soc_S_uart_40028000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_uart_40028000_REG_NUM 1 +#define DT_N_S_soc_S_uart_40028000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_uart_40028000_REG_IDX_0_VAL_ADDRESS 1073905664 /* 0x40028000 */ +#define DT_N_S_soc_S_uart_40028000_REG_IDX_0_VAL_SIZE 4096 /* 0x1000 */ +#define DT_N_S_soc_S_uart_40028000_RANGES_NUM 0 +#define DT_N_S_soc_S_uart_40028000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_uart_40028000_IRQ_NUM 1 +#define DT_N_S_soc_S_uart_40028000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_uart_40028000_IRQ_IDX_0_VAL_irq 40 +#define DT_N_S_soc_S_uart_40028000_IRQ_IDX_0_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_uart_40028000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_uart_40028000_IRQ_IDX_0_VAL_priority 1 +#define DT_N_S_soc_S_uart_40028000_IRQ_IDX_0_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_uart_40028000_IRQ_IDX_0_CONTROLLER DT_N_S_soc_S_interrupt_controller_e000e100 +#define DT_N_S_soc_S_uart_40028000_IRQ_LEVEL 1 +#define DT_N_S_soc_S_uart_40028000_COMPAT_MATCHES_nordic_nrf_uarte 1 +#define DT_N_S_soc_S_uart_40028000_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_uart_40028000_COMPAT_VENDOR_IDX_0 "Nordic Semiconductor" +#define DT_N_S_soc_S_uart_40028000_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_uart_40028000_COMPAT_MODEL_IDX_0 "nrf-uarte" +#define DT_N_S_soc_S_uart_40028000_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_uart_40028000_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_uart_40028000_P_endtx_stoptx_supported 0 +#define DT_N_S_soc_S_uart_40028000_P_endtx_stoptx_supported_EXISTS 1 +#define DT_N_S_soc_S_uart_40028000_P_frame_timeout_supported 0 +#define DT_N_S_soc_S_uart_40028000_P_frame_timeout_supported_EXISTS 1 +#define DT_N_S_soc_S_uart_40028000_P_reg {1073905664 /* 0x40028000 */, 4096 /* 0x1000 */} +#define DT_N_S_soc_S_uart_40028000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_uart_40028000_P_reg_IDX_0 1073905664 +#define DT_N_S_soc_S_uart_40028000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_uart_40028000_P_reg_IDX_1 4096 +#define DT_N_S_soc_S_uart_40028000_P_reg_EXISTS 1 +#define DT_N_S_soc_S_uart_40028000_P_interrupts {40 /* 0x28 */, 1 /* 0x1 */} +#define DT_N_S_soc_S_uart_40028000_P_interrupts_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_uart_40028000_P_interrupts_IDX_0 40 +#define DT_N_S_soc_S_uart_40028000_P_interrupts_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_uart_40028000_P_interrupts_IDX_1 1 +#define DT_N_S_soc_S_uart_40028000_P_interrupts_EXISTS 1 +#define DT_N_S_soc_S_uart_40028000_P_disable_rx 0 +#define DT_N_S_soc_S_uart_40028000_P_disable_rx_EXISTS 1 +#define DT_N_S_soc_S_uart_40028000_P_hw_flow_control 0 +#define DT_N_S_soc_S_uart_40028000_P_hw_flow_control_EXISTS 1 +#define DT_N_S_soc_S_uart_40028000_P_status "disabled" +#define DT_N_S_soc_S_uart_40028000_P_status_STRING_UNQUOTED disabled +#define DT_N_S_soc_S_uart_40028000_P_status_STRING_TOKEN disabled +#define DT_N_S_soc_S_uart_40028000_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_soc_S_uart_40028000_P_status_IDX_0 "disabled" +#define DT_N_S_soc_S_uart_40028000_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_uart_40028000_P_status_IDX_0_ENUM_IDX 2 +#define DT_N_S_soc_S_uart_40028000_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_uart_40028000_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_uart_40028000, status, 0) +#define DT_N_S_soc_S_uart_40028000_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_uart_40028000, status, 0) +#define DT_N_S_soc_S_uart_40028000_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_uart_40028000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_uart_40028000_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_uart_40028000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_uart_40028000_P_status_LEN 1 +#define DT_N_S_soc_S_uart_40028000_P_status_EXISTS 1 +#define DT_N_S_soc_S_uart_40028000_P_compatible {"nordic,nrf-uarte"} +#define DT_N_S_soc_S_uart_40028000_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_uart_40028000_P_compatible_IDX_0 "nordic,nrf-uarte" +#define DT_N_S_soc_S_uart_40028000_P_compatible_IDX_0_STRING_UNQUOTED nordic,nrf-uarte +#define DT_N_S_soc_S_uart_40028000_P_compatible_IDX_0_STRING_TOKEN nordic_nrf_uarte +#define DT_N_S_soc_S_uart_40028000_P_compatible_IDX_0_STRING_UPPER_TOKEN NORDIC_NRF_UARTE +#define DT_N_S_soc_S_uart_40028000_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_uart_40028000, compatible, 0) +#define DT_N_S_soc_S_uart_40028000_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_uart_40028000, compatible, 0) +#define DT_N_S_soc_S_uart_40028000_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_uart_40028000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_uart_40028000_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_uart_40028000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_uart_40028000_P_compatible_LEN 1 +#define DT_N_S_soc_S_uart_40028000_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_uart_40028000_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_uart_40028000_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_uart_40028000_P_wakeup_source 0 +#define DT_N_S_soc_S_uart_40028000_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_uart_40028000_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_uart_40028000_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/uicr@10001000 + * + * Node identifier: DT_N_S_soc_S_uicr_10001000 + * + * Binding (compatible = nordic,nrf-uicr): + * $ZEPHYR_BASE/dts/bindings/arm/nordic,nrf-uicr.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_uicr_10001000_PATH "/soc/uicr@10001000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_uicr_10001000_FULL_NAME "uicr@10001000" +#define DT_N_S_soc_S_uicr_10001000_FULL_NAME_UNQUOTED uicr@10001000 +#define DT_N_S_soc_S_uicr_10001000_FULL_NAME_TOKEN uicr_10001000 +#define DT_N_S_soc_S_uicr_10001000_FULL_NAME_UPPER_TOKEN UICR_10001000 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_uicr_10001000_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_uicr_10001000_CHILD_IDX 3 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_uicr_10001000_NODELABEL_NUM 1 +#define DT_N_S_soc_S_uicr_10001000_FOREACH_NODELABEL(fn) fn(uicr) +#define DT_N_S_soc_S_uicr_10001000_FOREACH_NODELABEL_VARGS(fn, ...) fn(uicr, __VA_ARGS__) +#define DT_N_S_soc_S_uicr_10001000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_uicr_10001000_CHILD_NUM 0 +#define DT_N_S_soc_S_uicr_10001000_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_uicr_10001000_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_uicr_10001000_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_uicr_10001000_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_uicr_10001000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_uicr_10001000_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_uicr_10001000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_uicr_10001000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_uicr_10001000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_uicr_10001000_ORD 64 +#define DT_N_S_soc_S_uicr_10001000_ORD_STR_SORTABLE 00064 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_uicr_10001000_REQUIRES_ORDS \ + 6, /* /soc */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_uicr_10001000_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_uicr_10001000_EXISTS 1 +#define DT_N_INST_0_nordic_nrf_uicr DT_N_S_soc_S_uicr_10001000 +#define DT_N_NODELABEL_uicr DT_N_S_soc_S_uicr_10001000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_uicr_10001000_REG_NUM 1 +#define DT_N_S_soc_S_uicr_10001000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_uicr_10001000_REG_IDX_0_VAL_ADDRESS 268439552 /* 0x10001000 */ +#define DT_N_S_soc_S_uicr_10001000_REG_IDX_0_VAL_SIZE 4096 /* 0x1000 */ +#define DT_N_S_soc_S_uicr_10001000_RANGES_NUM 0 +#define DT_N_S_soc_S_uicr_10001000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_uicr_10001000_IRQ_NUM 0 +#define DT_N_S_soc_S_uicr_10001000_IRQ_LEVEL 0 +#define DT_N_S_soc_S_uicr_10001000_COMPAT_MATCHES_nordic_nrf_uicr 1 +#define DT_N_S_soc_S_uicr_10001000_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_uicr_10001000_COMPAT_VENDOR_IDX_0 "Nordic Semiconductor" +#define DT_N_S_soc_S_uicr_10001000_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_uicr_10001000_COMPAT_MODEL_IDX_0 "nrf-uicr" +#define DT_N_S_soc_S_uicr_10001000_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_uicr_10001000_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_uicr_10001000_P_reg {268439552 /* 0x10001000 */, 4096 /* 0x1000 */} +#define DT_N_S_soc_S_uicr_10001000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_uicr_10001000_P_reg_IDX_0 268439552 +#define DT_N_S_soc_S_uicr_10001000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_uicr_10001000_P_reg_IDX_1 4096 +#define DT_N_S_soc_S_uicr_10001000_P_reg_EXISTS 1 +#define DT_N_S_soc_S_uicr_10001000_P_nfct_pins_as_gpios 1 +#define DT_N_S_soc_S_uicr_10001000_P_nfct_pins_as_gpios_EXISTS 1 +#define DT_N_S_soc_S_uicr_10001000_P_gpio_as_nreset 1 +#define DT_N_S_soc_S_uicr_10001000_P_gpio_as_nreset_EXISTS 1 +#define DT_N_S_soc_S_uicr_10001000_P_status "okay" +#define DT_N_S_soc_S_uicr_10001000_P_status_STRING_UNQUOTED okay +#define DT_N_S_soc_S_uicr_10001000_P_status_STRING_TOKEN okay +#define DT_N_S_soc_S_uicr_10001000_P_status_STRING_UPPER_TOKEN OKAY +#define DT_N_S_soc_S_uicr_10001000_P_status_IDX_0 "okay" +#define DT_N_S_soc_S_uicr_10001000_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_uicr_10001000_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_uicr_10001000_P_status_IDX_0_ENUM_VAL_okay_EXISTS 1 +#define DT_N_S_soc_S_uicr_10001000_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_uicr_10001000, status, 0) +#define DT_N_S_soc_S_uicr_10001000_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_uicr_10001000, status, 0) +#define DT_N_S_soc_S_uicr_10001000_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_uicr_10001000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_uicr_10001000_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_uicr_10001000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_uicr_10001000_P_status_LEN 1 +#define DT_N_S_soc_S_uicr_10001000_P_status_EXISTS 1 +#define DT_N_S_soc_S_uicr_10001000_P_compatible {"nordic,nrf-uicr"} +#define DT_N_S_soc_S_uicr_10001000_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_uicr_10001000_P_compatible_IDX_0 "nordic,nrf-uicr" +#define DT_N_S_soc_S_uicr_10001000_P_compatible_IDX_0_STRING_UNQUOTED nordic,nrf-uicr +#define DT_N_S_soc_S_uicr_10001000_P_compatible_IDX_0_STRING_TOKEN nordic_nrf_uicr +#define DT_N_S_soc_S_uicr_10001000_P_compatible_IDX_0_STRING_UPPER_TOKEN NORDIC_NRF_UICR +#define DT_N_S_soc_S_uicr_10001000_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_uicr_10001000, compatible, 0) +#define DT_N_S_soc_S_uicr_10001000_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_uicr_10001000, compatible, 0) +#define DT_N_S_soc_S_uicr_10001000_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_uicr_10001000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_uicr_10001000_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_uicr_10001000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_uicr_10001000_P_compatible_LEN 1 +#define DT_N_S_soc_S_uicr_10001000_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_uicr_10001000_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_uicr_10001000_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_uicr_10001000_P_wakeup_source 0 +#define DT_N_S_soc_S_uicr_10001000_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_uicr_10001000_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_uicr_10001000_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/watchdog@40010000 + * + * Node identifier: DT_N_S_soc_S_watchdog_40010000 + * + * Binding (compatible = nordic,nrf-wdt): + * $ZEPHYR_BASE/dts/bindings/watchdog/nordic,nrf-wdt.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_watchdog_40010000_PATH "/soc/watchdog@40010000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_watchdog_40010000_FULL_NAME "watchdog@40010000" +#define DT_N_S_soc_S_watchdog_40010000_FULL_NAME_UNQUOTED watchdog@40010000 +#define DT_N_S_soc_S_watchdog_40010000_FULL_NAME_TOKEN watchdog_40010000 +#define DT_N_S_soc_S_watchdog_40010000_FULL_NAME_UPPER_TOKEN WATCHDOG_40010000 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_watchdog_40010000_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_watchdog_40010000_CHILD_IDX 24 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_watchdog_40010000_NODELABEL_NUM 2 +#define DT_N_S_soc_S_watchdog_40010000_FOREACH_NODELABEL(fn) fn(wdt) fn(wdt0) +#define DT_N_S_soc_S_watchdog_40010000_FOREACH_NODELABEL_VARGS(fn, ...) fn(wdt, __VA_ARGS__) fn(wdt0, __VA_ARGS__) +#define DT_N_S_soc_S_watchdog_40010000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_watchdog_40010000_CHILD_NUM 0 +#define DT_N_S_soc_S_watchdog_40010000_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_watchdog_40010000_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_watchdog_40010000_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_watchdog_40010000_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_watchdog_40010000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_watchdog_40010000_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_watchdog_40010000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_watchdog_40010000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_watchdog_40010000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_watchdog_40010000_ORD 65 +#define DT_N_S_soc_S_watchdog_40010000_ORD_STR_SORTABLE 00065 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_watchdog_40010000_REQUIRES_ORDS \ + 6, /* /soc */ \ + 7, /* /soc/interrupt-controller@e000e100 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_watchdog_40010000_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_watchdog_40010000_EXISTS 1 +#define DT_N_ALIAS_watchdog0 DT_N_S_soc_S_watchdog_40010000 +#define DT_N_INST_0_nordic_nrf_wdt DT_N_S_soc_S_watchdog_40010000 +#define DT_N_NODELABEL_wdt DT_N_S_soc_S_watchdog_40010000 +#define DT_N_NODELABEL_wdt0 DT_N_S_soc_S_watchdog_40010000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_watchdog_40010000_REG_NUM 1 +#define DT_N_S_soc_S_watchdog_40010000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_watchdog_40010000_REG_IDX_0_VAL_ADDRESS 1073807360 /* 0x40010000 */ +#define DT_N_S_soc_S_watchdog_40010000_REG_IDX_0_VAL_SIZE 4096 /* 0x1000 */ +#define DT_N_S_soc_S_watchdog_40010000_RANGES_NUM 0 +#define DT_N_S_soc_S_watchdog_40010000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_watchdog_40010000_IRQ_NUM 1 +#define DT_N_S_soc_S_watchdog_40010000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_watchdog_40010000_IRQ_IDX_0_VAL_irq 16 +#define DT_N_S_soc_S_watchdog_40010000_IRQ_IDX_0_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_watchdog_40010000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_watchdog_40010000_IRQ_IDX_0_VAL_priority 1 +#define DT_N_S_soc_S_watchdog_40010000_IRQ_IDX_0_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_watchdog_40010000_IRQ_IDX_0_CONTROLLER DT_N_S_soc_S_interrupt_controller_e000e100 +#define DT_N_S_soc_S_watchdog_40010000_IRQ_LEVEL 1 +#define DT_N_S_soc_S_watchdog_40010000_COMPAT_MATCHES_nordic_nrf_wdt 1 +#define DT_N_S_soc_S_watchdog_40010000_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_watchdog_40010000_COMPAT_VENDOR_IDX_0 "Nordic Semiconductor" +#define DT_N_S_soc_S_watchdog_40010000_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_watchdog_40010000_COMPAT_MODEL_IDX_0 "nrf-wdt" +#define DT_N_S_soc_S_watchdog_40010000_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_watchdog_40010000_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_watchdog_40010000_P_reg {1073807360 /* 0x40010000 */, 4096 /* 0x1000 */} +#define DT_N_S_soc_S_watchdog_40010000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_watchdog_40010000_P_reg_IDX_0 1073807360 +#define DT_N_S_soc_S_watchdog_40010000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_watchdog_40010000_P_reg_IDX_1 4096 +#define DT_N_S_soc_S_watchdog_40010000_P_reg_EXISTS 1 +#define DT_N_S_soc_S_watchdog_40010000_P_interrupts {16 /* 0x10 */, 1 /* 0x1 */} +#define DT_N_S_soc_S_watchdog_40010000_P_interrupts_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_watchdog_40010000_P_interrupts_IDX_0 16 +#define DT_N_S_soc_S_watchdog_40010000_P_interrupts_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_watchdog_40010000_P_interrupts_IDX_1 1 +#define DT_N_S_soc_S_watchdog_40010000_P_interrupts_EXISTS 1 +#define DT_N_S_soc_S_watchdog_40010000_P_status "okay" +#define DT_N_S_soc_S_watchdog_40010000_P_status_STRING_UNQUOTED okay +#define DT_N_S_soc_S_watchdog_40010000_P_status_STRING_TOKEN okay +#define DT_N_S_soc_S_watchdog_40010000_P_status_STRING_UPPER_TOKEN OKAY +#define DT_N_S_soc_S_watchdog_40010000_P_status_IDX_0 "okay" +#define DT_N_S_soc_S_watchdog_40010000_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_watchdog_40010000_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_watchdog_40010000_P_status_IDX_0_ENUM_VAL_okay_EXISTS 1 +#define DT_N_S_soc_S_watchdog_40010000_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_watchdog_40010000, status, 0) +#define DT_N_S_soc_S_watchdog_40010000_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_watchdog_40010000, status, 0) +#define DT_N_S_soc_S_watchdog_40010000_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_watchdog_40010000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_watchdog_40010000_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_watchdog_40010000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_watchdog_40010000_P_status_LEN 1 +#define DT_N_S_soc_S_watchdog_40010000_P_status_EXISTS 1 +#define DT_N_S_soc_S_watchdog_40010000_P_compatible {"nordic,nrf-wdt"} +#define DT_N_S_soc_S_watchdog_40010000_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_watchdog_40010000_P_compatible_IDX_0 "nordic,nrf-wdt" +#define DT_N_S_soc_S_watchdog_40010000_P_compatible_IDX_0_STRING_UNQUOTED nordic,nrf-wdt +#define DT_N_S_soc_S_watchdog_40010000_P_compatible_IDX_0_STRING_TOKEN nordic_nrf_wdt +#define DT_N_S_soc_S_watchdog_40010000_P_compatible_IDX_0_STRING_UPPER_TOKEN NORDIC_NRF_WDT +#define DT_N_S_soc_S_watchdog_40010000_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_watchdog_40010000, compatible, 0) +#define DT_N_S_soc_S_watchdog_40010000_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_watchdog_40010000, compatible, 0) +#define DT_N_S_soc_S_watchdog_40010000_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_watchdog_40010000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_watchdog_40010000_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_watchdog_40010000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_watchdog_40010000_P_compatible_LEN 1 +#define DT_N_S_soc_S_watchdog_40010000_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_watchdog_40010000_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_watchdog_40010000_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_watchdog_40010000_P_wakeup_source 0 +#define DT_N_S_soc_S_watchdog_40010000_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_watchdog_40010000_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_watchdog_40010000_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/adc@40007000/channel@6 + * + * Node identifier: DT_N_S_soc_S_adc_40007000_S_channel_6 + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_adc_40007000_S_channel_6_PATH "/soc/adc@40007000/channel@6" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_adc_40007000_S_channel_6_FULL_NAME "channel@6" +#define DT_N_S_soc_S_adc_40007000_S_channel_6_FULL_NAME_UNQUOTED channel@6 +#define DT_N_S_soc_S_adc_40007000_S_channel_6_FULL_NAME_TOKEN channel_6 +#define DT_N_S_soc_S_adc_40007000_S_channel_6_FULL_NAME_UPPER_TOKEN CHANNEL_6 + +/* Node parent (/soc/adc@40007000) identifier: */ +#define DT_N_S_soc_S_adc_40007000_S_channel_6_PARENT DT_N_S_soc_S_adc_40007000 + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_adc_40007000_S_channel_6_CHILD_IDX 0 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_adc_40007000_S_channel_6_NODELABEL_NUM 0 +#define DT_N_S_soc_S_adc_40007000_S_channel_6_FOREACH_NODELABEL(fn) +#define DT_N_S_soc_S_adc_40007000_S_channel_6_FOREACH_NODELABEL_VARGS(fn, ...) +#define DT_N_S_soc_S_adc_40007000_S_channel_6_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc_S_adc_40007000) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_adc_40007000_S_channel_6_CHILD_NUM 0 +#define DT_N_S_soc_S_adc_40007000_S_channel_6_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_adc_40007000_S_channel_6_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_adc_40007000_S_channel_6_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_adc_40007000_S_channel_6_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_adc_40007000_S_channel_6_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_adc_40007000_S_channel_6_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_adc_40007000_S_channel_6_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_adc_40007000_S_channel_6_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_adc_40007000_S_channel_6_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_adc_40007000_S_channel_6_ORD 66 +#define DT_N_S_soc_S_adc_40007000_S_channel_6_ORD_STR_SORTABLE 00066 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_adc_40007000_S_channel_6_REQUIRES_ORDS \ + 10, /* /soc/adc@40007000 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_adc_40007000_S_channel_6_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_adc_40007000_S_channel_6_EXISTS 1 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_adc_40007000_S_channel_6_REG_NUM 1 +#define DT_N_S_soc_S_adc_40007000_S_channel_6_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_adc_40007000_S_channel_6_REG_IDX_0_VAL_ADDRESS 6 /* 0x6 */ +#define DT_N_S_soc_S_adc_40007000_S_channel_6_RANGES_NUM 0 +#define DT_N_S_soc_S_adc_40007000_S_channel_6_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_adc_40007000_S_channel_6_IRQ_NUM 0 +#define DT_N_S_soc_S_adc_40007000_S_channel_6_IRQ_LEVEL 0 +#define DT_N_S_soc_S_adc_40007000_S_channel_6_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_adc_40007000_S_channel_6_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_adc_40007000_S_channel_6_P_reg {6 /* 0x6 */} +#define DT_N_S_soc_S_adc_40007000_S_channel_6_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_adc_40007000_S_channel_6_P_reg_IDX_0 6 +#define DT_N_S_soc_S_adc_40007000_S_channel_6_P_reg_EXISTS 1 +#define DT_N_S_soc_S_adc_40007000_S_channel_6_P_zephyr_gain "ADC_GAIN_1_6" +#define DT_N_S_soc_S_adc_40007000_S_channel_6_P_zephyr_gain_STRING_UNQUOTED ADC_GAIN_1_6 +#define DT_N_S_soc_S_adc_40007000_S_channel_6_P_zephyr_gain_STRING_TOKEN ADC_GAIN_1_6 +#define DT_N_S_soc_S_adc_40007000_S_channel_6_P_zephyr_gain_STRING_UPPER_TOKEN ADC_GAIN_1_6 +#define DT_N_S_soc_S_adc_40007000_S_channel_6_P_zephyr_gain_IDX_0 "ADC_GAIN_1_6" +#define DT_N_S_soc_S_adc_40007000_S_channel_6_P_zephyr_gain_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_adc_40007000_S_channel_6_P_zephyr_gain_IDX_0_ENUM_IDX 0 +#define DT_N_S_soc_S_adc_40007000_S_channel_6_P_zephyr_gain_IDX_0_ENUM_VAL_ADC_GAIN_1_6_EXISTS 1 +#define DT_N_S_soc_S_adc_40007000_S_channel_6_P_zephyr_gain_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_adc_40007000_S_channel_6, zephyr_gain, 0) +#define DT_N_S_soc_S_adc_40007000_S_channel_6_P_zephyr_gain_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_adc_40007000_S_channel_6, zephyr_gain, 0) +#define DT_N_S_soc_S_adc_40007000_S_channel_6_P_zephyr_gain_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_adc_40007000_S_channel_6, zephyr_gain, 0, __VA_ARGS__) +#define DT_N_S_soc_S_adc_40007000_S_channel_6_P_zephyr_gain_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_adc_40007000_S_channel_6, zephyr_gain, 0, __VA_ARGS__) +#define DT_N_S_soc_S_adc_40007000_S_channel_6_P_zephyr_gain_LEN 1 +#define DT_N_S_soc_S_adc_40007000_S_channel_6_P_zephyr_gain_EXISTS 1 +#define DT_N_S_soc_S_adc_40007000_S_channel_6_P_zephyr_reference "ADC_REF_INTERNAL" +#define DT_N_S_soc_S_adc_40007000_S_channel_6_P_zephyr_reference_STRING_UNQUOTED ADC_REF_INTERNAL +#define DT_N_S_soc_S_adc_40007000_S_channel_6_P_zephyr_reference_STRING_TOKEN ADC_REF_INTERNAL +#define DT_N_S_soc_S_adc_40007000_S_channel_6_P_zephyr_reference_STRING_UPPER_TOKEN ADC_REF_INTERNAL +#define DT_N_S_soc_S_adc_40007000_S_channel_6_P_zephyr_reference_IDX_0 "ADC_REF_INTERNAL" +#define DT_N_S_soc_S_adc_40007000_S_channel_6_P_zephyr_reference_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_adc_40007000_S_channel_6_P_zephyr_reference_IDX_0_ENUM_IDX 4 +#define DT_N_S_soc_S_adc_40007000_S_channel_6_P_zephyr_reference_IDX_0_ENUM_VAL_ADC_REF_INTERNAL_EXISTS 1 +#define DT_N_S_soc_S_adc_40007000_S_channel_6_P_zephyr_reference_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_adc_40007000_S_channel_6, zephyr_reference, 0) +#define DT_N_S_soc_S_adc_40007000_S_channel_6_P_zephyr_reference_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_adc_40007000_S_channel_6, zephyr_reference, 0) +#define DT_N_S_soc_S_adc_40007000_S_channel_6_P_zephyr_reference_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_adc_40007000_S_channel_6, zephyr_reference, 0, __VA_ARGS__) +#define DT_N_S_soc_S_adc_40007000_S_channel_6_P_zephyr_reference_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_adc_40007000_S_channel_6, zephyr_reference, 0, __VA_ARGS__) +#define DT_N_S_soc_S_adc_40007000_S_channel_6_P_zephyr_reference_LEN 1 +#define DT_N_S_soc_S_adc_40007000_S_channel_6_P_zephyr_reference_EXISTS 1 +#define DT_N_S_soc_S_adc_40007000_S_channel_6_P_zephyr_acquisition_time 0 +#define DT_N_S_soc_S_adc_40007000_S_channel_6_P_zephyr_acquisition_time_EXISTS 1 +#define DT_N_S_soc_S_adc_40007000_S_channel_6_P_zephyr_differential 0 +#define DT_N_S_soc_S_adc_40007000_S_channel_6_P_zephyr_differential_EXISTS 1 +#define DT_N_S_soc_S_adc_40007000_S_channel_6_P_zephyr_input_positive 7 +#define DT_N_S_soc_S_adc_40007000_S_channel_6_P_zephyr_input_positive_EXISTS 1 +#define DT_N_S_soc_S_adc_40007000_S_channel_6_P_zephyr_resolution 12 +#define DT_N_S_soc_S_adc_40007000_S_channel_6_P_zephyr_resolution_EXISTS 1 + +/* + * Devicetree node: /soc/flash-controller@4001e000 + * + * Node identifier: DT_N_S_soc_S_flash_controller_4001e000 + * + * Binding (compatible = nordic,nrf52-flash-controller): + * $ZEPHYR_BASE/dts/bindings/flash_controller/nordic,nrf52-flash-controller.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_flash_controller_4001e000_PATH "/soc/flash-controller@4001e000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_flash_controller_4001e000_FULL_NAME "flash-controller@4001e000" +#define DT_N_S_soc_S_flash_controller_4001e000_FULL_NAME_UNQUOTED flash-controller@4001e000 +#define DT_N_S_soc_S_flash_controller_4001e000_FULL_NAME_TOKEN flash_controller_4001e000 +#define DT_N_S_soc_S_flash_controller_4001e000_FULL_NAME_UPPER_TOKEN FLASH_CONTROLLER_4001E000 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_flash_controller_4001e000_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_flash_controller_4001e000_CHILD_IDX 39 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_flash_controller_4001e000_NODELABEL_NUM 1 +#define DT_N_S_soc_S_flash_controller_4001e000_FOREACH_NODELABEL(fn) fn(flash_controller) +#define DT_N_S_soc_S_flash_controller_4001e000_FOREACH_NODELABEL_VARGS(fn, ...) fn(flash_controller, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_4001e000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_flash_controller_4001e000_CHILD_NUM 1 +#define DT_N_S_soc_S_flash_controller_4001e000_CHILD_NUM_STATUS_OKAY 1 +#define DT_N_S_soc_S_flash_controller_4001e000_FOREACH_CHILD(fn) fn(DT_N_S_soc_S_flash_controller_4001e000_S_flash_0) +#define DT_N_S_soc_S_flash_controller_4001e000_FOREACH_CHILD_SEP(fn, sep) fn(DT_N_S_soc_S_flash_controller_4001e000_S_flash_0) +#define DT_N_S_soc_S_flash_controller_4001e000_FOREACH_CHILD_VARGS(fn, ...) fn(DT_N_S_soc_S_flash_controller_4001e000_S_flash_0, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_4001e000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_flash_controller_4001e000_S_flash_0, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_4001e000_FOREACH_CHILD_STATUS_OKAY(fn) fn(DT_N_S_soc_S_flash_controller_4001e000_S_flash_0) +#define DT_N_S_soc_S_flash_controller_4001e000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) fn(DT_N_S_soc_S_flash_controller_4001e000_S_flash_0) +#define DT_N_S_soc_S_flash_controller_4001e000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) fn(DT_N_S_soc_S_flash_controller_4001e000_S_flash_0, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_4001e000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_flash_controller_4001e000_S_flash_0, __VA_ARGS__) + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_flash_controller_4001e000_ORD 67 +#define DT_N_S_soc_S_flash_controller_4001e000_ORD_STR_SORTABLE 00067 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_flash_controller_4001e000_REQUIRES_ORDS \ + 6, /* /soc */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_flash_controller_4001e000_SUPPORTS_ORDS \ + 68, /* /soc/flash-controller@4001e000/flash@0 */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_flash_controller_4001e000_EXISTS 1 +#define DT_N_INST_0_nordic_nrf52_flash_controller DT_N_S_soc_S_flash_controller_4001e000 +#define DT_N_NODELABEL_flash_controller DT_N_S_soc_S_flash_controller_4001e000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_flash_controller_4001e000_REG_NUM 1 +#define DT_N_S_soc_S_flash_controller_4001e000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_4001e000_REG_IDX_0_VAL_ADDRESS 1073864704 /* 0x4001e000 */ +#define DT_N_S_soc_S_flash_controller_4001e000_REG_IDX_0_VAL_SIZE 4096 /* 0x1000 */ +#define DT_N_S_soc_S_flash_controller_4001e000_RANGES_NUM 0 +#define DT_N_S_soc_S_flash_controller_4001e000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_flash_controller_4001e000_IRQ_NUM 0 +#define DT_N_S_soc_S_flash_controller_4001e000_IRQ_LEVEL 0 +#define DT_N_S_soc_S_flash_controller_4001e000_COMPAT_MATCHES_nordic_nrf52_flash_controller 1 +#define DT_N_S_soc_S_flash_controller_4001e000_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_4001e000_COMPAT_VENDOR_IDX_0 "Nordic Semiconductor" +#define DT_N_S_soc_S_flash_controller_4001e000_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_4001e000_COMPAT_MODEL_IDX_0 "nrf52-flash-controller" +#define DT_N_S_soc_S_flash_controller_4001e000_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_flash_controller_4001e000_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_flash_controller_4001e000_P_partial_erase 1 +#define DT_N_S_soc_S_flash_controller_4001e000_P_partial_erase_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_4001e000_P_reg {1073864704 /* 0x4001e000 */, 4096 /* 0x1000 */} +#define DT_N_S_soc_S_flash_controller_4001e000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_4001e000_P_reg_IDX_0 1073864704 +#define DT_N_S_soc_S_flash_controller_4001e000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_4001e000_P_reg_IDX_1 4096 +#define DT_N_S_soc_S_flash_controller_4001e000_P_reg_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_4001e000_P_compatible {"nordic,nrf52-flash-controller"} +#define DT_N_S_soc_S_flash_controller_4001e000_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_4001e000_P_compatible_IDX_0 "nordic,nrf52-flash-controller" +#define DT_N_S_soc_S_flash_controller_4001e000_P_compatible_IDX_0_STRING_UNQUOTED nordic,nrf52-flash-controller +#define DT_N_S_soc_S_flash_controller_4001e000_P_compatible_IDX_0_STRING_TOKEN nordic_nrf52_flash_controller +#define DT_N_S_soc_S_flash_controller_4001e000_P_compatible_IDX_0_STRING_UPPER_TOKEN NORDIC_NRF52_FLASH_CONTROLLER +#define DT_N_S_soc_S_flash_controller_4001e000_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_flash_controller_4001e000, compatible, 0) +#define DT_N_S_soc_S_flash_controller_4001e000_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_flash_controller_4001e000, compatible, 0) +#define DT_N_S_soc_S_flash_controller_4001e000_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_flash_controller_4001e000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_4001e000_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_flash_controller_4001e000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_4001e000_P_compatible_LEN 1 +#define DT_N_S_soc_S_flash_controller_4001e000_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_4001e000_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_flash_controller_4001e000_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_4001e000_P_wakeup_source 0 +#define DT_N_S_soc_S_flash_controller_4001e000_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_4001e000_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_flash_controller_4001e000_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/flash-controller@4001e000/flash@0 + * + * Node identifier: DT_N_S_soc_S_flash_controller_4001e000_S_flash_0 + * + * Binding (compatible = soc-nv-flash): + * $ZEPHYR_BASE/dts/bindings/mtd/soc-nv-flash.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_PATH "/soc/flash-controller@4001e000/flash@0" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_FULL_NAME "flash@0" +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_FULL_NAME_UNQUOTED flash@0 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_FULL_NAME_TOKEN flash_0 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_FULL_NAME_UPPER_TOKEN FLASH_0 + +/* Node parent (/soc/flash-controller@4001e000) identifier: */ +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_PARENT DT_N_S_soc_S_flash_controller_4001e000 + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_CHILD_IDX 0 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_NODELABEL_NUM 1 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_FOREACH_NODELABEL(fn) fn(flash0) +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_FOREACH_NODELABEL_VARGS(fn, ...) fn(flash0, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc_S_flash_controller_4001e000) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_CHILD_NUM 1 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_CHILD_NUM_STATUS_OKAY 1 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_FOREACH_CHILD(fn) fn(DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions) +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_FOREACH_CHILD_SEP(fn, sep) fn(DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions) +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_FOREACH_CHILD_VARGS(fn, ...) fn(DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_FOREACH_CHILD_STATUS_OKAY(fn) fn(DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions) +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) fn(DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions) +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) fn(DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions, __VA_ARGS__) + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_ORD 68 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_ORD_STR_SORTABLE 00068 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_REQUIRES_ORDS \ + 67, /* /soc/flash-controller@4001e000 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_SUPPORTS_ORDS \ + 69, /* /soc/flash-controller@4001e000/flash@0/partitions */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_EXISTS 1 +#define DT_N_INST_0_soc_nv_flash DT_N_S_soc_S_flash_controller_4001e000_S_flash_0 +#define DT_N_NODELABEL_flash0 DT_N_S_soc_S_flash_controller_4001e000_S_flash_0 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_REG_NUM 1 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_REG_IDX_0_VAL_ADDRESS 0 /* 0x0 */ +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_REG_IDX_0_VAL_SIZE 524288 /* 0x80000 */ +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_RANGES_NUM 0 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_IRQ_NUM 0 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_IRQ_LEVEL 0 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_COMPAT_MATCHES_soc_nv_flash 1 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_P_erase_block_size 4096 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_P_erase_block_size_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_P_write_block_size 4 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_P_write_block_size_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_P_compatible {"soc-nv-flash"} +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_P_compatible_IDX_0 "soc-nv-flash" +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_P_compatible_IDX_0_STRING_UNQUOTED soc-nv-flash +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_P_compatible_IDX_0_STRING_TOKEN soc_nv_flash +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_P_compatible_IDX_0_STRING_UPPER_TOKEN SOC_NV_FLASH +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_flash_controller_4001e000_S_flash_0, compatible, 0) +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_flash_controller_4001e000_S_flash_0, compatible, 0) +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_flash_controller_4001e000_S_flash_0, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_flash_controller_4001e000_S_flash_0, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_P_compatible_LEN 1 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_P_reg {0 /* 0x0 */, 524288 /* 0x80000 */} +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_P_reg_IDX_0 0 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_P_reg_IDX_1 524288 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_P_reg_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_P_wakeup_source 0 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/flash-controller@4001e000/flash@0/partitions + * + * Node identifier: DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions + * + * Binding (compatible = fixed-partitions): + * $ZEPHYR_BASE/dts/bindings/mtd/fixed-partitions.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_PATH "/soc/flash-controller@4001e000/flash@0/partitions" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_FULL_NAME "partitions" +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_FULL_NAME_UNQUOTED partitions +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_FULL_NAME_TOKEN partitions +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_FULL_NAME_UPPER_TOKEN PARTITIONS + +/* Node parent (/soc/flash-controller@4001e000/flash@0) identifier: */ +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_PARENT DT_N_S_soc_S_flash_controller_4001e000_S_flash_0 + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_CHILD_IDX 0 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_NODELABEL_NUM 0 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_FOREACH_NODELABEL(fn) +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_FOREACH_NODELABEL_VARGS(fn, ...) +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc_S_flash_controller_4001e000_S_flash_0) fn(DT_N_S_soc_S_flash_controller_4001e000) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_CHILD_NUM 4 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_CHILD_NUM_STATUS_OKAY 4 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_FOREACH_CHILD(fn) fn(DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_0) fn(DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_c000) fn(DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_43000) fn(DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_7a000) +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_FOREACH_CHILD_SEP(fn, sep) fn(DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_0) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_c000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_43000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_7a000) +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_FOREACH_CHILD_VARGS(fn, ...) fn(DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_0, __VA_ARGS__) fn(DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_c000, __VA_ARGS__) fn(DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_43000, __VA_ARGS__) fn(DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_7a000, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_0, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_c000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_43000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_7a000, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_FOREACH_CHILD_STATUS_OKAY(fn) fn(DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_0) fn(DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_c000) fn(DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_43000) fn(DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_7a000) +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) fn(DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_0) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_c000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_43000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_7a000) +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) fn(DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_0, __VA_ARGS__) fn(DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_c000, __VA_ARGS__) fn(DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_43000, __VA_ARGS__) fn(DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_7a000, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_0, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_c000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_43000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_7a000, __VA_ARGS__) + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_ORD 69 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_ORD_STR_SORTABLE 00069 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_REQUIRES_ORDS \ + 68, /* /soc/flash-controller@4001e000/flash@0 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_SUPPORTS_ORDS \ + 70, /* /soc/flash-controller@4001e000/flash@0/partitions/partition@0 */ \ + 71, /* /soc/flash-controller@4001e000/flash@0/partitions/partition@c000 */ \ + 72, /* /soc/flash-controller@4001e000/flash@0/partitions/partition@43000 */ \ + 73, /* /soc/flash-controller@4001e000/flash@0/partitions/partition@7a000 */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_EXISTS 1 +#define DT_N_INST_0_fixed_partitions DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_REG_NUM 0 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_RANGES_NUM 0 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_IRQ_NUM 0 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_IRQ_LEVEL 0 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_COMPAT_MATCHES_fixed_partitions 1 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_PINCTRL_NUM 0 + +/* (No generic property macros) */ + +/* + * Devicetree node: /soc/flash-controller@4001e000/flash@0/partitions/partition@0 + * + * Node identifier: DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_0 + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_0_PATH "/soc/flash-controller@4001e000/flash@0/partitions/partition@0" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_0_FULL_NAME "partition@0" +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_0_FULL_NAME_UNQUOTED partition@0 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_0_FULL_NAME_TOKEN partition_0 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_0_FULL_NAME_UPPER_TOKEN PARTITION_0 + +/* Node parent (/soc/flash-controller@4001e000/flash@0/partitions) identifier: */ +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_0_PARENT DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_0_CHILD_IDX 0 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_0_NODELABEL_NUM 1 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_0_FOREACH_NODELABEL(fn) fn(boot_partition) +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_0_FOREACH_NODELABEL_VARGS(fn, ...) fn(boot_partition, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_0_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions) fn(DT_N_S_soc_S_flash_controller_4001e000_S_flash_0) fn(DT_N_S_soc_S_flash_controller_4001e000) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_0_CHILD_NUM 0 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_0_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_0_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_0_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_0_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_0_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_0_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_0_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_0_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_0_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_0_ORD 70 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_0_ORD_STR_SORTABLE 00070 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_0_REQUIRES_ORDS \ + 69, /* /soc/flash-controller@4001e000/flash@0/partitions */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_0_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_0_EXISTS 1 +#define DT_N_NODELABEL_boot_partition DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_0 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_0_REG_NUM 1 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_0_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_0_REG_IDX_0_VAL_ADDRESS 0 /* 0x0 */ +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_0_REG_IDX_0_VAL_SIZE 49152 /* 0xc000 */ +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_0_RANGES_NUM 0 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_0_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_0_IRQ_NUM 0 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_0_IRQ_LEVEL 0 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_0_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_0_PINCTRL_NUM 0 + +/* fixed-partitions identifier: */ +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_0_PARTITION_ID 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_0_P_label "mcuboot" +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_0_P_label_STRING_UNQUOTED mcuboot +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_0_P_label_STRING_TOKEN mcuboot +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_0_P_label_STRING_UPPER_TOKEN MCUBOOT +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_0_P_label_IDX_0 "mcuboot" +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_0_P_label_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_0_P_label_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_0, label, 0) +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_0_P_label_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_0, label, 0) +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_0_P_label_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_0, label, 0, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_0_P_label_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_0, label, 0, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_0_P_label_LEN 1 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_0_P_label_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_0_P_read_only 0 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_0_P_read_only_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_0_P_reg {0 /* 0x0 */, 49152 /* 0xc000 */} +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_0_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_0_P_reg_IDX_0 0 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_0_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_0_P_reg_IDX_1 49152 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_0_P_reg_EXISTS 1 + +/* + * Devicetree node: /soc/flash-controller@4001e000/flash@0/partitions/partition@c000 + * + * Node identifier: DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_c000 + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_c000_PATH "/soc/flash-controller@4001e000/flash@0/partitions/partition@c000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_c000_FULL_NAME "partition@c000" +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_c000_FULL_NAME_UNQUOTED partition@c000 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_c000_FULL_NAME_TOKEN partition_c000 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_c000_FULL_NAME_UPPER_TOKEN PARTITION_C000 + +/* Node parent (/soc/flash-controller@4001e000/flash@0/partitions) identifier: */ +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_c000_PARENT DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_c000_CHILD_IDX 1 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_c000_NODELABEL_NUM 1 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_c000_FOREACH_NODELABEL(fn) fn(slot0_partition) +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_c000_FOREACH_NODELABEL_VARGS(fn, ...) fn(slot0_partition, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_c000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions) fn(DT_N_S_soc_S_flash_controller_4001e000_S_flash_0) fn(DT_N_S_soc_S_flash_controller_4001e000) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_c000_CHILD_NUM 0 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_c000_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_c000_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_c000_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_c000_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_c000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_c000_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_c000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_c000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_c000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_c000_ORD 71 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_c000_ORD_STR_SORTABLE 00071 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_c000_REQUIRES_ORDS \ + 69, /* /soc/flash-controller@4001e000/flash@0/partitions */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_c000_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_c000_EXISTS 1 +#define DT_N_NODELABEL_slot0_partition DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_c000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_c000_REG_NUM 1 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_c000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_c000_REG_IDX_0_VAL_ADDRESS 49152 /* 0xc000 */ +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_c000_REG_IDX_0_VAL_SIZE 225280 /* 0x37000 */ +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_c000_RANGES_NUM 0 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_c000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_c000_IRQ_NUM 0 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_c000_IRQ_LEVEL 0 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_c000_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_c000_PINCTRL_NUM 0 + +/* fixed-partitions identifier: */ +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_c000_PARTITION_ID 1 + +/* Generic property macros: */ +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_c000_P_label "image-0" +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_c000_P_label_STRING_UNQUOTED image-0 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_c000_P_label_STRING_TOKEN image_0 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_c000_P_label_STRING_UPPER_TOKEN IMAGE_0 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_c000_P_label_IDX_0 "image-0" +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_c000_P_label_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_c000_P_label_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_c000, label, 0) +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_c000_P_label_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_c000, label, 0) +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_c000_P_label_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_c000, label, 0, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_c000_P_label_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_c000, label, 0, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_c000_P_label_LEN 1 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_c000_P_label_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_c000_P_read_only 0 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_c000_P_read_only_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_c000_P_reg {49152 /* 0xc000 */, 225280 /* 0x37000 */} +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_c000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_c000_P_reg_IDX_0 49152 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_c000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_c000_P_reg_IDX_1 225280 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_c000_P_reg_EXISTS 1 + +/* + * Devicetree node: /soc/flash-controller@4001e000/flash@0/partitions/partition@43000 + * + * Node identifier: DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_43000 + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_43000_PATH "/soc/flash-controller@4001e000/flash@0/partitions/partition@43000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_43000_FULL_NAME "partition@43000" +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_43000_FULL_NAME_UNQUOTED partition@43000 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_43000_FULL_NAME_TOKEN partition_43000 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_43000_FULL_NAME_UPPER_TOKEN PARTITION_43000 + +/* Node parent (/soc/flash-controller@4001e000/flash@0/partitions) identifier: */ +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_43000_PARENT DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_43000_CHILD_IDX 2 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_43000_NODELABEL_NUM 1 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_43000_FOREACH_NODELABEL(fn) fn(slot1_partition) +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_43000_FOREACH_NODELABEL_VARGS(fn, ...) fn(slot1_partition, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_43000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions) fn(DT_N_S_soc_S_flash_controller_4001e000_S_flash_0) fn(DT_N_S_soc_S_flash_controller_4001e000) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_43000_CHILD_NUM 0 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_43000_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_43000_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_43000_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_43000_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_43000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_43000_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_43000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_43000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_43000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_43000_ORD 72 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_43000_ORD_STR_SORTABLE 00072 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_43000_REQUIRES_ORDS \ + 69, /* /soc/flash-controller@4001e000/flash@0/partitions */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_43000_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_43000_EXISTS 1 +#define DT_N_NODELABEL_slot1_partition DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_43000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_43000_REG_NUM 1 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_43000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_43000_REG_IDX_0_VAL_ADDRESS 274432 /* 0x43000 */ +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_43000_REG_IDX_0_VAL_SIZE 225280 /* 0x37000 */ +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_43000_RANGES_NUM 0 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_43000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_43000_IRQ_NUM 0 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_43000_IRQ_LEVEL 0 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_43000_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_43000_PINCTRL_NUM 0 + +/* fixed-partitions identifier: */ +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_43000_PARTITION_ID 2 + +/* Generic property macros: */ +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_43000_P_label "image-1" +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_43000_P_label_STRING_UNQUOTED image-1 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_43000_P_label_STRING_TOKEN image_1 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_43000_P_label_STRING_UPPER_TOKEN IMAGE_1 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_43000_P_label_IDX_0 "image-1" +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_43000_P_label_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_43000_P_label_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_43000, label, 0) +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_43000_P_label_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_43000, label, 0) +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_43000_P_label_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_43000, label, 0, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_43000_P_label_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_43000, label, 0, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_43000_P_label_LEN 1 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_43000_P_label_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_43000_P_read_only 0 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_43000_P_read_only_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_43000_P_reg {274432 /* 0x43000 */, 225280 /* 0x37000 */} +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_43000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_43000_P_reg_IDX_0 274432 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_43000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_43000_P_reg_IDX_1 225280 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_43000_P_reg_EXISTS 1 + +/* + * Devicetree node: /soc/flash-controller@4001e000/flash@0/partitions/partition@7a000 + * + * Node identifier: DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_7a000 + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_7a000_PATH "/soc/flash-controller@4001e000/flash@0/partitions/partition@7a000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_7a000_FULL_NAME "partition@7a000" +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_7a000_FULL_NAME_UNQUOTED partition@7a000 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_7a000_FULL_NAME_TOKEN partition_7a000 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_7a000_FULL_NAME_UPPER_TOKEN PARTITION_7A000 + +/* Node parent (/soc/flash-controller@4001e000/flash@0/partitions) identifier: */ +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_7a000_PARENT DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_7a000_CHILD_IDX 3 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_7a000_NODELABEL_NUM 1 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_7a000_FOREACH_NODELABEL(fn) fn(storage_partition) +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_7a000_FOREACH_NODELABEL_VARGS(fn, ...) fn(storage_partition, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_7a000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions) fn(DT_N_S_soc_S_flash_controller_4001e000_S_flash_0) fn(DT_N_S_soc_S_flash_controller_4001e000) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_7a000_CHILD_NUM 0 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_7a000_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_7a000_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_7a000_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_7a000_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_7a000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_7a000_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_7a000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_7a000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_7a000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_7a000_ORD 73 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_7a000_ORD_STR_SORTABLE 00073 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_7a000_REQUIRES_ORDS \ + 69, /* /soc/flash-controller@4001e000/flash@0/partitions */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_7a000_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_7a000_EXISTS 1 +#define DT_N_NODELABEL_storage_partition DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_7a000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_7a000_REG_NUM 1 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_7a000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_7a000_REG_IDX_0_VAL_ADDRESS 499712 /* 0x7a000 */ +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_7a000_REG_IDX_0_VAL_SIZE 24576 /* 0x6000 */ +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_7a000_RANGES_NUM 0 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_7a000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_7a000_IRQ_NUM 0 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_7a000_IRQ_LEVEL 0 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_7a000_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_7a000_PINCTRL_NUM 0 + +/* fixed-partitions identifier: */ +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_7a000_PARTITION_ID 3 + +/* Generic property macros: */ +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_7a000_P_label "storage" +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_7a000_P_label_STRING_UNQUOTED storage +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_7a000_P_label_STRING_TOKEN storage +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_7a000_P_label_STRING_UPPER_TOKEN STORAGE +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_7a000_P_label_IDX_0 "storage" +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_7a000_P_label_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_7a000_P_label_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_7a000, label, 0) +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_7a000_P_label_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_7a000, label, 0) +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_7a000_P_label_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_7a000, label, 0, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_7a000_P_label_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_7a000, label, 0, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_7a000_P_label_LEN 1 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_7a000_P_label_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_7a000_P_read_only 0 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_7a000_P_read_only_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_7a000_P_reg {499712 /* 0x7a000 */, 24576 /* 0x6000 */} +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_7a000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_7a000_P_reg_IDX_0 499712 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_7a000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_7a000_P_reg_IDX_1 24576 +#define DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_7a000_P_reg_EXISTS 1 + +/* + * Devicetree node: /soc/power@40000000 + * + * Node identifier: DT_N_S_soc_S_power_40000000 + * + * Binding (compatible = nordic,nrf-power): + * $ZEPHYR_BASE/dts/bindings/power/nordic,nrf-power.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_power_40000000_PATH "/soc/power@40000000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_power_40000000_FULL_NAME "power@40000000" +#define DT_N_S_soc_S_power_40000000_FULL_NAME_UNQUOTED power@40000000 +#define DT_N_S_soc_S_power_40000000_FULL_NAME_TOKEN power_40000000 +#define DT_N_S_soc_S_power_40000000_FULL_NAME_UPPER_TOKEN POWER_40000000 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_power_40000000_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_power_40000000_CHILD_IDX 6 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_power_40000000_NODELABEL_NUM 1 +#define DT_N_S_soc_S_power_40000000_FOREACH_NODELABEL(fn) fn(power) +#define DT_N_S_soc_S_power_40000000_FOREACH_NODELABEL_VARGS(fn, ...) fn(power, __VA_ARGS__) +#define DT_N_S_soc_S_power_40000000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_power_40000000_CHILD_NUM 4 +#define DT_N_S_soc_S_power_40000000_CHILD_NUM_STATUS_OKAY 4 +#define DT_N_S_soc_S_power_40000000_FOREACH_CHILD(fn) fn(DT_N_S_soc_S_power_40000000_S_gpregret1_4000051c) fn(DT_N_S_soc_S_power_40000000_S_gpregret2_40000520) fn(DT_N_S_soc_S_power_40000000_S_regulator_40000578) fn(DT_N_S_soc_S_power_40000000_S_regulator_40000580) +#define DT_N_S_soc_S_power_40000000_FOREACH_CHILD_SEP(fn, sep) fn(DT_N_S_soc_S_power_40000000_S_gpregret1_4000051c) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_power_40000000_S_gpregret2_40000520) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_power_40000000_S_regulator_40000578) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_power_40000000_S_regulator_40000580) +#define DT_N_S_soc_S_power_40000000_FOREACH_CHILD_VARGS(fn, ...) fn(DT_N_S_soc_S_power_40000000_S_gpregret1_4000051c, __VA_ARGS__) fn(DT_N_S_soc_S_power_40000000_S_gpregret2_40000520, __VA_ARGS__) fn(DT_N_S_soc_S_power_40000000_S_regulator_40000578, __VA_ARGS__) fn(DT_N_S_soc_S_power_40000000_S_regulator_40000580, __VA_ARGS__) +#define DT_N_S_soc_S_power_40000000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_power_40000000_S_gpregret1_4000051c, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_power_40000000_S_gpregret2_40000520, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_power_40000000_S_regulator_40000578, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_power_40000000_S_regulator_40000580, __VA_ARGS__) +#define DT_N_S_soc_S_power_40000000_FOREACH_CHILD_STATUS_OKAY(fn) fn(DT_N_S_soc_S_power_40000000_S_gpregret1_4000051c) fn(DT_N_S_soc_S_power_40000000_S_gpregret2_40000520) fn(DT_N_S_soc_S_power_40000000_S_regulator_40000578) fn(DT_N_S_soc_S_power_40000000_S_regulator_40000580) +#define DT_N_S_soc_S_power_40000000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) fn(DT_N_S_soc_S_power_40000000_S_gpregret1_4000051c) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_power_40000000_S_gpregret2_40000520) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_power_40000000_S_regulator_40000578) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_power_40000000_S_regulator_40000580) +#define DT_N_S_soc_S_power_40000000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) fn(DT_N_S_soc_S_power_40000000_S_gpregret1_4000051c, __VA_ARGS__) fn(DT_N_S_soc_S_power_40000000_S_gpregret2_40000520, __VA_ARGS__) fn(DT_N_S_soc_S_power_40000000_S_regulator_40000578, __VA_ARGS__) fn(DT_N_S_soc_S_power_40000000_S_regulator_40000580, __VA_ARGS__) +#define DT_N_S_soc_S_power_40000000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_power_40000000_S_gpregret1_4000051c, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_power_40000000_S_gpregret2_40000520, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_power_40000000_S_regulator_40000578, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_power_40000000_S_regulator_40000580, __VA_ARGS__) + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_power_40000000_ORD 74 +#define DT_N_S_soc_S_power_40000000_ORD_STR_SORTABLE 00074 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_power_40000000_REQUIRES_ORDS \ + 6, /* /soc */ \ + 7, /* /soc/interrupt-controller@e000e100 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_power_40000000_SUPPORTS_ORDS \ + 75, /* /soc/power@40000000/gpregret1@4000051c */ \ + 76, /* /soc/power@40000000/gpregret2@40000520 */ \ + 77, /* /soc/power@40000000/regulator@40000578 */ \ + 78, /* /soc/power@40000000/regulator@40000580 */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_power_40000000_EXISTS 1 +#define DT_N_INST_0_nordic_nrf_power DT_N_S_soc_S_power_40000000 +#define DT_N_NODELABEL_power DT_N_S_soc_S_power_40000000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_power_40000000_REG_NUM 1 +#define DT_N_S_soc_S_power_40000000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_power_40000000_REG_IDX_0_VAL_ADDRESS 1073741824 /* 0x40000000 */ +#define DT_N_S_soc_S_power_40000000_REG_IDX_0_VAL_SIZE 4096 /* 0x1000 */ +#define DT_N_S_soc_S_power_40000000_RANGES_NUM 0 +#define DT_N_S_soc_S_power_40000000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_power_40000000_IRQ_NUM 1 +#define DT_N_S_soc_S_power_40000000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_power_40000000_IRQ_IDX_0_VAL_irq 0 +#define DT_N_S_soc_S_power_40000000_IRQ_IDX_0_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_power_40000000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_power_40000000_IRQ_IDX_0_VAL_priority 1 +#define DT_N_S_soc_S_power_40000000_IRQ_IDX_0_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_power_40000000_IRQ_IDX_0_CONTROLLER DT_N_S_soc_S_interrupt_controller_e000e100 +#define DT_N_S_soc_S_power_40000000_IRQ_LEVEL 1 +#define DT_N_S_soc_S_power_40000000_COMPAT_MATCHES_nordic_nrf_power 1 +#define DT_N_S_soc_S_power_40000000_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_power_40000000_COMPAT_VENDOR_IDX_0 "Nordic Semiconductor" +#define DT_N_S_soc_S_power_40000000_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_power_40000000_COMPAT_MODEL_IDX_0 "nrf-power" +#define DT_N_S_soc_S_power_40000000_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_power_40000000_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_power_40000000_P_reg {1073741824 /* 0x40000000 */, 4096 /* 0x1000 */} +#define DT_N_S_soc_S_power_40000000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_power_40000000_P_reg_IDX_0 1073741824 +#define DT_N_S_soc_S_power_40000000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_power_40000000_P_reg_IDX_1 4096 +#define DT_N_S_soc_S_power_40000000_P_reg_EXISTS 1 +#define DT_N_S_soc_S_power_40000000_P_interrupts {0 /* 0x0 */, 1 /* 0x1 */} +#define DT_N_S_soc_S_power_40000000_P_interrupts_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_power_40000000_P_interrupts_IDX_0 0 +#define DT_N_S_soc_S_power_40000000_P_interrupts_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_power_40000000_P_interrupts_IDX_1 1 +#define DT_N_S_soc_S_power_40000000_P_interrupts_EXISTS 1 +#define DT_N_S_soc_S_power_40000000_P_status "okay" +#define DT_N_S_soc_S_power_40000000_P_status_STRING_UNQUOTED okay +#define DT_N_S_soc_S_power_40000000_P_status_STRING_TOKEN okay +#define DT_N_S_soc_S_power_40000000_P_status_STRING_UPPER_TOKEN OKAY +#define DT_N_S_soc_S_power_40000000_P_status_IDX_0 "okay" +#define DT_N_S_soc_S_power_40000000_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_power_40000000_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_power_40000000_P_status_IDX_0_ENUM_VAL_okay_EXISTS 1 +#define DT_N_S_soc_S_power_40000000_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_power_40000000, status, 0) +#define DT_N_S_soc_S_power_40000000_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_power_40000000, status, 0) +#define DT_N_S_soc_S_power_40000000_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_power_40000000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_power_40000000_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_power_40000000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_power_40000000_P_status_LEN 1 +#define DT_N_S_soc_S_power_40000000_P_status_EXISTS 1 +#define DT_N_S_soc_S_power_40000000_P_compatible {"nordic,nrf-power"} +#define DT_N_S_soc_S_power_40000000_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_power_40000000_P_compatible_IDX_0 "nordic,nrf-power" +#define DT_N_S_soc_S_power_40000000_P_compatible_IDX_0_STRING_UNQUOTED nordic,nrf-power +#define DT_N_S_soc_S_power_40000000_P_compatible_IDX_0_STRING_TOKEN nordic_nrf_power +#define DT_N_S_soc_S_power_40000000_P_compatible_IDX_0_STRING_UPPER_TOKEN NORDIC_NRF_POWER +#define DT_N_S_soc_S_power_40000000_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_power_40000000, compatible, 0) +#define DT_N_S_soc_S_power_40000000_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_power_40000000, compatible, 0) +#define DT_N_S_soc_S_power_40000000_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_power_40000000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_power_40000000_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_power_40000000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_power_40000000_P_compatible_LEN 1 +#define DT_N_S_soc_S_power_40000000_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_power_40000000_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_power_40000000_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_power_40000000_P_wakeup_source 0 +#define DT_N_S_soc_S_power_40000000_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_power_40000000_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_power_40000000_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/power@40000000/gpregret1@4000051c + * + * Node identifier: DT_N_S_soc_S_power_40000000_S_gpregret1_4000051c + * + * Binding (compatible = nordic,nrf-gpregret): + * $ZEPHYR_BASE/dts/bindings/retained_mem/nordic,nrf-gpreget.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_power_40000000_S_gpregret1_4000051c_PATH "/soc/power@40000000/gpregret1@4000051c" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_power_40000000_S_gpregret1_4000051c_FULL_NAME "gpregret1@4000051c" +#define DT_N_S_soc_S_power_40000000_S_gpregret1_4000051c_FULL_NAME_UNQUOTED gpregret1@4000051c +#define DT_N_S_soc_S_power_40000000_S_gpregret1_4000051c_FULL_NAME_TOKEN gpregret1_4000051c +#define DT_N_S_soc_S_power_40000000_S_gpregret1_4000051c_FULL_NAME_UPPER_TOKEN GPREGRET1_4000051C + +/* Node parent (/soc/power@40000000) identifier: */ +#define DT_N_S_soc_S_power_40000000_S_gpregret1_4000051c_PARENT DT_N_S_soc_S_power_40000000 + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_power_40000000_S_gpregret1_4000051c_CHILD_IDX 0 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_power_40000000_S_gpregret1_4000051c_NODELABEL_NUM 1 +#define DT_N_S_soc_S_power_40000000_S_gpregret1_4000051c_FOREACH_NODELABEL(fn) fn(gpregret1) +#define DT_N_S_soc_S_power_40000000_S_gpregret1_4000051c_FOREACH_NODELABEL_VARGS(fn, ...) fn(gpregret1, __VA_ARGS__) +#define DT_N_S_soc_S_power_40000000_S_gpregret1_4000051c_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc_S_power_40000000) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_power_40000000_S_gpregret1_4000051c_CHILD_NUM 0 +#define DT_N_S_soc_S_power_40000000_S_gpregret1_4000051c_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_power_40000000_S_gpregret1_4000051c_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_power_40000000_S_gpregret1_4000051c_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_power_40000000_S_gpregret1_4000051c_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_power_40000000_S_gpregret1_4000051c_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_power_40000000_S_gpregret1_4000051c_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_power_40000000_S_gpregret1_4000051c_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_power_40000000_S_gpregret1_4000051c_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_power_40000000_S_gpregret1_4000051c_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_power_40000000_S_gpregret1_4000051c_ORD 75 +#define DT_N_S_soc_S_power_40000000_S_gpregret1_4000051c_ORD_STR_SORTABLE 00075 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_power_40000000_S_gpregret1_4000051c_REQUIRES_ORDS \ + 74, /* /soc/power@40000000 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_power_40000000_S_gpregret1_4000051c_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_power_40000000_S_gpregret1_4000051c_EXISTS 1 +#define DT_N_INST_0_nordic_nrf_gpregret DT_N_S_soc_S_power_40000000_S_gpregret1_4000051c +#define DT_N_NODELABEL_gpregret1 DT_N_S_soc_S_power_40000000_S_gpregret1_4000051c + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_power_40000000_S_gpregret1_4000051c_REG_NUM 1 +#define DT_N_S_soc_S_power_40000000_S_gpregret1_4000051c_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_power_40000000_S_gpregret1_4000051c_REG_IDX_0_VAL_ADDRESS 1073743132 /* 0x4000051c */ +#define DT_N_S_soc_S_power_40000000_S_gpregret1_4000051c_REG_IDX_0_VAL_SIZE 1 /* 0x1 */ +#define DT_N_S_soc_S_power_40000000_S_gpregret1_4000051c_RANGES_NUM 0 +#define DT_N_S_soc_S_power_40000000_S_gpregret1_4000051c_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_power_40000000_S_gpregret1_4000051c_IRQ_NUM 0 +#define DT_N_S_soc_S_power_40000000_S_gpregret1_4000051c_IRQ_LEVEL 0 +#define DT_N_S_soc_S_power_40000000_S_gpregret1_4000051c_COMPAT_MATCHES_nordic_nrf_gpregret 1 +#define DT_N_S_soc_S_power_40000000_S_gpregret1_4000051c_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_power_40000000_S_gpregret1_4000051c_COMPAT_VENDOR_IDX_0 "Nordic Semiconductor" +#define DT_N_S_soc_S_power_40000000_S_gpregret1_4000051c_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_power_40000000_S_gpregret1_4000051c_COMPAT_MODEL_IDX_0 "nrf-gpregret" +#define DT_N_S_soc_S_power_40000000_S_gpregret1_4000051c_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_power_40000000_S_gpregret1_4000051c_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_power_40000000_S_gpregret1_4000051c_P_reg {1073743132 /* 0x4000051c */, 1 /* 0x1 */} +#define DT_N_S_soc_S_power_40000000_S_gpregret1_4000051c_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_power_40000000_S_gpregret1_4000051c_P_reg_IDX_0 1073743132 +#define DT_N_S_soc_S_power_40000000_S_gpregret1_4000051c_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_power_40000000_S_gpregret1_4000051c_P_reg_IDX_1 1 +#define DT_N_S_soc_S_power_40000000_S_gpregret1_4000051c_P_reg_EXISTS 1 +#define DT_N_S_soc_S_power_40000000_S_gpregret1_4000051c_P_status "okay" +#define DT_N_S_soc_S_power_40000000_S_gpregret1_4000051c_P_status_STRING_UNQUOTED okay +#define DT_N_S_soc_S_power_40000000_S_gpregret1_4000051c_P_status_STRING_TOKEN okay +#define DT_N_S_soc_S_power_40000000_S_gpregret1_4000051c_P_status_STRING_UPPER_TOKEN OKAY +#define DT_N_S_soc_S_power_40000000_S_gpregret1_4000051c_P_status_IDX_0 "okay" +#define DT_N_S_soc_S_power_40000000_S_gpregret1_4000051c_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_power_40000000_S_gpregret1_4000051c_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_power_40000000_S_gpregret1_4000051c_P_status_IDX_0_ENUM_VAL_okay_EXISTS 1 +#define DT_N_S_soc_S_power_40000000_S_gpregret1_4000051c_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_power_40000000_S_gpregret1_4000051c, status, 0) +#define DT_N_S_soc_S_power_40000000_S_gpregret1_4000051c_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_power_40000000_S_gpregret1_4000051c, status, 0) +#define DT_N_S_soc_S_power_40000000_S_gpregret1_4000051c_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_power_40000000_S_gpregret1_4000051c, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_power_40000000_S_gpregret1_4000051c_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_power_40000000_S_gpregret1_4000051c, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_power_40000000_S_gpregret1_4000051c_P_status_LEN 1 +#define DT_N_S_soc_S_power_40000000_S_gpregret1_4000051c_P_status_EXISTS 1 +#define DT_N_S_soc_S_power_40000000_S_gpregret1_4000051c_P_compatible {"nordic,nrf-gpregret"} +#define DT_N_S_soc_S_power_40000000_S_gpregret1_4000051c_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_power_40000000_S_gpregret1_4000051c_P_compatible_IDX_0 "nordic,nrf-gpregret" +#define DT_N_S_soc_S_power_40000000_S_gpregret1_4000051c_P_compatible_IDX_0_STRING_UNQUOTED nordic,nrf-gpregret +#define DT_N_S_soc_S_power_40000000_S_gpregret1_4000051c_P_compatible_IDX_0_STRING_TOKEN nordic_nrf_gpregret +#define DT_N_S_soc_S_power_40000000_S_gpregret1_4000051c_P_compatible_IDX_0_STRING_UPPER_TOKEN NORDIC_NRF_GPREGRET +#define DT_N_S_soc_S_power_40000000_S_gpregret1_4000051c_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_power_40000000_S_gpregret1_4000051c, compatible, 0) +#define DT_N_S_soc_S_power_40000000_S_gpregret1_4000051c_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_power_40000000_S_gpregret1_4000051c, compatible, 0) +#define DT_N_S_soc_S_power_40000000_S_gpregret1_4000051c_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_power_40000000_S_gpregret1_4000051c, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_power_40000000_S_gpregret1_4000051c_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_power_40000000_S_gpregret1_4000051c, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_power_40000000_S_gpregret1_4000051c_P_compatible_LEN 1 +#define DT_N_S_soc_S_power_40000000_S_gpregret1_4000051c_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_power_40000000_S_gpregret1_4000051c_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_power_40000000_S_gpregret1_4000051c_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_power_40000000_S_gpregret1_4000051c_P_wakeup_source 0 +#define DT_N_S_soc_S_power_40000000_S_gpregret1_4000051c_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_power_40000000_S_gpregret1_4000051c_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_power_40000000_S_gpregret1_4000051c_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/power@40000000/gpregret2@40000520 + * + * Node identifier: DT_N_S_soc_S_power_40000000_S_gpregret2_40000520 + * + * Binding (compatible = nordic,nrf-gpregret): + * $ZEPHYR_BASE/dts/bindings/retained_mem/nordic,nrf-gpreget.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_power_40000000_S_gpregret2_40000520_PATH "/soc/power@40000000/gpregret2@40000520" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_power_40000000_S_gpregret2_40000520_FULL_NAME "gpregret2@40000520" +#define DT_N_S_soc_S_power_40000000_S_gpregret2_40000520_FULL_NAME_UNQUOTED gpregret2@40000520 +#define DT_N_S_soc_S_power_40000000_S_gpregret2_40000520_FULL_NAME_TOKEN gpregret2_40000520 +#define DT_N_S_soc_S_power_40000000_S_gpregret2_40000520_FULL_NAME_UPPER_TOKEN GPREGRET2_40000520 + +/* Node parent (/soc/power@40000000) identifier: */ +#define DT_N_S_soc_S_power_40000000_S_gpregret2_40000520_PARENT DT_N_S_soc_S_power_40000000 + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_power_40000000_S_gpregret2_40000520_CHILD_IDX 1 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_power_40000000_S_gpregret2_40000520_NODELABEL_NUM 1 +#define DT_N_S_soc_S_power_40000000_S_gpregret2_40000520_FOREACH_NODELABEL(fn) fn(gpregret2) +#define DT_N_S_soc_S_power_40000000_S_gpregret2_40000520_FOREACH_NODELABEL_VARGS(fn, ...) fn(gpregret2, __VA_ARGS__) +#define DT_N_S_soc_S_power_40000000_S_gpregret2_40000520_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc_S_power_40000000) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_power_40000000_S_gpregret2_40000520_CHILD_NUM 0 +#define DT_N_S_soc_S_power_40000000_S_gpregret2_40000520_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_power_40000000_S_gpregret2_40000520_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_power_40000000_S_gpregret2_40000520_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_power_40000000_S_gpregret2_40000520_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_power_40000000_S_gpregret2_40000520_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_power_40000000_S_gpregret2_40000520_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_power_40000000_S_gpregret2_40000520_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_power_40000000_S_gpregret2_40000520_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_power_40000000_S_gpregret2_40000520_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_power_40000000_S_gpregret2_40000520_ORD 76 +#define DT_N_S_soc_S_power_40000000_S_gpregret2_40000520_ORD_STR_SORTABLE 00076 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_power_40000000_S_gpregret2_40000520_REQUIRES_ORDS \ + 74, /* /soc/power@40000000 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_power_40000000_S_gpregret2_40000520_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_power_40000000_S_gpregret2_40000520_EXISTS 1 +#define DT_N_INST_1_nordic_nrf_gpregret DT_N_S_soc_S_power_40000000_S_gpregret2_40000520 +#define DT_N_NODELABEL_gpregret2 DT_N_S_soc_S_power_40000000_S_gpregret2_40000520 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_power_40000000_S_gpregret2_40000520_REG_NUM 1 +#define DT_N_S_soc_S_power_40000000_S_gpregret2_40000520_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_power_40000000_S_gpregret2_40000520_REG_IDX_0_VAL_ADDRESS 1073743136 /* 0x40000520 */ +#define DT_N_S_soc_S_power_40000000_S_gpregret2_40000520_REG_IDX_0_VAL_SIZE 1 /* 0x1 */ +#define DT_N_S_soc_S_power_40000000_S_gpregret2_40000520_RANGES_NUM 0 +#define DT_N_S_soc_S_power_40000000_S_gpregret2_40000520_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_power_40000000_S_gpregret2_40000520_IRQ_NUM 0 +#define DT_N_S_soc_S_power_40000000_S_gpregret2_40000520_IRQ_LEVEL 0 +#define DT_N_S_soc_S_power_40000000_S_gpregret2_40000520_COMPAT_MATCHES_nordic_nrf_gpregret 1 +#define DT_N_S_soc_S_power_40000000_S_gpregret2_40000520_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_power_40000000_S_gpregret2_40000520_COMPAT_VENDOR_IDX_0 "Nordic Semiconductor" +#define DT_N_S_soc_S_power_40000000_S_gpregret2_40000520_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_power_40000000_S_gpregret2_40000520_COMPAT_MODEL_IDX_0 "nrf-gpregret" +#define DT_N_S_soc_S_power_40000000_S_gpregret2_40000520_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_power_40000000_S_gpregret2_40000520_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_power_40000000_S_gpregret2_40000520_P_reg {1073743136 /* 0x40000520 */, 1 /* 0x1 */} +#define DT_N_S_soc_S_power_40000000_S_gpregret2_40000520_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_power_40000000_S_gpregret2_40000520_P_reg_IDX_0 1073743136 +#define DT_N_S_soc_S_power_40000000_S_gpregret2_40000520_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_power_40000000_S_gpregret2_40000520_P_reg_IDX_1 1 +#define DT_N_S_soc_S_power_40000000_S_gpregret2_40000520_P_reg_EXISTS 1 +#define DT_N_S_soc_S_power_40000000_S_gpregret2_40000520_P_status "okay" +#define DT_N_S_soc_S_power_40000000_S_gpregret2_40000520_P_status_STRING_UNQUOTED okay +#define DT_N_S_soc_S_power_40000000_S_gpregret2_40000520_P_status_STRING_TOKEN okay +#define DT_N_S_soc_S_power_40000000_S_gpregret2_40000520_P_status_STRING_UPPER_TOKEN OKAY +#define DT_N_S_soc_S_power_40000000_S_gpregret2_40000520_P_status_IDX_0 "okay" +#define DT_N_S_soc_S_power_40000000_S_gpregret2_40000520_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_power_40000000_S_gpregret2_40000520_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_power_40000000_S_gpregret2_40000520_P_status_IDX_0_ENUM_VAL_okay_EXISTS 1 +#define DT_N_S_soc_S_power_40000000_S_gpregret2_40000520_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_power_40000000_S_gpregret2_40000520, status, 0) +#define DT_N_S_soc_S_power_40000000_S_gpregret2_40000520_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_power_40000000_S_gpregret2_40000520, status, 0) +#define DT_N_S_soc_S_power_40000000_S_gpregret2_40000520_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_power_40000000_S_gpregret2_40000520, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_power_40000000_S_gpregret2_40000520_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_power_40000000_S_gpregret2_40000520, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_power_40000000_S_gpregret2_40000520_P_status_LEN 1 +#define DT_N_S_soc_S_power_40000000_S_gpregret2_40000520_P_status_EXISTS 1 +#define DT_N_S_soc_S_power_40000000_S_gpregret2_40000520_P_compatible {"nordic,nrf-gpregret"} +#define DT_N_S_soc_S_power_40000000_S_gpregret2_40000520_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_power_40000000_S_gpregret2_40000520_P_compatible_IDX_0 "nordic,nrf-gpregret" +#define DT_N_S_soc_S_power_40000000_S_gpregret2_40000520_P_compatible_IDX_0_STRING_UNQUOTED nordic,nrf-gpregret +#define DT_N_S_soc_S_power_40000000_S_gpregret2_40000520_P_compatible_IDX_0_STRING_TOKEN nordic_nrf_gpregret +#define DT_N_S_soc_S_power_40000000_S_gpregret2_40000520_P_compatible_IDX_0_STRING_UPPER_TOKEN NORDIC_NRF_GPREGRET +#define DT_N_S_soc_S_power_40000000_S_gpregret2_40000520_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_power_40000000_S_gpregret2_40000520, compatible, 0) +#define DT_N_S_soc_S_power_40000000_S_gpregret2_40000520_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_power_40000000_S_gpregret2_40000520, compatible, 0) +#define DT_N_S_soc_S_power_40000000_S_gpregret2_40000520_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_power_40000000_S_gpregret2_40000520, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_power_40000000_S_gpregret2_40000520_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_power_40000000_S_gpregret2_40000520, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_power_40000000_S_gpregret2_40000520_P_compatible_LEN 1 +#define DT_N_S_soc_S_power_40000000_S_gpregret2_40000520_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_power_40000000_S_gpregret2_40000520_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_power_40000000_S_gpregret2_40000520_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_power_40000000_S_gpregret2_40000520_P_wakeup_source 0 +#define DT_N_S_soc_S_power_40000000_S_gpregret2_40000520_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_power_40000000_S_gpregret2_40000520_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_power_40000000_S_gpregret2_40000520_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/power@40000000/regulator@40000578 + * + * Node identifier: DT_N_S_soc_S_power_40000000_S_regulator_40000578 + * + * Binding (compatible = nordic,nrf5x-regulator): + * $ZEPHYR_BASE/dts/bindings/regulator/nordic,nrf5x-regulator.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_power_40000000_S_regulator_40000578_PATH "/soc/power@40000000/regulator@40000578" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_power_40000000_S_regulator_40000578_FULL_NAME "regulator@40000578" +#define DT_N_S_soc_S_power_40000000_S_regulator_40000578_FULL_NAME_UNQUOTED regulator@40000578 +#define DT_N_S_soc_S_power_40000000_S_regulator_40000578_FULL_NAME_TOKEN regulator_40000578 +#define DT_N_S_soc_S_power_40000000_S_regulator_40000578_FULL_NAME_UPPER_TOKEN REGULATOR_40000578 + +/* Node parent (/soc/power@40000000) identifier: */ +#define DT_N_S_soc_S_power_40000000_S_regulator_40000578_PARENT DT_N_S_soc_S_power_40000000 + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_power_40000000_S_regulator_40000578_CHILD_IDX 2 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_power_40000000_S_regulator_40000578_NODELABEL_NUM 1 +#define DT_N_S_soc_S_power_40000000_S_regulator_40000578_FOREACH_NODELABEL(fn) fn(reg1) +#define DT_N_S_soc_S_power_40000000_S_regulator_40000578_FOREACH_NODELABEL_VARGS(fn, ...) fn(reg1, __VA_ARGS__) +#define DT_N_S_soc_S_power_40000000_S_regulator_40000578_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc_S_power_40000000) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_power_40000000_S_regulator_40000578_CHILD_NUM 0 +#define DT_N_S_soc_S_power_40000000_S_regulator_40000578_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_power_40000000_S_regulator_40000578_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_power_40000000_S_regulator_40000578_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_power_40000000_S_regulator_40000578_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_power_40000000_S_regulator_40000578_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_power_40000000_S_regulator_40000578_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_power_40000000_S_regulator_40000578_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_power_40000000_S_regulator_40000578_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_power_40000000_S_regulator_40000578_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_power_40000000_S_regulator_40000578_ORD 77 +#define DT_N_S_soc_S_power_40000000_S_regulator_40000578_ORD_STR_SORTABLE 00077 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_power_40000000_S_regulator_40000578_REQUIRES_ORDS \ + 74, /* /soc/power@40000000 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_power_40000000_S_regulator_40000578_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_power_40000000_S_regulator_40000578_EXISTS 1 +#define DT_N_INST_0_nordic_nrf5x_regulator DT_N_S_soc_S_power_40000000_S_regulator_40000578 +#define DT_N_NODELABEL_reg1 DT_N_S_soc_S_power_40000000_S_regulator_40000578 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_power_40000000_S_regulator_40000578_REG_NUM 1 +#define DT_N_S_soc_S_power_40000000_S_regulator_40000578_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_power_40000000_S_regulator_40000578_REG_IDX_0_VAL_ADDRESS 1073743224 /* 0x40000578 */ +#define DT_N_S_soc_S_power_40000000_S_regulator_40000578_REG_IDX_0_VAL_SIZE 1 /* 0x1 */ +#define DT_N_S_soc_S_power_40000000_S_regulator_40000578_RANGES_NUM 0 +#define DT_N_S_soc_S_power_40000000_S_regulator_40000578_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_power_40000000_S_regulator_40000578_IRQ_NUM 0 +#define DT_N_S_soc_S_power_40000000_S_regulator_40000578_IRQ_LEVEL 0 +#define DT_N_S_soc_S_power_40000000_S_regulator_40000578_COMPAT_MATCHES_nordic_nrf5x_regulator 1 +#define DT_N_S_soc_S_power_40000000_S_regulator_40000578_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_power_40000000_S_regulator_40000578_COMPAT_VENDOR_IDX_0 "Nordic Semiconductor" +#define DT_N_S_soc_S_power_40000000_S_regulator_40000578_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_power_40000000_S_regulator_40000578_COMPAT_MODEL_IDX_0 "nrf5x-regulator" +#define DT_N_S_soc_S_power_40000000_S_regulator_40000578_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_power_40000000_S_regulator_40000578_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_power_40000000_S_regulator_40000578_P_reg {1073743224 /* 0x40000578 */, 1 /* 0x1 */} +#define DT_N_S_soc_S_power_40000000_S_regulator_40000578_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_power_40000000_S_regulator_40000578_P_reg_IDX_0 1073743224 +#define DT_N_S_soc_S_power_40000000_S_regulator_40000578_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_power_40000000_S_regulator_40000578_P_reg_IDX_1 1 +#define DT_N_S_soc_S_power_40000000_S_regulator_40000578_P_reg_EXISTS 1 +#define DT_N_S_soc_S_power_40000000_S_regulator_40000578_P_regulator_name "REG1" +#define DT_N_S_soc_S_power_40000000_S_regulator_40000578_P_regulator_name_STRING_UNQUOTED REG1 +#define DT_N_S_soc_S_power_40000000_S_regulator_40000578_P_regulator_name_STRING_TOKEN REG1 +#define DT_N_S_soc_S_power_40000000_S_regulator_40000578_P_regulator_name_STRING_UPPER_TOKEN REG1 +#define DT_N_S_soc_S_power_40000000_S_regulator_40000578_P_regulator_name_IDX_0 "REG1" +#define DT_N_S_soc_S_power_40000000_S_regulator_40000578_P_regulator_name_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_power_40000000_S_regulator_40000578_P_regulator_name_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_power_40000000_S_regulator_40000578, regulator_name, 0) +#define DT_N_S_soc_S_power_40000000_S_regulator_40000578_P_regulator_name_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_power_40000000_S_regulator_40000578, regulator_name, 0) +#define DT_N_S_soc_S_power_40000000_S_regulator_40000578_P_regulator_name_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_power_40000000_S_regulator_40000578, regulator_name, 0, __VA_ARGS__) +#define DT_N_S_soc_S_power_40000000_S_regulator_40000578_P_regulator_name_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_power_40000000_S_regulator_40000578, regulator_name, 0, __VA_ARGS__) +#define DT_N_S_soc_S_power_40000000_S_regulator_40000578_P_regulator_name_LEN 1 +#define DT_N_S_soc_S_power_40000000_S_regulator_40000578_P_regulator_name_EXISTS 1 +#define DT_N_S_soc_S_power_40000000_S_regulator_40000578_P_regulator_initial_mode 0 +#define DT_N_S_soc_S_power_40000000_S_regulator_40000578_P_regulator_initial_mode_EXISTS 1 +#define DT_N_S_soc_S_power_40000000_S_regulator_40000578_P_status "okay" +#define DT_N_S_soc_S_power_40000000_S_regulator_40000578_P_status_STRING_UNQUOTED okay +#define DT_N_S_soc_S_power_40000000_S_regulator_40000578_P_status_STRING_TOKEN okay +#define DT_N_S_soc_S_power_40000000_S_regulator_40000578_P_status_STRING_UPPER_TOKEN OKAY +#define DT_N_S_soc_S_power_40000000_S_regulator_40000578_P_status_IDX_0 "okay" +#define DT_N_S_soc_S_power_40000000_S_regulator_40000578_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_power_40000000_S_regulator_40000578_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_power_40000000_S_regulator_40000578_P_status_IDX_0_ENUM_VAL_okay_EXISTS 1 +#define DT_N_S_soc_S_power_40000000_S_regulator_40000578_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_power_40000000_S_regulator_40000578, status, 0) +#define DT_N_S_soc_S_power_40000000_S_regulator_40000578_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_power_40000000_S_regulator_40000578, status, 0) +#define DT_N_S_soc_S_power_40000000_S_regulator_40000578_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_power_40000000_S_regulator_40000578, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_power_40000000_S_regulator_40000578_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_power_40000000_S_regulator_40000578, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_power_40000000_S_regulator_40000578_P_status_LEN 1 +#define DT_N_S_soc_S_power_40000000_S_regulator_40000578_P_status_EXISTS 1 +#define DT_N_S_soc_S_power_40000000_S_regulator_40000578_P_compatible {"nordic,nrf5x-regulator"} +#define DT_N_S_soc_S_power_40000000_S_regulator_40000578_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_power_40000000_S_regulator_40000578_P_compatible_IDX_0 "nordic,nrf5x-regulator" +#define DT_N_S_soc_S_power_40000000_S_regulator_40000578_P_compatible_IDX_0_STRING_UNQUOTED nordic,nrf5x-regulator +#define DT_N_S_soc_S_power_40000000_S_regulator_40000578_P_compatible_IDX_0_STRING_TOKEN nordic_nrf5x_regulator +#define DT_N_S_soc_S_power_40000000_S_regulator_40000578_P_compatible_IDX_0_STRING_UPPER_TOKEN NORDIC_NRF5X_REGULATOR +#define DT_N_S_soc_S_power_40000000_S_regulator_40000578_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_power_40000000_S_regulator_40000578, compatible, 0) +#define DT_N_S_soc_S_power_40000000_S_regulator_40000578_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_power_40000000_S_regulator_40000578, compatible, 0) +#define DT_N_S_soc_S_power_40000000_S_regulator_40000578_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_power_40000000_S_regulator_40000578, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_power_40000000_S_regulator_40000578_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_power_40000000_S_regulator_40000578, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_power_40000000_S_regulator_40000578_P_compatible_LEN 1 +#define DT_N_S_soc_S_power_40000000_S_regulator_40000578_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_power_40000000_S_regulator_40000578_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_power_40000000_S_regulator_40000578_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_power_40000000_S_regulator_40000578_P_wakeup_source 0 +#define DT_N_S_soc_S_power_40000000_S_regulator_40000578_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_power_40000000_S_regulator_40000578_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_power_40000000_S_regulator_40000578_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/power@40000000/regulator@40000580 + * + * Node identifier: DT_N_S_soc_S_power_40000000_S_regulator_40000580 + * + * Binding (compatible = nordic,nrf52x-regulator-hv): + * $ZEPHYR_BASE/dts/bindings/regulator/nordic,nrf52x-regulator-hv.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_power_40000000_S_regulator_40000580_PATH "/soc/power@40000000/regulator@40000580" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_power_40000000_S_regulator_40000580_FULL_NAME "regulator@40000580" +#define DT_N_S_soc_S_power_40000000_S_regulator_40000580_FULL_NAME_UNQUOTED regulator@40000580 +#define DT_N_S_soc_S_power_40000000_S_regulator_40000580_FULL_NAME_TOKEN regulator_40000580 +#define DT_N_S_soc_S_power_40000000_S_regulator_40000580_FULL_NAME_UPPER_TOKEN REGULATOR_40000580 + +/* Node parent (/soc/power@40000000) identifier: */ +#define DT_N_S_soc_S_power_40000000_S_regulator_40000580_PARENT DT_N_S_soc_S_power_40000000 + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_power_40000000_S_regulator_40000580_CHILD_IDX 3 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_power_40000000_S_regulator_40000580_NODELABEL_NUM 1 +#define DT_N_S_soc_S_power_40000000_S_regulator_40000580_FOREACH_NODELABEL(fn) fn(reg0) +#define DT_N_S_soc_S_power_40000000_S_regulator_40000580_FOREACH_NODELABEL_VARGS(fn, ...) fn(reg0, __VA_ARGS__) +#define DT_N_S_soc_S_power_40000000_S_regulator_40000580_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc_S_power_40000000) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_power_40000000_S_regulator_40000580_CHILD_NUM 0 +#define DT_N_S_soc_S_power_40000000_S_regulator_40000580_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_power_40000000_S_regulator_40000580_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_power_40000000_S_regulator_40000580_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_power_40000000_S_regulator_40000580_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_power_40000000_S_regulator_40000580_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_power_40000000_S_regulator_40000580_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_power_40000000_S_regulator_40000580_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_power_40000000_S_regulator_40000580_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_power_40000000_S_regulator_40000580_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_power_40000000_S_regulator_40000580_ORD 78 +#define DT_N_S_soc_S_power_40000000_S_regulator_40000580_ORD_STR_SORTABLE 00078 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_power_40000000_S_regulator_40000580_REQUIRES_ORDS \ + 74, /* /soc/power@40000000 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_power_40000000_S_regulator_40000580_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_power_40000000_S_regulator_40000580_EXISTS 1 +#define DT_N_INST_0_nordic_nrf52x_regulator_hv DT_N_S_soc_S_power_40000000_S_regulator_40000580 +#define DT_N_NODELABEL_reg0 DT_N_S_soc_S_power_40000000_S_regulator_40000580 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_power_40000000_S_regulator_40000580_REG_NUM 1 +#define DT_N_S_soc_S_power_40000000_S_regulator_40000580_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_power_40000000_S_regulator_40000580_REG_IDX_0_VAL_ADDRESS 1073743232 /* 0x40000580 */ +#define DT_N_S_soc_S_power_40000000_S_regulator_40000580_REG_IDX_0_VAL_SIZE 1 /* 0x1 */ +#define DT_N_S_soc_S_power_40000000_S_regulator_40000580_RANGES_NUM 0 +#define DT_N_S_soc_S_power_40000000_S_regulator_40000580_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_power_40000000_S_regulator_40000580_IRQ_NUM 0 +#define DT_N_S_soc_S_power_40000000_S_regulator_40000580_IRQ_LEVEL 0 +#define DT_N_S_soc_S_power_40000000_S_regulator_40000580_COMPAT_MATCHES_nordic_nrf52x_regulator_hv 1 +#define DT_N_S_soc_S_power_40000000_S_regulator_40000580_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_power_40000000_S_regulator_40000580_COMPAT_VENDOR_IDX_0 "Nordic Semiconductor" +#define DT_N_S_soc_S_power_40000000_S_regulator_40000580_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_power_40000000_S_regulator_40000580_COMPAT_MODEL_IDX_0 "nrf52x-regulator-hv" +#define DT_N_S_soc_S_power_40000000_S_regulator_40000580_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_power_40000000_S_regulator_40000580_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_power_40000000_S_regulator_40000580_P_reg {1073743232 /* 0x40000580 */, 1 /* 0x1 */} +#define DT_N_S_soc_S_power_40000000_S_regulator_40000580_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_power_40000000_S_regulator_40000580_P_reg_IDX_0 1073743232 +#define DT_N_S_soc_S_power_40000000_S_regulator_40000580_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_power_40000000_S_regulator_40000580_P_reg_IDX_1 1 +#define DT_N_S_soc_S_power_40000000_S_regulator_40000580_P_reg_EXISTS 1 +#define DT_N_S_soc_S_power_40000000_S_regulator_40000580_P_regulator_name "REG0" +#define DT_N_S_soc_S_power_40000000_S_regulator_40000580_P_regulator_name_STRING_UNQUOTED REG0 +#define DT_N_S_soc_S_power_40000000_S_regulator_40000580_P_regulator_name_STRING_TOKEN REG0 +#define DT_N_S_soc_S_power_40000000_S_regulator_40000580_P_regulator_name_STRING_UPPER_TOKEN REG0 +#define DT_N_S_soc_S_power_40000000_S_regulator_40000580_P_regulator_name_IDX_0 "REG0" +#define DT_N_S_soc_S_power_40000000_S_regulator_40000580_P_regulator_name_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_power_40000000_S_regulator_40000580_P_regulator_name_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_power_40000000_S_regulator_40000580, regulator_name, 0) +#define DT_N_S_soc_S_power_40000000_S_regulator_40000580_P_regulator_name_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_power_40000000_S_regulator_40000580, regulator_name, 0) +#define DT_N_S_soc_S_power_40000000_S_regulator_40000580_P_regulator_name_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_power_40000000_S_regulator_40000580, regulator_name, 0, __VA_ARGS__) +#define DT_N_S_soc_S_power_40000000_S_regulator_40000580_P_regulator_name_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_power_40000000_S_regulator_40000580, regulator_name, 0, __VA_ARGS__) +#define DT_N_S_soc_S_power_40000000_S_regulator_40000580_P_regulator_name_LEN 1 +#define DT_N_S_soc_S_power_40000000_S_regulator_40000580_P_regulator_name_EXISTS 1 +#define DT_N_S_soc_S_power_40000000_S_regulator_40000580_P_status "okay" +#define DT_N_S_soc_S_power_40000000_S_regulator_40000580_P_status_STRING_UNQUOTED okay +#define DT_N_S_soc_S_power_40000000_S_regulator_40000580_P_status_STRING_TOKEN okay +#define DT_N_S_soc_S_power_40000000_S_regulator_40000580_P_status_STRING_UPPER_TOKEN OKAY +#define DT_N_S_soc_S_power_40000000_S_regulator_40000580_P_status_IDX_0 "okay" +#define DT_N_S_soc_S_power_40000000_S_regulator_40000580_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_power_40000000_S_regulator_40000580_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_power_40000000_S_regulator_40000580_P_status_IDX_0_ENUM_VAL_okay_EXISTS 1 +#define DT_N_S_soc_S_power_40000000_S_regulator_40000580_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_power_40000000_S_regulator_40000580, status, 0) +#define DT_N_S_soc_S_power_40000000_S_regulator_40000580_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_power_40000000_S_regulator_40000580, status, 0) +#define DT_N_S_soc_S_power_40000000_S_regulator_40000580_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_power_40000000_S_regulator_40000580, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_power_40000000_S_regulator_40000580_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_power_40000000_S_regulator_40000580, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_power_40000000_S_regulator_40000580_P_status_LEN 1 +#define DT_N_S_soc_S_power_40000000_S_regulator_40000580_P_status_EXISTS 1 +#define DT_N_S_soc_S_power_40000000_S_regulator_40000580_P_compatible {"nordic,nrf52x-regulator-hv"} +#define DT_N_S_soc_S_power_40000000_S_regulator_40000580_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_power_40000000_S_regulator_40000580_P_compatible_IDX_0 "nordic,nrf52x-regulator-hv" +#define DT_N_S_soc_S_power_40000000_S_regulator_40000580_P_compatible_IDX_0_STRING_UNQUOTED nordic,nrf52x-regulator-hv +#define DT_N_S_soc_S_power_40000000_S_regulator_40000580_P_compatible_IDX_0_STRING_TOKEN nordic_nrf52x_regulator_hv +#define DT_N_S_soc_S_power_40000000_S_regulator_40000580_P_compatible_IDX_0_STRING_UPPER_TOKEN NORDIC_NRF52X_REGULATOR_HV +#define DT_N_S_soc_S_power_40000000_S_regulator_40000580_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_power_40000000_S_regulator_40000580, compatible, 0) +#define DT_N_S_soc_S_power_40000000_S_regulator_40000580_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_power_40000000_S_regulator_40000580, compatible, 0) +#define DT_N_S_soc_S_power_40000000_S_regulator_40000580_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_power_40000000_S_regulator_40000580, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_power_40000000_S_regulator_40000580_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_power_40000000_S_regulator_40000580, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_power_40000000_S_regulator_40000580_P_compatible_LEN 1 +#define DT_N_S_soc_S_power_40000000_S_regulator_40000580_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_power_40000000_S_regulator_40000580_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_power_40000000_S_regulator_40000580_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_power_40000000_S_regulator_40000580_P_wakeup_source 0 +#define DT_N_S_soc_S_power_40000000_S_regulator_40000580_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_power_40000000_S_regulator_40000580_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_power_40000000_S_regulator_40000580_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/radio@40001000 + * + * Node identifier: DT_N_S_soc_S_radio_40001000 + * + * Binding (compatible = nordic,nrf-radio): + * $ZEPHYR_BASE/dts/bindings/net/wireless/nordic,nrf-radio.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_radio_40001000_PATH "/soc/radio@40001000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_radio_40001000_FULL_NAME "radio@40001000" +#define DT_N_S_soc_S_radio_40001000_FULL_NAME_UNQUOTED radio@40001000 +#define DT_N_S_soc_S_radio_40001000_FULL_NAME_TOKEN radio_40001000 +#define DT_N_S_soc_S_radio_40001000_FULL_NAME_UPPER_TOKEN RADIO_40001000 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_radio_40001000_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_radio_40001000_CHILD_IDX 7 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_radio_40001000_NODELABEL_NUM 1 +#define DT_N_S_soc_S_radio_40001000_FOREACH_NODELABEL(fn) fn(radio) +#define DT_N_S_soc_S_radio_40001000_FOREACH_NODELABEL_VARGS(fn, ...) fn(radio, __VA_ARGS__) +#define DT_N_S_soc_S_radio_40001000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_radio_40001000_CHILD_NUM 3 +#define DT_N_S_soc_S_radio_40001000_CHILD_NUM_STATUS_OKAY 1 +#define DT_N_S_soc_S_radio_40001000_FOREACH_CHILD(fn) fn(DT_N_S_soc_S_radio_40001000_S_ieee802154) fn(DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc) fn(DT_N_S_soc_S_radio_40001000_S_bt_hci_controller) +#define DT_N_S_soc_S_radio_40001000_FOREACH_CHILD_SEP(fn, sep) fn(DT_N_S_soc_S_radio_40001000_S_ieee802154) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_radio_40001000_S_bt_hci_controller) +#define DT_N_S_soc_S_radio_40001000_FOREACH_CHILD_VARGS(fn, ...) fn(DT_N_S_soc_S_radio_40001000_S_ieee802154, __VA_ARGS__) fn(DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc, __VA_ARGS__) fn(DT_N_S_soc_S_radio_40001000_S_bt_hci_controller, __VA_ARGS__) +#define DT_N_S_soc_S_radio_40001000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_radio_40001000_S_ieee802154, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_radio_40001000_S_bt_hci_controller, __VA_ARGS__) +#define DT_N_S_soc_S_radio_40001000_FOREACH_CHILD_STATUS_OKAY(fn) fn(DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc) +#define DT_N_S_soc_S_radio_40001000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) fn(DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc) +#define DT_N_S_soc_S_radio_40001000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) fn(DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc, __VA_ARGS__) +#define DT_N_S_soc_S_radio_40001000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc, __VA_ARGS__) + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_radio_40001000_ORD 79 +#define DT_N_S_soc_S_radio_40001000_ORD_STR_SORTABLE 00079 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_radio_40001000_REQUIRES_ORDS \ + 6, /* /soc */ \ + 7, /* /soc/interrupt-controller@e000e100 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_radio_40001000_SUPPORTS_ORDS \ + 80, /* /soc/radio@40001000/bt_hci_controller */ \ + 81, /* /soc/radio@40001000/bt_hci_sdc */ \ + 82, /* /soc/radio@40001000/ieee802154 */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_radio_40001000_EXISTS 1 +#define DT_N_INST_0_nordic_nrf_radio DT_N_S_soc_S_radio_40001000 +#define DT_N_NODELABEL_radio DT_N_S_soc_S_radio_40001000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_radio_40001000_REG_NUM 1 +#define DT_N_S_soc_S_radio_40001000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_radio_40001000_REG_IDX_0_VAL_ADDRESS 1073745920 /* 0x40001000 */ +#define DT_N_S_soc_S_radio_40001000_REG_IDX_0_VAL_SIZE 4096 /* 0x1000 */ +#define DT_N_S_soc_S_radio_40001000_RANGES_NUM 0 +#define DT_N_S_soc_S_radio_40001000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_radio_40001000_IRQ_NUM 1 +#define DT_N_S_soc_S_radio_40001000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_radio_40001000_IRQ_IDX_0_VAL_irq 1 +#define DT_N_S_soc_S_radio_40001000_IRQ_IDX_0_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_radio_40001000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_radio_40001000_IRQ_IDX_0_VAL_priority 1 +#define DT_N_S_soc_S_radio_40001000_IRQ_IDX_0_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_radio_40001000_IRQ_IDX_0_CONTROLLER DT_N_S_soc_S_interrupt_controller_e000e100 +#define DT_N_S_soc_S_radio_40001000_IRQ_LEVEL 1 +#define DT_N_S_soc_S_radio_40001000_COMPAT_MATCHES_nordic_nrf_radio 1 +#define DT_N_S_soc_S_radio_40001000_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_radio_40001000_COMPAT_VENDOR_IDX_0 "Nordic Semiconductor" +#define DT_N_S_soc_S_radio_40001000_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_radio_40001000_COMPAT_MODEL_IDX_0 "nrf-radio" +#define DT_N_S_soc_S_radio_40001000_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_radio_40001000_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_radio_40001000_P_reg {1073745920 /* 0x40001000 */, 4096 /* 0x1000 */} +#define DT_N_S_soc_S_radio_40001000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_radio_40001000_P_reg_IDX_0 1073745920 +#define DT_N_S_soc_S_radio_40001000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_radio_40001000_P_reg_IDX_1 4096 +#define DT_N_S_soc_S_radio_40001000_P_reg_EXISTS 1 +#define DT_N_S_soc_S_radio_40001000_P_interrupts {1 /* 0x1 */, 1 /* 0x1 */} +#define DT_N_S_soc_S_radio_40001000_P_interrupts_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_radio_40001000_P_interrupts_IDX_0 1 +#define DT_N_S_soc_S_radio_40001000_P_interrupts_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_radio_40001000_P_interrupts_IDX_1 1 +#define DT_N_S_soc_S_radio_40001000_P_interrupts_EXISTS 1 +#define DT_N_S_soc_S_radio_40001000_P_dfe_supported 1 +#define DT_N_S_soc_S_radio_40001000_P_dfe_supported_EXISTS 1 +#define DT_N_S_soc_S_radio_40001000_P_ieee802154_supported 1 +#define DT_N_S_soc_S_radio_40001000_P_ieee802154_supported_EXISTS 1 +#define DT_N_S_soc_S_radio_40001000_P_ble_2mbps_supported 1 +#define DT_N_S_soc_S_radio_40001000_P_ble_2mbps_supported_EXISTS 1 +#define DT_N_S_soc_S_radio_40001000_P_ble_coded_phy_supported 1 +#define DT_N_S_soc_S_radio_40001000_P_ble_coded_phy_supported_EXISTS 1 +#define DT_N_S_soc_S_radio_40001000_P_tx_high_power_supported 1 +#define DT_N_S_soc_S_radio_40001000_P_tx_high_power_supported_EXISTS 1 +#define DT_N_S_soc_S_radio_40001000_P_cs_supported 0 +#define DT_N_S_soc_S_radio_40001000_P_cs_supported_EXISTS 1 +#define DT_N_S_soc_S_radio_40001000_P_status "okay" +#define DT_N_S_soc_S_radio_40001000_P_status_STRING_UNQUOTED okay +#define DT_N_S_soc_S_radio_40001000_P_status_STRING_TOKEN okay +#define DT_N_S_soc_S_radio_40001000_P_status_STRING_UPPER_TOKEN OKAY +#define DT_N_S_soc_S_radio_40001000_P_status_IDX_0 "okay" +#define DT_N_S_soc_S_radio_40001000_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_radio_40001000_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_radio_40001000_P_status_IDX_0_ENUM_VAL_okay_EXISTS 1 +#define DT_N_S_soc_S_radio_40001000_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_radio_40001000, status, 0) +#define DT_N_S_soc_S_radio_40001000_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_radio_40001000, status, 0) +#define DT_N_S_soc_S_radio_40001000_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_radio_40001000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_radio_40001000_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_radio_40001000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_radio_40001000_P_status_LEN 1 +#define DT_N_S_soc_S_radio_40001000_P_status_EXISTS 1 +#define DT_N_S_soc_S_radio_40001000_P_compatible {"nordic,nrf-radio"} +#define DT_N_S_soc_S_radio_40001000_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_radio_40001000_P_compatible_IDX_0 "nordic,nrf-radio" +#define DT_N_S_soc_S_radio_40001000_P_compatible_IDX_0_STRING_UNQUOTED nordic,nrf-radio +#define DT_N_S_soc_S_radio_40001000_P_compatible_IDX_0_STRING_TOKEN nordic_nrf_radio +#define DT_N_S_soc_S_radio_40001000_P_compatible_IDX_0_STRING_UPPER_TOKEN NORDIC_NRF_RADIO +#define DT_N_S_soc_S_radio_40001000_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_radio_40001000, compatible, 0) +#define DT_N_S_soc_S_radio_40001000_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_radio_40001000, compatible, 0) +#define DT_N_S_soc_S_radio_40001000_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_radio_40001000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_radio_40001000_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_radio_40001000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_radio_40001000_P_compatible_LEN 1 +#define DT_N_S_soc_S_radio_40001000_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_radio_40001000_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_radio_40001000_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_radio_40001000_P_wakeup_source 0 +#define DT_N_S_soc_S_radio_40001000_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_radio_40001000_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_radio_40001000_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/radio@40001000/bt_hci_controller + * + * Node identifier: DT_N_S_soc_S_radio_40001000_S_bt_hci_controller + * + * Binding (compatible = zephyr,bt-hci-ll-sw-split): + * $ZEPHYR_BASE/dts/bindings/bluetooth/zephyr,bt-hci-ll-sw-split.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_controller_PATH "/soc/radio@40001000/bt_hci_controller" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_controller_FULL_NAME "bt_hci_controller" +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_controller_FULL_NAME_UNQUOTED bt_hci_controller +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_controller_FULL_NAME_TOKEN bt_hci_controller +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_controller_FULL_NAME_UPPER_TOKEN BT_HCI_CONTROLLER + +/* Node parent (/soc/radio@40001000) identifier: */ +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_controller_PARENT DT_N_S_soc_S_radio_40001000 + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_controller_CHILD_IDX 2 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_controller_NODELABEL_NUM 1 +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_controller_FOREACH_NODELABEL(fn) fn(bt_hci_controller) +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_controller_FOREACH_NODELABEL_VARGS(fn, ...) fn(bt_hci_controller, __VA_ARGS__) +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_controller_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc_S_radio_40001000) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_controller_CHILD_NUM 0 +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_controller_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_controller_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_controller_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_controller_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_controller_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_controller_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_controller_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_controller_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_controller_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_controller_ORD 80 +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_controller_ORD_STR_SORTABLE 00080 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_controller_REQUIRES_ORDS \ + 79, /* /soc/radio@40001000 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_controller_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_controller_EXISTS 1 +#define DT_N_INST_0_zephyr_bt_hci_ll_sw_split DT_N_S_soc_S_radio_40001000_S_bt_hci_controller +#define DT_N_NODELABEL_bt_hci_controller DT_N_S_soc_S_radio_40001000_S_bt_hci_controller + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_controller_REG_NUM 0 +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_controller_RANGES_NUM 0 +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_controller_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_controller_IRQ_NUM 0 +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_controller_IRQ_LEVEL 0 +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_controller_COMPAT_MATCHES_zephyr_bt_hci_ll_sw_split 1 +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_controller_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_controller_COMPAT_VENDOR_IDX_0 "Zephyr-specific binding" +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_controller_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_controller_COMPAT_MODEL_IDX_0 "bt-hci-ll-sw-split" +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_controller_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_controller_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_controller_P_bt_hci_name "Controller" +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_controller_P_bt_hci_name_STRING_UNQUOTED Controller +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_controller_P_bt_hci_name_STRING_TOKEN Controller +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_controller_P_bt_hci_name_STRING_UPPER_TOKEN CONTROLLER +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_controller_P_bt_hci_name_IDX_0 "Controller" +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_controller_P_bt_hci_name_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_controller_P_bt_hci_name_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_radio_40001000_S_bt_hci_controller, bt_hci_name, 0) +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_controller_P_bt_hci_name_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_radio_40001000_S_bt_hci_controller, bt_hci_name, 0) +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_controller_P_bt_hci_name_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_radio_40001000_S_bt_hci_controller, bt_hci_name, 0, __VA_ARGS__) +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_controller_P_bt_hci_name_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_radio_40001000_S_bt_hci_controller, bt_hci_name, 0, __VA_ARGS__) +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_controller_P_bt_hci_name_LEN 1 +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_controller_P_bt_hci_name_EXISTS 1 +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_controller_P_bt_hci_bus "virtual" +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_controller_P_bt_hci_bus_STRING_UNQUOTED virtual +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_controller_P_bt_hci_bus_STRING_TOKEN virtual +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_controller_P_bt_hci_bus_STRING_UPPER_TOKEN VIRTUAL +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_controller_P_bt_hci_bus_IDX_0 "virtual" +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_controller_P_bt_hci_bus_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_controller_P_bt_hci_bus_IDX_0_ENUM_IDX 0 +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_controller_P_bt_hci_bus_IDX_0_ENUM_VAL_virtual_EXISTS 1 +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_controller_P_bt_hci_bus_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_radio_40001000_S_bt_hci_controller, bt_hci_bus, 0) +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_controller_P_bt_hci_bus_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_radio_40001000_S_bt_hci_controller, bt_hci_bus, 0) +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_controller_P_bt_hci_bus_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_radio_40001000_S_bt_hci_controller, bt_hci_bus, 0, __VA_ARGS__) +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_controller_P_bt_hci_bus_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_radio_40001000_S_bt_hci_controller, bt_hci_bus, 0, __VA_ARGS__) +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_controller_P_bt_hci_bus_LEN 1 +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_controller_P_bt_hci_bus_EXISTS 1 +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_controller_P_bt_hci_quirks {"no-auto-dle"} +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_controller_P_bt_hci_quirks_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_controller_P_bt_hci_quirks_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_controller_P_bt_hci_quirks_IDX_0_ENUM_VAL_no_auto_dle_EXISTS 1 +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_controller_P_bt_hci_quirks_IDX_0 "no-auto-dle" +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_controller_P_bt_hci_quirks_IDX_0_STRING_UNQUOTED no-auto-dle +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_controller_P_bt_hci_quirks_IDX_0_STRING_TOKEN no_auto_dle +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_controller_P_bt_hci_quirks_IDX_0_STRING_UPPER_TOKEN NO_AUTO_DLE +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_controller_P_bt_hci_quirks_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_radio_40001000_S_bt_hci_controller, bt_hci_quirks, 0) +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_controller_P_bt_hci_quirks_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_radio_40001000_S_bt_hci_controller, bt_hci_quirks, 0) +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_controller_P_bt_hci_quirks_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_radio_40001000_S_bt_hci_controller, bt_hci_quirks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_controller_P_bt_hci_quirks_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_radio_40001000_S_bt_hci_controller, bt_hci_quirks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_controller_P_bt_hci_quirks_LEN 1 +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_controller_P_bt_hci_quirks_EXISTS 1 +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_controller_P_bt_hci_vs_ext 0 +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_controller_P_bt_hci_vs_ext_EXISTS 1 +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_controller_P_status "disabled" +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_controller_P_status_STRING_UNQUOTED disabled +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_controller_P_status_STRING_TOKEN disabled +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_controller_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_controller_P_status_IDX_0 "disabled" +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_controller_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_controller_P_status_IDX_0_ENUM_IDX 2 +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_controller_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_controller_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_radio_40001000_S_bt_hci_controller, status, 0) +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_controller_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_radio_40001000_S_bt_hci_controller, status, 0) +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_controller_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_radio_40001000_S_bt_hci_controller, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_controller_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_radio_40001000_S_bt_hci_controller, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_controller_P_status_LEN 1 +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_controller_P_status_EXISTS 1 +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_controller_P_compatible {"zephyr,bt-hci-ll-sw-split"} +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_controller_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_controller_P_compatible_IDX_0 "zephyr,bt-hci-ll-sw-split" +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_controller_P_compatible_IDX_0_STRING_UNQUOTED zephyr,bt-hci-ll-sw-split +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_controller_P_compatible_IDX_0_STRING_TOKEN zephyr_bt_hci_ll_sw_split +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_controller_P_compatible_IDX_0_STRING_UPPER_TOKEN ZEPHYR_BT_HCI_LL_SW_SPLIT +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_controller_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_radio_40001000_S_bt_hci_controller, compatible, 0) +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_controller_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_radio_40001000_S_bt_hci_controller, compatible, 0) +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_controller_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_radio_40001000_S_bt_hci_controller, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_controller_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_radio_40001000_S_bt_hci_controller, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_controller_P_compatible_LEN 1 +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_controller_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_controller_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_controller_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_controller_P_wakeup_source 0 +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_controller_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_controller_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_controller_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/radio@40001000/bt_hci_sdc + * + * Node identifier: DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc + * + * Binding (compatible = nordic,bt-hci-sdc): + * /home/miguel/ncs/v3.0.2/nrf/dts/bindings/bluetooth/nordic,bt-hci-sdc.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc_PATH "/soc/radio@40001000/bt_hci_sdc" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc_FULL_NAME "bt_hci_sdc" +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc_FULL_NAME_UNQUOTED bt_hci_sdc +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc_FULL_NAME_TOKEN bt_hci_sdc +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc_FULL_NAME_UPPER_TOKEN BT_HCI_SDC + +/* Node parent (/soc/radio@40001000) identifier: */ +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc_PARENT DT_N_S_soc_S_radio_40001000 + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc_CHILD_IDX 1 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc_NODELABEL_NUM 1 +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc_FOREACH_NODELABEL(fn) fn(bt_hci_sdc) +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc_FOREACH_NODELABEL_VARGS(fn, ...) fn(bt_hci_sdc, __VA_ARGS__) +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc_S_radio_40001000) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc_CHILD_NUM 0 +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc_ORD 81 +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc_ORD_STR_SORTABLE 00081 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc_REQUIRES_ORDS \ + 79, /* /soc/radio@40001000 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc_EXISTS 1 +#define DT_N_INST_0_nordic_bt_hci_sdc DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc +#define DT_N_NODELABEL_bt_hci_sdc DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc_REG_NUM 0 +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc_RANGES_NUM 0 +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc_IRQ_NUM 0 +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc_IRQ_LEVEL 0 +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc_COMPAT_MATCHES_nordic_bt_hci_sdc 1 +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc_COMPAT_VENDOR_IDX_0 "Nordic Semiconductor" +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc_COMPAT_MODEL_IDX_0 "bt-hci-sdc" +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc_P_bt_hci_name "SDC" +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc_P_bt_hci_name_STRING_UNQUOTED SDC +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc_P_bt_hci_name_STRING_TOKEN SDC +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc_P_bt_hci_name_STRING_UPPER_TOKEN SDC +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc_P_bt_hci_name_IDX_0 "SDC" +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc_P_bt_hci_name_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc_P_bt_hci_name_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc, bt_hci_name, 0) +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc_P_bt_hci_name_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc, bt_hci_name, 0) +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc_P_bt_hci_name_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc, bt_hci_name, 0, __VA_ARGS__) +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc_P_bt_hci_name_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc, bt_hci_name, 0, __VA_ARGS__) +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc_P_bt_hci_name_LEN 1 +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc_P_bt_hci_name_EXISTS 1 +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc_P_bt_hci_bus "virtual" +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc_P_bt_hci_bus_STRING_UNQUOTED virtual +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc_P_bt_hci_bus_STRING_TOKEN virtual +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc_P_bt_hci_bus_STRING_UPPER_TOKEN VIRTUAL +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc_P_bt_hci_bus_IDX_0 "virtual" +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc_P_bt_hci_bus_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc_P_bt_hci_bus_IDX_0_ENUM_IDX 0 +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc_P_bt_hci_bus_IDX_0_ENUM_VAL_virtual_EXISTS 1 +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc_P_bt_hci_bus_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc, bt_hci_bus, 0) +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc_P_bt_hci_bus_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc, bt_hci_bus, 0) +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc_P_bt_hci_bus_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc, bt_hci_bus, 0, __VA_ARGS__) +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc_P_bt_hci_bus_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc, bt_hci_bus, 0, __VA_ARGS__) +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc_P_bt_hci_bus_LEN 1 +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc_P_bt_hci_bus_EXISTS 1 +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc_P_bt_hci_vs_ext 0 +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc_P_bt_hci_vs_ext_EXISTS 1 +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc_P_status "okay" +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc_P_status_STRING_UNQUOTED okay +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc_P_status_STRING_TOKEN okay +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc_P_status_STRING_UPPER_TOKEN OKAY +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc_P_status_IDX_0 "okay" +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc_P_status_IDX_0_ENUM_VAL_okay_EXISTS 1 +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc, status, 0) +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc, status, 0) +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc_P_status_LEN 1 +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc_P_status_EXISTS 1 +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc_P_compatible {"nordic,bt-hci-sdc"} +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc_P_compatible_IDX_0 "nordic,bt-hci-sdc" +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc_P_compatible_IDX_0_STRING_UNQUOTED nordic,bt-hci-sdc +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc_P_compatible_IDX_0_STRING_TOKEN nordic_bt_hci_sdc +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc_P_compatible_IDX_0_STRING_UPPER_TOKEN NORDIC_BT_HCI_SDC +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc, compatible, 0) +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc, compatible, 0) +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc_P_compatible_LEN 1 +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc_P_wakeup_source 0 +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/radio@40001000/ieee802154 + * + * Node identifier: DT_N_S_soc_S_radio_40001000_S_ieee802154 + * + * Binding (compatible = nordic,nrf-ieee802154): + * $ZEPHYR_BASE/dts/bindings/ieee802154/nordic,nrf-ieee802154.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_radio_40001000_S_ieee802154_PATH "/soc/radio@40001000/ieee802154" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_radio_40001000_S_ieee802154_FULL_NAME "ieee802154" +#define DT_N_S_soc_S_radio_40001000_S_ieee802154_FULL_NAME_UNQUOTED ieee802154 +#define DT_N_S_soc_S_radio_40001000_S_ieee802154_FULL_NAME_TOKEN ieee802154 +#define DT_N_S_soc_S_radio_40001000_S_ieee802154_FULL_NAME_UPPER_TOKEN IEEE802154 + +/* Node parent (/soc/radio@40001000) identifier: */ +#define DT_N_S_soc_S_radio_40001000_S_ieee802154_PARENT DT_N_S_soc_S_radio_40001000 + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_radio_40001000_S_ieee802154_CHILD_IDX 0 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_radio_40001000_S_ieee802154_NODELABEL_NUM 1 +#define DT_N_S_soc_S_radio_40001000_S_ieee802154_FOREACH_NODELABEL(fn) fn(ieee802154) +#define DT_N_S_soc_S_radio_40001000_S_ieee802154_FOREACH_NODELABEL_VARGS(fn, ...) fn(ieee802154, __VA_ARGS__) +#define DT_N_S_soc_S_radio_40001000_S_ieee802154_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc_S_radio_40001000) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_radio_40001000_S_ieee802154_CHILD_NUM 0 +#define DT_N_S_soc_S_radio_40001000_S_ieee802154_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_radio_40001000_S_ieee802154_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_radio_40001000_S_ieee802154_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_radio_40001000_S_ieee802154_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_radio_40001000_S_ieee802154_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_radio_40001000_S_ieee802154_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_radio_40001000_S_ieee802154_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_radio_40001000_S_ieee802154_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_radio_40001000_S_ieee802154_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_radio_40001000_S_ieee802154_ORD 82 +#define DT_N_S_soc_S_radio_40001000_S_ieee802154_ORD_STR_SORTABLE 00082 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_radio_40001000_S_ieee802154_REQUIRES_ORDS \ + 79, /* /soc/radio@40001000 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_radio_40001000_S_ieee802154_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_radio_40001000_S_ieee802154_EXISTS 1 +#define DT_N_INST_0_nordic_nrf_ieee802154 DT_N_S_soc_S_radio_40001000_S_ieee802154 +#define DT_N_NODELABEL_ieee802154 DT_N_S_soc_S_radio_40001000_S_ieee802154 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_radio_40001000_S_ieee802154_REG_NUM 0 +#define DT_N_S_soc_S_radio_40001000_S_ieee802154_RANGES_NUM 0 +#define DT_N_S_soc_S_radio_40001000_S_ieee802154_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_radio_40001000_S_ieee802154_IRQ_NUM 0 +#define DT_N_S_soc_S_radio_40001000_S_ieee802154_IRQ_LEVEL 0 +#define DT_N_S_soc_S_radio_40001000_S_ieee802154_COMPAT_MATCHES_nordic_nrf_ieee802154 1 +#define DT_N_S_soc_S_radio_40001000_S_ieee802154_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_radio_40001000_S_ieee802154_COMPAT_VENDOR_IDX_0 "Nordic Semiconductor" +#define DT_N_S_soc_S_radio_40001000_S_ieee802154_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_radio_40001000_S_ieee802154_COMPAT_MODEL_IDX_0 "nrf-ieee802154" +#define DT_N_S_soc_S_radio_40001000_S_ieee802154_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_radio_40001000_S_ieee802154_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_radio_40001000_S_ieee802154_P_status "disabled" +#define DT_N_S_soc_S_radio_40001000_S_ieee802154_P_status_STRING_UNQUOTED disabled +#define DT_N_S_soc_S_radio_40001000_S_ieee802154_P_status_STRING_TOKEN disabled +#define DT_N_S_soc_S_radio_40001000_S_ieee802154_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_soc_S_radio_40001000_S_ieee802154_P_status_IDX_0 "disabled" +#define DT_N_S_soc_S_radio_40001000_S_ieee802154_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_radio_40001000_S_ieee802154_P_status_IDX_0_ENUM_IDX 2 +#define DT_N_S_soc_S_radio_40001000_S_ieee802154_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_radio_40001000_S_ieee802154_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_radio_40001000_S_ieee802154, status, 0) +#define DT_N_S_soc_S_radio_40001000_S_ieee802154_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_radio_40001000_S_ieee802154, status, 0) +#define DT_N_S_soc_S_radio_40001000_S_ieee802154_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_radio_40001000_S_ieee802154, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_radio_40001000_S_ieee802154_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_radio_40001000_S_ieee802154, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_radio_40001000_S_ieee802154_P_status_LEN 1 +#define DT_N_S_soc_S_radio_40001000_S_ieee802154_P_status_EXISTS 1 +#define DT_N_S_soc_S_radio_40001000_S_ieee802154_P_compatible {"nordic,nrf-ieee802154"} +#define DT_N_S_soc_S_radio_40001000_S_ieee802154_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_radio_40001000_S_ieee802154_P_compatible_IDX_0 "nordic,nrf-ieee802154" +#define DT_N_S_soc_S_radio_40001000_S_ieee802154_P_compatible_IDX_0_STRING_UNQUOTED nordic,nrf-ieee802154 +#define DT_N_S_soc_S_radio_40001000_S_ieee802154_P_compatible_IDX_0_STRING_TOKEN nordic_nrf_ieee802154 +#define DT_N_S_soc_S_radio_40001000_S_ieee802154_P_compatible_IDX_0_STRING_UPPER_TOKEN NORDIC_NRF_IEEE802154 +#define DT_N_S_soc_S_radio_40001000_S_ieee802154_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_radio_40001000_S_ieee802154, compatible, 0) +#define DT_N_S_soc_S_radio_40001000_S_ieee802154_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_radio_40001000_S_ieee802154, compatible, 0) +#define DT_N_S_soc_S_radio_40001000_S_ieee802154_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_radio_40001000_S_ieee802154, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_radio_40001000_S_ieee802154_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_radio_40001000_S_ieee802154, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_radio_40001000_S_ieee802154_P_compatible_LEN 1 +#define DT_N_S_soc_S_radio_40001000_S_ieee802154_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_radio_40001000_S_ieee802154_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_radio_40001000_S_ieee802154_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_radio_40001000_S_ieee802154_P_wakeup_source 0 +#define DT_N_S_soc_S_radio_40001000_S_ieee802154_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_radio_40001000_S_ieee802154_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_radio_40001000_S_ieee802154_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/usbd@40027000 + * + * Node identifier: DT_N_S_soc_S_usbd_40027000 + * + * Binding (compatible = nordic,nrf-usbd): + * $ZEPHYR_BASE/dts/bindings/usb/nordic,nrf-usbd.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_usbd_40027000_PATH "/soc/usbd@40027000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_usbd_40027000_FULL_NAME "usbd@40027000" +#define DT_N_S_soc_S_usbd_40027000_FULL_NAME_UNQUOTED usbd@40027000 +#define DT_N_S_soc_S_usbd_40027000_FULL_NAME_TOKEN usbd_40027000 +#define DT_N_S_soc_S_usbd_40027000_FULL_NAME_UPPER_TOKEN USBD_40027000 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_usbd_40027000_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_usbd_40027000_CHILD_IDX 47 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_usbd_40027000_NODELABEL_NUM 2 +#define DT_N_S_soc_S_usbd_40027000_FOREACH_NODELABEL(fn) fn(usbd) fn(zephyr_udc0) +#define DT_N_S_soc_S_usbd_40027000_FOREACH_NODELABEL_VARGS(fn, ...) fn(usbd, __VA_ARGS__) fn(zephyr_udc0, __VA_ARGS__) +#define DT_N_S_soc_S_usbd_40027000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_usbd_40027000_CHILD_NUM 1 +#define DT_N_S_soc_S_usbd_40027000_CHILD_NUM_STATUS_OKAY 1 +#define DT_N_S_soc_S_usbd_40027000_FOREACH_CHILD(fn) fn(DT_N_S_soc_S_usbd_40027000_S_cdc_acm_uart0) +#define DT_N_S_soc_S_usbd_40027000_FOREACH_CHILD_SEP(fn, sep) fn(DT_N_S_soc_S_usbd_40027000_S_cdc_acm_uart0) +#define DT_N_S_soc_S_usbd_40027000_FOREACH_CHILD_VARGS(fn, ...) fn(DT_N_S_soc_S_usbd_40027000_S_cdc_acm_uart0, __VA_ARGS__) +#define DT_N_S_soc_S_usbd_40027000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_usbd_40027000_S_cdc_acm_uart0, __VA_ARGS__) +#define DT_N_S_soc_S_usbd_40027000_FOREACH_CHILD_STATUS_OKAY(fn) fn(DT_N_S_soc_S_usbd_40027000_S_cdc_acm_uart0) +#define DT_N_S_soc_S_usbd_40027000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) fn(DT_N_S_soc_S_usbd_40027000_S_cdc_acm_uart0) +#define DT_N_S_soc_S_usbd_40027000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) fn(DT_N_S_soc_S_usbd_40027000_S_cdc_acm_uart0, __VA_ARGS__) +#define DT_N_S_soc_S_usbd_40027000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_usbd_40027000_S_cdc_acm_uart0, __VA_ARGS__) + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_usbd_40027000_ORD 83 +#define DT_N_S_soc_S_usbd_40027000_ORD_STR_SORTABLE 00083 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_usbd_40027000_REQUIRES_ORDS \ + 6, /* /soc */ \ + 7, /* /soc/interrupt-controller@e000e100 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_usbd_40027000_SUPPORTS_ORDS \ + 84, /* /soc/usbd@40027000/cdc_acm_uart0 */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_usbd_40027000_EXISTS 1 +#define DT_N_INST_0_nordic_nrf_usbd DT_N_S_soc_S_usbd_40027000 +#define DT_N_NODELABEL_usbd DT_N_S_soc_S_usbd_40027000 +#define DT_N_NODELABEL_zephyr_udc0 DT_N_S_soc_S_usbd_40027000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_usbd_40027000_REG_NUM 1 +#define DT_N_S_soc_S_usbd_40027000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_usbd_40027000_REG_IDX_0_VAL_ADDRESS 1073901568 /* 0x40027000 */ +#define DT_N_S_soc_S_usbd_40027000_REG_IDX_0_VAL_SIZE 4096 /* 0x1000 */ +#define DT_N_S_soc_S_usbd_40027000_RANGES_NUM 0 +#define DT_N_S_soc_S_usbd_40027000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_usbd_40027000_IRQ_NUM 1 +#define DT_N_S_soc_S_usbd_40027000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_usbd_40027000_IRQ_IDX_0_VAL_irq 39 +#define DT_N_S_soc_S_usbd_40027000_IRQ_IDX_0_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_usbd_40027000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_usbd_40027000_IRQ_IDX_0_VAL_priority 1 +#define DT_N_S_soc_S_usbd_40027000_IRQ_IDX_0_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_usbd_40027000_IRQ_IDX_0_CONTROLLER DT_N_S_soc_S_interrupt_controller_e000e100 +#define DT_N_S_soc_S_usbd_40027000_IRQ_LEVEL 1 +#define DT_N_S_soc_S_usbd_40027000_COMPAT_MATCHES_nordic_nrf_usbd 1 +#define DT_N_S_soc_S_usbd_40027000_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_usbd_40027000_COMPAT_VENDOR_IDX_0 "Nordic Semiconductor" +#define DT_N_S_soc_S_usbd_40027000_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_usbd_40027000_COMPAT_MODEL_IDX_0 "nrf-usbd" +#define DT_N_S_soc_S_usbd_40027000_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_usbd_40027000_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_usbd_40027000_P_reg {1073901568 /* 0x40027000 */, 4096 /* 0x1000 */} +#define DT_N_S_soc_S_usbd_40027000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_usbd_40027000_P_reg_IDX_0 1073901568 +#define DT_N_S_soc_S_usbd_40027000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_usbd_40027000_P_reg_IDX_1 4096 +#define DT_N_S_soc_S_usbd_40027000_P_reg_EXISTS 1 +#define DT_N_S_soc_S_usbd_40027000_P_interrupts {39 /* 0x27 */, 1 /* 0x1 */} +#define DT_N_S_soc_S_usbd_40027000_P_interrupts_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_usbd_40027000_P_interrupts_IDX_0 39 +#define DT_N_S_soc_S_usbd_40027000_P_interrupts_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_usbd_40027000_P_interrupts_IDX_1 1 +#define DT_N_S_soc_S_usbd_40027000_P_interrupts_EXISTS 1 +#define DT_N_S_soc_S_usbd_40027000_P_num_isoin_endpoints 1 +#define DT_N_S_soc_S_usbd_40027000_P_num_isoin_endpoints_EXISTS 1 +#define DT_N_S_soc_S_usbd_40027000_P_num_isoout_endpoints 1 +#define DT_N_S_soc_S_usbd_40027000_P_num_isoout_endpoints_EXISTS 1 +#define DT_N_S_soc_S_usbd_40027000_P_num_bidir_endpoints 1 +#define DT_N_S_soc_S_usbd_40027000_P_num_bidir_endpoints_EXISTS 1 +#define DT_N_S_soc_S_usbd_40027000_P_num_in_endpoints 7 +#define DT_N_S_soc_S_usbd_40027000_P_num_in_endpoints_EXISTS 1 +#define DT_N_S_soc_S_usbd_40027000_P_num_out_endpoints 7 +#define DT_N_S_soc_S_usbd_40027000_P_num_out_endpoints_EXISTS 1 +#define DT_N_S_soc_S_usbd_40027000_P_status "okay" +#define DT_N_S_soc_S_usbd_40027000_P_status_STRING_UNQUOTED okay +#define DT_N_S_soc_S_usbd_40027000_P_status_STRING_TOKEN okay +#define DT_N_S_soc_S_usbd_40027000_P_status_STRING_UPPER_TOKEN OKAY +#define DT_N_S_soc_S_usbd_40027000_P_status_IDX_0 "okay" +#define DT_N_S_soc_S_usbd_40027000_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_usbd_40027000_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_usbd_40027000_P_status_IDX_0_ENUM_VAL_okay_EXISTS 1 +#define DT_N_S_soc_S_usbd_40027000_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_usbd_40027000, status, 0) +#define DT_N_S_soc_S_usbd_40027000_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_usbd_40027000, status, 0) +#define DT_N_S_soc_S_usbd_40027000_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_usbd_40027000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_usbd_40027000_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_usbd_40027000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_usbd_40027000_P_status_LEN 1 +#define DT_N_S_soc_S_usbd_40027000_P_status_EXISTS 1 +#define DT_N_S_soc_S_usbd_40027000_P_compatible {"nordic,nrf-usbd"} +#define DT_N_S_soc_S_usbd_40027000_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_usbd_40027000_P_compatible_IDX_0 "nordic,nrf-usbd" +#define DT_N_S_soc_S_usbd_40027000_P_compatible_IDX_0_STRING_UNQUOTED nordic,nrf-usbd +#define DT_N_S_soc_S_usbd_40027000_P_compatible_IDX_0_STRING_TOKEN nordic_nrf_usbd +#define DT_N_S_soc_S_usbd_40027000_P_compatible_IDX_0_STRING_UPPER_TOKEN NORDIC_NRF_USBD +#define DT_N_S_soc_S_usbd_40027000_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_usbd_40027000, compatible, 0) +#define DT_N_S_soc_S_usbd_40027000_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_usbd_40027000, compatible, 0) +#define DT_N_S_soc_S_usbd_40027000_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_usbd_40027000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_usbd_40027000_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_usbd_40027000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_usbd_40027000_P_compatible_LEN 1 +#define DT_N_S_soc_S_usbd_40027000_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_usbd_40027000_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_usbd_40027000_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_usbd_40027000_P_wakeup_source 0 +#define DT_N_S_soc_S_usbd_40027000_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_usbd_40027000_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_usbd_40027000_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/usbd@40027000/cdc_acm_uart0 + * + * Node identifier: DT_N_S_soc_S_usbd_40027000_S_cdc_acm_uart0 + * + * Binding (compatible = zephyr,cdc-acm-uart): + * $ZEPHYR_BASE/dts/bindings/serial/zephyr,cdc-acm-uart.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_usbd_40027000_S_cdc_acm_uart0_PATH "/soc/usbd@40027000/cdc_acm_uart0" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_usbd_40027000_S_cdc_acm_uart0_FULL_NAME "cdc_acm_uart0" +#define DT_N_S_soc_S_usbd_40027000_S_cdc_acm_uart0_FULL_NAME_UNQUOTED cdc_acm_uart0 +#define DT_N_S_soc_S_usbd_40027000_S_cdc_acm_uart0_FULL_NAME_TOKEN cdc_acm_uart0 +#define DT_N_S_soc_S_usbd_40027000_S_cdc_acm_uart0_FULL_NAME_UPPER_TOKEN CDC_ACM_UART0 + +/* Node parent (/soc/usbd@40027000) identifier: */ +#define DT_N_S_soc_S_usbd_40027000_S_cdc_acm_uart0_PARENT DT_N_S_soc_S_usbd_40027000 + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_usbd_40027000_S_cdc_acm_uart0_CHILD_IDX 0 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_usbd_40027000_S_cdc_acm_uart0_NODELABEL_NUM 1 +#define DT_N_S_soc_S_usbd_40027000_S_cdc_acm_uart0_FOREACH_NODELABEL(fn) fn(cdc_acm_uart0) +#define DT_N_S_soc_S_usbd_40027000_S_cdc_acm_uart0_FOREACH_NODELABEL_VARGS(fn, ...) fn(cdc_acm_uart0, __VA_ARGS__) +#define DT_N_S_soc_S_usbd_40027000_S_cdc_acm_uart0_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc_S_usbd_40027000) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_usbd_40027000_S_cdc_acm_uart0_CHILD_NUM 0 +#define DT_N_S_soc_S_usbd_40027000_S_cdc_acm_uart0_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_usbd_40027000_S_cdc_acm_uart0_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_usbd_40027000_S_cdc_acm_uart0_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_usbd_40027000_S_cdc_acm_uart0_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_usbd_40027000_S_cdc_acm_uart0_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_usbd_40027000_S_cdc_acm_uart0_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_usbd_40027000_S_cdc_acm_uart0_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_usbd_40027000_S_cdc_acm_uart0_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_usbd_40027000_S_cdc_acm_uart0_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_usbd_40027000_S_cdc_acm_uart0_ORD 84 +#define DT_N_S_soc_S_usbd_40027000_S_cdc_acm_uart0_ORD_STR_SORTABLE 00084 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_usbd_40027000_S_cdc_acm_uart0_REQUIRES_ORDS \ + 83, /* /soc/usbd@40027000 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_usbd_40027000_S_cdc_acm_uart0_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_usbd_40027000_S_cdc_acm_uart0_EXISTS 1 +#define DT_N_INST_0_zephyr_cdc_acm_uart DT_N_S_soc_S_usbd_40027000_S_cdc_acm_uart0 +#define DT_N_NODELABEL_cdc_acm_uart0 DT_N_S_soc_S_usbd_40027000_S_cdc_acm_uart0 + +/* Bus info (controller: '/soc/usbd@40027000', type: '['usb']') */ +#define DT_N_S_soc_S_usbd_40027000_S_cdc_acm_uart0_BUS_usb 1 +#define DT_N_S_soc_S_usbd_40027000_S_cdc_acm_uart0_BUS DT_N_S_soc_S_usbd_40027000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_usbd_40027000_S_cdc_acm_uart0_REG_NUM 0 +#define DT_N_S_soc_S_usbd_40027000_S_cdc_acm_uart0_RANGES_NUM 0 +#define DT_N_S_soc_S_usbd_40027000_S_cdc_acm_uart0_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_usbd_40027000_S_cdc_acm_uart0_IRQ_NUM 0 +#define DT_N_S_soc_S_usbd_40027000_S_cdc_acm_uart0_IRQ_LEVEL 0 +#define DT_N_S_soc_S_usbd_40027000_S_cdc_acm_uart0_COMPAT_MATCHES_zephyr_cdc_acm_uart 1 +#define DT_N_S_soc_S_usbd_40027000_S_cdc_acm_uart0_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_usbd_40027000_S_cdc_acm_uart0_COMPAT_VENDOR_IDX_0 "Zephyr-specific binding" +#define DT_N_S_soc_S_usbd_40027000_S_cdc_acm_uart0_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_usbd_40027000_S_cdc_acm_uart0_COMPAT_MODEL_IDX_0 "cdc-acm-uart" +#define DT_N_S_soc_S_usbd_40027000_S_cdc_acm_uart0_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_usbd_40027000_S_cdc_acm_uart0_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_usbd_40027000_S_cdc_acm_uart0_P_tx_fifo_size 1024 +#define DT_N_S_soc_S_usbd_40027000_S_cdc_acm_uart0_P_tx_fifo_size_EXISTS 1 +#define DT_N_S_soc_S_usbd_40027000_S_cdc_acm_uart0_P_rx_fifo_size 1024 +#define DT_N_S_soc_S_usbd_40027000_S_cdc_acm_uart0_P_rx_fifo_size_EXISTS 1 +#define DT_N_S_soc_S_usbd_40027000_S_cdc_acm_uart0_P_hw_flow_control 0 +#define DT_N_S_soc_S_usbd_40027000_S_cdc_acm_uart0_P_hw_flow_control_EXISTS 1 +#define DT_N_S_soc_S_usbd_40027000_S_cdc_acm_uart0_P_compatible {"zephyr,cdc-acm-uart"} +#define DT_N_S_soc_S_usbd_40027000_S_cdc_acm_uart0_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_usbd_40027000_S_cdc_acm_uart0_P_compatible_IDX_0 "zephyr,cdc-acm-uart" +#define DT_N_S_soc_S_usbd_40027000_S_cdc_acm_uart0_P_compatible_IDX_0_STRING_UNQUOTED zephyr,cdc-acm-uart +#define DT_N_S_soc_S_usbd_40027000_S_cdc_acm_uart0_P_compatible_IDX_0_STRING_TOKEN zephyr_cdc_acm_uart +#define DT_N_S_soc_S_usbd_40027000_S_cdc_acm_uart0_P_compatible_IDX_0_STRING_UPPER_TOKEN ZEPHYR_CDC_ACM_UART +#define DT_N_S_soc_S_usbd_40027000_S_cdc_acm_uart0_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_usbd_40027000_S_cdc_acm_uart0, compatible, 0) +#define DT_N_S_soc_S_usbd_40027000_S_cdc_acm_uart0_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_usbd_40027000_S_cdc_acm_uart0, compatible, 0) +#define DT_N_S_soc_S_usbd_40027000_S_cdc_acm_uart0_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_usbd_40027000_S_cdc_acm_uart0, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_usbd_40027000_S_cdc_acm_uart0_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_usbd_40027000_S_cdc_acm_uart0, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_usbd_40027000_S_cdc_acm_uart0_P_compatible_LEN 1 +#define DT_N_S_soc_S_usbd_40027000_S_cdc_acm_uart0_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_usbd_40027000_S_cdc_acm_uart0_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_usbd_40027000_S_cdc_acm_uart0_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_usbd_40027000_S_cdc_acm_uart0_P_wakeup_source 0 +#define DT_N_S_soc_S_usbd_40027000_S_cdc_acm_uart0_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_usbd_40027000_S_cdc_acm_uart0_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_usbd_40027000_S_cdc_acm_uart0_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Chosen nodes + */ +#define DT_CHOSEN_zephyr_bt_hci DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc +#define DT_CHOSEN_zephyr_bt_hci_EXISTS 1 +#define DT_CHOSEN_zephyr_entropy DT_N_S_soc_S_random_4000d000 +#define DT_CHOSEN_zephyr_entropy_EXISTS 1 +#define DT_CHOSEN_zephyr_flash_controller DT_N_S_soc_S_flash_controller_4001e000 +#define DT_CHOSEN_zephyr_flash_controller_EXISTS 1 +#define DT_CHOSEN_zephyr_console DT_N_S_soc_S_usbd_40027000_S_cdc_acm_uart0 +#define DT_CHOSEN_zephyr_console_EXISTS 1 +#define DT_CHOSEN_zephyr_udc DT_N_S_soc_S_usbd_40027000 +#define DT_CHOSEN_zephyr_udc_EXISTS 1 +#define DT_CHOSEN_zephyr_shell_uart DT_N_S_soc_S_uart_40002000 +#define DT_CHOSEN_zephyr_shell_uart_EXISTS 1 +#define DT_CHOSEN_zephyr_uart_mcumgr DT_N_S_soc_S_uart_40002000 +#define DT_CHOSEN_zephyr_uart_mcumgr_EXISTS 1 +#define DT_CHOSEN_zephyr_bt_mon_uart DT_N_S_soc_S_uart_40002000 +#define DT_CHOSEN_zephyr_bt_mon_uart_EXISTS 1 +#define DT_CHOSEN_zephyr_bt_c2h_uart DT_N_S_soc_S_uart_40002000 +#define DT_CHOSEN_zephyr_bt_c2h_uart_EXISTS 1 +#define DT_CHOSEN_zephyr_sram DT_N_S_soc_S_memory_20000000 +#define DT_CHOSEN_zephyr_sram_EXISTS 1 +#define DT_CHOSEN_zephyr_flash DT_N_S_soc_S_flash_controller_4001e000_S_flash_0 +#define DT_CHOSEN_zephyr_flash_EXISTS 1 +#define DT_CHOSEN_zephyr_code_partition DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_c000 +#define DT_CHOSEN_zephyr_code_partition_EXISTS 1 +#define DT_CHOSEN_zephyr_ieee802154 DT_N_S_soc_S_radio_40001000_S_ieee802154 +#define DT_CHOSEN_zephyr_ieee802154_EXISTS 1 + +/* Macros for iterating over all nodes and enabled nodes */ +#define DT_FOREACH_HELPER(fn) fn(DT_N) fn(DT_N_S_chosen) fn(DT_N_S_aliases) fn(DT_N_S_soc) fn(DT_N_S_soc_S_interrupt_controller_e000e100) fn(DT_N_S_soc_S_timer_e000e010) fn(DT_N_S_soc_S_ficr_10000000) fn(DT_N_S_soc_S_uicr_10001000) fn(DT_N_S_soc_S_memory_20000000) fn(DT_N_S_soc_S_clock_40000000) fn(DT_N_S_soc_S_power_40000000) fn(DT_N_S_soc_S_power_40000000_S_gpregret1_4000051c) fn(DT_N_S_soc_S_power_40000000_S_gpregret2_40000520) fn(DT_N_S_soc_S_power_40000000_S_regulator_40000578) fn(DT_N_S_soc_S_power_40000000_S_regulator_40000580) fn(DT_N_S_soc_S_radio_40001000) fn(DT_N_S_soc_S_radio_40001000_S_ieee802154) fn(DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc) fn(DT_N_S_soc_S_radio_40001000_S_bt_hci_controller) fn(DT_N_S_soc_S_uart_40002000) fn(DT_N_S_soc_S_i2c_40003000) fn(DT_N_S_soc_S_spi_40003000) fn(DT_N_S_soc_S_i2c_40004000) fn(DT_N_S_soc_S_spi_40004000) fn(DT_N_S_soc_S_nfct_40005000) fn(DT_N_S_soc_S_gpiote_40006000) fn(DT_N_S_soc_S_adc_40007000) fn(DT_N_S_soc_S_adc_40007000_S_channel_6) fn(DT_N_S_soc_S_timer_40008000) fn(DT_N_S_soc_S_timer_40009000) fn(DT_N_S_soc_S_timer_4000a000) fn(DT_N_S_soc_S_rtc_4000b000) fn(DT_N_S_soc_S_temp_4000c000) fn(DT_N_S_soc_S_random_4000d000) fn(DT_N_S_soc_S_ecb_4000e000) fn(DT_N_S_soc_S_ccm_4000f000) fn(DT_N_S_soc_S_watchdog_40010000) fn(DT_N_S_soc_S_rtc_40011000) fn(DT_N_S_soc_S_qdec_40012000) fn(DT_N_S_soc_S_comparator_40013000) fn(DT_N_S_soc_S_egu_40014000) fn(DT_N_S_soc_S_egu_40015000) fn(DT_N_S_soc_S_egu_40016000) fn(DT_N_S_soc_S_egu_40017000) fn(DT_N_S_soc_S_egu_40018000) fn(DT_N_S_soc_S_egu_40019000) fn(DT_N_S_soc_S_timer_4001a000) fn(DT_N_S_soc_S_timer_4001b000) fn(DT_N_S_soc_S_pwm_4001c000) fn(DT_N_S_soc_S_pdm_4001d000) fn(DT_N_S_soc_S_acl_4001e000) fn(DT_N_S_soc_S_flash_controller_4001e000) fn(DT_N_S_soc_S_flash_controller_4001e000_S_flash_0) fn(DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions) fn(DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_0) fn(DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_c000) fn(DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_43000) fn(DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_7a000) fn(DT_N_S_soc_S_ppi_4001f000) fn(DT_N_S_soc_S_mwu_40020000) fn(DT_N_S_soc_S_pwm_40021000) fn(DT_N_S_soc_S_pwm_40022000) fn(DT_N_S_soc_S_spi_40023000) fn(DT_N_S_soc_S_rtc_40024000) fn(DT_N_S_soc_S_i2s_40025000) fn(DT_N_S_soc_S_usbd_40027000) fn(DT_N_S_soc_S_usbd_40027000_S_cdc_acm_uart0) fn(DT_N_S_soc_S_uart_40028000) fn(DT_N_S_soc_S_pwm_4002d000) fn(DT_N_S_soc_S_spi_4002f000) fn(DT_N_S_soc_S_gpio_50000000) fn(DT_N_S_soc_S_gpio_50000300) fn(DT_N_S_pin_controller) fn(DT_N_S_entropy_bt_hci) fn(DT_N_S_sw_pwm) fn(DT_N_S_cpus) fn(DT_N_S_cpus_S_cpu_0) fn(DT_N_S_cpus_S_cpu_0_S_itm_e0000000) fn(DT_N_S_leds) fn(DT_N_S_leds_S_led_0) fn(DT_N_S_leds_S_led_1) fn(DT_N_S_buttons) fn(DT_N_S_buttons_S_button_0) fn(DT_N_S_zephyr_user) fn(DT_N_S_reserved_memory) +#define DT_FOREACH_OKAY_HELPER(fn) fn(DT_N) fn(DT_N_S_chosen) fn(DT_N_S_aliases) fn(DT_N_S_soc) fn(DT_N_S_soc_S_interrupt_controller_e000e100) fn(DT_N_S_soc_S_ficr_10000000) fn(DT_N_S_soc_S_uicr_10001000) fn(DT_N_S_soc_S_memory_20000000) fn(DT_N_S_soc_S_clock_40000000) fn(DT_N_S_soc_S_power_40000000) fn(DT_N_S_soc_S_power_40000000_S_gpregret1_4000051c) fn(DT_N_S_soc_S_power_40000000_S_gpregret2_40000520) fn(DT_N_S_soc_S_power_40000000_S_regulator_40000578) fn(DT_N_S_soc_S_power_40000000_S_regulator_40000580) fn(DT_N_S_soc_S_radio_40001000) fn(DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc) fn(DT_N_S_soc_S_gpiote_40006000) fn(DT_N_S_soc_S_adc_40007000) fn(DT_N_S_soc_S_adc_40007000_S_channel_6) fn(DT_N_S_soc_S_temp_4000c000) fn(DT_N_S_soc_S_random_4000d000) fn(DT_N_S_soc_S_ecb_4000e000) fn(DT_N_S_soc_S_ccm_4000f000) fn(DT_N_S_soc_S_watchdog_40010000) fn(DT_N_S_soc_S_egu_40014000) fn(DT_N_S_soc_S_egu_40015000) fn(DT_N_S_soc_S_egu_40016000) fn(DT_N_S_soc_S_egu_40017000) fn(DT_N_S_soc_S_egu_40018000) fn(DT_N_S_soc_S_egu_40019000) fn(DT_N_S_soc_S_acl_4001e000) fn(DT_N_S_soc_S_flash_controller_4001e000) fn(DT_N_S_soc_S_flash_controller_4001e000_S_flash_0) fn(DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions) fn(DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_0) fn(DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_c000) fn(DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_43000) fn(DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_7a000) fn(DT_N_S_soc_S_ppi_4001f000) fn(DT_N_S_soc_S_mwu_40020000) fn(DT_N_S_soc_S_usbd_40027000) fn(DT_N_S_soc_S_usbd_40027000_S_cdc_acm_uart0) fn(DT_N_S_soc_S_gpio_50000000) fn(DT_N_S_soc_S_gpio_50000300) fn(DT_N_S_pin_controller) fn(DT_N_S_entropy_bt_hci) fn(DT_N_S_cpus) fn(DT_N_S_cpus_S_cpu_0) fn(DT_N_S_cpus_S_cpu_0_S_itm_e0000000) fn(DT_N_S_leds) fn(DT_N_S_leds_S_led_0) fn(DT_N_S_leds_S_led_1) fn(DT_N_S_buttons) fn(DT_N_S_buttons_S_button_0) fn(DT_N_S_zephyr_user) fn(DT_N_S_reserved_memory) +#define DT_FOREACH_VARGS_HELPER(fn, ...) fn(DT_N, __VA_ARGS__) fn(DT_N_S_chosen, __VA_ARGS__) fn(DT_N_S_aliases, __VA_ARGS__) fn(DT_N_S_soc, __VA_ARGS__) fn(DT_N_S_soc_S_interrupt_controller_e000e100, __VA_ARGS__) fn(DT_N_S_soc_S_timer_e000e010, __VA_ARGS__) fn(DT_N_S_soc_S_ficr_10000000, __VA_ARGS__) fn(DT_N_S_soc_S_uicr_10001000, __VA_ARGS__) fn(DT_N_S_soc_S_memory_20000000, __VA_ARGS__) fn(DT_N_S_soc_S_clock_40000000, __VA_ARGS__) fn(DT_N_S_soc_S_power_40000000, __VA_ARGS__) fn(DT_N_S_soc_S_power_40000000_S_gpregret1_4000051c, __VA_ARGS__) fn(DT_N_S_soc_S_power_40000000_S_gpregret2_40000520, __VA_ARGS__) fn(DT_N_S_soc_S_power_40000000_S_regulator_40000578, __VA_ARGS__) fn(DT_N_S_soc_S_power_40000000_S_regulator_40000580, __VA_ARGS__) fn(DT_N_S_soc_S_radio_40001000, __VA_ARGS__) fn(DT_N_S_soc_S_radio_40001000_S_ieee802154, __VA_ARGS__) fn(DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc, __VA_ARGS__) fn(DT_N_S_soc_S_radio_40001000_S_bt_hci_controller, __VA_ARGS__) fn(DT_N_S_soc_S_uart_40002000, __VA_ARGS__) fn(DT_N_S_soc_S_i2c_40003000, __VA_ARGS__) fn(DT_N_S_soc_S_spi_40003000, __VA_ARGS__) fn(DT_N_S_soc_S_i2c_40004000, __VA_ARGS__) fn(DT_N_S_soc_S_spi_40004000, __VA_ARGS__) fn(DT_N_S_soc_S_nfct_40005000, __VA_ARGS__) fn(DT_N_S_soc_S_gpiote_40006000, __VA_ARGS__) fn(DT_N_S_soc_S_adc_40007000, __VA_ARGS__) fn(DT_N_S_soc_S_adc_40007000_S_channel_6, __VA_ARGS__) fn(DT_N_S_soc_S_timer_40008000, __VA_ARGS__) fn(DT_N_S_soc_S_timer_40009000, __VA_ARGS__) fn(DT_N_S_soc_S_timer_4000a000, __VA_ARGS__) fn(DT_N_S_soc_S_rtc_4000b000, __VA_ARGS__) fn(DT_N_S_soc_S_temp_4000c000, __VA_ARGS__) fn(DT_N_S_soc_S_random_4000d000, __VA_ARGS__) fn(DT_N_S_soc_S_ecb_4000e000, __VA_ARGS__) fn(DT_N_S_soc_S_ccm_4000f000, __VA_ARGS__) fn(DT_N_S_soc_S_watchdog_40010000, __VA_ARGS__) fn(DT_N_S_soc_S_rtc_40011000, __VA_ARGS__) fn(DT_N_S_soc_S_qdec_40012000, __VA_ARGS__) fn(DT_N_S_soc_S_comparator_40013000, __VA_ARGS__) fn(DT_N_S_soc_S_egu_40014000, __VA_ARGS__) fn(DT_N_S_soc_S_egu_40015000, __VA_ARGS__) fn(DT_N_S_soc_S_egu_40016000, __VA_ARGS__) fn(DT_N_S_soc_S_egu_40017000, __VA_ARGS__) fn(DT_N_S_soc_S_egu_40018000, __VA_ARGS__) fn(DT_N_S_soc_S_egu_40019000, __VA_ARGS__) fn(DT_N_S_soc_S_timer_4001a000, __VA_ARGS__) fn(DT_N_S_soc_S_timer_4001b000, __VA_ARGS__) fn(DT_N_S_soc_S_pwm_4001c000, __VA_ARGS__) fn(DT_N_S_soc_S_pdm_4001d000, __VA_ARGS__) fn(DT_N_S_soc_S_acl_4001e000, __VA_ARGS__) fn(DT_N_S_soc_S_flash_controller_4001e000, __VA_ARGS__) fn(DT_N_S_soc_S_flash_controller_4001e000_S_flash_0, __VA_ARGS__) fn(DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions, __VA_ARGS__) fn(DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_0, __VA_ARGS__) fn(DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_c000, __VA_ARGS__) fn(DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_43000, __VA_ARGS__) fn(DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_7a000, __VA_ARGS__) fn(DT_N_S_soc_S_ppi_4001f000, __VA_ARGS__) fn(DT_N_S_soc_S_mwu_40020000, __VA_ARGS__) fn(DT_N_S_soc_S_pwm_40021000, __VA_ARGS__) fn(DT_N_S_soc_S_pwm_40022000, __VA_ARGS__) fn(DT_N_S_soc_S_spi_40023000, __VA_ARGS__) fn(DT_N_S_soc_S_rtc_40024000, __VA_ARGS__) fn(DT_N_S_soc_S_i2s_40025000, __VA_ARGS__) fn(DT_N_S_soc_S_usbd_40027000, __VA_ARGS__) fn(DT_N_S_soc_S_usbd_40027000_S_cdc_acm_uart0, __VA_ARGS__) fn(DT_N_S_soc_S_uart_40028000, __VA_ARGS__) fn(DT_N_S_soc_S_pwm_4002d000, __VA_ARGS__) fn(DT_N_S_soc_S_spi_4002f000, __VA_ARGS__) fn(DT_N_S_soc_S_gpio_50000000, __VA_ARGS__) fn(DT_N_S_soc_S_gpio_50000300, __VA_ARGS__) fn(DT_N_S_pin_controller, __VA_ARGS__) fn(DT_N_S_entropy_bt_hci, __VA_ARGS__) fn(DT_N_S_sw_pwm, __VA_ARGS__) fn(DT_N_S_cpus, __VA_ARGS__) fn(DT_N_S_cpus_S_cpu_0, __VA_ARGS__) fn(DT_N_S_cpus_S_cpu_0_S_itm_e0000000, __VA_ARGS__) fn(DT_N_S_leds, __VA_ARGS__) fn(DT_N_S_leds_S_led_0, __VA_ARGS__) fn(DT_N_S_leds_S_led_1, __VA_ARGS__) fn(DT_N_S_buttons, __VA_ARGS__) fn(DT_N_S_buttons_S_button_0, __VA_ARGS__) fn(DT_N_S_zephyr_user, __VA_ARGS__) fn(DT_N_S_reserved_memory, __VA_ARGS__) +#define DT_FOREACH_OKAY_VARGS_HELPER(fn, ...) fn(DT_N, __VA_ARGS__) fn(DT_N_S_chosen, __VA_ARGS__) fn(DT_N_S_aliases, __VA_ARGS__) fn(DT_N_S_soc, __VA_ARGS__) fn(DT_N_S_soc_S_interrupt_controller_e000e100, __VA_ARGS__) fn(DT_N_S_soc_S_ficr_10000000, __VA_ARGS__) fn(DT_N_S_soc_S_uicr_10001000, __VA_ARGS__) fn(DT_N_S_soc_S_memory_20000000, __VA_ARGS__) fn(DT_N_S_soc_S_clock_40000000, __VA_ARGS__) fn(DT_N_S_soc_S_power_40000000, __VA_ARGS__) fn(DT_N_S_soc_S_power_40000000_S_gpregret1_4000051c, __VA_ARGS__) fn(DT_N_S_soc_S_power_40000000_S_gpregret2_40000520, __VA_ARGS__) fn(DT_N_S_soc_S_power_40000000_S_regulator_40000578, __VA_ARGS__) fn(DT_N_S_soc_S_power_40000000_S_regulator_40000580, __VA_ARGS__) fn(DT_N_S_soc_S_radio_40001000, __VA_ARGS__) fn(DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc, __VA_ARGS__) fn(DT_N_S_soc_S_gpiote_40006000, __VA_ARGS__) fn(DT_N_S_soc_S_adc_40007000, __VA_ARGS__) fn(DT_N_S_soc_S_adc_40007000_S_channel_6, __VA_ARGS__) fn(DT_N_S_soc_S_temp_4000c000, __VA_ARGS__) fn(DT_N_S_soc_S_random_4000d000, __VA_ARGS__) fn(DT_N_S_soc_S_ecb_4000e000, __VA_ARGS__) fn(DT_N_S_soc_S_ccm_4000f000, __VA_ARGS__) fn(DT_N_S_soc_S_watchdog_40010000, __VA_ARGS__) fn(DT_N_S_soc_S_egu_40014000, __VA_ARGS__) fn(DT_N_S_soc_S_egu_40015000, __VA_ARGS__) fn(DT_N_S_soc_S_egu_40016000, __VA_ARGS__) fn(DT_N_S_soc_S_egu_40017000, __VA_ARGS__) fn(DT_N_S_soc_S_egu_40018000, __VA_ARGS__) fn(DT_N_S_soc_S_egu_40019000, __VA_ARGS__) fn(DT_N_S_soc_S_acl_4001e000, __VA_ARGS__) fn(DT_N_S_soc_S_flash_controller_4001e000, __VA_ARGS__) fn(DT_N_S_soc_S_flash_controller_4001e000_S_flash_0, __VA_ARGS__) fn(DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions, __VA_ARGS__) fn(DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_0, __VA_ARGS__) fn(DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_c000, __VA_ARGS__) fn(DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_43000, __VA_ARGS__) fn(DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_7a000, __VA_ARGS__) fn(DT_N_S_soc_S_ppi_4001f000, __VA_ARGS__) fn(DT_N_S_soc_S_mwu_40020000, __VA_ARGS__) fn(DT_N_S_soc_S_usbd_40027000, __VA_ARGS__) fn(DT_N_S_soc_S_usbd_40027000_S_cdc_acm_uart0, __VA_ARGS__) fn(DT_N_S_soc_S_gpio_50000000, __VA_ARGS__) fn(DT_N_S_soc_S_gpio_50000300, __VA_ARGS__) fn(DT_N_S_pin_controller, __VA_ARGS__) fn(DT_N_S_entropy_bt_hci, __VA_ARGS__) fn(DT_N_S_cpus, __VA_ARGS__) fn(DT_N_S_cpus_S_cpu_0, __VA_ARGS__) fn(DT_N_S_cpus_S_cpu_0_S_itm_e0000000, __VA_ARGS__) fn(DT_N_S_leds, __VA_ARGS__) fn(DT_N_S_leds_S_led_0, __VA_ARGS__) fn(DT_N_S_leds_S_led_1, __VA_ARGS__) fn(DT_N_S_buttons, __VA_ARGS__) fn(DT_N_S_buttons_S_button_0, __VA_ARGS__) fn(DT_N_S_zephyr_user, __VA_ARGS__) fn(DT_N_S_reserved_memory, __VA_ARGS__) +#define DT_COMPAT_fixed_partitions_LABEL_mcuboot DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_0 +#define DT_COMPAT_fixed_partitions_LABEL_mcuboot_EXISTS 1 +#define DT_COMPAT_fixed_partitions_LABEL_image_0 DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_c000 +#define DT_COMPAT_fixed_partitions_LABEL_image_0_EXISTS 1 +#define DT_COMPAT_fixed_partitions_LABEL_image_1 DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_43000 +#define DT_COMPAT_fixed_partitions_LABEL_image_1_EXISTS 1 +#define DT_COMPAT_fixed_partitions_LABEL_storage DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions_S_partition_7a000 +#define DT_COMPAT_fixed_partitions_LABEL_storage_EXISTS 1 + +/* + * Macros for compatibles with status "okay" nodes + */ +#define DT_COMPAT_HAS_OKAY_arm_phf000_board 1 +#define DT_COMPAT_HAS_OKAY_nordic_nrf52833_qdaa 1 +#define DT_COMPAT_HAS_OKAY_nordic_nrf52833 1 +#define DT_COMPAT_HAS_OKAY_nordic_nrf52 1 +#define DT_COMPAT_HAS_OKAY_simple_bus 1 +#define DT_COMPAT_HAS_OKAY_arm_v7m_nvic 1 +#define DT_COMPAT_HAS_OKAY_nordic_nrf_ficr 1 +#define DT_COMPAT_HAS_OKAY_nordic_nrf_uicr 1 +#define DT_COMPAT_HAS_OKAY_mmio_sram 1 +#define DT_COMPAT_HAS_OKAY_nordic_nrf_clock 1 +#define DT_COMPAT_HAS_OKAY_nordic_nrf_power 1 +#define DT_COMPAT_HAS_OKAY_nordic_nrf_gpregret 1 +#define DT_COMPAT_HAS_OKAY_nordic_nrf5x_regulator 1 +#define DT_COMPAT_HAS_OKAY_nordic_nrf52x_regulator_hv 1 +#define DT_COMPAT_HAS_OKAY_nordic_nrf_radio 1 +#define DT_COMPAT_HAS_OKAY_nordic_bt_hci_sdc 1 +#define DT_COMPAT_HAS_OKAY_nordic_nrf_gpiote 1 +#define DT_COMPAT_HAS_OKAY_nordic_nrf_saadc 1 +#define DT_COMPAT_HAS_OKAY_nordic_nrf_temp 1 +#define DT_COMPAT_HAS_OKAY_nordic_nrf_rng 1 +#define DT_COMPAT_HAS_OKAY_nordic_nrf_ecb 1 +#define DT_COMPAT_HAS_OKAY_nordic_nrf_ccm 1 +#define DT_COMPAT_HAS_OKAY_nordic_nrf_wdt 1 +#define DT_COMPAT_HAS_OKAY_nordic_nrf_egu 1 +#define DT_COMPAT_HAS_OKAY_nordic_nrf_swi 1 +#define DT_COMPAT_HAS_OKAY_nordic_nrf_acl 1 +#define DT_COMPAT_HAS_OKAY_nordic_nrf52_flash_controller 1 +#define DT_COMPAT_HAS_OKAY_soc_nv_flash 1 +#define DT_COMPAT_HAS_OKAY_fixed_partitions 1 +#define DT_COMPAT_HAS_OKAY_nordic_nrf_ppi 1 +#define DT_COMPAT_HAS_OKAY_nordic_nrf_mwu 1 +#define DT_COMPAT_HAS_OKAY_nordic_nrf_usbd 1 +#define DT_COMPAT_HAS_OKAY_zephyr_cdc_acm_uart 1 +#define DT_COMPAT_HAS_OKAY_nordic_nrf_gpio 1 +#define DT_COMPAT_HAS_OKAY_nordic_nrf_pinctrl 1 +#define DT_COMPAT_HAS_OKAY_zephyr_bt_hci_entropy 1 +#define DT_COMPAT_HAS_OKAY_arm_cortex_m4f 1 +#define DT_COMPAT_HAS_OKAY_arm_armv7m_itm 1 +#define DT_COMPAT_HAS_OKAY_gpio_leds 1 +#define DT_COMPAT_HAS_OKAY_gpio_keys 1 + +/* + * Macros for status "okay" instances of each compatible + */ +#define DT_N_INST_arm_phf000_board_NUM_OKAY 1 +#define DT_N_INST_nordic_nrf52833_qdaa_NUM_OKAY 1 +#define DT_N_INST_nordic_nrf52833_NUM_OKAY 1 +#define DT_N_INST_nordic_nrf52_NUM_OKAY 1 +#define DT_N_INST_simple_bus_NUM_OKAY 1 +#define DT_N_INST_arm_v7m_nvic_NUM_OKAY 1 +#define DT_N_INST_nordic_nrf_ficr_NUM_OKAY 1 +#define DT_N_INST_nordic_nrf_uicr_NUM_OKAY 1 +#define DT_N_INST_mmio_sram_NUM_OKAY 1 +#define DT_N_INST_nordic_nrf_clock_NUM_OKAY 1 +#define DT_N_INST_nordic_nrf_power_NUM_OKAY 1 +#define DT_N_INST_nordic_nrf_gpregret_NUM_OKAY 2 +#define DT_N_INST_nordic_nrf5x_regulator_NUM_OKAY 1 +#define DT_N_INST_nordic_nrf52x_regulator_hv_NUM_OKAY 1 +#define DT_N_INST_nordic_nrf_radio_NUM_OKAY 1 +#define DT_N_INST_nordic_bt_hci_sdc_NUM_OKAY 1 +#define DT_N_INST_nordic_nrf_gpiote_NUM_OKAY 1 +#define DT_N_INST_nordic_nrf_saadc_NUM_OKAY 1 +#define DT_N_INST_nordic_nrf_temp_NUM_OKAY 1 +#define DT_N_INST_nordic_nrf_rng_NUM_OKAY 1 +#define DT_N_INST_nordic_nrf_ecb_NUM_OKAY 1 +#define DT_N_INST_nordic_nrf_ccm_NUM_OKAY 1 +#define DT_N_INST_nordic_nrf_wdt_NUM_OKAY 1 +#define DT_N_INST_nordic_nrf_egu_NUM_OKAY 6 +#define DT_N_INST_nordic_nrf_swi_NUM_OKAY 6 +#define DT_N_INST_nordic_nrf_acl_NUM_OKAY 1 +#define DT_N_INST_nordic_nrf52_flash_controller_NUM_OKAY 1 +#define DT_N_INST_soc_nv_flash_NUM_OKAY 1 +#define DT_N_INST_fixed_partitions_NUM_OKAY 1 +#define DT_N_INST_nordic_nrf_ppi_NUM_OKAY 1 +#define DT_N_INST_nordic_nrf_mwu_NUM_OKAY 1 +#define DT_N_INST_nordic_nrf_usbd_NUM_OKAY 1 +#define DT_N_INST_zephyr_cdc_acm_uart_NUM_OKAY 1 +#define DT_N_INST_nordic_nrf_gpio_NUM_OKAY 2 +#define DT_N_INST_nordic_nrf_pinctrl_NUM_OKAY 1 +#define DT_N_INST_zephyr_bt_hci_entropy_NUM_OKAY 1 +#define DT_N_INST_arm_cortex_m4f_NUM_OKAY 1 +#define DT_N_INST_arm_armv7m_itm_NUM_OKAY 1 +#define DT_N_INST_gpio_leds_NUM_OKAY 1 +#define DT_N_INST_gpio_keys_NUM_OKAY 1 +#define DT_FOREACH_OKAY_arm_phf000_board(fn) fn(DT_N) +#define DT_FOREACH_OKAY_VARGS_arm_phf000_board(fn, ...) fn(DT_N, __VA_ARGS__) +#define DT_FOREACH_OKAY_INST_arm_phf000_board(fn) fn(0) +#define DT_FOREACH_OKAY_INST_VARGS_arm_phf000_board(fn, ...) fn(0, __VA_ARGS__) +#define DT_FOREACH_OKAY_nordic_nrf52833_qdaa(fn) fn(DT_N_S_soc) +#define DT_FOREACH_OKAY_VARGS_nordic_nrf52833_qdaa(fn, ...) fn(DT_N_S_soc, __VA_ARGS__) +#define DT_FOREACH_OKAY_INST_nordic_nrf52833_qdaa(fn) fn(0) +#define DT_FOREACH_OKAY_INST_VARGS_nordic_nrf52833_qdaa(fn, ...) fn(0, __VA_ARGS__) +#define DT_FOREACH_OKAY_nordic_nrf52833(fn) fn(DT_N_S_soc) +#define DT_FOREACH_OKAY_VARGS_nordic_nrf52833(fn, ...) fn(DT_N_S_soc, __VA_ARGS__) +#define DT_FOREACH_OKAY_INST_nordic_nrf52833(fn) fn(0) +#define DT_FOREACH_OKAY_INST_VARGS_nordic_nrf52833(fn, ...) fn(0, __VA_ARGS__) +#define DT_FOREACH_OKAY_nordic_nrf52(fn) fn(DT_N_S_soc) +#define DT_FOREACH_OKAY_VARGS_nordic_nrf52(fn, ...) fn(DT_N_S_soc, __VA_ARGS__) +#define DT_FOREACH_OKAY_INST_nordic_nrf52(fn) fn(0) +#define DT_FOREACH_OKAY_INST_VARGS_nordic_nrf52(fn, ...) fn(0, __VA_ARGS__) +#define DT_FOREACH_OKAY_simple_bus(fn) fn(DT_N_S_soc) +#define DT_FOREACH_OKAY_VARGS_simple_bus(fn, ...) fn(DT_N_S_soc, __VA_ARGS__) +#define DT_FOREACH_OKAY_INST_simple_bus(fn) fn(0) +#define DT_FOREACH_OKAY_INST_VARGS_simple_bus(fn, ...) fn(0, __VA_ARGS__) +#define DT_FOREACH_OKAY_arm_v7m_nvic(fn) fn(DT_N_S_soc_S_interrupt_controller_e000e100) +#define DT_FOREACH_OKAY_VARGS_arm_v7m_nvic(fn, ...) fn(DT_N_S_soc_S_interrupt_controller_e000e100, __VA_ARGS__) +#define DT_FOREACH_OKAY_INST_arm_v7m_nvic(fn) fn(0) +#define DT_FOREACH_OKAY_INST_VARGS_arm_v7m_nvic(fn, ...) fn(0, __VA_ARGS__) +#define DT_FOREACH_OKAY_nordic_nrf_ficr(fn) fn(DT_N_S_soc_S_ficr_10000000) +#define DT_FOREACH_OKAY_VARGS_nordic_nrf_ficr(fn, ...) fn(DT_N_S_soc_S_ficr_10000000, __VA_ARGS__) +#define DT_FOREACH_OKAY_INST_nordic_nrf_ficr(fn) fn(0) +#define DT_FOREACH_OKAY_INST_VARGS_nordic_nrf_ficr(fn, ...) fn(0, __VA_ARGS__) +#define DT_FOREACH_OKAY_nordic_nrf_uicr(fn) fn(DT_N_S_soc_S_uicr_10001000) +#define DT_FOREACH_OKAY_VARGS_nordic_nrf_uicr(fn, ...) fn(DT_N_S_soc_S_uicr_10001000, __VA_ARGS__) +#define DT_FOREACH_OKAY_INST_nordic_nrf_uicr(fn) fn(0) +#define DT_FOREACH_OKAY_INST_VARGS_nordic_nrf_uicr(fn, ...) fn(0, __VA_ARGS__) +#define DT_FOREACH_OKAY_mmio_sram(fn) fn(DT_N_S_soc_S_memory_20000000) +#define DT_FOREACH_OKAY_VARGS_mmio_sram(fn, ...) fn(DT_N_S_soc_S_memory_20000000, __VA_ARGS__) +#define DT_FOREACH_OKAY_INST_mmio_sram(fn) fn(0) +#define DT_FOREACH_OKAY_INST_VARGS_mmio_sram(fn, ...) fn(0, __VA_ARGS__) +#define DT_FOREACH_OKAY_nordic_nrf_clock(fn) fn(DT_N_S_soc_S_clock_40000000) +#define DT_FOREACH_OKAY_VARGS_nordic_nrf_clock(fn, ...) fn(DT_N_S_soc_S_clock_40000000, __VA_ARGS__) +#define DT_FOREACH_OKAY_INST_nordic_nrf_clock(fn) fn(0) +#define DT_FOREACH_OKAY_INST_VARGS_nordic_nrf_clock(fn, ...) fn(0, __VA_ARGS__) +#define DT_FOREACH_OKAY_nordic_nrf_power(fn) fn(DT_N_S_soc_S_power_40000000) +#define DT_FOREACH_OKAY_VARGS_nordic_nrf_power(fn, ...) fn(DT_N_S_soc_S_power_40000000, __VA_ARGS__) +#define DT_FOREACH_OKAY_INST_nordic_nrf_power(fn) fn(0) +#define DT_FOREACH_OKAY_INST_VARGS_nordic_nrf_power(fn, ...) fn(0, __VA_ARGS__) +#define DT_FOREACH_OKAY_nordic_nrf_gpregret(fn) fn(DT_N_S_soc_S_power_40000000_S_gpregret1_4000051c) fn(DT_N_S_soc_S_power_40000000_S_gpregret2_40000520) +#define DT_FOREACH_OKAY_VARGS_nordic_nrf_gpregret(fn, ...) fn(DT_N_S_soc_S_power_40000000_S_gpregret1_4000051c, __VA_ARGS__) fn(DT_N_S_soc_S_power_40000000_S_gpregret2_40000520, __VA_ARGS__) +#define DT_FOREACH_OKAY_INST_nordic_nrf_gpregret(fn) fn(0) fn(1) +#define DT_FOREACH_OKAY_INST_VARGS_nordic_nrf_gpregret(fn, ...) fn(0, __VA_ARGS__) fn(1, __VA_ARGS__) +#define DT_FOREACH_OKAY_nordic_nrf5x_regulator(fn) fn(DT_N_S_soc_S_power_40000000_S_regulator_40000578) +#define DT_FOREACH_OKAY_VARGS_nordic_nrf5x_regulator(fn, ...) fn(DT_N_S_soc_S_power_40000000_S_regulator_40000578, __VA_ARGS__) +#define DT_FOREACH_OKAY_INST_nordic_nrf5x_regulator(fn) fn(0) +#define DT_FOREACH_OKAY_INST_VARGS_nordic_nrf5x_regulator(fn, ...) fn(0, __VA_ARGS__) +#define DT_FOREACH_OKAY_nordic_nrf52x_regulator_hv(fn) fn(DT_N_S_soc_S_power_40000000_S_regulator_40000580) +#define DT_FOREACH_OKAY_VARGS_nordic_nrf52x_regulator_hv(fn, ...) fn(DT_N_S_soc_S_power_40000000_S_regulator_40000580, __VA_ARGS__) +#define DT_FOREACH_OKAY_INST_nordic_nrf52x_regulator_hv(fn) fn(0) +#define DT_FOREACH_OKAY_INST_VARGS_nordic_nrf52x_regulator_hv(fn, ...) fn(0, __VA_ARGS__) +#define DT_FOREACH_OKAY_nordic_nrf_radio(fn) fn(DT_N_S_soc_S_radio_40001000) +#define DT_FOREACH_OKAY_VARGS_nordic_nrf_radio(fn, ...) fn(DT_N_S_soc_S_radio_40001000, __VA_ARGS__) +#define DT_FOREACH_OKAY_INST_nordic_nrf_radio(fn) fn(0) +#define DT_FOREACH_OKAY_INST_VARGS_nordic_nrf_radio(fn, ...) fn(0, __VA_ARGS__) +#define DT_FOREACH_OKAY_nordic_bt_hci_sdc(fn) fn(DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc) +#define DT_FOREACH_OKAY_VARGS_nordic_bt_hci_sdc(fn, ...) fn(DT_N_S_soc_S_radio_40001000_S_bt_hci_sdc, __VA_ARGS__) +#define DT_FOREACH_OKAY_INST_nordic_bt_hci_sdc(fn) fn(0) +#define DT_FOREACH_OKAY_INST_VARGS_nordic_bt_hci_sdc(fn, ...) fn(0, __VA_ARGS__) +#define DT_FOREACH_OKAY_nordic_nrf_gpiote(fn) fn(DT_N_S_soc_S_gpiote_40006000) +#define DT_FOREACH_OKAY_VARGS_nordic_nrf_gpiote(fn, ...) fn(DT_N_S_soc_S_gpiote_40006000, __VA_ARGS__) +#define DT_FOREACH_OKAY_INST_nordic_nrf_gpiote(fn) fn(0) +#define DT_FOREACH_OKAY_INST_VARGS_nordic_nrf_gpiote(fn, ...) fn(0, __VA_ARGS__) +#define DT_FOREACH_OKAY_nordic_nrf_saadc(fn) fn(DT_N_S_soc_S_adc_40007000) +#define DT_FOREACH_OKAY_VARGS_nordic_nrf_saadc(fn, ...) fn(DT_N_S_soc_S_adc_40007000, __VA_ARGS__) +#define DT_FOREACH_OKAY_INST_nordic_nrf_saadc(fn) fn(0) +#define DT_FOREACH_OKAY_INST_VARGS_nordic_nrf_saadc(fn, ...) fn(0, __VA_ARGS__) +#define DT_FOREACH_OKAY_nordic_nrf_temp(fn) fn(DT_N_S_soc_S_temp_4000c000) +#define DT_FOREACH_OKAY_VARGS_nordic_nrf_temp(fn, ...) fn(DT_N_S_soc_S_temp_4000c000, __VA_ARGS__) +#define DT_FOREACH_OKAY_INST_nordic_nrf_temp(fn) fn(0) +#define DT_FOREACH_OKAY_INST_VARGS_nordic_nrf_temp(fn, ...) fn(0, __VA_ARGS__) +#define DT_FOREACH_OKAY_nordic_nrf_rng(fn) fn(DT_N_S_soc_S_random_4000d000) +#define DT_FOREACH_OKAY_VARGS_nordic_nrf_rng(fn, ...) fn(DT_N_S_soc_S_random_4000d000, __VA_ARGS__) +#define DT_FOREACH_OKAY_INST_nordic_nrf_rng(fn) fn(0) +#define DT_FOREACH_OKAY_INST_VARGS_nordic_nrf_rng(fn, ...) fn(0, __VA_ARGS__) +#define DT_FOREACH_OKAY_nordic_nrf_ecb(fn) fn(DT_N_S_soc_S_ecb_4000e000) +#define DT_FOREACH_OKAY_VARGS_nordic_nrf_ecb(fn, ...) fn(DT_N_S_soc_S_ecb_4000e000, __VA_ARGS__) +#define DT_FOREACH_OKAY_INST_nordic_nrf_ecb(fn) fn(0) +#define DT_FOREACH_OKAY_INST_VARGS_nordic_nrf_ecb(fn, ...) fn(0, __VA_ARGS__) +#define DT_FOREACH_OKAY_nordic_nrf_ccm(fn) fn(DT_N_S_soc_S_ccm_4000f000) +#define DT_FOREACH_OKAY_VARGS_nordic_nrf_ccm(fn, ...) fn(DT_N_S_soc_S_ccm_4000f000, __VA_ARGS__) +#define DT_FOREACH_OKAY_INST_nordic_nrf_ccm(fn) fn(0) +#define DT_FOREACH_OKAY_INST_VARGS_nordic_nrf_ccm(fn, ...) fn(0, __VA_ARGS__) +#define DT_FOREACH_OKAY_nordic_nrf_wdt(fn) fn(DT_N_S_soc_S_watchdog_40010000) +#define DT_FOREACH_OKAY_VARGS_nordic_nrf_wdt(fn, ...) fn(DT_N_S_soc_S_watchdog_40010000, __VA_ARGS__) +#define DT_FOREACH_OKAY_INST_nordic_nrf_wdt(fn) fn(0) +#define DT_FOREACH_OKAY_INST_VARGS_nordic_nrf_wdt(fn, ...) fn(0, __VA_ARGS__) +#define DT_FOREACH_OKAY_nordic_nrf_egu(fn) fn(DT_N_S_soc_S_egu_40014000) fn(DT_N_S_soc_S_egu_40015000) fn(DT_N_S_soc_S_egu_40016000) fn(DT_N_S_soc_S_egu_40017000) fn(DT_N_S_soc_S_egu_40018000) fn(DT_N_S_soc_S_egu_40019000) +#define DT_FOREACH_OKAY_VARGS_nordic_nrf_egu(fn, ...) fn(DT_N_S_soc_S_egu_40014000, __VA_ARGS__) fn(DT_N_S_soc_S_egu_40015000, __VA_ARGS__) fn(DT_N_S_soc_S_egu_40016000, __VA_ARGS__) fn(DT_N_S_soc_S_egu_40017000, __VA_ARGS__) fn(DT_N_S_soc_S_egu_40018000, __VA_ARGS__) fn(DT_N_S_soc_S_egu_40019000, __VA_ARGS__) +#define DT_FOREACH_OKAY_INST_nordic_nrf_egu(fn) fn(0) fn(1) fn(2) fn(3) fn(4) fn(5) +#define DT_FOREACH_OKAY_INST_VARGS_nordic_nrf_egu(fn, ...) fn(0, __VA_ARGS__) fn(1, __VA_ARGS__) fn(2, __VA_ARGS__) fn(3, __VA_ARGS__) fn(4, __VA_ARGS__) fn(5, __VA_ARGS__) +#define DT_FOREACH_OKAY_nordic_nrf_swi(fn) fn(DT_N_S_soc_S_egu_40014000) fn(DT_N_S_soc_S_egu_40015000) fn(DT_N_S_soc_S_egu_40016000) fn(DT_N_S_soc_S_egu_40017000) fn(DT_N_S_soc_S_egu_40018000) fn(DT_N_S_soc_S_egu_40019000) +#define DT_FOREACH_OKAY_VARGS_nordic_nrf_swi(fn, ...) fn(DT_N_S_soc_S_egu_40014000, __VA_ARGS__) fn(DT_N_S_soc_S_egu_40015000, __VA_ARGS__) fn(DT_N_S_soc_S_egu_40016000, __VA_ARGS__) fn(DT_N_S_soc_S_egu_40017000, __VA_ARGS__) fn(DT_N_S_soc_S_egu_40018000, __VA_ARGS__) fn(DT_N_S_soc_S_egu_40019000, __VA_ARGS__) +#define DT_FOREACH_OKAY_INST_nordic_nrf_swi(fn) fn(0) fn(1) fn(2) fn(3) fn(4) fn(5) +#define DT_FOREACH_OKAY_INST_VARGS_nordic_nrf_swi(fn, ...) fn(0, __VA_ARGS__) fn(1, __VA_ARGS__) fn(2, __VA_ARGS__) fn(3, __VA_ARGS__) fn(4, __VA_ARGS__) fn(5, __VA_ARGS__) +#define DT_FOREACH_OKAY_nordic_nrf_acl(fn) fn(DT_N_S_soc_S_acl_4001e000) +#define DT_FOREACH_OKAY_VARGS_nordic_nrf_acl(fn, ...) fn(DT_N_S_soc_S_acl_4001e000, __VA_ARGS__) +#define DT_FOREACH_OKAY_INST_nordic_nrf_acl(fn) fn(0) +#define DT_FOREACH_OKAY_INST_VARGS_nordic_nrf_acl(fn, ...) fn(0, __VA_ARGS__) +#define DT_FOREACH_OKAY_nordic_nrf52_flash_controller(fn) fn(DT_N_S_soc_S_flash_controller_4001e000) +#define DT_FOREACH_OKAY_VARGS_nordic_nrf52_flash_controller(fn, ...) fn(DT_N_S_soc_S_flash_controller_4001e000, __VA_ARGS__) +#define DT_FOREACH_OKAY_INST_nordic_nrf52_flash_controller(fn) fn(0) +#define DT_FOREACH_OKAY_INST_VARGS_nordic_nrf52_flash_controller(fn, ...) fn(0, __VA_ARGS__) +#define DT_FOREACH_OKAY_soc_nv_flash(fn) fn(DT_N_S_soc_S_flash_controller_4001e000_S_flash_0) +#define DT_FOREACH_OKAY_VARGS_soc_nv_flash(fn, ...) fn(DT_N_S_soc_S_flash_controller_4001e000_S_flash_0, __VA_ARGS__) +#define DT_FOREACH_OKAY_INST_soc_nv_flash(fn) fn(0) +#define DT_FOREACH_OKAY_INST_VARGS_soc_nv_flash(fn, ...) fn(0, __VA_ARGS__) +#define DT_FOREACH_OKAY_fixed_partitions(fn) fn(DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions) +#define DT_FOREACH_OKAY_VARGS_fixed_partitions(fn, ...) fn(DT_N_S_soc_S_flash_controller_4001e000_S_flash_0_S_partitions, __VA_ARGS__) +#define DT_FOREACH_OKAY_INST_fixed_partitions(fn) fn(0) +#define DT_FOREACH_OKAY_INST_VARGS_fixed_partitions(fn, ...) fn(0, __VA_ARGS__) +#define DT_FOREACH_OKAY_nordic_nrf_ppi(fn) fn(DT_N_S_soc_S_ppi_4001f000) +#define DT_FOREACH_OKAY_VARGS_nordic_nrf_ppi(fn, ...) fn(DT_N_S_soc_S_ppi_4001f000, __VA_ARGS__) +#define DT_FOREACH_OKAY_INST_nordic_nrf_ppi(fn) fn(0) +#define DT_FOREACH_OKAY_INST_VARGS_nordic_nrf_ppi(fn, ...) fn(0, __VA_ARGS__) +#define DT_FOREACH_OKAY_nordic_nrf_mwu(fn) fn(DT_N_S_soc_S_mwu_40020000) +#define DT_FOREACH_OKAY_VARGS_nordic_nrf_mwu(fn, ...) fn(DT_N_S_soc_S_mwu_40020000, __VA_ARGS__) +#define DT_FOREACH_OKAY_INST_nordic_nrf_mwu(fn) fn(0) +#define DT_FOREACH_OKAY_INST_VARGS_nordic_nrf_mwu(fn, ...) fn(0, __VA_ARGS__) +#define DT_FOREACH_OKAY_nordic_nrf_usbd(fn) fn(DT_N_S_soc_S_usbd_40027000) +#define DT_FOREACH_OKAY_VARGS_nordic_nrf_usbd(fn, ...) fn(DT_N_S_soc_S_usbd_40027000, __VA_ARGS__) +#define DT_FOREACH_OKAY_INST_nordic_nrf_usbd(fn) fn(0) +#define DT_FOREACH_OKAY_INST_VARGS_nordic_nrf_usbd(fn, ...) fn(0, __VA_ARGS__) +#define DT_FOREACH_OKAY_zephyr_cdc_acm_uart(fn) fn(DT_N_S_soc_S_usbd_40027000_S_cdc_acm_uart0) +#define DT_FOREACH_OKAY_VARGS_zephyr_cdc_acm_uart(fn, ...) fn(DT_N_S_soc_S_usbd_40027000_S_cdc_acm_uart0, __VA_ARGS__) +#define DT_FOREACH_OKAY_INST_zephyr_cdc_acm_uart(fn) fn(0) +#define DT_FOREACH_OKAY_INST_VARGS_zephyr_cdc_acm_uart(fn, ...) fn(0, __VA_ARGS__) +#define DT_FOREACH_OKAY_nordic_nrf_gpio(fn) fn(DT_N_S_soc_S_gpio_50000000) fn(DT_N_S_soc_S_gpio_50000300) +#define DT_FOREACH_OKAY_VARGS_nordic_nrf_gpio(fn, ...) fn(DT_N_S_soc_S_gpio_50000000, __VA_ARGS__) fn(DT_N_S_soc_S_gpio_50000300, __VA_ARGS__) +#define DT_FOREACH_OKAY_INST_nordic_nrf_gpio(fn) fn(0) fn(1) +#define DT_FOREACH_OKAY_INST_VARGS_nordic_nrf_gpio(fn, ...) fn(0, __VA_ARGS__) fn(1, __VA_ARGS__) +#define DT_FOREACH_OKAY_nordic_nrf_pinctrl(fn) fn(DT_N_S_pin_controller) +#define DT_FOREACH_OKAY_VARGS_nordic_nrf_pinctrl(fn, ...) fn(DT_N_S_pin_controller, __VA_ARGS__) +#define DT_FOREACH_OKAY_INST_nordic_nrf_pinctrl(fn) fn(0) +#define DT_FOREACH_OKAY_INST_VARGS_nordic_nrf_pinctrl(fn, ...) fn(0, __VA_ARGS__) +#define DT_FOREACH_OKAY_zephyr_bt_hci_entropy(fn) fn(DT_N_S_entropy_bt_hci) +#define DT_FOREACH_OKAY_VARGS_zephyr_bt_hci_entropy(fn, ...) fn(DT_N_S_entropy_bt_hci, __VA_ARGS__) +#define DT_FOREACH_OKAY_INST_zephyr_bt_hci_entropy(fn) fn(0) +#define DT_FOREACH_OKAY_INST_VARGS_zephyr_bt_hci_entropy(fn, ...) fn(0, __VA_ARGS__) +#define DT_FOREACH_OKAY_arm_cortex_m4f(fn) fn(DT_N_S_cpus_S_cpu_0) +#define DT_FOREACH_OKAY_VARGS_arm_cortex_m4f(fn, ...) fn(DT_N_S_cpus_S_cpu_0, __VA_ARGS__) +#define DT_FOREACH_OKAY_INST_arm_cortex_m4f(fn) fn(0) +#define DT_FOREACH_OKAY_INST_VARGS_arm_cortex_m4f(fn, ...) fn(0, __VA_ARGS__) +#define DT_FOREACH_OKAY_arm_armv7m_itm(fn) fn(DT_N_S_cpus_S_cpu_0_S_itm_e0000000) +#define DT_FOREACH_OKAY_VARGS_arm_armv7m_itm(fn, ...) fn(DT_N_S_cpus_S_cpu_0_S_itm_e0000000, __VA_ARGS__) +#define DT_FOREACH_OKAY_INST_arm_armv7m_itm(fn) fn(0) +#define DT_FOREACH_OKAY_INST_VARGS_arm_armv7m_itm(fn, ...) fn(0, __VA_ARGS__) +#define DT_FOREACH_OKAY_gpio_leds(fn) fn(DT_N_S_leds) +#define DT_FOREACH_OKAY_VARGS_gpio_leds(fn, ...) fn(DT_N_S_leds, __VA_ARGS__) +#define DT_FOREACH_OKAY_INST_gpio_leds(fn) fn(0) +#define DT_FOREACH_OKAY_INST_VARGS_gpio_leds(fn, ...) fn(0, __VA_ARGS__) +#define DT_FOREACH_OKAY_gpio_keys(fn) fn(DT_N_S_buttons) +#define DT_FOREACH_OKAY_VARGS_gpio_keys(fn, ...) fn(DT_N_S_buttons, __VA_ARGS__) +#define DT_FOREACH_OKAY_INST_gpio_keys(fn) fn(0) +#define DT_FOREACH_OKAY_INST_VARGS_gpio_keys(fn, ...) fn(0, __VA_ARGS__) + +/* + * Bus information for status "okay" nodes of each compatible + */ +#define DT_COMPAT_zephyr_cdc_acm_uart_BUS_usb 1 diff --git a/build/PHF000-Firmware/zephyr/include/generated/zephyr/driver-validation.h b/build/PHF000-Firmware/zephyr/include/generated/zephyr/driver-validation.h new file mode 100644 index 0000000..64164fc --- /dev/null +++ b/build/PHF000-Firmware/zephyr/include/generated/zephyr/driver-validation.h @@ -0,0 +1,170 @@ +#ifndef DRIVER_VALIDATION_GEN_H +#define DRIVER_VALIDATION_GEN_H +#define K_SYSCALL_DRIVER_GEN(ptr, op, driver_lower_case, driver_upper_case) \ + (K_SYSCALL_OBJ(ptr, K_OBJ_DRIVER_##driver_upper_case) || \ + K_SYSCALL_DRIVER_OP(ptr, driver_lower_case##_driver_api, op)) + +#define K_SYSCALL_DRIVER_ADC(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, adc, ADC) + +#define K_SYSCALL_DRIVER_GPIO(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, gpio, GPIO) + +#define K_SYSCALL_DRIVER_SENSOR(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, sensor, SENSOR) + +#define K_SYSCALL_DRIVER_SHARED_IRQ(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, shared_irq, SHARED_IRQ) + +#define K_SYSCALL_DRIVER_CRYPTO(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, crypto, CRYPTO) + +#define K_SYSCALL_DRIVER_AUXDISPLAY(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, auxdisplay, AUXDISPLAY) + +#define K_SYSCALL_DRIVER_BBRAM(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, bbram, BBRAM) + +#define K_SYSCALL_DRIVER_BT_HCI(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, bt_hci, BT_HCI) + +#define K_SYSCALL_DRIVER_CAN(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, can, CAN) + +#define K_SYSCALL_DRIVER_CELLULAR(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, cellular, CELLULAR) + +#define K_SYSCALL_DRIVER_CHARGER(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, charger, CHARGER) + +#define K_SYSCALL_DRIVER_CLOCK_CONTROL(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, clock_control, CLOCK_CONTROL) + +#define K_SYSCALL_DRIVER_COMPARATOR(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, comparator, COMPARATOR) + +#define K_SYSCALL_DRIVER_COREDUMP(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, coredump, COREDUMP) + +#define K_SYSCALL_DRIVER_COUNTER(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, counter, COUNTER) + +#define K_SYSCALL_DRIVER_DAC(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, dac, DAC) + +#define K_SYSCALL_DRIVER_DAI(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, dai, DAI) + +#define K_SYSCALL_DRIVER_DISPLAY(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, display, DISPLAY) + +#define K_SYSCALL_DRIVER_DMA(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, dma, DMA) + +#define K_SYSCALL_DRIVER_EDAC(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, edac, EDAC) + +#define K_SYSCALL_DRIVER_EEPROM(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, eeprom, EEPROM) + +#define K_SYSCALL_DRIVER_EMUL_BBRAM(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, emul_bbram, EMUL_BBRAM) + +#define K_SYSCALL_DRIVER_FUEL_GAUGE_EMUL(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, fuel_gauge_emul, FUEL_GAUGE_EMUL) + +#define K_SYSCALL_DRIVER_EMUL_SENSOR(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, emul_sensor, EMUL_SENSOR) + +#define K_SYSCALL_DRIVER_ENTROPY(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, entropy, ENTROPY) + +#define K_SYSCALL_DRIVER_ESPI(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, espi, ESPI) + +#define K_SYSCALL_DRIVER_ESPI_SAF(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, espi_saf, ESPI_SAF) + +#define K_SYSCALL_DRIVER_FLASH(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, flash, FLASH) + +#define K_SYSCALL_DRIVER_FPGA(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, fpga, FPGA) + +#define K_SYSCALL_DRIVER_FUEL_GAUGE(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, fuel_gauge, FUEL_GAUGE) + +#define K_SYSCALL_DRIVER_GNSS(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, gnss, GNSS) + +#define K_SYSCALL_DRIVER_HAPTICS(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, haptics, HAPTICS) + +#define K_SYSCALL_DRIVER_HWSPINLOCK(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, hwspinlock, HWSPINLOCK) + +#define K_SYSCALL_DRIVER_I2C(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, i2c, I2C) + +#define K_SYSCALL_DRIVER_I2C_TARGET(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, i2c_target, I2C_TARGET) + +#define K_SYSCALL_DRIVER_I2S(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, i2s, I2S) + +#define K_SYSCALL_DRIVER_I3C(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, i3c, I3C) + +#define K_SYSCALL_DRIVER_IPM(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, ipm, IPM) + +#define K_SYSCALL_DRIVER_KSCAN(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, kscan, KSCAN) + +#define K_SYSCALL_DRIVER_LED(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, led, LED) + +#define K_SYSCALL_DRIVER_LED_STRIP(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, led_strip, LED_STRIP) + +#define K_SYSCALL_DRIVER_LORA(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, lora, LORA) + +#define K_SYSCALL_DRIVER_MBOX(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, mbox, MBOX) + +#define K_SYSCALL_DRIVER_MDIO(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, mdio, MDIO) + +#define K_SYSCALL_DRIVER_MIPI_DBI(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, mipi_dbi, MIPI_DBI) + +#define K_SYSCALL_DRIVER_MIPI_DSI(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, mipi_dsi, MIPI_DSI) + +#define K_SYSCALL_DRIVER_MSPI(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, mspi, MSPI) + +#define K_SYSCALL_DRIVER_PECI(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, peci, PECI) + +#define K_SYSCALL_DRIVER_PS2(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, ps2, PS2) + +#define K_SYSCALL_DRIVER_PTP_CLOCK(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, ptp_clock, PTP_CLOCK) + +#define K_SYSCALL_DRIVER_PWM(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, pwm, PWM) + +#define K_SYSCALL_DRIVER_REGULATOR_PARENT(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, regulator_parent, REGULATOR_PARENT) + +#define K_SYSCALL_DRIVER_REGULATOR(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, regulator, REGULATOR) + +#define K_SYSCALL_DRIVER_RESET(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, reset, RESET) + +#define K_SYSCALL_DRIVER_RETAINED_MEM(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, retained_mem, RETAINED_MEM) + +#define K_SYSCALL_DRIVER_RTC(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, rtc, RTC) + +#define K_SYSCALL_DRIVER_SDHC(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, sdhc, SDHC) + +#define K_SYSCALL_DRIVER_SMBUS(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, smbus, SMBUS) + +#define K_SYSCALL_DRIVER_SPI(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, spi, SPI) + +#define K_SYSCALL_DRIVER_STEPPER(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, stepper, STEPPER) + +#define K_SYSCALL_DRIVER_SYSCON(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, syscon, SYSCON) + +#define K_SYSCALL_DRIVER_TEE(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, tee, TEE) + +#define K_SYSCALL_DRIVER_VIDEO(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, video, VIDEO) + +#define K_SYSCALL_DRIVER_W1(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, w1, W1) + +#define K_SYSCALL_DRIVER_WDT(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, wdt, WDT) + +#define K_SYSCALL_DRIVER_CAN_TRANSCEIVER(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, can_transceiver, CAN_TRANSCEIVER) + +#define K_SYSCALL_DRIVER_NRF_CLOCK_CONTROL(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, nrf_clock_control, NRF_CLOCK_CONTROL) + +#define K_SYSCALL_DRIVER_I3C_TARGET(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, i3c_target, I3C_TARGET) + +#define K_SYSCALL_DRIVER_ITS(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, its, ITS) + +#define K_SYSCALL_DRIVER_VTD(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, vtd, VTD) + +#define K_SYSCALL_DRIVER_TGPIO(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, tgpio, TGPIO) + +#define K_SYSCALL_DRIVER_PCIE_CTRL(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, pcie_ctrl, PCIE_CTRL) + +#define K_SYSCALL_DRIVER_PCIE_EP(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, pcie_ep, PCIE_EP) + +#define K_SYSCALL_DRIVER_SVC(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, svc, SVC) + +#define K_SYSCALL_DRIVER_UART(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, uart, UART) + +#define K_SYSCALL_DRIVER_BC12_EMUL(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, bc12_emul, BC12_EMUL) + +#define K_SYSCALL_DRIVER_BC12(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, bc12, BC12) + +#define K_SYSCALL_DRIVER_USBC_PPC(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, usbc_ppc, USBC_PPC) + +#define K_SYSCALL_DRIVER_TCPC(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, tcpc, TCPC) + +#define K_SYSCALL_DRIVER_USBC_VBUS(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, usbc_vbus, USBC_VBUS) + +#define K_SYSCALL_DRIVER_IVSHMEM(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, ivshmem, IVSHMEM) + +#define K_SYSCALL_DRIVER_ETHPHY(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, ethphy, ETHPHY) +#endif /* DRIVER_VALIDATION_GEN_H */ diff --git a/build/PHF000-Firmware/zephyr/include/generated/zephyr/kobj-types-enum.h b/build/PHF000-Firmware/zephyr/include/generated/zephyr/kobj-types-enum.h new file mode 100644 index 0000000..17bdae3 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/include/generated/zephyr/kobj-types-enum.h @@ -0,0 +1,124 @@ +/* Core kernel objects */ +K_OBJ_MEM_SLAB, +K_OBJ_MSGQ, +K_OBJ_MUTEX, +K_OBJ_PIPE, +K_OBJ_QUEUE, +K_OBJ_POLL_SIGNAL, +K_OBJ_SEM, +K_OBJ_STACK, +K_OBJ_THREAD, +K_OBJ_TIMER, +K_OBJ_THREAD_STACK_ELEMENT, +K_OBJ_NET_SOCKET, +K_OBJ_NET_IF, +K_OBJ_SYS_MUTEX, +K_OBJ_FUTEX, +K_OBJ_CONDVAR, +#ifdef CONFIG_EVENTS +K_OBJ_EVENT, +#endif +#ifdef CONFIG_ZTEST +K_OBJ_ZTEST_SUITE_NODE, +#endif +#ifdef CONFIG_ZTEST +K_OBJ_ZTEST_SUITE_STATS, +#endif +#ifdef CONFIG_ZTEST +K_OBJ_ZTEST_UNIT_TEST, +#endif +#ifdef CONFIG_ZTEST +K_OBJ_ZTEST_TEST_RULE, +#endif +#ifdef CONFIG_RTIO +K_OBJ_RTIO, +#endif +#ifdef CONFIG_RTIO +K_OBJ_RTIO_IODEV, +#endif +#ifdef CONFIG_SENSOR_ASYNC_API +K_OBJ_SENSOR_DECODER_API, +#endif +/* Driver subsystems */ +K_OBJ_DRIVER_ADC, +K_OBJ_DRIVER_GPIO, +K_OBJ_DRIVER_SENSOR, +K_OBJ_DRIVER_SHARED_IRQ, +K_OBJ_DRIVER_CRYPTO, +K_OBJ_DRIVER_AUXDISPLAY, +K_OBJ_DRIVER_BBRAM, +K_OBJ_DRIVER_BT_HCI, +K_OBJ_DRIVER_CAN, +K_OBJ_DRIVER_CELLULAR, +K_OBJ_DRIVER_CHARGER, +K_OBJ_DRIVER_CLOCK_CONTROL, +K_OBJ_DRIVER_COMPARATOR, +K_OBJ_DRIVER_COREDUMP, +K_OBJ_DRIVER_COUNTER, +K_OBJ_DRIVER_DAC, +K_OBJ_DRIVER_DAI, +K_OBJ_DRIVER_DISPLAY, +K_OBJ_DRIVER_DMA, +K_OBJ_DRIVER_EDAC, +K_OBJ_DRIVER_EEPROM, +K_OBJ_DRIVER_EMUL_BBRAM, +K_OBJ_DRIVER_FUEL_GAUGE_EMUL, +K_OBJ_DRIVER_EMUL_SENSOR, +K_OBJ_DRIVER_ENTROPY, +K_OBJ_DRIVER_ESPI, +K_OBJ_DRIVER_ESPI_SAF, +K_OBJ_DRIVER_FLASH, +K_OBJ_DRIVER_FPGA, +K_OBJ_DRIVER_FUEL_GAUGE, +K_OBJ_DRIVER_GNSS, +K_OBJ_DRIVER_HAPTICS, +K_OBJ_DRIVER_HWSPINLOCK, +K_OBJ_DRIVER_I2C, +K_OBJ_DRIVER_I2C_TARGET, +K_OBJ_DRIVER_I2S, +K_OBJ_DRIVER_I3C, +K_OBJ_DRIVER_IPM, +K_OBJ_DRIVER_KSCAN, +K_OBJ_DRIVER_LED, +K_OBJ_DRIVER_LED_STRIP, +K_OBJ_DRIVER_LORA, +K_OBJ_DRIVER_MBOX, +K_OBJ_DRIVER_MDIO, +K_OBJ_DRIVER_MIPI_DBI, +K_OBJ_DRIVER_MIPI_DSI, +K_OBJ_DRIVER_MSPI, +K_OBJ_DRIVER_PECI, +K_OBJ_DRIVER_PS2, +K_OBJ_DRIVER_PTP_CLOCK, +K_OBJ_DRIVER_PWM, +K_OBJ_DRIVER_REGULATOR_PARENT, +K_OBJ_DRIVER_REGULATOR, +K_OBJ_DRIVER_RESET, +K_OBJ_DRIVER_RETAINED_MEM, +K_OBJ_DRIVER_RTC, +K_OBJ_DRIVER_SDHC, +K_OBJ_DRIVER_SMBUS, +K_OBJ_DRIVER_SPI, +K_OBJ_DRIVER_STEPPER, +K_OBJ_DRIVER_SYSCON, +K_OBJ_DRIVER_TEE, +K_OBJ_DRIVER_VIDEO, +K_OBJ_DRIVER_W1, +K_OBJ_DRIVER_WDT, +K_OBJ_DRIVER_CAN_TRANSCEIVER, +K_OBJ_DRIVER_NRF_CLOCK_CONTROL, +K_OBJ_DRIVER_I3C_TARGET, +K_OBJ_DRIVER_ITS, +K_OBJ_DRIVER_VTD, +K_OBJ_DRIVER_TGPIO, +K_OBJ_DRIVER_PCIE_CTRL, +K_OBJ_DRIVER_PCIE_EP, +K_OBJ_DRIVER_SVC, +K_OBJ_DRIVER_UART, +K_OBJ_DRIVER_BC12_EMUL, +K_OBJ_DRIVER_BC12, +K_OBJ_DRIVER_USBC_PPC, +K_OBJ_DRIVER_TCPC, +K_OBJ_DRIVER_USBC_VBUS, +K_OBJ_DRIVER_IVSHMEM, +K_OBJ_DRIVER_ETHPHY, diff --git a/build/PHF000-Firmware/zephyr/include/generated/zephyr/offsets.h b/build/PHF000-Firmware/zephyr/include/generated/zephyr/offsets.h new file mode 100644 index 0000000..56354ee --- /dev/null +++ b/build/PHF000-Firmware/zephyr/include/generated/zephyr/offsets.h @@ -0,0 +1,35 @@ +/* THIS FILE IS AUTO GENERATED. PLEASE DO NOT EDIT. + * + * This header file provides macros for the offsets of various structure + * members. These offset macros are primarily intended to be used in + * assembly code. + */ + +#ifndef __GEN_OFFSETS_H__ +#define __GEN_OFFSETS_H__ + +#define ___cpu_t_current_OFFSET 0x8 +#define ___cpu_t_nested_OFFSET 0x0 +#define ___cpu_t_irq_stack_OFFSET 0x4 +#define ___cpu_t_arch_OFFSET 0x11 +#define ___kernel_t_cpus_OFFSET 0x0 +#define ___kernel_t_ready_q_OFFSET 0x14 +#define ___ready_q_t_cache_OFFSET 0x0 +#define ___thread_base_t_user_options_OFFSET 0xc +#define ___thread_t_base_OFFSET 0x0 +#define ___thread_t_callee_saved_OFFSET 0x30 +#define ___thread_t_arch_OFFSET 0x74 +#define ___thread_t_stack_info_OFFSET 0x60 +#define ___thread_t_tls_OFFSET 0x70 +#define __z_interrupt_stack_SIZEOF 0x840 +#define __z_interrupt_all_stacks_SIZEOF 0x840 +#define _PM_DEVICE_STRUCT_FLAGS_OFFSET 0x0 +#define ___thread_arch_t_basepri_OFFSET 0x0 +#define ___thread_arch_t_swap_return_value_OFFSET 0x4 +#define ___basic_sf_t_pc_OFFSET 0x18 +#define ___basic_sf_t_xpsr_OFFSET 0x1c +#define ___esf_t_SIZEOF 0x20 +#define ___callee_saved_t_SIZEOF 0x24 +#define ___thread_stack_info_t_start_OFFSET 0x0 + +#endif /* __GEN_OFFSETS_H__ */ diff --git a/build/PHF000-Firmware/zephyr/include/generated/zephyr/otype-to-size.h b/build/PHF000-Firmware/zephyr/include/generated/zephyr/otype-to-size.h new file mode 100644 index 0000000..5ae6675 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/include/generated/zephyr/otype-to-size.h @@ -0,0 +1,15 @@ +/* Non device/stack objects */ +case K_OBJ_MEM_SLAB: ret = sizeof(struct k_mem_slab); break; +case K_OBJ_MSGQ: ret = sizeof(struct k_msgq); break; +case K_OBJ_MUTEX: ret = sizeof(struct k_mutex); break; +case K_OBJ_PIPE: ret = sizeof(struct k_pipe); break; +case K_OBJ_QUEUE: ret = sizeof(struct k_queue); break; +case K_OBJ_POLL_SIGNAL: ret = sizeof(struct k_poll_signal); break; +case K_OBJ_SEM: ret = sizeof(struct k_sem); break; +case K_OBJ_STACK: ret = sizeof(struct k_stack); break; +case K_OBJ_THREAD: ret = sizeof(struct k_thread); break; +case K_OBJ_TIMER: ret = sizeof(struct k_timer); break; +case K_OBJ_CONDVAR: ret = sizeof(struct k_condvar); break; +#ifdef CONFIG_EVENTS +case K_OBJ_EVENT: ret = sizeof(struct k_event); break; +#endif diff --git a/build/PHF000-Firmware/zephyr/include/generated/zephyr/otype-to-str.h b/build/PHF000-Firmware/zephyr/include/generated/zephyr/otype-to-str.h new file mode 100644 index 0000000..a52373b --- /dev/null +++ b/build/PHF000-Firmware/zephyr/include/generated/zephyr/otype-to-str.h @@ -0,0 +1,124 @@ +/* Core kernel objects */ +case K_OBJ_MEM_SLAB: ret = "k_mem_slab"; break; +case K_OBJ_MSGQ: ret = "k_msgq"; break; +case K_OBJ_MUTEX: ret = "k_mutex"; break; +case K_OBJ_PIPE: ret = "k_pipe"; break; +case K_OBJ_QUEUE: ret = "k_queue"; break; +case K_OBJ_POLL_SIGNAL: ret = "k_poll_signal"; break; +case K_OBJ_SEM: ret = "k_sem"; break; +case K_OBJ_STACK: ret = "k_stack"; break; +case K_OBJ_THREAD: ret = "k_thread"; break; +case K_OBJ_TIMER: ret = "k_timer"; break; +case K_OBJ_THREAD_STACK_ELEMENT: ret = "z_thread_stack_element"; break; +case K_OBJ_NET_SOCKET: ret = "NET_SOCKET"; break; +case K_OBJ_NET_IF: ret = "net_if"; break; +case K_OBJ_SYS_MUTEX: ret = "sys_mutex"; break; +case K_OBJ_FUTEX: ret = "k_futex"; break; +case K_OBJ_CONDVAR: ret = "k_condvar"; break; +#ifdef CONFIG_EVENTS +case K_OBJ_EVENT: ret = "k_event"; break; +#endif +#ifdef CONFIG_ZTEST +case K_OBJ_ZTEST_SUITE_NODE: ret = "ztest_suite_node"; break; +#endif +#ifdef CONFIG_ZTEST +case K_OBJ_ZTEST_SUITE_STATS: ret = "ztest_suite_stats"; break; +#endif +#ifdef CONFIG_ZTEST +case K_OBJ_ZTEST_UNIT_TEST: ret = "ztest_unit_test"; break; +#endif +#ifdef CONFIG_ZTEST +case K_OBJ_ZTEST_TEST_RULE: ret = "ztest_test_rule"; break; +#endif +#ifdef CONFIG_RTIO +case K_OBJ_RTIO: ret = "rtio"; break; +#endif +#ifdef CONFIG_RTIO +case K_OBJ_RTIO_IODEV: ret = "rtio_iodev"; break; +#endif +#ifdef CONFIG_SENSOR_ASYNC_API +case K_OBJ_SENSOR_DECODER_API: ret = "sensor_decoder_api"; break; +#endif +/* Driver subsystems */ +case K_OBJ_DRIVER_ADC: ret = "adc driver"; break; +case K_OBJ_DRIVER_GPIO: ret = "gpio driver"; break; +case K_OBJ_DRIVER_SENSOR: ret = "sensor driver"; break; +case K_OBJ_DRIVER_SHARED_IRQ: ret = "shared_irq driver"; break; +case K_OBJ_DRIVER_CRYPTO: ret = "crypto driver"; break; +case K_OBJ_DRIVER_AUXDISPLAY: ret = "auxdisplay driver"; break; +case K_OBJ_DRIVER_BBRAM: ret = "bbram driver"; break; +case K_OBJ_DRIVER_BT_HCI: ret = "bt_hci driver"; break; +case K_OBJ_DRIVER_CAN: ret = "can driver"; break; +case K_OBJ_DRIVER_CELLULAR: ret = "cellular driver"; break; +case K_OBJ_DRIVER_CHARGER: ret = "charger driver"; break; +case K_OBJ_DRIVER_CLOCK_CONTROL: ret = "clock_control driver"; break; +case K_OBJ_DRIVER_COMPARATOR: ret = "comparator driver"; break; +case K_OBJ_DRIVER_COREDUMP: ret = "coredump driver"; break; +case K_OBJ_DRIVER_COUNTER: ret = "counter driver"; break; +case K_OBJ_DRIVER_DAC: ret = "dac driver"; break; +case K_OBJ_DRIVER_DAI: ret = "dai driver"; break; +case K_OBJ_DRIVER_DISPLAY: ret = "display driver"; break; +case K_OBJ_DRIVER_DMA: ret = "dma driver"; break; +case K_OBJ_DRIVER_EDAC: ret = "edac driver"; break; +case K_OBJ_DRIVER_EEPROM: ret = "eeprom driver"; break; +case K_OBJ_DRIVER_EMUL_BBRAM: ret = "emul_bbram driver"; break; +case K_OBJ_DRIVER_FUEL_GAUGE_EMUL: ret = "fuel_gauge_emul driver"; break; +case K_OBJ_DRIVER_EMUL_SENSOR: ret = "emul_sensor driver"; break; +case K_OBJ_DRIVER_ENTROPY: ret = "entropy driver"; break; +case K_OBJ_DRIVER_ESPI: ret = "espi driver"; break; +case K_OBJ_DRIVER_ESPI_SAF: ret = "espi_saf driver"; break; +case K_OBJ_DRIVER_FLASH: ret = "flash driver"; break; +case K_OBJ_DRIVER_FPGA: ret = "fpga driver"; break; +case K_OBJ_DRIVER_FUEL_GAUGE: ret = "fuel_gauge driver"; break; +case K_OBJ_DRIVER_GNSS: ret = "gnss driver"; break; +case K_OBJ_DRIVER_HAPTICS: ret = "haptics driver"; break; +case K_OBJ_DRIVER_HWSPINLOCK: ret = "hwspinlock driver"; break; +case K_OBJ_DRIVER_I2C: ret = "i2c driver"; break; +case K_OBJ_DRIVER_I2C_TARGET: ret = "i2c_target driver"; break; +case K_OBJ_DRIVER_I2S: ret = "i2s driver"; break; +case K_OBJ_DRIVER_I3C: ret = "i3c driver"; break; +case K_OBJ_DRIVER_IPM: ret = "ipm driver"; break; +case K_OBJ_DRIVER_KSCAN: ret = "kscan driver"; break; +case K_OBJ_DRIVER_LED: ret = "led driver"; break; +case K_OBJ_DRIVER_LED_STRIP: ret = "led_strip driver"; break; +case K_OBJ_DRIVER_LORA: ret = "lora driver"; break; +case K_OBJ_DRIVER_MBOX: ret = "mbox driver"; break; +case K_OBJ_DRIVER_MDIO: ret = "mdio driver"; break; +case K_OBJ_DRIVER_MIPI_DBI: ret = "mipi_dbi driver"; break; +case K_OBJ_DRIVER_MIPI_DSI: ret = "mipi_dsi driver"; break; +case K_OBJ_DRIVER_MSPI: ret = "mspi driver"; break; +case K_OBJ_DRIVER_PECI: ret = "peci driver"; break; +case K_OBJ_DRIVER_PS2: ret = "ps2 driver"; break; +case K_OBJ_DRIVER_PTP_CLOCK: ret = "ptp_clock driver"; break; +case K_OBJ_DRIVER_PWM: ret = "pwm driver"; break; +case K_OBJ_DRIVER_REGULATOR_PARENT: ret = "regulator_parent driver"; break; +case K_OBJ_DRIVER_REGULATOR: ret = "regulator driver"; break; +case K_OBJ_DRIVER_RESET: ret = "reset driver"; break; +case K_OBJ_DRIVER_RETAINED_MEM: ret = "retained_mem driver"; break; +case K_OBJ_DRIVER_RTC: ret = "rtc driver"; break; +case K_OBJ_DRIVER_SDHC: ret = "sdhc driver"; break; +case K_OBJ_DRIVER_SMBUS: ret = "smbus driver"; break; +case K_OBJ_DRIVER_SPI: ret = "spi driver"; break; +case K_OBJ_DRIVER_STEPPER: ret = "stepper driver"; break; +case K_OBJ_DRIVER_SYSCON: ret = "syscon driver"; break; +case K_OBJ_DRIVER_TEE: ret = "tee driver"; break; +case K_OBJ_DRIVER_VIDEO: ret = "video driver"; break; +case K_OBJ_DRIVER_W1: ret = "w1 driver"; break; +case K_OBJ_DRIVER_WDT: ret = "wdt driver"; break; +case K_OBJ_DRIVER_CAN_TRANSCEIVER: ret = "can_transceiver driver"; break; +case K_OBJ_DRIVER_NRF_CLOCK_CONTROL: ret = "nrf_clock_control driver"; break; +case K_OBJ_DRIVER_I3C_TARGET: ret = "i3c_target driver"; break; +case K_OBJ_DRIVER_ITS: ret = "its driver"; break; +case K_OBJ_DRIVER_VTD: ret = "vtd driver"; break; +case K_OBJ_DRIVER_TGPIO: ret = "tgpio driver"; break; +case K_OBJ_DRIVER_PCIE_CTRL: ret = "pcie_ctrl driver"; break; +case K_OBJ_DRIVER_PCIE_EP: ret = "pcie_ep driver"; break; +case K_OBJ_DRIVER_SVC: ret = "svc driver"; break; +case K_OBJ_DRIVER_UART: ret = "uart driver"; break; +case K_OBJ_DRIVER_BC12_EMUL: ret = "bc12_emul driver"; break; +case K_OBJ_DRIVER_BC12: ret = "bc12 driver"; break; +case K_OBJ_DRIVER_USBC_PPC: ret = "usbc_ppc driver"; break; +case K_OBJ_DRIVER_TCPC: ret = "tcpc driver"; break; +case K_OBJ_DRIVER_USBC_VBUS: ret = "usbc_vbus driver"; break; +case K_OBJ_DRIVER_IVSHMEM: ret = "ivshmem driver"; break; +case K_OBJ_DRIVER_ETHPHY: ret = "ethphy driver"; break; diff --git a/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscall_dispatch.c b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscall_dispatch.c new file mode 100644 index 0000000..08bd16a --- /dev/null +++ b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscall_dispatch.c @@ -0,0 +1,817 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#include + +/* Weak handler functions that get replaced by the real ones unless a system + * call is not implemented due to kernel configuration. + */ + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_zephyr_read_stdin(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_zephyr_write_stdout(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_zephyr_fputc(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_zephyr_fwrite(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_z_sys_mutex_kernel_lock(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_z_sys_mutex_kernel_unlock(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_z_log_msg_simple_create_0(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_z_log_msg_simple_create_1(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_z_log_msg_simple_create_2(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_z_log_msg_static_create(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_log_panic(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_log_process(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_log_buffered_cnt(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_log_filter_set(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_log_frontend_filter_set(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_adc_channel_setup(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_adc_read(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_adc_read_async(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_gpio_pin_interrupt_configure(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_gpio_pin_configure(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_gpio_port_get_direction(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_gpio_pin_get_config(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_gpio_port_get_raw(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_gpio_port_set_masked_raw(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_gpio_port_set_bits_raw(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_gpio_port_clear_bits_raw(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_gpio_port_toggle_bits(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_gpio_get_pending_int(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_hwinfo_get_device_id(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_hwinfo_get_device_eui64(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_hwinfo_get_reset_cause(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_hwinfo_clear_reset_cause(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_hwinfo_get_supported_reset_cause(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_sensor_attr_set(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_sensor_attr_get(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_sensor_sample_fetch(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_sensor_sample_fetch_chan(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_sensor_channel_get(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_sensor_get_decoder(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_sensor_reconfigure_read_iodev(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_uart_err_check(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_uart_poll_in(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_uart_poll_in_u16(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_uart_poll_out(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_uart_poll_out_u16(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_uart_configure(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_uart_config_get(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_uart_irq_tx_enable(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_uart_irq_tx_disable(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_uart_irq_rx_enable(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_uart_irq_rx_disable(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_uart_irq_err_enable(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_uart_irq_err_disable(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_uart_irq_is_pending(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_uart_irq_update(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_uart_tx(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_uart_tx_u16(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_uart_tx_abort(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_uart_rx_enable(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_uart_rx_enable_u16(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_uart_rx_disable(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_uart_line_ctrl_set(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_uart_line_ctrl_get(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_uart_drv_cmd(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_device_get_binding(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_device_is_ready(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_device_init(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_device_get_by_dt_nodelabel(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_thread_stack_alloc(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_thread_stack_free(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_thread_create(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_thread_stack_space_get(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_thread_join(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_sleep(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_usleep(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_busy_wait(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_yield(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_wakeup(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_sched_current_thread_query(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_thread_abort(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_thread_timeout_expires_ticks(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_thread_timeout_remaining_ticks(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_thread_priority_get(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_thread_priority_set(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_thread_deadline_set(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_reschedule(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_thread_suspend(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_thread_resume(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_is_preempt_thread(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_thread_custom_data_set(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_thread_custom_data_get(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_thread_name_set(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_thread_name_copy(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_timer_start(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_timer_stop(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_timer_status_get(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_timer_status_sync(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_timer_expires_ticks(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_timer_remaining_ticks(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_timer_user_data_set(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_timer_user_data_get(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_uptime_ticks(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_queue_init(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_queue_cancel_wait(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_queue_alloc_append(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_queue_alloc_prepend(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_queue_get(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_queue_is_empty(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_queue_peek_head(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_queue_peek_tail(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_futex_wait(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_futex_wake(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_event_init(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_event_post(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_event_set(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_event_set_masked(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_event_clear(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_event_wait(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_event_wait_all(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_stack_alloc_init(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_stack_push(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_stack_pop(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_mutex_init(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_mutex_lock(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_mutex_unlock(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_condvar_init(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_condvar_signal(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_condvar_broadcast(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_condvar_wait(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_sem_init(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_sem_take(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_sem_give(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_sem_reset(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_sem_count_get(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_msgq_alloc_init(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_msgq_put(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_msgq_get(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_msgq_peek(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_msgq_peek_at(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_msgq_purge(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_msgq_num_free_get(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_msgq_get_attrs(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_msgq_num_used_get(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_pipe_alloc_init(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_pipe_put(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_pipe_get(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_pipe_read_avail(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_pipe_write_avail(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_pipe_flush(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_pipe_buffer_flush(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_poll(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_poll_signal_init(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_poll_signal_reset(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_poll_signal_check(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_poll_signal_raise(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_str_out(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_float_disable(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_float_enable(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_object_alloc_size(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_sys_clock_hw_cycles_per_sec_runtime_get(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); +extern uintptr_t z_mrsh_k_object_release(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); +extern uintptr_t z_mrsh_k_object_access_grant(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); +extern uintptr_t z_mrsh_k_object_alloc(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +const _k_syscall_handler_t _k_syscall_table[K_SYSCALL_LIMIT] = { + [K_SYSCALL_ZEPHYR_READ_STDIN] = z_mrsh_zephyr_read_stdin, + [K_SYSCALL_ZEPHYR_WRITE_STDOUT] = z_mrsh_zephyr_write_stdout, + [K_SYSCALL_ZEPHYR_FPUTC] = z_mrsh_zephyr_fputc, + [K_SYSCALL_ZEPHYR_FWRITE] = z_mrsh_zephyr_fwrite, + [K_SYSCALL_Z_SYS_MUTEX_KERNEL_LOCK] = z_mrsh_z_sys_mutex_kernel_lock, + [K_SYSCALL_Z_SYS_MUTEX_KERNEL_UNLOCK] = z_mrsh_z_sys_mutex_kernel_unlock, + [K_SYSCALL_Z_LOG_MSG_SIMPLE_CREATE_0] = z_mrsh_z_log_msg_simple_create_0, + [K_SYSCALL_Z_LOG_MSG_SIMPLE_CREATE_1] = z_mrsh_z_log_msg_simple_create_1, + [K_SYSCALL_Z_LOG_MSG_SIMPLE_CREATE_2] = z_mrsh_z_log_msg_simple_create_2, + [K_SYSCALL_Z_LOG_MSG_STATIC_CREATE] = z_mrsh_z_log_msg_static_create, + [K_SYSCALL_LOG_PANIC] = z_mrsh_log_panic, + [K_SYSCALL_LOG_PROCESS] = z_mrsh_log_process, + [K_SYSCALL_LOG_BUFFERED_CNT] = z_mrsh_log_buffered_cnt, + [K_SYSCALL_LOG_FILTER_SET] = z_mrsh_log_filter_set, + [K_SYSCALL_LOG_FRONTEND_FILTER_SET] = z_mrsh_log_frontend_filter_set, + [K_SYSCALL_ADC_CHANNEL_SETUP] = z_mrsh_adc_channel_setup, + [K_SYSCALL_ADC_READ] = z_mrsh_adc_read, + [K_SYSCALL_ADC_READ_ASYNC] = z_mrsh_adc_read_async, + [K_SYSCALL_GPIO_PIN_INTERRUPT_CONFIGURE] = z_mrsh_gpio_pin_interrupt_configure, + [K_SYSCALL_GPIO_PIN_CONFIGURE] = z_mrsh_gpio_pin_configure, + [K_SYSCALL_GPIO_PORT_GET_DIRECTION] = z_mrsh_gpio_port_get_direction, + [K_SYSCALL_GPIO_PIN_GET_CONFIG] = z_mrsh_gpio_pin_get_config, + [K_SYSCALL_GPIO_PORT_GET_RAW] = z_mrsh_gpio_port_get_raw, + [K_SYSCALL_GPIO_PORT_SET_MASKED_RAW] = z_mrsh_gpio_port_set_masked_raw, + [K_SYSCALL_GPIO_PORT_SET_BITS_RAW] = z_mrsh_gpio_port_set_bits_raw, + [K_SYSCALL_GPIO_PORT_CLEAR_BITS_RAW] = z_mrsh_gpio_port_clear_bits_raw, + [K_SYSCALL_GPIO_PORT_TOGGLE_BITS] = z_mrsh_gpio_port_toggle_bits, + [K_SYSCALL_GPIO_GET_PENDING_INT] = z_mrsh_gpio_get_pending_int, + [K_SYSCALL_HWINFO_GET_DEVICE_ID] = z_mrsh_hwinfo_get_device_id, + [K_SYSCALL_HWINFO_GET_DEVICE_EUI64] = z_mrsh_hwinfo_get_device_eui64, + [K_SYSCALL_HWINFO_GET_RESET_CAUSE] = z_mrsh_hwinfo_get_reset_cause, + [K_SYSCALL_HWINFO_CLEAR_RESET_CAUSE] = z_mrsh_hwinfo_clear_reset_cause, + [K_SYSCALL_HWINFO_GET_SUPPORTED_RESET_CAUSE] = z_mrsh_hwinfo_get_supported_reset_cause, + [K_SYSCALL_SENSOR_ATTR_SET] = z_mrsh_sensor_attr_set, + [K_SYSCALL_SENSOR_ATTR_GET] = z_mrsh_sensor_attr_get, + [K_SYSCALL_SENSOR_SAMPLE_FETCH] = z_mrsh_sensor_sample_fetch, + [K_SYSCALL_SENSOR_SAMPLE_FETCH_CHAN] = z_mrsh_sensor_sample_fetch_chan, + [K_SYSCALL_SENSOR_CHANNEL_GET] = z_mrsh_sensor_channel_get, + [K_SYSCALL_SENSOR_GET_DECODER] = z_mrsh_sensor_get_decoder, + [K_SYSCALL_SENSOR_RECONFIGURE_READ_IODEV] = z_mrsh_sensor_reconfigure_read_iodev, + [K_SYSCALL_UART_ERR_CHECK] = z_mrsh_uart_err_check, + [K_SYSCALL_UART_POLL_IN] = z_mrsh_uart_poll_in, + [K_SYSCALL_UART_POLL_IN_U16] = z_mrsh_uart_poll_in_u16, + [K_SYSCALL_UART_POLL_OUT] = z_mrsh_uart_poll_out, + [K_SYSCALL_UART_POLL_OUT_U16] = z_mrsh_uart_poll_out_u16, + [K_SYSCALL_UART_CONFIGURE] = z_mrsh_uart_configure, + [K_SYSCALL_UART_CONFIG_GET] = z_mrsh_uart_config_get, + [K_SYSCALL_UART_IRQ_TX_ENABLE] = z_mrsh_uart_irq_tx_enable, + [K_SYSCALL_UART_IRQ_TX_DISABLE] = z_mrsh_uart_irq_tx_disable, + [K_SYSCALL_UART_IRQ_RX_ENABLE] = z_mrsh_uart_irq_rx_enable, + [K_SYSCALL_UART_IRQ_RX_DISABLE] = z_mrsh_uart_irq_rx_disable, + [K_SYSCALL_UART_IRQ_ERR_ENABLE] = z_mrsh_uart_irq_err_enable, + [K_SYSCALL_UART_IRQ_ERR_DISABLE] = z_mrsh_uart_irq_err_disable, + [K_SYSCALL_UART_IRQ_IS_PENDING] = z_mrsh_uart_irq_is_pending, + [K_SYSCALL_UART_IRQ_UPDATE] = z_mrsh_uart_irq_update, + [K_SYSCALL_UART_TX] = z_mrsh_uart_tx, + [K_SYSCALL_UART_TX_U16] = z_mrsh_uart_tx_u16, + [K_SYSCALL_UART_TX_ABORT] = z_mrsh_uart_tx_abort, + [K_SYSCALL_UART_RX_ENABLE] = z_mrsh_uart_rx_enable, + [K_SYSCALL_UART_RX_ENABLE_U16] = z_mrsh_uart_rx_enable_u16, + [K_SYSCALL_UART_RX_DISABLE] = z_mrsh_uart_rx_disable, + [K_SYSCALL_UART_LINE_CTRL_SET] = z_mrsh_uart_line_ctrl_set, + [K_SYSCALL_UART_LINE_CTRL_GET] = z_mrsh_uart_line_ctrl_get, + [K_SYSCALL_UART_DRV_CMD] = z_mrsh_uart_drv_cmd, + [K_SYSCALL_DEVICE_GET_BINDING] = z_mrsh_device_get_binding, + [K_SYSCALL_DEVICE_IS_READY] = z_mrsh_device_is_ready, + [K_SYSCALL_DEVICE_INIT] = z_mrsh_device_init, + [K_SYSCALL_DEVICE_GET_BY_DT_NODELABEL] = z_mrsh_device_get_by_dt_nodelabel, + [K_SYSCALL_K_THREAD_STACK_ALLOC] = z_mrsh_k_thread_stack_alloc, + [K_SYSCALL_K_THREAD_STACK_FREE] = z_mrsh_k_thread_stack_free, + [K_SYSCALL_K_THREAD_CREATE] = z_mrsh_k_thread_create, + [K_SYSCALL_K_THREAD_STACK_SPACE_GET] = z_mrsh_k_thread_stack_space_get, + [K_SYSCALL_K_THREAD_JOIN] = z_mrsh_k_thread_join, + [K_SYSCALL_K_SLEEP] = z_mrsh_k_sleep, + [K_SYSCALL_K_USLEEP] = z_mrsh_k_usleep, + [K_SYSCALL_K_BUSY_WAIT] = z_mrsh_k_busy_wait, + [K_SYSCALL_K_YIELD] = z_mrsh_k_yield, + [K_SYSCALL_K_WAKEUP] = z_mrsh_k_wakeup, + [K_SYSCALL_K_SCHED_CURRENT_THREAD_QUERY] = z_mrsh_k_sched_current_thread_query, + [K_SYSCALL_K_THREAD_ABORT] = z_mrsh_k_thread_abort, + [K_SYSCALL_K_THREAD_TIMEOUT_EXPIRES_TICKS] = z_mrsh_k_thread_timeout_expires_ticks, + [K_SYSCALL_K_THREAD_TIMEOUT_REMAINING_TICKS] = z_mrsh_k_thread_timeout_remaining_ticks, + [K_SYSCALL_K_THREAD_PRIORITY_GET] = z_mrsh_k_thread_priority_get, + [K_SYSCALL_K_THREAD_PRIORITY_SET] = z_mrsh_k_thread_priority_set, + [K_SYSCALL_K_THREAD_DEADLINE_SET] = z_mrsh_k_thread_deadline_set, + [K_SYSCALL_K_RESCHEDULE] = z_mrsh_k_reschedule, + [K_SYSCALL_K_THREAD_SUSPEND] = z_mrsh_k_thread_suspend, + [K_SYSCALL_K_THREAD_RESUME] = z_mrsh_k_thread_resume, + [K_SYSCALL_K_IS_PREEMPT_THREAD] = z_mrsh_k_is_preempt_thread, + [K_SYSCALL_K_THREAD_CUSTOM_DATA_SET] = z_mrsh_k_thread_custom_data_set, + [K_SYSCALL_K_THREAD_CUSTOM_DATA_GET] = z_mrsh_k_thread_custom_data_get, + [K_SYSCALL_K_THREAD_NAME_SET] = z_mrsh_k_thread_name_set, + [K_SYSCALL_K_THREAD_NAME_COPY] = z_mrsh_k_thread_name_copy, + [K_SYSCALL_K_TIMER_START] = z_mrsh_k_timer_start, + [K_SYSCALL_K_TIMER_STOP] = z_mrsh_k_timer_stop, + [K_SYSCALL_K_TIMER_STATUS_GET] = z_mrsh_k_timer_status_get, + [K_SYSCALL_K_TIMER_STATUS_SYNC] = z_mrsh_k_timer_status_sync, + [K_SYSCALL_K_TIMER_EXPIRES_TICKS] = z_mrsh_k_timer_expires_ticks, + [K_SYSCALL_K_TIMER_REMAINING_TICKS] = z_mrsh_k_timer_remaining_ticks, + [K_SYSCALL_K_TIMER_USER_DATA_SET] = z_mrsh_k_timer_user_data_set, + [K_SYSCALL_K_TIMER_USER_DATA_GET] = z_mrsh_k_timer_user_data_get, + [K_SYSCALL_K_UPTIME_TICKS] = z_mrsh_k_uptime_ticks, + [K_SYSCALL_K_QUEUE_INIT] = z_mrsh_k_queue_init, + [K_SYSCALL_K_QUEUE_CANCEL_WAIT] = z_mrsh_k_queue_cancel_wait, + [K_SYSCALL_K_QUEUE_ALLOC_APPEND] = z_mrsh_k_queue_alloc_append, + [K_SYSCALL_K_QUEUE_ALLOC_PREPEND] = z_mrsh_k_queue_alloc_prepend, + [K_SYSCALL_K_QUEUE_GET] = z_mrsh_k_queue_get, + [K_SYSCALL_K_QUEUE_IS_EMPTY] = z_mrsh_k_queue_is_empty, + [K_SYSCALL_K_QUEUE_PEEK_HEAD] = z_mrsh_k_queue_peek_head, + [K_SYSCALL_K_QUEUE_PEEK_TAIL] = z_mrsh_k_queue_peek_tail, + [K_SYSCALL_K_FUTEX_WAIT] = z_mrsh_k_futex_wait, + [K_SYSCALL_K_FUTEX_WAKE] = z_mrsh_k_futex_wake, + [K_SYSCALL_K_EVENT_INIT] = z_mrsh_k_event_init, + [K_SYSCALL_K_EVENT_POST] = z_mrsh_k_event_post, + [K_SYSCALL_K_EVENT_SET] = z_mrsh_k_event_set, + [K_SYSCALL_K_EVENT_SET_MASKED] = z_mrsh_k_event_set_masked, + [K_SYSCALL_K_EVENT_CLEAR] = z_mrsh_k_event_clear, + [K_SYSCALL_K_EVENT_WAIT] = z_mrsh_k_event_wait, + [K_SYSCALL_K_EVENT_WAIT_ALL] = z_mrsh_k_event_wait_all, + [K_SYSCALL_K_STACK_ALLOC_INIT] = z_mrsh_k_stack_alloc_init, + [K_SYSCALL_K_STACK_PUSH] = z_mrsh_k_stack_push, + [K_SYSCALL_K_STACK_POP] = z_mrsh_k_stack_pop, + [K_SYSCALL_K_MUTEX_INIT] = z_mrsh_k_mutex_init, + [K_SYSCALL_K_MUTEX_LOCK] = z_mrsh_k_mutex_lock, + [K_SYSCALL_K_MUTEX_UNLOCK] = z_mrsh_k_mutex_unlock, + [K_SYSCALL_K_CONDVAR_INIT] = z_mrsh_k_condvar_init, + [K_SYSCALL_K_CONDVAR_SIGNAL] = z_mrsh_k_condvar_signal, + [K_SYSCALL_K_CONDVAR_BROADCAST] = z_mrsh_k_condvar_broadcast, + [K_SYSCALL_K_CONDVAR_WAIT] = z_mrsh_k_condvar_wait, + [K_SYSCALL_K_SEM_INIT] = z_mrsh_k_sem_init, + [K_SYSCALL_K_SEM_TAKE] = z_mrsh_k_sem_take, + [K_SYSCALL_K_SEM_GIVE] = z_mrsh_k_sem_give, + [K_SYSCALL_K_SEM_RESET] = z_mrsh_k_sem_reset, + [K_SYSCALL_K_SEM_COUNT_GET] = z_mrsh_k_sem_count_get, + [K_SYSCALL_K_MSGQ_ALLOC_INIT] = z_mrsh_k_msgq_alloc_init, + [K_SYSCALL_K_MSGQ_PUT] = z_mrsh_k_msgq_put, + [K_SYSCALL_K_MSGQ_GET] = z_mrsh_k_msgq_get, + [K_SYSCALL_K_MSGQ_PEEK] = z_mrsh_k_msgq_peek, + [K_SYSCALL_K_MSGQ_PEEK_AT] = z_mrsh_k_msgq_peek_at, + [K_SYSCALL_K_MSGQ_PURGE] = z_mrsh_k_msgq_purge, + [K_SYSCALL_K_MSGQ_NUM_FREE_GET] = z_mrsh_k_msgq_num_free_get, + [K_SYSCALL_K_MSGQ_GET_ATTRS] = z_mrsh_k_msgq_get_attrs, + [K_SYSCALL_K_MSGQ_NUM_USED_GET] = z_mrsh_k_msgq_num_used_get, + [K_SYSCALL_K_PIPE_ALLOC_INIT] = z_mrsh_k_pipe_alloc_init, + [K_SYSCALL_K_PIPE_PUT] = z_mrsh_k_pipe_put, + [K_SYSCALL_K_PIPE_GET] = z_mrsh_k_pipe_get, + [K_SYSCALL_K_PIPE_READ_AVAIL] = z_mrsh_k_pipe_read_avail, + [K_SYSCALL_K_PIPE_WRITE_AVAIL] = z_mrsh_k_pipe_write_avail, + [K_SYSCALL_K_PIPE_FLUSH] = z_mrsh_k_pipe_flush, + [K_SYSCALL_K_PIPE_BUFFER_FLUSH] = z_mrsh_k_pipe_buffer_flush, + [K_SYSCALL_K_POLL] = z_mrsh_k_poll, + [K_SYSCALL_K_POLL_SIGNAL_INIT] = z_mrsh_k_poll_signal_init, + [K_SYSCALL_K_POLL_SIGNAL_RESET] = z_mrsh_k_poll_signal_reset, + [K_SYSCALL_K_POLL_SIGNAL_CHECK] = z_mrsh_k_poll_signal_check, + [K_SYSCALL_K_POLL_SIGNAL_RAISE] = z_mrsh_k_poll_signal_raise, + [K_SYSCALL_K_STR_OUT] = z_mrsh_k_str_out, + [K_SYSCALL_K_FLOAT_DISABLE] = z_mrsh_k_float_disable, + [K_SYSCALL_K_FLOAT_ENABLE] = z_mrsh_k_float_enable, + [K_SYSCALL_K_OBJECT_ACCESS_GRANT] = z_mrsh_k_object_access_grant, + [K_SYSCALL_K_OBJECT_RELEASE] = z_mrsh_k_object_release, + [K_SYSCALL_K_OBJECT_ALLOC] = z_mrsh_k_object_alloc, + [K_SYSCALL_K_OBJECT_ALLOC_SIZE] = z_mrsh_k_object_alloc_size, + [K_SYSCALL_SYS_CLOCK_HW_CYCLES_PER_SEC_RUNTIME_GET] = z_mrsh_sys_clock_hw_cycles_per_sec_runtime_get, + [K_SYSCALL_BAD] = handler_bad_syscall +}; diff --git a/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscall_exports_llext.c b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscall_exports_llext.c new file mode 100644 index 0000000..921b33d --- /dev/null +++ b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscall_exports_llext.c @@ -0,0 +1,337 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +/* + * Export the implementation functions of all emitted syscalls. + * Only the symbol names are relevant in this file, they will be + * resolved to the actual implementation functions by the linker. + */ + +/* Symbol declarations */ +extern void * const z_impl_adc_channel_setup; +extern void * const z_impl_adc_read; +extern void * const z_impl_adc_read_async; +extern void * const z_impl_device_get_binding; +extern void * const z_impl_device_get_by_dt_nodelabel; +extern void * const z_impl_device_init; +extern void * const z_impl_device_is_ready; +extern void * const z_impl_gpio_get_pending_int; +extern void * const z_impl_gpio_pin_configure; +extern void * const z_impl_gpio_pin_get_config; +extern void * const z_impl_gpio_pin_interrupt_configure; +extern void * const z_impl_gpio_port_clear_bits_raw; +extern void * const z_impl_gpio_port_get_direction; +extern void * const z_impl_gpio_port_get_raw; +extern void * const z_impl_gpio_port_set_bits_raw; +extern void * const z_impl_gpio_port_set_masked_raw; +extern void * const z_impl_gpio_port_toggle_bits; +extern void * const z_impl_hwinfo_clear_reset_cause; +extern void * const z_impl_hwinfo_get_device_eui64; +extern void * const z_impl_hwinfo_get_device_id; +extern void * const z_impl_hwinfo_get_reset_cause; +extern void * const z_impl_hwinfo_get_supported_reset_cause; +extern void * const z_impl_k_busy_wait; +extern void * const z_impl_k_condvar_broadcast; +extern void * const z_impl_k_condvar_init; +extern void * const z_impl_k_condvar_signal; +extern void * const z_impl_k_condvar_wait; +extern void * const z_impl_k_event_clear; +extern void * const z_impl_k_event_init; +extern void * const z_impl_k_event_post; +extern void * const z_impl_k_event_set; +extern void * const z_impl_k_event_set_masked; +extern void * const z_impl_k_event_wait; +extern void * const z_impl_k_event_wait_all; +extern void * const z_impl_k_float_disable; +extern void * const z_impl_k_float_enable; +extern void * const z_impl_k_futex_wait; +extern void * const z_impl_k_futex_wake; +extern void * const z_impl_k_is_preempt_thread; +extern void * const z_impl_k_msgq_alloc_init; +extern void * const z_impl_k_msgq_get; +extern void * const z_impl_k_msgq_get_attrs; +extern void * const z_impl_k_msgq_num_free_get; +extern void * const z_impl_k_msgq_num_used_get; +extern void * const z_impl_k_msgq_peek; +extern void * const z_impl_k_msgq_peek_at; +extern void * const z_impl_k_msgq_purge; +extern void * const z_impl_k_msgq_put; +extern void * const z_impl_k_mutex_init; +extern void * const z_impl_k_mutex_lock; +extern void * const z_impl_k_mutex_unlock; +extern void * const z_impl_k_object_access_grant; +extern void * const z_impl_k_object_alloc; +extern void * const z_impl_k_object_alloc_size; +extern void * const z_impl_k_object_release; +extern void * const z_impl_k_pipe_alloc_init; +extern void * const z_impl_k_pipe_buffer_flush; +extern void * const z_impl_k_pipe_flush; +extern void * const z_impl_k_pipe_get; +extern void * const z_impl_k_pipe_put; +extern void * const z_impl_k_pipe_read_avail; +extern void * const z_impl_k_pipe_write_avail; +extern void * const z_impl_k_poll; +extern void * const z_impl_k_poll_signal_check; +extern void * const z_impl_k_poll_signal_init; +extern void * const z_impl_k_poll_signal_raise; +extern void * const z_impl_k_poll_signal_reset; +extern void * const z_impl_k_queue_alloc_append; +extern void * const z_impl_k_queue_alloc_prepend; +extern void * const z_impl_k_queue_cancel_wait; +extern void * const z_impl_k_queue_get; +extern void * const z_impl_k_queue_init; +extern void * const z_impl_k_queue_is_empty; +extern void * const z_impl_k_queue_peek_head; +extern void * const z_impl_k_queue_peek_tail; +extern void * const z_impl_k_reschedule; +extern void * const z_impl_k_sched_current_thread_query; +extern void * const z_impl_k_sem_count_get; +extern void * const z_impl_k_sem_give; +extern void * const z_impl_k_sem_init; +extern void * const z_impl_k_sem_reset; +extern void * const z_impl_k_sem_take; +extern void * const z_impl_k_sleep; +extern void * const z_impl_k_stack_alloc_init; +extern void * const z_impl_k_stack_pop; +extern void * const z_impl_k_stack_push; +extern void * const z_impl_k_str_out; +extern void * const z_impl_k_thread_abort; +extern void * const z_impl_k_thread_create; +extern void * const z_impl_k_thread_custom_data_get; +extern void * const z_impl_k_thread_custom_data_set; +extern void * const z_impl_k_thread_deadline_set; +extern void * const z_impl_k_thread_join; +extern void * const z_impl_k_thread_name_copy; +extern void * const z_impl_k_thread_name_set; +extern void * const z_impl_k_thread_priority_get; +extern void * const z_impl_k_thread_priority_set; +extern void * const z_impl_k_thread_resume; +extern void * const z_impl_k_thread_stack_alloc; +extern void * const z_impl_k_thread_stack_free; +extern void * const z_impl_k_thread_stack_space_get; +extern void * const z_impl_k_thread_suspend; +extern void * const z_impl_k_thread_timeout_expires_ticks; +extern void * const z_impl_k_thread_timeout_remaining_ticks; +extern void * const z_impl_k_timer_expires_ticks; +extern void * const z_impl_k_timer_remaining_ticks; +extern void * const z_impl_k_timer_start; +extern void * const z_impl_k_timer_status_get; +extern void * const z_impl_k_timer_status_sync; +extern void * const z_impl_k_timer_stop; +extern void * const z_impl_k_timer_user_data_get; +extern void * const z_impl_k_timer_user_data_set; +extern void * const z_impl_k_uptime_ticks; +extern void * const z_impl_k_usleep; +extern void * const z_impl_k_wakeup; +extern void * const z_impl_k_yield; +extern void * const z_impl_log_buffered_cnt; +extern void * const z_impl_log_filter_set; +extern void * const z_impl_log_frontend_filter_set; +extern void * const z_impl_log_panic; +extern void * const z_impl_log_process; +extern void * const z_impl_sensor_attr_get; +extern void * const z_impl_sensor_attr_set; +extern void * const z_impl_sensor_channel_get; +extern void * const z_impl_sensor_get_decoder; +extern void * const z_impl_sensor_reconfigure_read_iodev; +extern void * const z_impl_sensor_sample_fetch; +extern void * const z_impl_sensor_sample_fetch_chan; +extern void * const z_impl_sys_clock_hw_cycles_per_sec_runtime_get; +extern void * const z_impl_uart_config_get; +extern void * const z_impl_uart_configure; +extern void * const z_impl_uart_drv_cmd; +extern void * const z_impl_uart_err_check; +extern void * const z_impl_uart_irq_err_disable; +extern void * const z_impl_uart_irq_err_enable; +extern void * const z_impl_uart_irq_is_pending; +extern void * const z_impl_uart_irq_rx_disable; +extern void * const z_impl_uart_irq_rx_enable; +extern void * const z_impl_uart_irq_tx_disable; +extern void * const z_impl_uart_irq_tx_enable; +extern void * const z_impl_uart_irq_update; +extern void * const z_impl_uart_line_ctrl_get; +extern void * const z_impl_uart_line_ctrl_set; +extern void * const z_impl_uart_poll_in; +extern void * const z_impl_uart_poll_in_u16; +extern void * const z_impl_uart_poll_out; +extern void * const z_impl_uart_poll_out_u16; +extern void * const z_impl_uart_rx_disable; +extern void * const z_impl_uart_rx_enable; +extern void * const z_impl_uart_rx_enable_u16; +extern void * const z_impl_uart_tx; +extern void * const z_impl_uart_tx_abort; +extern void * const z_impl_uart_tx_u16; +extern void * const z_impl_z_log_msg_simple_create_0; +extern void * const z_impl_z_log_msg_simple_create_1; +extern void * const z_impl_z_log_msg_simple_create_2; +extern void * const z_impl_z_log_msg_static_create; +extern void * const z_impl_z_sys_mutex_kernel_lock; +extern void * const z_impl_z_sys_mutex_kernel_unlock; +extern void * const z_impl_zephyr_fputc; +extern void * const z_impl_zephyr_fwrite; +extern void * const z_impl_zephyr_read_stdin; +extern void * const z_impl_zephyr_write_stdout; + +/* Exported symbols */ +EXPORT_SYMBOL(z_impl_adc_channel_setup); +EXPORT_SYMBOL(z_impl_adc_read); +EXPORT_SYMBOL(z_impl_adc_read_async); +EXPORT_SYMBOL(z_impl_device_get_binding); +EXPORT_SYMBOL(z_impl_device_get_by_dt_nodelabel); +EXPORT_SYMBOL(z_impl_device_init); +EXPORT_SYMBOL(z_impl_device_is_ready); +EXPORT_SYMBOL(z_impl_gpio_get_pending_int); +EXPORT_SYMBOL(z_impl_gpio_pin_configure); +EXPORT_SYMBOL(z_impl_gpio_pin_get_config); +EXPORT_SYMBOL(z_impl_gpio_pin_interrupt_configure); +EXPORT_SYMBOL(z_impl_gpio_port_clear_bits_raw); +EXPORT_SYMBOL(z_impl_gpio_port_get_direction); +EXPORT_SYMBOL(z_impl_gpio_port_get_raw); +EXPORT_SYMBOL(z_impl_gpio_port_set_bits_raw); +EXPORT_SYMBOL(z_impl_gpio_port_set_masked_raw); +EXPORT_SYMBOL(z_impl_gpio_port_toggle_bits); +EXPORT_SYMBOL(z_impl_hwinfo_clear_reset_cause); +EXPORT_SYMBOL(z_impl_hwinfo_get_device_eui64); +EXPORT_SYMBOL(z_impl_hwinfo_get_device_id); +EXPORT_SYMBOL(z_impl_hwinfo_get_reset_cause); +EXPORT_SYMBOL(z_impl_hwinfo_get_supported_reset_cause); +EXPORT_SYMBOL(z_impl_k_busy_wait); +EXPORT_SYMBOL(z_impl_k_condvar_broadcast); +EXPORT_SYMBOL(z_impl_k_condvar_init); +EXPORT_SYMBOL(z_impl_k_condvar_signal); +EXPORT_SYMBOL(z_impl_k_condvar_wait); +EXPORT_SYMBOL(z_impl_k_event_clear); +EXPORT_SYMBOL(z_impl_k_event_init); +EXPORT_SYMBOL(z_impl_k_event_post); +EXPORT_SYMBOL(z_impl_k_event_set); +EXPORT_SYMBOL(z_impl_k_event_set_masked); +EXPORT_SYMBOL(z_impl_k_event_wait); +EXPORT_SYMBOL(z_impl_k_event_wait_all); +EXPORT_SYMBOL(z_impl_k_float_disable); +EXPORT_SYMBOL(z_impl_k_float_enable); +EXPORT_SYMBOL(z_impl_k_futex_wait); +EXPORT_SYMBOL(z_impl_k_futex_wake); +EXPORT_SYMBOL(z_impl_k_is_preempt_thread); +EXPORT_SYMBOL(z_impl_k_msgq_alloc_init); +EXPORT_SYMBOL(z_impl_k_msgq_get); +EXPORT_SYMBOL(z_impl_k_msgq_get_attrs); +EXPORT_SYMBOL(z_impl_k_msgq_num_free_get); +EXPORT_SYMBOL(z_impl_k_msgq_num_used_get); +EXPORT_SYMBOL(z_impl_k_msgq_peek); +EXPORT_SYMBOL(z_impl_k_msgq_peek_at); +EXPORT_SYMBOL(z_impl_k_msgq_purge); +EXPORT_SYMBOL(z_impl_k_msgq_put); +EXPORT_SYMBOL(z_impl_k_mutex_init); +EXPORT_SYMBOL(z_impl_k_mutex_lock); +EXPORT_SYMBOL(z_impl_k_mutex_unlock); +EXPORT_SYMBOL(z_impl_k_object_access_grant); +EXPORT_SYMBOL(z_impl_k_object_alloc); +EXPORT_SYMBOL(z_impl_k_object_alloc_size); +EXPORT_SYMBOL(z_impl_k_object_release); +EXPORT_SYMBOL(z_impl_k_pipe_alloc_init); +EXPORT_SYMBOL(z_impl_k_pipe_buffer_flush); +EXPORT_SYMBOL(z_impl_k_pipe_flush); +EXPORT_SYMBOL(z_impl_k_pipe_get); +EXPORT_SYMBOL(z_impl_k_pipe_put); +EXPORT_SYMBOL(z_impl_k_pipe_read_avail); +EXPORT_SYMBOL(z_impl_k_pipe_write_avail); +EXPORT_SYMBOL(z_impl_k_poll); +EXPORT_SYMBOL(z_impl_k_poll_signal_check); +EXPORT_SYMBOL(z_impl_k_poll_signal_init); +EXPORT_SYMBOL(z_impl_k_poll_signal_raise); +EXPORT_SYMBOL(z_impl_k_poll_signal_reset); +EXPORT_SYMBOL(z_impl_k_queue_alloc_append); +EXPORT_SYMBOL(z_impl_k_queue_alloc_prepend); +EXPORT_SYMBOL(z_impl_k_queue_cancel_wait); +EXPORT_SYMBOL(z_impl_k_queue_get); +EXPORT_SYMBOL(z_impl_k_queue_init); +EXPORT_SYMBOL(z_impl_k_queue_is_empty); +EXPORT_SYMBOL(z_impl_k_queue_peek_head); +EXPORT_SYMBOL(z_impl_k_queue_peek_tail); +EXPORT_SYMBOL(z_impl_k_reschedule); +EXPORT_SYMBOL(z_impl_k_sched_current_thread_query); +EXPORT_SYMBOL(z_impl_k_sem_count_get); +EXPORT_SYMBOL(z_impl_k_sem_give); +EXPORT_SYMBOL(z_impl_k_sem_init); +EXPORT_SYMBOL(z_impl_k_sem_reset); +EXPORT_SYMBOL(z_impl_k_sem_take); +EXPORT_SYMBOL(z_impl_k_sleep); +EXPORT_SYMBOL(z_impl_k_stack_alloc_init); +EXPORT_SYMBOL(z_impl_k_stack_pop); +EXPORT_SYMBOL(z_impl_k_stack_push); +EXPORT_SYMBOL(z_impl_k_str_out); +EXPORT_SYMBOL(z_impl_k_thread_abort); +EXPORT_SYMBOL(z_impl_k_thread_create); +EXPORT_SYMBOL(z_impl_k_thread_custom_data_get); +EXPORT_SYMBOL(z_impl_k_thread_custom_data_set); +EXPORT_SYMBOL(z_impl_k_thread_deadline_set); +EXPORT_SYMBOL(z_impl_k_thread_join); +EXPORT_SYMBOL(z_impl_k_thread_name_copy); +EXPORT_SYMBOL(z_impl_k_thread_name_set); +EXPORT_SYMBOL(z_impl_k_thread_priority_get); +EXPORT_SYMBOL(z_impl_k_thread_priority_set); +EXPORT_SYMBOL(z_impl_k_thread_resume); +EXPORT_SYMBOL(z_impl_k_thread_stack_alloc); +EXPORT_SYMBOL(z_impl_k_thread_stack_free); +EXPORT_SYMBOL(z_impl_k_thread_stack_space_get); +EXPORT_SYMBOL(z_impl_k_thread_suspend); +EXPORT_SYMBOL(z_impl_k_thread_timeout_expires_ticks); +EXPORT_SYMBOL(z_impl_k_thread_timeout_remaining_ticks); +EXPORT_SYMBOL(z_impl_k_timer_expires_ticks); +EXPORT_SYMBOL(z_impl_k_timer_remaining_ticks); +EXPORT_SYMBOL(z_impl_k_timer_start); +EXPORT_SYMBOL(z_impl_k_timer_status_get); +EXPORT_SYMBOL(z_impl_k_timer_status_sync); +EXPORT_SYMBOL(z_impl_k_timer_stop); +EXPORT_SYMBOL(z_impl_k_timer_user_data_get); +EXPORT_SYMBOL(z_impl_k_timer_user_data_set); +EXPORT_SYMBOL(z_impl_k_uptime_ticks); +EXPORT_SYMBOL(z_impl_k_usleep); +EXPORT_SYMBOL(z_impl_k_wakeup); +EXPORT_SYMBOL(z_impl_k_yield); +EXPORT_SYMBOL(z_impl_log_buffered_cnt); +EXPORT_SYMBOL(z_impl_log_filter_set); +EXPORT_SYMBOL(z_impl_log_frontend_filter_set); +EXPORT_SYMBOL(z_impl_log_panic); +EXPORT_SYMBOL(z_impl_log_process); +EXPORT_SYMBOL(z_impl_sensor_attr_get); +EXPORT_SYMBOL(z_impl_sensor_attr_set); +EXPORT_SYMBOL(z_impl_sensor_channel_get); +EXPORT_SYMBOL(z_impl_sensor_get_decoder); +EXPORT_SYMBOL(z_impl_sensor_reconfigure_read_iodev); +EXPORT_SYMBOL(z_impl_sensor_sample_fetch); +EXPORT_SYMBOL(z_impl_sensor_sample_fetch_chan); +EXPORT_SYMBOL(z_impl_sys_clock_hw_cycles_per_sec_runtime_get); +EXPORT_SYMBOL(z_impl_uart_config_get); +EXPORT_SYMBOL(z_impl_uart_configure); +EXPORT_SYMBOL(z_impl_uart_drv_cmd); +EXPORT_SYMBOL(z_impl_uart_err_check); +EXPORT_SYMBOL(z_impl_uart_irq_err_disable); +EXPORT_SYMBOL(z_impl_uart_irq_err_enable); +EXPORT_SYMBOL(z_impl_uart_irq_is_pending); +EXPORT_SYMBOL(z_impl_uart_irq_rx_disable); +EXPORT_SYMBOL(z_impl_uart_irq_rx_enable); +EXPORT_SYMBOL(z_impl_uart_irq_tx_disable); +EXPORT_SYMBOL(z_impl_uart_irq_tx_enable); +EXPORT_SYMBOL(z_impl_uart_irq_update); +EXPORT_SYMBOL(z_impl_uart_line_ctrl_get); +EXPORT_SYMBOL(z_impl_uart_line_ctrl_set); +EXPORT_SYMBOL(z_impl_uart_poll_in); +EXPORT_SYMBOL(z_impl_uart_poll_in_u16); +EXPORT_SYMBOL(z_impl_uart_poll_out); +EXPORT_SYMBOL(z_impl_uart_poll_out_u16); +EXPORT_SYMBOL(z_impl_uart_rx_disable); +EXPORT_SYMBOL(z_impl_uart_rx_enable); +EXPORT_SYMBOL(z_impl_uart_rx_enable_u16); +EXPORT_SYMBOL(z_impl_uart_tx); +EXPORT_SYMBOL(z_impl_uart_tx_abort); +EXPORT_SYMBOL(z_impl_uart_tx_u16); +EXPORT_SYMBOL(z_impl_z_log_msg_simple_create_0); +EXPORT_SYMBOL(z_impl_z_log_msg_simple_create_1); +EXPORT_SYMBOL(z_impl_z_log_msg_simple_create_2); +EXPORT_SYMBOL(z_impl_z_log_msg_static_create); +EXPORT_SYMBOL(z_impl_z_sys_mutex_kernel_lock); +EXPORT_SYMBOL(z_impl_z_sys_mutex_kernel_unlock); +EXPORT_SYMBOL(z_impl_zephyr_fputc); +EXPORT_SYMBOL(z_impl_zephyr_fwrite); +EXPORT_SYMBOL(z_impl_zephyr_read_stdin); +EXPORT_SYMBOL(z_impl_zephyr_write_stdout); diff --git a/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscall_list.h b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscall_list.h new file mode 100644 index 0000000..41a6c69 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscall_list.h @@ -0,0 +1,587 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef ZEPHYR_SYSCALL_LIST_H +#define ZEPHYR_SYSCALL_LIST_H + +#define K_SYSCALL_ADC_CHANNEL_SETUP 0 +#define K_SYSCALL_ADC_READ 1 +#define K_SYSCALL_ADC_READ_ASYNC 2 +#define K_SYSCALL_DEVICE_GET_BINDING 3 +#define K_SYSCALL_DEVICE_GET_BY_DT_NODELABEL 4 +#define K_SYSCALL_DEVICE_INIT 5 +#define K_SYSCALL_DEVICE_IS_READY 6 +#define K_SYSCALL_GPIO_GET_PENDING_INT 7 +#define K_SYSCALL_GPIO_PIN_CONFIGURE 8 +#define K_SYSCALL_GPIO_PIN_GET_CONFIG 9 +#define K_SYSCALL_GPIO_PIN_INTERRUPT_CONFIGURE 10 +#define K_SYSCALL_GPIO_PORT_CLEAR_BITS_RAW 11 +#define K_SYSCALL_GPIO_PORT_GET_DIRECTION 12 +#define K_SYSCALL_GPIO_PORT_GET_RAW 13 +#define K_SYSCALL_GPIO_PORT_SET_BITS_RAW 14 +#define K_SYSCALL_GPIO_PORT_SET_MASKED_RAW 15 +#define K_SYSCALL_GPIO_PORT_TOGGLE_BITS 16 +#define K_SYSCALL_HWINFO_CLEAR_RESET_CAUSE 17 +#define K_SYSCALL_HWINFO_GET_DEVICE_EUI64 18 +#define K_SYSCALL_HWINFO_GET_DEVICE_ID 19 +#define K_SYSCALL_HWINFO_GET_RESET_CAUSE 20 +#define K_SYSCALL_HWINFO_GET_SUPPORTED_RESET_CAUSE 21 +#define K_SYSCALL_K_BUSY_WAIT 22 +#define K_SYSCALL_K_CONDVAR_BROADCAST 23 +#define K_SYSCALL_K_CONDVAR_INIT 24 +#define K_SYSCALL_K_CONDVAR_SIGNAL 25 +#define K_SYSCALL_K_CONDVAR_WAIT 26 +#define K_SYSCALL_K_EVENT_CLEAR 27 +#define K_SYSCALL_K_EVENT_INIT 28 +#define K_SYSCALL_K_EVENT_POST 29 +#define K_SYSCALL_K_EVENT_SET 30 +#define K_SYSCALL_K_EVENT_SET_MASKED 31 +#define K_SYSCALL_K_EVENT_WAIT 32 +#define K_SYSCALL_K_EVENT_WAIT_ALL 33 +#define K_SYSCALL_K_FLOAT_DISABLE 34 +#define K_SYSCALL_K_FLOAT_ENABLE 35 +#define K_SYSCALL_K_FUTEX_WAIT 36 +#define K_SYSCALL_K_FUTEX_WAKE 37 +#define K_SYSCALL_K_IS_PREEMPT_THREAD 38 +#define K_SYSCALL_K_MSGQ_ALLOC_INIT 39 +#define K_SYSCALL_K_MSGQ_GET 40 +#define K_SYSCALL_K_MSGQ_GET_ATTRS 41 +#define K_SYSCALL_K_MSGQ_NUM_FREE_GET 42 +#define K_SYSCALL_K_MSGQ_NUM_USED_GET 43 +#define K_SYSCALL_K_MSGQ_PEEK 44 +#define K_SYSCALL_K_MSGQ_PEEK_AT 45 +#define K_SYSCALL_K_MSGQ_PURGE 46 +#define K_SYSCALL_K_MSGQ_PUT 47 +#define K_SYSCALL_K_MUTEX_INIT 48 +#define K_SYSCALL_K_MUTEX_LOCK 49 +#define K_SYSCALL_K_MUTEX_UNLOCK 50 +#define K_SYSCALL_K_OBJECT_ACCESS_GRANT 51 +#define K_SYSCALL_K_OBJECT_ALLOC 52 +#define K_SYSCALL_K_OBJECT_ALLOC_SIZE 53 +#define K_SYSCALL_K_OBJECT_RELEASE 54 +#define K_SYSCALL_K_PIPE_ALLOC_INIT 55 +#define K_SYSCALL_K_PIPE_BUFFER_FLUSH 56 +#define K_SYSCALL_K_PIPE_FLUSH 57 +#define K_SYSCALL_K_PIPE_GET 58 +#define K_SYSCALL_K_PIPE_PUT 59 +#define K_SYSCALL_K_PIPE_READ_AVAIL 60 +#define K_SYSCALL_K_PIPE_WRITE_AVAIL 61 +#define K_SYSCALL_K_POLL 62 +#define K_SYSCALL_K_POLL_SIGNAL_CHECK 63 +#define K_SYSCALL_K_POLL_SIGNAL_INIT 64 +#define K_SYSCALL_K_POLL_SIGNAL_RAISE 65 +#define K_SYSCALL_K_POLL_SIGNAL_RESET 66 +#define K_SYSCALL_K_QUEUE_ALLOC_APPEND 67 +#define K_SYSCALL_K_QUEUE_ALLOC_PREPEND 68 +#define K_SYSCALL_K_QUEUE_CANCEL_WAIT 69 +#define K_SYSCALL_K_QUEUE_GET 70 +#define K_SYSCALL_K_QUEUE_INIT 71 +#define K_SYSCALL_K_QUEUE_IS_EMPTY 72 +#define K_SYSCALL_K_QUEUE_PEEK_HEAD 73 +#define K_SYSCALL_K_QUEUE_PEEK_TAIL 74 +#define K_SYSCALL_K_RESCHEDULE 75 +#define K_SYSCALL_K_SCHED_CURRENT_THREAD_QUERY 76 +#define K_SYSCALL_K_SEM_COUNT_GET 77 +#define K_SYSCALL_K_SEM_GIVE 78 +#define K_SYSCALL_K_SEM_INIT 79 +#define K_SYSCALL_K_SEM_RESET 80 +#define K_SYSCALL_K_SEM_TAKE 81 +#define K_SYSCALL_K_SLEEP 82 +#define K_SYSCALL_K_STACK_ALLOC_INIT 83 +#define K_SYSCALL_K_STACK_POP 84 +#define K_SYSCALL_K_STACK_PUSH 85 +#define K_SYSCALL_K_STR_OUT 86 +#define K_SYSCALL_K_THREAD_ABORT 87 +#define K_SYSCALL_K_THREAD_CREATE 88 +#define K_SYSCALL_K_THREAD_CUSTOM_DATA_GET 89 +#define K_SYSCALL_K_THREAD_CUSTOM_DATA_SET 90 +#define K_SYSCALL_K_THREAD_DEADLINE_SET 91 +#define K_SYSCALL_K_THREAD_JOIN 92 +#define K_SYSCALL_K_THREAD_NAME_COPY 93 +#define K_SYSCALL_K_THREAD_NAME_SET 94 +#define K_SYSCALL_K_THREAD_PRIORITY_GET 95 +#define K_SYSCALL_K_THREAD_PRIORITY_SET 96 +#define K_SYSCALL_K_THREAD_RESUME 97 +#define K_SYSCALL_K_THREAD_STACK_ALLOC 98 +#define K_SYSCALL_K_THREAD_STACK_FREE 99 +#define K_SYSCALL_K_THREAD_STACK_SPACE_GET 100 +#define K_SYSCALL_K_THREAD_SUSPEND 101 +#define K_SYSCALL_K_THREAD_TIMEOUT_EXPIRES_TICKS 102 +#define K_SYSCALL_K_THREAD_TIMEOUT_REMAINING_TICKS 103 +#define K_SYSCALL_K_TIMER_EXPIRES_TICKS 104 +#define K_SYSCALL_K_TIMER_REMAINING_TICKS 105 +#define K_SYSCALL_K_TIMER_START 106 +#define K_SYSCALL_K_TIMER_STATUS_GET 107 +#define K_SYSCALL_K_TIMER_STATUS_SYNC 108 +#define K_SYSCALL_K_TIMER_STOP 109 +#define K_SYSCALL_K_TIMER_USER_DATA_GET 110 +#define K_SYSCALL_K_TIMER_USER_DATA_SET 111 +#define K_SYSCALL_K_UPTIME_TICKS 112 +#define K_SYSCALL_K_USLEEP 113 +#define K_SYSCALL_K_WAKEUP 114 +#define K_SYSCALL_K_YIELD 115 +#define K_SYSCALL_LOG_BUFFERED_CNT 116 +#define K_SYSCALL_LOG_FILTER_SET 117 +#define K_SYSCALL_LOG_FRONTEND_FILTER_SET 118 +#define K_SYSCALL_LOG_PANIC 119 +#define K_SYSCALL_LOG_PROCESS 120 +#define K_SYSCALL_SENSOR_ATTR_GET 121 +#define K_SYSCALL_SENSOR_ATTR_SET 122 +#define K_SYSCALL_SENSOR_CHANNEL_GET 123 +#define K_SYSCALL_SENSOR_GET_DECODER 124 +#define K_SYSCALL_SENSOR_RECONFIGURE_READ_IODEV 125 +#define K_SYSCALL_SENSOR_SAMPLE_FETCH 126 +#define K_SYSCALL_SENSOR_SAMPLE_FETCH_CHAN 127 +#define K_SYSCALL_SYS_CLOCK_HW_CYCLES_PER_SEC_RUNTIME_GET 128 +#define K_SYSCALL_UART_CONFIGURE 129 +#define K_SYSCALL_UART_CONFIG_GET 130 +#define K_SYSCALL_UART_DRV_CMD 131 +#define K_SYSCALL_UART_ERR_CHECK 132 +#define K_SYSCALL_UART_IRQ_ERR_DISABLE 133 +#define K_SYSCALL_UART_IRQ_ERR_ENABLE 134 +#define K_SYSCALL_UART_IRQ_IS_PENDING 135 +#define K_SYSCALL_UART_IRQ_RX_DISABLE 136 +#define K_SYSCALL_UART_IRQ_RX_ENABLE 137 +#define K_SYSCALL_UART_IRQ_TX_DISABLE 138 +#define K_SYSCALL_UART_IRQ_TX_ENABLE 139 +#define K_SYSCALL_UART_IRQ_UPDATE 140 +#define K_SYSCALL_UART_LINE_CTRL_GET 141 +#define K_SYSCALL_UART_LINE_CTRL_SET 142 +#define K_SYSCALL_UART_POLL_IN 143 +#define K_SYSCALL_UART_POLL_IN_U16 144 +#define K_SYSCALL_UART_POLL_OUT 145 +#define K_SYSCALL_UART_POLL_OUT_U16 146 +#define K_SYSCALL_UART_RX_DISABLE 147 +#define K_SYSCALL_UART_RX_ENABLE 148 +#define K_SYSCALL_UART_RX_ENABLE_U16 149 +#define K_SYSCALL_UART_TX 150 +#define K_SYSCALL_UART_TX_ABORT 151 +#define K_SYSCALL_UART_TX_U16 152 +#define K_SYSCALL_ZEPHYR_FPUTC 153 +#define K_SYSCALL_ZEPHYR_FWRITE 154 +#define K_SYSCALL_ZEPHYR_READ_STDIN 155 +#define K_SYSCALL_ZEPHYR_WRITE_STDOUT 156 +#define K_SYSCALL_Z_LOG_MSG_SIMPLE_CREATE_0 157 +#define K_SYSCALL_Z_LOG_MSG_SIMPLE_CREATE_1 158 +#define K_SYSCALL_Z_LOG_MSG_SIMPLE_CREATE_2 159 +#define K_SYSCALL_Z_LOG_MSG_STATIC_CREATE 160 +#define K_SYSCALL_Z_SYS_MUTEX_KERNEL_LOCK 161 +#define K_SYSCALL_Z_SYS_MUTEX_KERNEL_UNLOCK 162 +#define K_SYSCALL_BAD 163 +#define K_SYSCALL_LIMIT 164 + + +/* Following syscalls are not used in image */ +#define K_SYSCALL_ATOMIC_ADD 165 +#define K_SYSCALL_ATOMIC_AND 166 +#define K_SYSCALL_ATOMIC_CAS 167 +#define K_SYSCALL_ATOMIC_NAND 168 +#define K_SYSCALL_ATOMIC_OR 169 +#define K_SYSCALL_ATOMIC_PTR_CAS 170 +#define K_SYSCALL_ATOMIC_PTR_SET 171 +#define K_SYSCALL_ATOMIC_SET 172 +#define K_SYSCALL_ATOMIC_SUB 173 +#define K_SYSCALL_ATOMIC_XOR 174 +#define K_SYSCALL_AUXDISPLAY_BACKLIGHT_GET 175 +#define K_SYSCALL_AUXDISPLAY_BACKLIGHT_SET 176 +#define K_SYSCALL_AUXDISPLAY_BRIGHTNESS_GET 177 +#define K_SYSCALL_AUXDISPLAY_BRIGHTNESS_SET 178 +#define K_SYSCALL_AUXDISPLAY_CAPABILITIES_GET 179 +#define K_SYSCALL_AUXDISPLAY_CLEAR 180 +#define K_SYSCALL_AUXDISPLAY_CURSOR_POSITION_GET 181 +#define K_SYSCALL_AUXDISPLAY_CURSOR_POSITION_SET 182 +#define K_SYSCALL_AUXDISPLAY_CURSOR_SET_ENABLED 183 +#define K_SYSCALL_AUXDISPLAY_CURSOR_SHIFT_SET 184 +#define K_SYSCALL_AUXDISPLAY_CUSTOM_CHARACTER_SET 185 +#define K_SYSCALL_AUXDISPLAY_CUSTOM_COMMAND 186 +#define K_SYSCALL_AUXDISPLAY_DISPLAY_OFF 187 +#define K_SYSCALL_AUXDISPLAY_DISPLAY_ON 188 +#define K_SYSCALL_AUXDISPLAY_DISPLAY_POSITION_GET 189 +#define K_SYSCALL_AUXDISPLAY_DISPLAY_POSITION_SET 190 +#define K_SYSCALL_AUXDISPLAY_IS_BUSY 191 +#define K_SYSCALL_AUXDISPLAY_POSITION_BLINKING_SET_ENABLED 192 +#define K_SYSCALL_AUXDISPLAY_WRITE 193 +#define K_SYSCALL_BBRAM_CHECK_INVALID 194 +#define K_SYSCALL_BBRAM_CHECK_POWER 195 +#define K_SYSCALL_BBRAM_CHECK_STANDBY_POWER 196 +#define K_SYSCALL_BBRAM_GET_SIZE 197 +#define K_SYSCALL_BBRAM_READ 198 +#define K_SYSCALL_BBRAM_WRITE 199 +#define K_SYSCALL_BC12_SET_RESULT_CB 200 +#define K_SYSCALL_BC12_SET_ROLE 201 +#define K_SYSCALL_CAN_ADD_RX_FILTER_MSGQ 202 +#define K_SYSCALL_CAN_CALC_TIMING 203 +#define K_SYSCALL_CAN_CALC_TIMING_DATA 204 +#define K_SYSCALL_CAN_GET_BITRATE_MAX 205 +#define K_SYSCALL_CAN_GET_BITRATE_MIN 206 +#define K_SYSCALL_CAN_GET_CAPABILITIES 207 +#define K_SYSCALL_CAN_GET_CORE_CLOCK 208 +#define K_SYSCALL_CAN_GET_MAX_FILTERS 209 +#define K_SYSCALL_CAN_GET_MODE 210 +#define K_SYSCALL_CAN_GET_STATE 211 +#define K_SYSCALL_CAN_GET_TIMING_DATA_MAX 212 +#define K_SYSCALL_CAN_GET_TIMING_DATA_MIN 213 +#define K_SYSCALL_CAN_GET_TIMING_MAX 214 +#define K_SYSCALL_CAN_GET_TIMING_MIN 215 +#define K_SYSCALL_CAN_GET_TRANSCEIVER 216 +#define K_SYSCALL_CAN_RECOVER 217 +#define K_SYSCALL_CAN_REMOVE_RX_FILTER 218 +#define K_SYSCALL_CAN_SEND 219 +#define K_SYSCALL_CAN_SET_BITRATE 220 +#define K_SYSCALL_CAN_SET_BITRATE_DATA 221 +#define K_SYSCALL_CAN_SET_MODE 222 +#define K_SYSCALL_CAN_SET_TIMING 223 +#define K_SYSCALL_CAN_SET_TIMING_DATA 224 +#define K_SYSCALL_CAN_START 225 +#define K_SYSCALL_CAN_STATS_GET_ACK_ERRORS 226 +#define K_SYSCALL_CAN_STATS_GET_BIT0_ERRORS 227 +#define K_SYSCALL_CAN_STATS_GET_BIT1_ERRORS 228 +#define K_SYSCALL_CAN_STATS_GET_BIT_ERRORS 229 +#define K_SYSCALL_CAN_STATS_GET_CRC_ERRORS 230 +#define K_SYSCALL_CAN_STATS_GET_FORM_ERRORS 231 +#define K_SYSCALL_CAN_STATS_GET_RX_OVERRUNS 232 +#define K_SYSCALL_CAN_STATS_GET_STUFF_ERRORS 233 +#define K_SYSCALL_CAN_STOP 234 +#define K_SYSCALL_CHARGER_CHARGE_ENABLE 235 +#define K_SYSCALL_CHARGER_GET_PROP 236 +#define K_SYSCALL_CHARGER_SET_PROP 237 +#define K_SYSCALL_COMPARATOR_GET_OUTPUT 238 +#define K_SYSCALL_COMPARATOR_SET_TRIGGER 239 +#define K_SYSCALL_COMPARATOR_TRIGGER_IS_PENDING 240 +#define K_SYSCALL_COUNTER_CANCEL_CHANNEL_ALARM 241 +#define K_SYSCALL_COUNTER_GET_FREQUENCY 242 +#define K_SYSCALL_COUNTER_GET_GUARD_PERIOD 243 +#define K_SYSCALL_COUNTER_GET_MAX_TOP_VALUE 244 +#define K_SYSCALL_COUNTER_GET_NUM_OF_CHANNELS 245 +#define K_SYSCALL_COUNTER_GET_PENDING_INT 246 +#define K_SYSCALL_COUNTER_GET_TOP_VALUE 247 +#define K_SYSCALL_COUNTER_GET_VALUE 248 +#define K_SYSCALL_COUNTER_GET_VALUE_64 249 +#define K_SYSCALL_COUNTER_IS_COUNTING_UP 250 +#define K_SYSCALL_COUNTER_SET_CHANNEL_ALARM 251 +#define K_SYSCALL_COUNTER_SET_GUARD_PERIOD 252 +#define K_SYSCALL_COUNTER_SET_TOP_VALUE 253 +#define K_SYSCALL_COUNTER_START 254 +#define K_SYSCALL_COUNTER_STOP 255 +#define K_SYSCALL_COUNTER_TICKS_TO_US 256 +#define K_SYSCALL_COUNTER_US_TO_TICKS 257 +#define K_SYSCALL_DAC_CHANNEL_SETUP 258 +#define K_SYSCALL_DAC_WRITE_VALUE 259 +#define K_SYSCALL_DEVMUX_SELECT_GET 260 +#define K_SYSCALL_DEVMUX_SELECT_SET 261 +#define K_SYSCALL_DMA_CHAN_FILTER 262 +#define K_SYSCALL_DMA_RELEASE_CHANNEL 263 +#define K_SYSCALL_DMA_REQUEST_CHANNEL 264 +#define K_SYSCALL_DMA_RESUME 265 +#define K_SYSCALL_DMA_START 266 +#define K_SYSCALL_DMA_STOP 267 +#define K_SYSCALL_DMA_SUSPEND 268 +#define K_SYSCALL_EEPROM_GET_SIZE 269 +#define K_SYSCALL_EEPROM_READ 270 +#define K_SYSCALL_EEPROM_WRITE 271 +#define K_SYSCALL_EMUL_FUEL_GAUGE_IS_BATTERY_CUTOFF 272 +#define K_SYSCALL_EMUL_FUEL_GAUGE_SET_BATTERY_CHARGING 273 +#define K_SYSCALL_ENTROPY_GET_ENTROPY 274 +#define K_SYSCALL_ESPI_CONFIG 275 +#define K_SYSCALL_ESPI_FLASH_ERASE 276 +#define K_SYSCALL_ESPI_GET_CHANNEL_STATUS 277 +#define K_SYSCALL_ESPI_READ_FLASH 278 +#define K_SYSCALL_ESPI_READ_LPC_REQUEST 279 +#define K_SYSCALL_ESPI_READ_REQUEST 280 +#define K_SYSCALL_ESPI_RECEIVE_OOB 281 +#define K_SYSCALL_ESPI_RECEIVE_VWIRE 282 +#define K_SYSCALL_ESPI_SAF_ACTIVATE 283 +#define K_SYSCALL_ESPI_SAF_CONFIG 284 +#define K_SYSCALL_ESPI_SAF_FLASH_ERASE 285 +#define K_SYSCALL_ESPI_SAF_FLASH_READ 286 +#define K_SYSCALL_ESPI_SAF_FLASH_UNSUCCESS 287 +#define K_SYSCALL_ESPI_SAF_FLASH_WRITE 288 +#define K_SYSCALL_ESPI_SAF_GET_CHANNEL_STATUS 289 +#define K_SYSCALL_ESPI_SAF_SET_PROTECTION_REGIONS 290 +#define K_SYSCALL_ESPI_SEND_OOB 291 +#define K_SYSCALL_ESPI_SEND_VWIRE 292 +#define K_SYSCALL_ESPI_WRITE_FLASH 293 +#define K_SYSCALL_ESPI_WRITE_LPC_REQUEST 294 +#define K_SYSCALL_ESPI_WRITE_REQUEST 295 +#define K_SYSCALL_FLASH_COPY 296 +#define K_SYSCALL_FLASH_ERASE 297 +#define K_SYSCALL_FLASH_EX_OP 298 +#define K_SYSCALL_FLASH_FILL 299 +#define K_SYSCALL_FLASH_FLATTEN 300 +#define K_SYSCALL_FLASH_GET_PAGE_COUNT 301 +#define K_SYSCALL_FLASH_GET_PAGE_INFO_BY_IDX 302 +#define K_SYSCALL_FLASH_GET_PAGE_INFO_BY_OFFS 303 +#define K_SYSCALL_FLASH_GET_PARAMETERS 304 +#define K_SYSCALL_FLASH_GET_SIZE 305 +#define K_SYSCALL_FLASH_GET_WRITE_BLOCK_SIZE 306 +#define K_SYSCALL_FLASH_READ 307 +#define K_SYSCALL_FLASH_READ_JEDEC_ID 308 +#define K_SYSCALL_FLASH_SFDP_READ 309 +#define K_SYSCALL_FLASH_SIMULATOR_GET_MEMORY 310 +#define K_SYSCALL_FLASH_WRITE 311 +#define K_SYSCALL_FUEL_GAUGE_BATTERY_CUTOFF 312 +#define K_SYSCALL_FUEL_GAUGE_GET_BUFFER_PROP 313 +#define K_SYSCALL_FUEL_GAUGE_GET_PROP 314 +#define K_SYSCALL_FUEL_GAUGE_GET_PROPS 315 +#define K_SYSCALL_FUEL_GAUGE_SET_PROP 316 +#define K_SYSCALL_FUEL_GAUGE_SET_PROPS 317 +#define K_SYSCALL_GNSS_GET_ENABLED_SYSTEMS 318 +#define K_SYSCALL_GNSS_GET_FIX_RATE 319 +#define K_SYSCALL_GNSS_GET_LATEST_TIMEPULSE 320 +#define K_SYSCALL_GNSS_GET_NAVIGATION_MODE 321 +#define K_SYSCALL_GNSS_GET_SUPPORTED_SYSTEMS 322 +#define K_SYSCALL_GNSS_SET_ENABLED_SYSTEMS 323 +#define K_SYSCALL_GNSS_SET_FIX_RATE 324 +#define K_SYSCALL_GNSS_SET_NAVIGATION_MODE 325 +#define K_SYSCALL_HAPTICS_START_OUTPUT 326 +#define K_SYSCALL_HAPTICS_STOP_OUTPUT 327 +#define K_SYSCALL_HWSPINLOCK_GET_MAX_ID 328 +#define K_SYSCALL_HWSPINLOCK_LOCK 329 +#define K_SYSCALL_HWSPINLOCK_TRYLOCK 330 +#define K_SYSCALL_HWSPINLOCK_UNLOCK 331 +#define K_SYSCALL_I2C_CONFIGURE 332 +#define K_SYSCALL_I2C_GET_CONFIG 333 +#define K_SYSCALL_I2C_RECOVER_BUS 334 +#define K_SYSCALL_I2C_TARGET_DRIVER_REGISTER 335 +#define K_SYSCALL_I2C_TARGET_DRIVER_UNREGISTER 336 +#define K_SYSCALL_I2C_TRANSFER 337 +#define K_SYSCALL_I2S_BUF_READ 338 +#define K_SYSCALL_I2S_BUF_WRITE 339 +#define K_SYSCALL_I2S_CONFIGURE 340 +#define K_SYSCALL_I2S_TRIGGER 341 +#define K_SYSCALL_I3C_DO_CCC 342 +#define K_SYSCALL_I3C_TRANSFER 343 +#define K_SYSCALL_IPM_COMPLETE 344 +#define K_SYSCALL_IPM_MAX_DATA_SIZE_GET 345 +#define K_SYSCALL_IPM_MAX_ID_VAL_GET 346 +#define K_SYSCALL_IPM_SEND 347 +#define K_SYSCALL_IPM_SET_ENABLED 348 +#define K_SYSCALL_IVSHMEM_ENABLE_INTERRUPTS 349 +#define K_SYSCALL_IVSHMEM_GET_ID 350 +#define K_SYSCALL_IVSHMEM_GET_MAX_PEERS 351 +#define K_SYSCALL_IVSHMEM_GET_MEM 352 +#define K_SYSCALL_IVSHMEM_GET_OUTPUT_MEM_SECTION 353 +#define K_SYSCALL_IVSHMEM_GET_PROTOCOL 354 +#define K_SYSCALL_IVSHMEM_GET_RW_MEM_SECTION 355 +#define K_SYSCALL_IVSHMEM_GET_STATE 356 +#define K_SYSCALL_IVSHMEM_GET_VECTORS 357 +#define K_SYSCALL_IVSHMEM_INT_PEER 358 +#define K_SYSCALL_IVSHMEM_REGISTER_HANDLER 359 +#define K_SYSCALL_IVSHMEM_SET_STATE 360 +#define K_SYSCALL_KSCAN_CONFIG 361 +#define K_SYSCALL_KSCAN_DISABLE_CALLBACK 362 +#define K_SYSCALL_KSCAN_ENABLE_CALLBACK 363 +#define K_SYSCALL_K_MEM_PAGING_HISTOGRAM_BACKING_STORE_PAGE_IN_GET 364 +#define K_SYSCALL_K_MEM_PAGING_HISTOGRAM_BACKING_STORE_PAGE_OUT_GET 365 +#define K_SYSCALL_K_MEM_PAGING_HISTOGRAM_EVICTION_GET 366 +#define K_SYSCALL_K_MEM_PAGING_STATS_GET 367 +#define K_SYSCALL_K_MEM_PAGING_THREAD_STATS_GET 368 +#define K_SYSCALL_LED_BLINK 369 +#define K_SYSCALL_LED_GET_INFO 370 +#define K_SYSCALL_LED_OFF 371 +#define K_SYSCALL_LED_ON 372 +#define K_SYSCALL_LED_SET_BRIGHTNESS 373 +#define K_SYSCALL_LED_SET_CHANNEL 374 +#define K_SYSCALL_LED_SET_COLOR 375 +#define K_SYSCALL_LED_WRITE_CHANNELS 376 +#define K_SYSCALL_LLEXT_GET_FN_TABLE 377 +#define K_SYSCALL_MAXIM_DS3231_GET_SYNCPOINT 378 +#define K_SYSCALL_MAXIM_DS3231_REQ_SYNCPOINT 379 +#define K_SYSCALL_MBOX_MAX_CHANNELS_GET 380 +#define K_SYSCALL_MBOX_MTU_GET 381 +#define K_SYSCALL_MBOX_SEND 382 +#define K_SYSCALL_MBOX_SET_ENABLED 383 +#define K_SYSCALL_MDIO_BUS_DISABLE 384 +#define K_SYSCALL_MDIO_BUS_ENABLE 385 +#define K_SYSCALL_MDIO_READ 386 +#define K_SYSCALL_MDIO_READ_C45 387 +#define K_SYSCALL_MDIO_WRITE 388 +#define K_SYSCALL_MDIO_WRITE_C45 389 +#define K_SYSCALL_MSPI_CONFIG 390 +#define K_SYSCALL_MSPI_DEV_CONFIG 391 +#define K_SYSCALL_MSPI_GET_CHANNEL_STATUS 392 +#define K_SYSCALL_MSPI_SCRAMBLE_CONFIG 393 +#define K_SYSCALL_MSPI_TIMING_CONFIG 394 +#define K_SYSCALL_MSPI_TRANSCEIVE 395 +#define K_SYSCALL_MSPI_XIP_CONFIG 396 +#define K_SYSCALL_NET_ADDR_NTOP 397 +#define K_SYSCALL_NET_ADDR_PTON 398 +#define K_SYSCALL_NET_ETH_GET_PTP_CLOCK_BY_INDEX 399 +#define K_SYSCALL_NET_IF_GET_BY_INDEX 400 +#define K_SYSCALL_NET_IF_IPV4_ADDR_ADD_BY_INDEX 401 +#define K_SYSCALL_NET_IF_IPV4_ADDR_LOOKUP_BY_INDEX 402 +#define K_SYSCALL_NET_IF_IPV4_ADDR_RM_BY_INDEX 403 +#define K_SYSCALL_NET_IF_IPV4_SET_GW_BY_INDEX 404 +#define K_SYSCALL_NET_IF_IPV4_SET_NETMASK_BY_ADDR_BY_INDEX 405 +#define K_SYSCALL_NET_IF_IPV4_SET_NETMASK_BY_INDEX 406 +#define K_SYSCALL_NET_IF_IPV6_ADDR_ADD_BY_INDEX 407 +#define K_SYSCALL_NET_IF_IPV6_ADDR_LOOKUP_BY_INDEX 408 +#define K_SYSCALL_NET_IF_IPV6_ADDR_RM_BY_INDEX 409 +#define K_SYSCALL_NET_SOCKET_SERVICE_REGISTER 410 +#define K_SYSCALL_NRF_QSPI_NOR_XIP_ENABLE 411 +#define K_SYSCALL_PECI_CONFIG 412 +#define K_SYSCALL_PECI_DISABLE 413 +#define K_SYSCALL_PECI_ENABLE 414 +#define K_SYSCALL_PECI_TRANSFER 415 +#define K_SYSCALL_PS2_CONFIG 416 +#define K_SYSCALL_PS2_DISABLE_CALLBACK 417 +#define K_SYSCALL_PS2_ENABLE_CALLBACK 418 +#define K_SYSCALL_PS2_READ 419 +#define K_SYSCALL_PS2_WRITE 420 +#define K_SYSCALL_PTP_CLOCK_GET 421 +#define K_SYSCALL_PWM_CAPTURE_CYCLES 422 +#define K_SYSCALL_PWM_DISABLE_CAPTURE 423 +#define K_SYSCALL_PWM_ENABLE_CAPTURE 424 +#define K_SYSCALL_PWM_GET_CYCLES_PER_SEC 425 +#define K_SYSCALL_PWM_SET_CYCLES 426 +#define K_SYSCALL_RESET_LINE_ASSERT 427 +#define K_SYSCALL_RESET_LINE_DEASSERT 428 +#define K_SYSCALL_RESET_LINE_TOGGLE 429 +#define K_SYSCALL_RESET_STATUS 430 +#define K_SYSCALL_RETAINED_MEM_CLEAR 431 +#define K_SYSCALL_RETAINED_MEM_READ 432 +#define K_SYSCALL_RETAINED_MEM_SIZE 433 +#define K_SYSCALL_RETAINED_MEM_WRITE 434 +#define K_SYSCALL_RTC_ALARM_GET_SUPPORTED_FIELDS 435 +#define K_SYSCALL_RTC_ALARM_GET_TIME 436 +#define K_SYSCALL_RTC_ALARM_IS_PENDING 437 +#define K_SYSCALL_RTC_ALARM_SET_CALLBACK 438 +#define K_SYSCALL_RTC_ALARM_SET_TIME 439 +#define K_SYSCALL_RTC_GET_CALIBRATION 440 +#define K_SYSCALL_RTC_GET_TIME 441 +#define K_SYSCALL_RTC_SET_CALIBRATION 442 +#define K_SYSCALL_RTC_SET_TIME 443 +#define K_SYSCALL_RTC_UPDATE_SET_CALLBACK 444 +#define K_SYSCALL_RTIO_CQE_COPY_OUT 445 +#define K_SYSCALL_RTIO_CQE_GET_MEMPOOL_BUFFER 446 +#define K_SYSCALL_RTIO_RELEASE_BUFFER 447 +#define K_SYSCALL_RTIO_SQE_CANCEL 448 +#define K_SYSCALL_RTIO_SQE_COPY_IN_GET_HANDLES 449 +#define K_SYSCALL_RTIO_SUBMIT 450 +#define K_SYSCALL_SDHC_CARD_BUSY 451 +#define K_SYSCALL_SDHC_CARD_PRESENT 452 +#define K_SYSCALL_SDHC_DISABLE_INTERRUPT 453 +#define K_SYSCALL_SDHC_ENABLE_INTERRUPT 454 +#define K_SYSCALL_SDHC_EXECUTE_TUNING 455 +#define K_SYSCALL_SDHC_GET_HOST_PROPS 456 +#define K_SYSCALL_SDHC_HW_RESET 457 +#define K_SYSCALL_SDHC_REQUEST 458 +#define K_SYSCALL_SDHC_SET_IO 459 +#define K_SYSCALL_SIP_SUPERVISORY_CALL 460 +#define K_SYSCALL_SIP_SVC_PLAT_ASYNC_RES_REQ 461 +#define K_SYSCALL_SIP_SVC_PLAT_ASYNC_RES_RES 462 +#define K_SYSCALL_SIP_SVC_PLAT_FORMAT_TRANS_ID 463 +#define K_SYSCALL_SIP_SVC_PLAT_FREE_ASYNC_MEMORY 464 +#define K_SYSCALL_SIP_SVC_PLAT_FUNC_ID_VALID 465 +#define K_SYSCALL_SIP_SVC_PLAT_GET_ERROR_CODE 466 +#define K_SYSCALL_SIP_SVC_PLAT_GET_TRANS_IDX 467 +#define K_SYSCALL_SIP_SVC_PLAT_UPDATE_TRANS_ID 468 +#define K_SYSCALL_SMBUS_BLOCK_PCALL 469 +#define K_SYSCALL_SMBUS_BLOCK_READ 470 +#define K_SYSCALL_SMBUS_BLOCK_WRITE 471 +#define K_SYSCALL_SMBUS_BYTE_DATA_READ 472 +#define K_SYSCALL_SMBUS_BYTE_DATA_WRITE 473 +#define K_SYSCALL_SMBUS_BYTE_READ 474 +#define K_SYSCALL_SMBUS_BYTE_WRITE 475 +#define K_SYSCALL_SMBUS_CONFIGURE 476 +#define K_SYSCALL_SMBUS_GET_CONFIG 477 +#define K_SYSCALL_SMBUS_HOST_NOTIFY_REMOVE_CB 478 +#define K_SYSCALL_SMBUS_PCALL 479 +#define K_SYSCALL_SMBUS_QUICK 480 +#define K_SYSCALL_SMBUS_SMBALERT_REMOVE_CB 481 +#define K_SYSCALL_SMBUS_WORD_DATA_READ 482 +#define K_SYSCALL_SMBUS_WORD_DATA_WRITE 483 +#define K_SYSCALL_SPI_RELEASE 484 +#define K_SYSCALL_SPI_TRANSCEIVE 485 +#define K_SYSCALL_STEPPER_ENABLE 486 +#define K_SYSCALL_STEPPER_GET_ACTUAL_POSITION 487 +#define K_SYSCALL_STEPPER_GET_MICRO_STEP_RES 488 +#define K_SYSCALL_STEPPER_IS_MOVING 489 +#define K_SYSCALL_STEPPER_MOVE_BY 490 +#define K_SYSCALL_STEPPER_MOVE_TO 491 +#define K_SYSCALL_STEPPER_RUN 492 +#define K_SYSCALL_STEPPER_SET_EVENT_CALLBACK 493 +#define K_SYSCALL_STEPPER_SET_MAX_VELOCITY 494 +#define K_SYSCALL_STEPPER_SET_MICRO_STEP_RES 495 +#define K_SYSCALL_STEPPER_SET_REFERENCE_POSITION 496 +#define K_SYSCALL_SYSCON_GET_BASE 497 +#define K_SYSCALL_SYSCON_GET_SIZE 498 +#define K_SYSCALL_SYSCON_READ_REG 499 +#define K_SYSCALL_SYSCON_WRITE_REG 500 +#define K_SYSCALL_SYS_CACHE_DATA_FLUSH_AND_INVD_RANGE 501 +#define K_SYSCALL_SYS_CACHE_DATA_FLUSH_RANGE 502 +#define K_SYSCALL_SYS_CACHE_DATA_INVD_RANGE 503 +#define K_SYSCALL_SYS_CSRAND_GET 504 +#define K_SYSCALL_SYS_RAND_GET 505 +#define K_SYSCALL_TEE_CANCEL 506 +#define K_SYSCALL_TEE_CLOSE_SESSION 507 +#define K_SYSCALL_TEE_GET_VERSION 508 +#define K_SYSCALL_TEE_INVOKE_FUNC 509 +#define K_SYSCALL_TEE_OPEN_SESSION 510 +#define K_SYSCALL_TEE_SHM_ALLOC 511 +#define K_SYSCALL_TEE_SHM_FREE 512 +#define K_SYSCALL_TEE_SHM_REGISTER 513 +#define K_SYSCALL_TEE_SHM_UNREGISTER 514 +#define K_SYSCALL_TEE_SUPPL_RECV 515 +#define K_SYSCALL_TEE_SUPPL_SEND 516 +#define K_SYSCALL_TGPIO_PIN_CONFIG_EXT_TIMESTAMP 517 +#define K_SYSCALL_TGPIO_PIN_DISABLE 518 +#define K_SYSCALL_TGPIO_PIN_PERIODIC_OUTPUT 519 +#define K_SYSCALL_TGPIO_PIN_READ_TS_EC 520 +#define K_SYSCALL_TGPIO_PORT_GET_CYCLES_PER_SECOND 521 +#define K_SYSCALL_TGPIO_PORT_GET_TIME 522 +#define K_SYSCALL_UPDATEHUB_AUTOHANDLER 523 +#define K_SYSCALL_UPDATEHUB_CONFIRM 524 +#define K_SYSCALL_UPDATEHUB_PROBE 525 +#define K_SYSCALL_UPDATEHUB_REBOOT 526 +#define K_SYSCALL_UPDATEHUB_UPDATE 527 +#define K_SYSCALL_USER_FAULT 528 +#define K_SYSCALL_W1_CHANGE_BUS_LOCK 529 +#define K_SYSCALL_W1_CONFIGURE 530 +#define K_SYSCALL_W1_GET_SLAVE_COUNT 531 +#define K_SYSCALL_W1_READ_BIT 532 +#define K_SYSCALL_W1_READ_BLOCK 533 +#define K_SYSCALL_W1_READ_BYTE 534 +#define K_SYSCALL_W1_RESET_BUS 535 +#define K_SYSCALL_W1_SEARCH_BUS 536 +#define K_SYSCALL_W1_WRITE_BIT 537 +#define K_SYSCALL_W1_WRITE_BLOCK 538 +#define K_SYSCALL_W1_WRITE_BYTE 539 +#define K_SYSCALL_WDT_DISABLE 540 +#define K_SYSCALL_WDT_FEED 541 +#define K_SYSCALL_WDT_SETUP 542 +#define K_SYSCALL_XTENSA_USER_FAULT 543 +#define K_SYSCALL_ZSOCK_ACCEPT 544 +#define K_SYSCALL_ZSOCK_BIND 545 +#define K_SYSCALL_ZSOCK_CLOSE 546 +#define K_SYSCALL_ZSOCK_CONNECT 547 +#define K_SYSCALL_ZSOCK_FCNTL_IMPL 548 +#define K_SYSCALL_ZSOCK_GETHOSTNAME 549 +#define K_SYSCALL_ZSOCK_GETPEERNAME 550 +#define K_SYSCALL_ZSOCK_GETSOCKNAME 551 +#define K_SYSCALL_ZSOCK_GETSOCKOPT 552 +#define K_SYSCALL_ZSOCK_GET_CONTEXT_OBJECT 553 +#define K_SYSCALL_ZSOCK_INET_PTON 554 +#define K_SYSCALL_ZSOCK_IOCTL_IMPL 555 +#define K_SYSCALL_ZSOCK_LISTEN 556 +#define K_SYSCALL_ZSOCK_RECVFROM 557 +#define K_SYSCALL_ZSOCK_RECVMSG 558 +#define K_SYSCALL_ZSOCK_SENDMSG 559 +#define K_SYSCALL_ZSOCK_SENDTO 560 +#define K_SYSCALL_ZSOCK_SETSOCKOPT 561 +#define K_SYSCALL_ZSOCK_SHUTDOWN 562 +#define K_SYSCALL_ZSOCK_SOCKET 563 +#define K_SYSCALL_ZSOCK_SOCKETPAIR 564 +#define K_SYSCALL_ZVFS_POLL 565 +#define K_SYSCALL_ZVFS_SELECT 566 +#define K_SYSCALL_Z_ERRNO 567 +#define K_SYSCALL_Z_ZSOCK_GETADDRINFO_INTERNAL 568 + + +#ifndef _ASMLANGUAGE + +#include +#include + +#endif /* _ASMLANGUAGE */ + +#endif /* ZEPHYR_SYSCALL_LIST_H */ diff --git a/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/adc.h b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/adc.h new file mode 100644 index 0000000..099a836 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/adc.h @@ -0,0 +1,101 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_ADC_H +#define Z_INCLUDE_SYSCALLS_ADC_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_adc_channel_setup(const struct device * dev, const struct adc_channel_cfg * channel_cfg); + +__pinned_func +static inline int adc_channel_setup(const struct device * dev, const struct adc_channel_cfg * channel_cfg) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; const struct adc_channel_cfg * val; } parm1 = { .val = channel_cfg }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_ADC_CHANNEL_SETUP); + } +#endif + compiler_barrier(); + return z_impl_adc_channel_setup(dev, channel_cfg); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define adc_channel_setup(dev, channel_cfg) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ADC_CHANNEL_SETUP, adc_channel_setup, dev, channel_cfg); syscall__retval = adc_channel_setup(dev, channel_cfg); sys_port_trace_syscall_exit(K_SYSCALL_ADC_CHANNEL_SETUP, adc_channel_setup, dev, channel_cfg, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_adc_read(const struct device * dev, const struct adc_sequence * sequence); + +__pinned_func +static inline int adc_read(const struct device * dev, const struct adc_sequence * sequence) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; const struct adc_sequence * val; } parm1 = { .val = sequence }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_ADC_READ); + } +#endif + compiler_barrier(); + return z_impl_adc_read(dev, sequence); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define adc_read(dev, sequence) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ADC_READ, adc_read, dev, sequence); syscall__retval = adc_read(dev, sequence); sys_port_trace_syscall_exit(K_SYSCALL_ADC_READ, adc_read, dev, sequence, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_adc_read_async(const struct device * dev, const struct adc_sequence * sequence, struct k_poll_signal * async); + +__pinned_func +static inline int adc_read_async(const struct device * dev, const struct adc_sequence * sequence, struct k_poll_signal * async) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; const struct adc_sequence * val; } parm1 = { .val = sequence }; + union { uintptr_t x; struct k_poll_signal * val; } parm2 = { .val = async }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_ADC_READ_ASYNC); + } +#endif + compiler_barrier(); + return z_impl_adc_read_async(dev, sequence, async); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define adc_read_async(dev, sequence, async) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ADC_READ_ASYNC, adc_read_async, dev, sequence, async); syscall__retval = adc_read_async(dev, sequence, async); sys_port_trace_syscall_exit(K_SYSCALL_ADC_READ_ASYNC, adc_read_async, dev, sequence, async, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/arch.h b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/arch.h new file mode 100644 index 0000000..cf55b0b --- /dev/null +++ b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/arch.h @@ -0,0 +1,52 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_ARCH_H +#define Z_INCLUDE_SYSCALLS_ARCH_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern void z_impl_xtensa_user_fault(unsigned int reason); + +__pinned_func +static inline void xtensa_user_fault(unsigned int reason) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; unsigned int val; } parm0 = { .val = reason }; + (void) arch_syscall_invoke1(parm0.x, K_SYSCALL_XTENSA_USER_FAULT); + return; + } +#endif + compiler_barrier(); + z_impl_xtensa_user_fault(reason); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define xtensa_user_fault(reason) do { sys_port_trace_syscall_enter(K_SYSCALL_XTENSA_USER_FAULT, xtensa_user_fault, reason); xtensa_user_fault(reason); sys_port_trace_syscall_exit(K_SYSCALL_XTENSA_USER_FAULT, xtensa_user_fault, reason); } while(false) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/atomic_c.h b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/atomic_c.h new file mode 100644 index 0000000..e042a7e --- /dev/null +++ b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/atomic_c.h @@ -0,0 +1,270 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_ATOMIC_C_H +#define Z_INCLUDE_SYSCALLS_ATOMIC_C_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern bool z_impl_atomic_cas(atomic_t * target, atomic_val_t old_value, atomic_val_t new_value); + +__pinned_func +static inline bool atomic_cas(atomic_t * target, atomic_val_t old_value, atomic_val_t new_value) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; atomic_t * val; } parm0 = { .val = target }; + union { uintptr_t x; atomic_val_t val; } parm1 = { .val = old_value }; + union { uintptr_t x; atomic_val_t val; } parm2 = { .val = new_value }; + return (bool) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_ATOMIC_CAS); + } +#endif + compiler_barrier(); + return z_impl_atomic_cas(target, old_value, new_value); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define atomic_cas(target, old_value, new_value) ({ bool syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ATOMIC_CAS, atomic_cas, target, old_value, new_value); syscall__retval = atomic_cas(target, old_value, new_value); sys_port_trace_syscall_exit(K_SYSCALL_ATOMIC_CAS, atomic_cas, target, old_value, new_value, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern bool z_impl_atomic_ptr_cas(atomic_ptr_t * target, atomic_ptr_val_t old_value, atomic_ptr_val_t new_value); + +__pinned_func +static inline bool atomic_ptr_cas(atomic_ptr_t * target, atomic_ptr_val_t old_value, atomic_ptr_val_t new_value) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; atomic_ptr_t * val; } parm0 = { .val = target }; + union { uintptr_t x; atomic_ptr_val_t val; } parm1 = { .val = old_value }; + union { uintptr_t x; atomic_ptr_val_t val; } parm2 = { .val = new_value }; + return (bool) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_ATOMIC_PTR_CAS); + } +#endif + compiler_barrier(); + return z_impl_atomic_ptr_cas(target, old_value, new_value); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define atomic_ptr_cas(target, old_value, new_value) ({ bool syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ATOMIC_PTR_CAS, atomic_ptr_cas, target, old_value, new_value); syscall__retval = atomic_ptr_cas(target, old_value, new_value); sys_port_trace_syscall_exit(K_SYSCALL_ATOMIC_PTR_CAS, atomic_ptr_cas, target, old_value, new_value, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern atomic_val_t z_impl_atomic_add(atomic_t * target, atomic_val_t value); + +__pinned_func +static inline atomic_val_t atomic_add(atomic_t * target, atomic_val_t value) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; atomic_t * val; } parm0 = { .val = target }; + union { uintptr_t x; atomic_val_t val; } parm1 = { .val = value }; + return (atomic_val_t) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_ATOMIC_ADD); + } +#endif + compiler_barrier(); + return z_impl_atomic_add(target, value); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define atomic_add(target, value) ({ atomic_val_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ATOMIC_ADD, atomic_add, target, value); syscall__retval = atomic_add(target, value); sys_port_trace_syscall_exit(K_SYSCALL_ATOMIC_ADD, atomic_add, target, value, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern atomic_val_t z_impl_atomic_sub(atomic_t * target, atomic_val_t value); + +__pinned_func +static inline atomic_val_t atomic_sub(atomic_t * target, atomic_val_t value) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; atomic_t * val; } parm0 = { .val = target }; + union { uintptr_t x; atomic_val_t val; } parm1 = { .val = value }; + return (atomic_val_t) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_ATOMIC_SUB); + } +#endif + compiler_barrier(); + return z_impl_atomic_sub(target, value); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define atomic_sub(target, value) ({ atomic_val_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ATOMIC_SUB, atomic_sub, target, value); syscall__retval = atomic_sub(target, value); sys_port_trace_syscall_exit(K_SYSCALL_ATOMIC_SUB, atomic_sub, target, value, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern atomic_val_t z_impl_atomic_set(atomic_t * target, atomic_val_t value); + +__pinned_func +static inline atomic_val_t atomic_set(atomic_t * target, atomic_val_t value) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; atomic_t * val; } parm0 = { .val = target }; + union { uintptr_t x; atomic_val_t val; } parm1 = { .val = value }; + return (atomic_val_t) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_ATOMIC_SET); + } +#endif + compiler_barrier(); + return z_impl_atomic_set(target, value); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define atomic_set(target, value) ({ atomic_val_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ATOMIC_SET, atomic_set, target, value); syscall__retval = atomic_set(target, value); sys_port_trace_syscall_exit(K_SYSCALL_ATOMIC_SET, atomic_set, target, value, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern atomic_ptr_val_t z_impl_atomic_ptr_set(atomic_ptr_t * target, atomic_ptr_val_t value); + +__pinned_func +static inline atomic_ptr_val_t atomic_ptr_set(atomic_ptr_t * target, atomic_ptr_val_t value) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; atomic_ptr_t * val; } parm0 = { .val = target }; + union { uintptr_t x; atomic_ptr_val_t val; } parm1 = { .val = value }; + return (atomic_ptr_val_t) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_ATOMIC_PTR_SET); + } +#endif + compiler_barrier(); + return z_impl_atomic_ptr_set(target, value); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define atomic_ptr_set(target, value) ({ atomic_ptr_val_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ATOMIC_PTR_SET, atomic_ptr_set, target, value); syscall__retval = atomic_ptr_set(target, value); sys_port_trace_syscall_exit(K_SYSCALL_ATOMIC_PTR_SET, atomic_ptr_set, target, value, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern atomic_val_t z_impl_atomic_or(atomic_t * target, atomic_val_t value); + +__pinned_func +static inline atomic_val_t atomic_or(atomic_t * target, atomic_val_t value) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; atomic_t * val; } parm0 = { .val = target }; + union { uintptr_t x; atomic_val_t val; } parm1 = { .val = value }; + return (atomic_val_t) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_ATOMIC_OR); + } +#endif + compiler_barrier(); + return z_impl_atomic_or(target, value); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define atomic_or(target, value) ({ atomic_val_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ATOMIC_OR, atomic_or, target, value); syscall__retval = atomic_or(target, value); sys_port_trace_syscall_exit(K_SYSCALL_ATOMIC_OR, atomic_or, target, value, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern atomic_val_t z_impl_atomic_xor(atomic_t * target, atomic_val_t value); + +__pinned_func +static inline atomic_val_t atomic_xor(atomic_t * target, atomic_val_t value) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; atomic_t * val; } parm0 = { .val = target }; + union { uintptr_t x; atomic_val_t val; } parm1 = { .val = value }; + return (atomic_val_t) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_ATOMIC_XOR); + } +#endif + compiler_barrier(); + return z_impl_atomic_xor(target, value); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define atomic_xor(target, value) ({ atomic_val_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ATOMIC_XOR, atomic_xor, target, value); syscall__retval = atomic_xor(target, value); sys_port_trace_syscall_exit(K_SYSCALL_ATOMIC_XOR, atomic_xor, target, value, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern atomic_val_t z_impl_atomic_and(atomic_t * target, atomic_val_t value); + +__pinned_func +static inline atomic_val_t atomic_and(atomic_t * target, atomic_val_t value) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; atomic_t * val; } parm0 = { .val = target }; + union { uintptr_t x; atomic_val_t val; } parm1 = { .val = value }; + return (atomic_val_t) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_ATOMIC_AND); + } +#endif + compiler_barrier(); + return z_impl_atomic_and(target, value); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define atomic_and(target, value) ({ atomic_val_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ATOMIC_AND, atomic_and, target, value); syscall__retval = atomic_and(target, value); sys_port_trace_syscall_exit(K_SYSCALL_ATOMIC_AND, atomic_and, target, value, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern atomic_val_t z_impl_atomic_nand(atomic_t * target, atomic_val_t value); + +__pinned_func +static inline atomic_val_t atomic_nand(atomic_t * target, atomic_val_t value) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; atomic_t * val; } parm0 = { .val = target }; + union { uintptr_t x; atomic_val_t val; } parm1 = { .val = value }; + return (atomic_val_t) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_ATOMIC_NAND); + } +#endif + compiler_barrier(); + return z_impl_atomic_nand(target, value); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define atomic_nand(target, value) ({ atomic_val_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ATOMIC_NAND, atomic_nand, target, value); syscall__retval = atomic_nand(target, value); sys_port_trace_syscall_exit(K_SYSCALL_ATOMIC_NAND, atomic_nand, target, value, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/auxdisplay.h b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/auxdisplay.h new file mode 100644 index 0000000..21c3fec --- /dev/null +++ b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/auxdisplay.h @@ -0,0 +1,488 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_AUXDISPLAY_H +#define Z_INCLUDE_SYSCALLS_AUXDISPLAY_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_auxdisplay_display_on(const struct device * dev); + +__pinned_func +static inline int auxdisplay_display_on(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_AUXDISPLAY_DISPLAY_ON); + } +#endif + compiler_barrier(); + return z_impl_auxdisplay_display_on(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define auxdisplay_display_on(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_AUXDISPLAY_DISPLAY_ON, auxdisplay_display_on, dev); syscall__retval = auxdisplay_display_on(dev); sys_port_trace_syscall_exit(K_SYSCALL_AUXDISPLAY_DISPLAY_ON, auxdisplay_display_on, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_auxdisplay_display_off(const struct device * dev); + +__pinned_func +static inline int auxdisplay_display_off(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_AUXDISPLAY_DISPLAY_OFF); + } +#endif + compiler_barrier(); + return z_impl_auxdisplay_display_off(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define auxdisplay_display_off(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_AUXDISPLAY_DISPLAY_OFF, auxdisplay_display_off, dev); syscall__retval = auxdisplay_display_off(dev); sys_port_trace_syscall_exit(K_SYSCALL_AUXDISPLAY_DISPLAY_OFF, auxdisplay_display_off, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_auxdisplay_cursor_set_enabled(const struct device * dev, bool enabled); + +__pinned_func +static inline int auxdisplay_cursor_set_enabled(const struct device * dev, bool enabled) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; bool val; } parm1 = { .val = enabled }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_AUXDISPLAY_CURSOR_SET_ENABLED); + } +#endif + compiler_barrier(); + return z_impl_auxdisplay_cursor_set_enabled(dev, enabled); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define auxdisplay_cursor_set_enabled(dev, enabled) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_AUXDISPLAY_CURSOR_SET_ENABLED, auxdisplay_cursor_set_enabled, dev, enabled); syscall__retval = auxdisplay_cursor_set_enabled(dev, enabled); sys_port_trace_syscall_exit(K_SYSCALL_AUXDISPLAY_CURSOR_SET_ENABLED, auxdisplay_cursor_set_enabled, dev, enabled, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_auxdisplay_position_blinking_set_enabled(const struct device * dev, bool enabled); + +__pinned_func +static inline int auxdisplay_position_blinking_set_enabled(const struct device * dev, bool enabled) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; bool val; } parm1 = { .val = enabled }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_AUXDISPLAY_POSITION_BLINKING_SET_ENABLED); + } +#endif + compiler_barrier(); + return z_impl_auxdisplay_position_blinking_set_enabled(dev, enabled); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define auxdisplay_position_blinking_set_enabled(dev, enabled) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_AUXDISPLAY_POSITION_BLINKING_SET_ENABLED, auxdisplay_position_blinking_set_enabled, dev, enabled); syscall__retval = auxdisplay_position_blinking_set_enabled(dev, enabled); sys_port_trace_syscall_exit(K_SYSCALL_AUXDISPLAY_POSITION_BLINKING_SET_ENABLED, auxdisplay_position_blinking_set_enabled, dev, enabled, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_auxdisplay_cursor_shift_set(const struct device * dev, uint8_t direction, bool display_shift); + +__pinned_func +static inline int auxdisplay_cursor_shift_set(const struct device * dev, uint8_t direction, bool display_shift) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint8_t val; } parm1 = { .val = direction }; + union { uintptr_t x; bool val; } parm2 = { .val = display_shift }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_AUXDISPLAY_CURSOR_SHIFT_SET); + } +#endif + compiler_barrier(); + return z_impl_auxdisplay_cursor_shift_set(dev, direction, display_shift); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define auxdisplay_cursor_shift_set(dev, direction, display_shift) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_AUXDISPLAY_CURSOR_SHIFT_SET, auxdisplay_cursor_shift_set, dev, direction, display_shift); syscall__retval = auxdisplay_cursor_shift_set(dev, direction, display_shift); sys_port_trace_syscall_exit(K_SYSCALL_AUXDISPLAY_CURSOR_SHIFT_SET, auxdisplay_cursor_shift_set, dev, direction, display_shift, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_auxdisplay_cursor_position_set(const struct device * dev, enum auxdisplay_position type, int16_t x, int16_t y); + +__pinned_func +static inline int auxdisplay_cursor_position_set(const struct device * dev, enum auxdisplay_position type, int16_t x, int16_t y) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; enum auxdisplay_position val; } parm1 = { .val = type }; + union { uintptr_t x; int16_t val; } parm2 = { .val = x }; + union { uintptr_t x; int16_t val; } parm3 = { .val = y }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_AUXDISPLAY_CURSOR_POSITION_SET); + } +#endif + compiler_barrier(); + return z_impl_auxdisplay_cursor_position_set(dev, type, x, y); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define auxdisplay_cursor_position_set(dev, type, x, y) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_AUXDISPLAY_CURSOR_POSITION_SET, auxdisplay_cursor_position_set, dev, type, x, y); syscall__retval = auxdisplay_cursor_position_set(dev, type, x, y); sys_port_trace_syscall_exit(K_SYSCALL_AUXDISPLAY_CURSOR_POSITION_SET, auxdisplay_cursor_position_set, dev, type, x, y, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_auxdisplay_cursor_position_get(const struct device * dev, int16_t * x, int16_t * y); + +__pinned_func +static inline int auxdisplay_cursor_position_get(const struct device * dev, int16_t * x, int16_t * y) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; int16_t * val; } parm1 = { .val = x }; + union { uintptr_t x; int16_t * val; } parm2 = { .val = y }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_AUXDISPLAY_CURSOR_POSITION_GET); + } +#endif + compiler_barrier(); + return z_impl_auxdisplay_cursor_position_get(dev, x, y); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define auxdisplay_cursor_position_get(dev, x, y) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_AUXDISPLAY_CURSOR_POSITION_GET, auxdisplay_cursor_position_get, dev, x, y); syscall__retval = auxdisplay_cursor_position_get(dev, x, y); sys_port_trace_syscall_exit(K_SYSCALL_AUXDISPLAY_CURSOR_POSITION_GET, auxdisplay_cursor_position_get, dev, x, y, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_auxdisplay_display_position_set(const struct device * dev, enum auxdisplay_position type, int16_t x, int16_t y); + +__pinned_func +static inline int auxdisplay_display_position_set(const struct device * dev, enum auxdisplay_position type, int16_t x, int16_t y) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; enum auxdisplay_position val; } parm1 = { .val = type }; + union { uintptr_t x; int16_t val; } parm2 = { .val = x }; + union { uintptr_t x; int16_t val; } parm3 = { .val = y }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_AUXDISPLAY_DISPLAY_POSITION_SET); + } +#endif + compiler_barrier(); + return z_impl_auxdisplay_display_position_set(dev, type, x, y); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define auxdisplay_display_position_set(dev, type, x, y) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_AUXDISPLAY_DISPLAY_POSITION_SET, auxdisplay_display_position_set, dev, type, x, y); syscall__retval = auxdisplay_display_position_set(dev, type, x, y); sys_port_trace_syscall_exit(K_SYSCALL_AUXDISPLAY_DISPLAY_POSITION_SET, auxdisplay_display_position_set, dev, type, x, y, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_auxdisplay_display_position_get(const struct device * dev, int16_t * x, int16_t * y); + +__pinned_func +static inline int auxdisplay_display_position_get(const struct device * dev, int16_t * x, int16_t * y) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; int16_t * val; } parm1 = { .val = x }; + union { uintptr_t x; int16_t * val; } parm2 = { .val = y }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_AUXDISPLAY_DISPLAY_POSITION_GET); + } +#endif + compiler_barrier(); + return z_impl_auxdisplay_display_position_get(dev, x, y); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define auxdisplay_display_position_get(dev, x, y) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_AUXDISPLAY_DISPLAY_POSITION_GET, auxdisplay_display_position_get, dev, x, y); syscall__retval = auxdisplay_display_position_get(dev, x, y); sys_port_trace_syscall_exit(K_SYSCALL_AUXDISPLAY_DISPLAY_POSITION_GET, auxdisplay_display_position_get, dev, x, y, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_auxdisplay_capabilities_get(const struct device * dev, struct auxdisplay_capabilities * capabilities); + +__pinned_func +static inline int auxdisplay_capabilities_get(const struct device * dev, struct auxdisplay_capabilities * capabilities) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct auxdisplay_capabilities * val; } parm1 = { .val = capabilities }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_AUXDISPLAY_CAPABILITIES_GET); + } +#endif + compiler_barrier(); + return z_impl_auxdisplay_capabilities_get(dev, capabilities); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define auxdisplay_capabilities_get(dev, capabilities) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_AUXDISPLAY_CAPABILITIES_GET, auxdisplay_capabilities_get, dev, capabilities); syscall__retval = auxdisplay_capabilities_get(dev, capabilities); sys_port_trace_syscall_exit(K_SYSCALL_AUXDISPLAY_CAPABILITIES_GET, auxdisplay_capabilities_get, dev, capabilities, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_auxdisplay_clear(const struct device * dev); + +__pinned_func +static inline int auxdisplay_clear(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_AUXDISPLAY_CLEAR); + } +#endif + compiler_barrier(); + return z_impl_auxdisplay_clear(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define auxdisplay_clear(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_AUXDISPLAY_CLEAR, auxdisplay_clear, dev); syscall__retval = auxdisplay_clear(dev); sys_port_trace_syscall_exit(K_SYSCALL_AUXDISPLAY_CLEAR, auxdisplay_clear, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_auxdisplay_brightness_get(const struct device * dev, uint8_t * brightness); + +__pinned_func +static inline int auxdisplay_brightness_get(const struct device * dev, uint8_t * brightness) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint8_t * val; } parm1 = { .val = brightness }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_AUXDISPLAY_BRIGHTNESS_GET); + } +#endif + compiler_barrier(); + return z_impl_auxdisplay_brightness_get(dev, brightness); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define auxdisplay_brightness_get(dev, brightness) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_AUXDISPLAY_BRIGHTNESS_GET, auxdisplay_brightness_get, dev, brightness); syscall__retval = auxdisplay_brightness_get(dev, brightness); sys_port_trace_syscall_exit(K_SYSCALL_AUXDISPLAY_BRIGHTNESS_GET, auxdisplay_brightness_get, dev, brightness, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_auxdisplay_brightness_set(const struct device * dev, uint8_t brightness); + +__pinned_func +static inline int auxdisplay_brightness_set(const struct device * dev, uint8_t brightness) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint8_t val; } parm1 = { .val = brightness }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_AUXDISPLAY_BRIGHTNESS_SET); + } +#endif + compiler_barrier(); + return z_impl_auxdisplay_brightness_set(dev, brightness); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define auxdisplay_brightness_set(dev, brightness) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_AUXDISPLAY_BRIGHTNESS_SET, auxdisplay_brightness_set, dev, brightness); syscall__retval = auxdisplay_brightness_set(dev, brightness); sys_port_trace_syscall_exit(K_SYSCALL_AUXDISPLAY_BRIGHTNESS_SET, auxdisplay_brightness_set, dev, brightness, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_auxdisplay_backlight_get(const struct device * dev, uint8_t * backlight); + +__pinned_func +static inline int auxdisplay_backlight_get(const struct device * dev, uint8_t * backlight) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint8_t * val; } parm1 = { .val = backlight }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_AUXDISPLAY_BACKLIGHT_GET); + } +#endif + compiler_barrier(); + return z_impl_auxdisplay_backlight_get(dev, backlight); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define auxdisplay_backlight_get(dev, backlight) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_AUXDISPLAY_BACKLIGHT_GET, auxdisplay_backlight_get, dev, backlight); syscall__retval = auxdisplay_backlight_get(dev, backlight); sys_port_trace_syscall_exit(K_SYSCALL_AUXDISPLAY_BACKLIGHT_GET, auxdisplay_backlight_get, dev, backlight, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_auxdisplay_backlight_set(const struct device * dev, uint8_t backlight); + +__pinned_func +static inline int auxdisplay_backlight_set(const struct device * dev, uint8_t backlight) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint8_t val; } parm1 = { .val = backlight }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_AUXDISPLAY_BACKLIGHT_SET); + } +#endif + compiler_barrier(); + return z_impl_auxdisplay_backlight_set(dev, backlight); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define auxdisplay_backlight_set(dev, backlight) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_AUXDISPLAY_BACKLIGHT_SET, auxdisplay_backlight_set, dev, backlight); syscall__retval = auxdisplay_backlight_set(dev, backlight); sys_port_trace_syscall_exit(K_SYSCALL_AUXDISPLAY_BACKLIGHT_SET, auxdisplay_backlight_set, dev, backlight, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_auxdisplay_is_busy(const struct device * dev); + +__pinned_func +static inline int auxdisplay_is_busy(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_AUXDISPLAY_IS_BUSY); + } +#endif + compiler_barrier(); + return z_impl_auxdisplay_is_busy(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define auxdisplay_is_busy(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_AUXDISPLAY_IS_BUSY, auxdisplay_is_busy, dev); syscall__retval = auxdisplay_is_busy(dev); sys_port_trace_syscall_exit(K_SYSCALL_AUXDISPLAY_IS_BUSY, auxdisplay_is_busy, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_auxdisplay_custom_character_set(const struct device * dev, struct auxdisplay_character * character); + +__pinned_func +static inline int auxdisplay_custom_character_set(const struct device * dev, struct auxdisplay_character * character) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct auxdisplay_character * val; } parm1 = { .val = character }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_AUXDISPLAY_CUSTOM_CHARACTER_SET); + } +#endif + compiler_barrier(); + return z_impl_auxdisplay_custom_character_set(dev, character); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define auxdisplay_custom_character_set(dev, character) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_AUXDISPLAY_CUSTOM_CHARACTER_SET, auxdisplay_custom_character_set, dev, character); syscall__retval = auxdisplay_custom_character_set(dev, character); sys_port_trace_syscall_exit(K_SYSCALL_AUXDISPLAY_CUSTOM_CHARACTER_SET, auxdisplay_custom_character_set, dev, character, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_auxdisplay_write(const struct device * dev, const uint8_t * data, uint16_t len); + +__pinned_func +static inline int auxdisplay_write(const struct device * dev, const uint8_t * data, uint16_t len) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; const uint8_t * val; } parm1 = { .val = data }; + union { uintptr_t x; uint16_t val; } parm2 = { .val = len }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_AUXDISPLAY_WRITE); + } +#endif + compiler_barrier(); + return z_impl_auxdisplay_write(dev, data, len); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define auxdisplay_write(dev, data, len) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_AUXDISPLAY_WRITE, auxdisplay_write, dev, data, len); syscall__retval = auxdisplay_write(dev, data, len); sys_port_trace_syscall_exit(K_SYSCALL_AUXDISPLAY_WRITE, auxdisplay_write, dev, data, len, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_auxdisplay_custom_command(const struct device * dev, struct auxdisplay_custom_data * data); + +__pinned_func +static inline int auxdisplay_custom_command(const struct device * dev, struct auxdisplay_custom_data * data) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct auxdisplay_custom_data * val; } parm1 = { .val = data }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_AUXDISPLAY_CUSTOM_COMMAND); + } +#endif + compiler_barrier(); + return z_impl_auxdisplay_custom_command(dev, data); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define auxdisplay_custom_command(dev, data) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_AUXDISPLAY_CUSTOM_COMMAND, auxdisplay_custom_command, dev, data); syscall__retval = auxdisplay_custom_command(dev, data); sys_port_trace_syscall_exit(K_SYSCALL_AUXDISPLAY_CUSTOM_COMMAND, auxdisplay_custom_command, dev, data, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/bbram.h b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/bbram.h new file mode 100644 index 0000000..fcfa519 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/bbram.h @@ -0,0 +1,173 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_BBRAM_H +#define Z_INCLUDE_SYSCALLS_BBRAM_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_bbram_check_invalid(const struct device * dev); + +__pinned_func +static inline int bbram_check_invalid(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_BBRAM_CHECK_INVALID); + } +#endif + compiler_barrier(); + return z_impl_bbram_check_invalid(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define bbram_check_invalid(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_BBRAM_CHECK_INVALID, bbram_check_invalid, dev); syscall__retval = bbram_check_invalid(dev); sys_port_trace_syscall_exit(K_SYSCALL_BBRAM_CHECK_INVALID, bbram_check_invalid, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_bbram_check_standby_power(const struct device * dev); + +__pinned_func +static inline int bbram_check_standby_power(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_BBRAM_CHECK_STANDBY_POWER); + } +#endif + compiler_barrier(); + return z_impl_bbram_check_standby_power(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define bbram_check_standby_power(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_BBRAM_CHECK_STANDBY_POWER, bbram_check_standby_power, dev); syscall__retval = bbram_check_standby_power(dev); sys_port_trace_syscall_exit(K_SYSCALL_BBRAM_CHECK_STANDBY_POWER, bbram_check_standby_power, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_bbram_check_power(const struct device * dev); + +__pinned_func +static inline int bbram_check_power(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_BBRAM_CHECK_POWER); + } +#endif + compiler_barrier(); + return z_impl_bbram_check_power(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define bbram_check_power(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_BBRAM_CHECK_POWER, bbram_check_power, dev); syscall__retval = bbram_check_power(dev); sys_port_trace_syscall_exit(K_SYSCALL_BBRAM_CHECK_POWER, bbram_check_power, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_bbram_get_size(const struct device * dev, size_t * size); + +__pinned_func +static inline int bbram_get_size(const struct device * dev, size_t * size) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; size_t * val; } parm1 = { .val = size }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_BBRAM_GET_SIZE); + } +#endif + compiler_barrier(); + return z_impl_bbram_get_size(dev, size); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define bbram_get_size(dev, size) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_BBRAM_GET_SIZE, bbram_get_size, dev, size); syscall__retval = bbram_get_size(dev, size); sys_port_trace_syscall_exit(K_SYSCALL_BBRAM_GET_SIZE, bbram_get_size, dev, size, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_bbram_read(const struct device * dev, size_t offset, size_t size, uint8_t * data); + +__pinned_func +static inline int bbram_read(const struct device * dev, size_t offset, size_t size, uint8_t * data) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; size_t val; } parm1 = { .val = offset }; + union { uintptr_t x; size_t val; } parm2 = { .val = size }; + union { uintptr_t x; uint8_t * val; } parm3 = { .val = data }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_BBRAM_READ); + } +#endif + compiler_barrier(); + return z_impl_bbram_read(dev, offset, size, data); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define bbram_read(dev, offset, size, data) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_BBRAM_READ, bbram_read, dev, offset, size, data); syscall__retval = bbram_read(dev, offset, size, data); sys_port_trace_syscall_exit(K_SYSCALL_BBRAM_READ, bbram_read, dev, offset, size, data, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_bbram_write(const struct device * dev, size_t offset, size_t size, const uint8_t * data); + +__pinned_func +static inline int bbram_write(const struct device * dev, size_t offset, size_t size, const uint8_t * data) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; size_t val; } parm1 = { .val = offset }; + union { uintptr_t x; size_t val; } parm2 = { .val = size }; + union { uintptr_t x; const uint8_t * val; } parm3 = { .val = data }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_BBRAM_WRITE); + } +#endif + compiler_barrier(); + return z_impl_bbram_write(dev, offset, size, data); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define bbram_write(dev, offset, size, data) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_BBRAM_WRITE, bbram_write, dev, offset, size, data); syscall__retval = bbram_write(dev, offset, size, data); sys_port_trace_syscall_exit(K_SYSCALL_BBRAM_WRITE, bbram_write, dev, offset, size, data, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/cache.h b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/cache.h new file mode 100644 index 0000000..7dbb963 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/cache.h @@ -0,0 +1,100 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_CACHE_H +#define Z_INCLUDE_SYSCALLS_CACHE_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_sys_cache_data_flush_range(void * addr, size_t size); + +__pinned_func +static inline int sys_cache_data_flush_range(void * addr, size_t size) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; void * val; } parm0 = { .val = addr }; + union { uintptr_t x; size_t val; } parm1 = { .val = size }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_SYS_CACHE_DATA_FLUSH_RANGE); + } +#endif + compiler_barrier(); + return z_impl_sys_cache_data_flush_range(addr, size); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define sys_cache_data_flush_range(addr, size) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SYS_CACHE_DATA_FLUSH_RANGE, sys_cache_data_flush_range, addr, size); syscall__retval = sys_cache_data_flush_range(addr, size); sys_port_trace_syscall_exit(K_SYSCALL_SYS_CACHE_DATA_FLUSH_RANGE, sys_cache_data_flush_range, addr, size, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_sys_cache_data_invd_range(void * addr, size_t size); + +__pinned_func +static inline int sys_cache_data_invd_range(void * addr, size_t size) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; void * val; } parm0 = { .val = addr }; + union { uintptr_t x; size_t val; } parm1 = { .val = size }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_SYS_CACHE_DATA_INVD_RANGE); + } +#endif + compiler_barrier(); + return z_impl_sys_cache_data_invd_range(addr, size); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define sys_cache_data_invd_range(addr, size) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SYS_CACHE_DATA_INVD_RANGE, sys_cache_data_invd_range, addr, size); syscall__retval = sys_cache_data_invd_range(addr, size); sys_port_trace_syscall_exit(K_SYSCALL_SYS_CACHE_DATA_INVD_RANGE, sys_cache_data_invd_range, addr, size, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_sys_cache_data_flush_and_invd_range(void * addr, size_t size); + +__pinned_func +static inline int sys_cache_data_flush_and_invd_range(void * addr, size_t size) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; void * val; } parm0 = { .val = addr }; + union { uintptr_t x; size_t val; } parm1 = { .val = size }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_SYS_CACHE_DATA_FLUSH_AND_INVD_RANGE); + } +#endif + compiler_barrier(); + return z_impl_sys_cache_data_flush_and_invd_range(addr, size); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define sys_cache_data_flush_and_invd_range(addr, size) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SYS_CACHE_DATA_FLUSH_AND_INVD_RANGE, sys_cache_data_flush_and_invd_range, addr, size); syscall__retval = sys_cache_data_flush_and_invd_range(addr, size); sys_port_trace_syscall_exit(K_SYSCALL_SYS_CACHE_DATA_FLUSH_AND_INVD_RANGE, sys_cache_data_flush_and_invd_range, addr, size, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/can.h b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/can.h new file mode 100644 index 0000000..261b074 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/can.h @@ -0,0 +1,812 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_CAN_H +#define Z_INCLUDE_SYSCALLS_CAN_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_can_get_core_clock(const struct device * dev, uint32_t * rate); + +__pinned_func +static inline int can_get_core_clock(const struct device * dev, uint32_t * rate) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t * val; } parm1 = { .val = rate }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_CAN_GET_CORE_CLOCK); + } +#endif + compiler_barrier(); + return z_impl_can_get_core_clock(dev, rate); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define can_get_core_clock(dev, rate) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_CAN_GET_CORE_CLOCK, can_get_core_clock, dev, rate); syscall__retval = can_get_core_clock(dev, rate); sys_port_trace_syscall_exit(K_SYSCALL_CAN_GET_CORE_CLOCK, can_get_core_clock, dev, rate, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern uint32_t z_impl_can_get_bitrate_min(const struct device * dev); + +__pinned_func +static inline uint32_t can_get_bitrate_min(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (uint32_t) arch_syscall_invoke1(parm0.x, K_SYSCALL_CAN_GET_BITRATE_MIN); + } +#endif + compiler_barrier(); + return z_impl_can_get_bitrate_min(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define can_get_bitrate_min(dev) ({ uint32_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_CAN_GET_BITRATE_MIN, can_get_bitrate_min, dev); syscall__retval = can_get_bitrate_min(dev); sys_port_trace_syscall_exit(K_SYSCALL_CAN_GET_BITRATE_MIN, can_get_bitrate_min, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern uint32_t z_impl_can_get_bitrate_max(const struct device * dev); + +__pinned_func +static inline uint32_t can_get_bitrate_max(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (uint32_t) arch_syscall_invoke1(parm0.x, K_SYSCALL_CAN_GET_BITRATE_MAX); + } +#endif + compiler_barrier(); + return z_impl_can_get_bitrate_max(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define can_get_bitrate_max(dev) ({ uint32_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_CAN_GET_BITRATE_MAX, can_get_bitrate_max, dev); syscall__retval = can_get_bitrate_max(dev); sys_port_trace_syscall_exit(K_SYSCALL_CAN_GET_BITRATE_MAX, can_get_bitrate_max, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern const struct can_timing * z_impl_can_get_timing_min(const struct device * dev); + +__pinned_func +static inline const struct can_timing * can_get_timing_min(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (const struct can_timing *) arch_syscall_invoke1(parm0.x, K_SYSCALL_CAN_GET_TIMING_MIN); + } +#endif + compiler_barrier(); + return z_impl_can_get_timing_min(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define can_get_timing_min(dev) ({ const struct can_timing * syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_CAN_GET_TIMING_MIN, can_get_timing_min, dev); syscall__retval = can_get_timing_min(dev); sys_port_trace_syscall_exit(K_SYSCALL_CAN_GET_TIMING_MIN, can_get_timing_min, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern const struct can_timing * z_impl_can_get_timing_max(const struct device * dev); + +__pinned_func +static inline const struct can_timing * can_get_timing_max(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (const struct can_timing *) arch_syscall_invoke1(parm0.x, K_SYSCALL_CAN_GET_TIMING_MAX); + } +#endif + compiler_barrier(); + return z_impl_can_get_timing_max(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define can_get_timing_max(dev) ({ const struct can_timing * syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_CAN_GET_TIMING_MAX, can_get_timing_max, dev); syscall__retval = can_get_timing_max(dev); sys_port_trace_syscall_exit(K_SYSCALL_CAN_GET_TIMING_MAX, can_get_timing_max, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_can_calc_timing(const struct device * dev, struct can_timing * res, uint32_t bitrate, uint16_t sample_pnt); + +__pinned_func +static inline int can_calc_timing(const struct device * dev, struct can_timing * res, uint32_t bitrate, uint16_t sample_pnt) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct can_timing * val; } parm1 = { .val = res }; + union { uintptr_t x; uint32_t val; } parm2 = { .val = bitrate }; + union { uintptr_t x; uint16_t val; } parm3 = { .val = sample_pnt }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_CAN_CALC_TIMING); + } +#endif + compiler_barrier(); + return z_impl_can_calc_timing(dev, res, bitrate, sample_pnt); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define can_calc_timing(dev, res, bitrate, sample_pnt) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_CAN_CALC_TIMING, can_calc_timing, dev, res, bitrate, sample_pnt); syscall__retval = can_calc_timing(dev, res, bitrate, sample_pnt); sys_port_trace_syscall_exit(K_SYSCALL_CAN_CALC_TIMING, can_calc_timing, dev, res, bitrate, sample_pnt, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern const struct can_timing * z_impl_can_get_timing_data_min(const struct device * dev); + +__pinned_func +static inline const struct can_timing * can_get_timing_data_min(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (const struct can_timing *) arch_syscall_invoke1(parm0.x, K_SYSCALL_CAN_GET_TIMING_DATA_MIN); + } +#endif + compiler_barrier(); + return z_impl_can_get_timing_data_min(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define can_get_timing_data_min(dev) ({ const struct can_timing * syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_CAN_GET_TIMING_DATA_MIN, can_get_timing_data_min, dev); syscall__retval = can_get_timing_data_min(dev); sys_port_trace_syscall_exit(K_SYSCALL_CAN_GET_TIMING_DATA_MIN, can_get_timing_data_min, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern const struct can_timing * z_impl_can_get_timing_data_max(const struct device * dev); + +__pinned_func +static inline const struct can_timing * can_get_timing_data_max(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (const struct can_timing *) arch_syscall_invoke1(parm0.x, K_SYSCALL_CAN_GET_TIMING_DATA_MAX); + } +#endif + compiler_barrier(); + return z_impl_can_get_timing_data_max(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define can_get_timing_data_max(dev) ({ const struct can_timing * syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_CAN_GET_TIMING_DATA_MAX, can_get_timing_data_max, dev); syscall__retval = can_get_timing_data_max(dev); sys_port_trace_syscall_exit(K_SYSCALL_CAN_GET_TIMING_DATA_MAX, can_get_timing_data_max, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_can_calc_timing_data(const struct device * dev, struct can_timing * res, uint32_t bitrate, uint16_t sample_pnt); + +__pinned_func +static inline int can_calc_timing_data(const struct device * dev, struct can_timing * res, uint32_t bitrate, uint16_t sample_pnt) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct can_timing * val; } parm1 = { .val = res }; + union { uintptr_t x; uint32_t val; } parm2 = { .val = bitrate }; + union { uintptr_t x; uint16_t val; } parm3 = { .val = sample_pnt }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_CAN_CALC_TIMING_DATA); + } +#endif + compiler_barrier(); + return z_impl_can_calc_timing_data(dev, res, bitrate, sample_pnt); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define can_calc_timing_data(dev, res, bitrate, sample_pnt) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_CAN_CALC_TIMING_DATA, can_calc_timing_data, dev, res, bitrate, sample_pnt); syscall__retval = can_calc_timing_data(dev, res, bitrate, sample_pnt); sys_port_trace_syscall_exit(K_SYSCALL_CAN_CALC_TIMING_DATA, can_calc_timing_data, dev, res, bitrate, sample_pnt, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_can_set_timing_data(const struct device * dev, const struct can_timing * timing_data); + +__pinned_func +static inline int can_set_timing_data(const struct device * dev, const struct can_timing * timing_data) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; const struct can_timing * val; } parm1 = { .val = timing_data }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_CAN_SET_TIMING_DATA); + } +#endif + compiler_barrier(); + return z_impl_can_set_timing_data(dev, timing_data); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define can_set_timing_data(dev, timing_data) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_CAN_SET_TIMING_DATA, can_set_timing_data, dev, timing_data); syscall__retval = can_set_timing_data(dev, timing_data); sys_port_trace_syscall_exit(K_SYSCALL_CAN_SET_TIMING_DATA, can_set_timing_data, dev, timing_data, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_can_set_bitrate_data(const struct device * dev, uint32_t bitrate_data); + +__pinned_func +static inline int can_set_bitrate_data(const struct device * dev, uint32_t bitrate_data) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = bitrate_data }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_CAN_SET_BITRATE_DATA); + } +#endif + compiler_barrier(); + return z_impl_can_set_bitrate_data(dev, bitrate_data); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define can_set_bitrate_data(dev, bitrate_data) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_CAN_SET_BITRATE_DATA, can_set_bitrate_data, dev, bitrate_data); syscall__retval = can_set_bitrate_data(dev, bitrate_data); sys_port_trace_syscall_exit(K_SYSCALL_CAN_SET_BITRATE_DATA, can_set_bitrate_data, dev, bitrate_data, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_can_set_timing(const struct device * dev, const struct can_timing * timing); + +__pinned_func +static inline int can_set_timing(const struct device * dev, const struct can_timing * timing) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; const struct can_timing * val; } parm1 = { .val = timing }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_CAN_SET_TIMING); + } +#endif + compiler_barrier(); + return z_impl_can_set_timing(dev, timing); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define can_set_timing(dev, timing) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_CAN_SET_TIMING, can_set_timing, dev, timing); syscall__retval = can_set_timing(dev, timing); sys_port_trace_syscall_exit(K_SYSCALL_CAN_SET_TIMING, can_set_timing, dev, timing, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_can_get_capabilities(const struct device * dev, can_mode_t * cap); + +__pinned_func +static inline int can_get_capabilities(const struct device * dev, can_mode_t * cap) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; can_mode_t * val; } parm1 = { .val = cap }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_CAN_GET_CAPABILITIES); + } +#endif + compiler_barrier(); + return z_impl_can_get_capabilities(dev, cap); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define can_get_capabilities(dev, cap) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_CAN_GET_CAPABILITIES, can_get_capabilities, dev, cap); syscall__retval = can_get_capabilities(dev, cap); sys_port_trace_syscall_exit(K_SYSCALL_CAN_GET_CAPABILITIES, can_get_capabilities, dev, cap, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern const struct device * z_impl_can_get_transceiver(const struct device * dev); + +__pinned_func +static inline const struct device * can_get_transceiver(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (const struct device *) arch_syscall_invoke1(parm0.x, K_SYSCALL_CAN_GET_TRANSCEIVER); + } +#endif + compiler_barrier(); + return z_impl_can_get_transceiver(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define can_get_transceiver(dev) ({ const struct device * syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_CAN_GET_TRANSCEIVER, can_get_transceiver, dev); syscall__retval = can_get_transceiver(dev); sys_port_trace_syscall_exit(K_SYSCALL_CAN_GET_TRANSCEIVER, can_get_transceiver, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_can_start(const struct device * dev); + +__pinned_func +static inline int can_start(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_CAN_START); + } +#endif + compiler_barrier(); + return z_impl_can_start(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define can_start(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_CAN_START, can_start, dev); syscall__retval = can_start(dev); sys_port_trace_syscall_exit(K_SYSCALL_CAN_START, can_start, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_can_stop(const struct device * dev); + +__pinned_func +static inline int can_stop(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_CAN_STOP); + } +#endif + compiler_barrier(); + return z_impl_can_stop(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define can_stop(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_CAN_STOP, can_stop, dev); syscall__retval = can_stop(dev); sys_port_trace_syscall_exit(K_SYSCALL_CAN_STOP, can_stop, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_can_set_mode(const struct device * dev, can_mode_t mode); + +__pinned_func +static inline int can_set_mode(const struct device * dev, can_mode_t mode) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; can_mode_t val; } parm1 = { .val = mode }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_CAN_SET_MODE); + } +#endif + compiler_barrier(); + return z_impl_can_set_mode(dev, mode); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define can_set_mode(dev, mode) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_CAN_SET_MODE, can_set_mode, dev, mode); syscall__retval = can_set_mode(dev, mode); sys_port_trace_syscall_exit(K_SYSCALL_CAN_SET_MODE, can_set_mode, dev, mode, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern can_mode_t z_impl_can_get_mode(const struct device * dev); + +__pinned_func +static inline can_mode_t can_get_mode(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (can_mode_t) arch_syscall_invoke1(parm0.x, K_SYSCALL_CAN_GET_MODE); + } +#endif + compiler_barrier(); + return z_impl_can_get_mode(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define can_get_mode(dev) ({ can_mode_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_CAN_GET_MODE, can_get_mode, dev); syscall__retval = can_get_mode(dev); sys_port_trace_syscall_exit(K_SYSCALL_CAN_GET_MODE, can_get_mode, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_can_set_bitrate(const struct device * dev, uint32_t bitrate); + +__pinned_func +static inline int can_set_bitrate(const struct device * dev, uint32_t bitrate) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = bitrate }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_CAN_SET_BITRATE); + } +#endif + compiler_barrier(); + return z_impl_can_set_bitrate(dev, bitrate); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define can_set_bitrate(dev, bitrate) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_CAN_SET_BITRATE, can_set_bitrate, dev, bitrate); syscall__retval = can_set_bitrate(dev, bitrate); sys_port_trace_syscall_exit(K_SYSCALL_CAN_SET_BITRATE, can_set_bitrate, dev, bitrate, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_can_send(const struct device * dev, const struct can_frame * frame, k_timeout_t timeout, can_tx_callback_t callback, void * user_data); + +__pinned_func +static inline int can_send(const struct device * dev, const struct can_frame * frame, k_timeout_t timeout, can_tx_callback_t callback, void * user_data) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; const struct can_frame * val; } parm1 = { .val = frame }; + union { struct { uintptr_t lo, hi; } split; k_timeout_t val; } parm2 = { .val = timeout }; + union { uintptr_t x; can_tx_callback_t val; } parm3 = { .val = callback }; + union { uintptr_t x; void * val; } parm4 = { .val = user_data }; + return (int) arch_syscall_invoke6(parm0.x, parm1.x, parm2.split.lo, parm2.split.hi, parm3.x, parm4.x, K_SYSCALL_CAN_SEND); + } +#endif + compiler_barrier(); + return z_impl_can_send(dev, frame, timeout, callback, user_data); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define can_send(dev, frame, timeout, callback, user_data) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_CAN_SEND, can_send, dev, frame, timeout, callback, user_data); syscall__retval = can_send(dev, frame, timeout, callback, user_data); sys_port_trace_syscall_exit(K_SYSCALL_CAN_SEND, can_send, dev, frame, timeout, callback, user_data, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_can_add_rx_filter_msgq(const struct device * dev, struct k_msgq * msgq, const struct can_filter * filter); + +__pinned_func +static inline int can_add_rx_filter_msgq(const struct device * dev, struct k_msgq * msgq, const struct can_filter * filter) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct k_msgq * val; } parm1 = { .val = msgq }; + union { uintptr_t x; const struct can_filter * val; } parm2 = { .val = filter }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_CAN_ADD_RX_FILTER_MSGQ); + } +#endif + compiler_barrier(); + return z_impl_can_add_rx_filter_msgq(dev, msgq, filter); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define can_add_rx_filter_msgq(dev, msgq, filter) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_CAN_ADD_RX_FILTER_MSGQ, can_add_rx_filter_msgq, dev, msgq, filter); syscall__retval = can_add_rx_filter_msgq(dev, msgq, filter); sys_port_trace_syscall_exit(K_SYSCALL_CAN_ADD_RX_FILTER_MSGQ, can_add_rx_filter_msgq, dev, msgq, filter, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern void z_impl_can_remove_rx_filter(const struct device * dev, int filter_id); + +__pinned_func +static inline void can_remove_rx_filter(const struct device * dev, int filter_id) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; int val; } parm1 = { .val = filter_id }; + (void) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_CAN_REMOVE_RX_FILTER); + return; + } +#endif + compiler_barrier(); + z_impl_can_remove_rx_filter(dev, filter_id); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define can_remove_rx_filter(dev, filter_id) do { sys_port_trace_syscall_enter(K_SYSCALL_CAN_REMOVE_RX_FILTER, can_remove_rx_filter, dev, filter_id); can_remove_rx_filter(dev, filter_id); sys_port_trace_syscall_exit(K_SYSCALL_CAN_REMOVE_RX_FILTER, can_remove_rx_filter, dev, filter_id); } while(false) +#endif +#endif + + +extern int z_impl_can_get_max_filters(const struct device * dev, bool ide); + +__pinned_func +static inline int can_get_max_filters(const struct device * dev, bool ide) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; bool val; } parm1 = { .val = ide }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_CAN_GET_MAX_FILTERS); + } +#endif + compiler_barrier(); + return z_impl_can_get_max_filters(dev, ide); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define can_get_max_filters(dev, ide) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_CAN_GET_MAX_FILTERS, can_get_max_filters, dev, ide); syscall__retval = can_get_max_filters(dev, ide); sys_port_trace_syscall_exit(K_SYSCALL_CAN_GET_MAX_FILTERS, can_get_max_filters, dev, ide, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_can_get_state(const struct device * dev, enum can_state * state, struct can_bus_err_cnt * err_cnt); + +__pinned_func +static inline int can_get_state(const struct device * dev, enum can_state * state, struct can_bus_err_cnt * err_cnt) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; enum can_state * val; } parm1 = { .val = state }; + union { uintptr_t x; struct can_bus_err_cnt * val; } parm2 = { .val = err_cnt }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_CAN_GET_STATE); + } +#endif + compiler_barrier(); + return z_impl_can_get_state(dev, state, err_cnt); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define can_get_state(dev, state, err_cnt) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_CAN_GET_STATE, can_get_state, dev, state, err_cnt); syscall__retval = can_get_state(dev, state, err_cnt); sys_port_trace_syscall_exit(K_SYSCALL_CAN_GET_STATE, can_get_state, dev, state, err_cnt, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_can_recover(const struct device * dev, k_timeout_t timeout); + +__pinned_func +static inline int can_recover(const struct device * dev, k_timeout_t timeout) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { struct { uintptr_t lo, hi; } split; k_timeout_t val; } parm1 = { .val = timeout }; + return (int) arch_syscall_invoke3(parm0.x, parm1.split.lo, parm1.split.hi, K_SYSCALL_CAN_RECOVER); + } +#endif + compiler_barrier(); + return z_impl_can_recover(dev, timeout); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define can_recover(dev, timeout) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_CAN_RECOVER, can_recover, dev, timeout); syscall__retval = can_recover(dev, timeout); sys_port_trace_syscall_exit(K_SYSCALL_CAN_RECOVER, can_recover, dev, timeout, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern uint32_t z_impl_can_stats_get_bit_errors(const struct device * dev); + +__pinned_func +static inline uint32_t can_stats_get_bit_errors(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (uint32_t) arch_syscall_invoke1(parm0.x, K_SYSCALL_CAN_STATS_GET_BIT_ERRORS); + } +#endif + compiler_barrier(); + return z_impl_can_stats_get_bit_errors(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define can_stats_get_bit_errors(dev) ({ uint32_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_CAN_STATS_GET_BIT_ERRORS, can_stats_get_bit_errors, dev); syscall__retval = can_stats_get_bit_errors(dev); sys_port_trace_syscall_exit(K_SYSCALL_CAN_STATS_GET_BIT_ERRORS, can_stats_get_bit_errors, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern uint32_t z_impl_can_stats_get_bit0_errors(const struct device * dev); + +__pinned_func +static inline uint32_t can_stats_get_bit0_errors(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (uint32_t) arch_syscall_invoke1(parm0.x, K_SYSCALL_CAN_STATS_GET_BIT0_ERRORS); + } +#endif + compiler_barrier(); + return z_impl_can_stats_get_bit0_errors(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define can_stats_get_bit0_errors(dev) ({ uint32_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_CAN_STATS_GET_BIT0_ERRORS, can_stats_get_bit0_errors, dev); syscall__retval = can_stats_get_bit0_errors(dev); sys_port_trace_syscall_exit(K_SYSCALL_CAN_STATS_GET_BIT0_ERRORS, can_stats_get_bit0_errors, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern uint32_t z_impl_can_stats_get_bit1_errors(const struct device * dev); + +__pinned_func +static inline uint32_t can_stats_get_bit1_errors(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (uint32_t) arch_syscall_invoke1(parm0.x, K_SYSCALL_CAN_STATS_GET_BIT1_ERRORS); + } +#endif + compiler_barrier(); + return z_impl_can_stats_get_bit1_errors(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define can_stats_get_bit1_errors(dev) ({ uint32_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_CAN_STATS_GET_BIT1_ERRORS, can_stats_get_bit1_errors, dev); syscall__retval = can_stats_get_bit1_errors(dev); sys_port_trace_syscall_exit(K_SYSCALL_CAN_STATS_GET_BIT1_ERRORS, can_stats_get_bit1_errors, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern uint32_t z_impl_can_stats_get_stuff_errors(const struct device * dev); + +__pinned_func +static inline uint32_t can_stats_get_stuff_errors(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (uint32_t) arch_syscall_invoke1(parm0.x, K_SYSCALL_CAN_STATS_GET_STUFF_ERRORS); + } +#endif + compiler_barrier(); + return z_impl_can_stats_get_stuff_errors(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define can_stats_get_stuff_errors(dev) ({ uint32_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_CAN_STATS_GET_STUFF_ERRORS, can_stats_get_stuff_errors, dev); syscall__retval = can_stats_get_stuff_errors(dev); sys_port_trace_syscall_exit(K_SYSCALL_CAN_STATS_GET_STUFF_ERRORS, can_stats_get_stuff_errors, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern uint32_t z_impl_can_stats_get_crc_errors(const struct device * dev); + +__pinned_func +static inline uint32_t can_stats_get_crc_errors(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (uint32_t) arch_syscall_invoke1(parm0.x, K_SYSCALL_CAN_STATS_GET_CRC_ERRORS); + } +#endif + compiler_barrier(); + return z_impl_can_stats_get_crc_errors(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define can_stats_get_crc_errors(dev) ({ uint32_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_CAN_STATS_GET_CRC_ERRORS, can_stats_get_crc_errors, dev); syscall__retval = can_stats_get_crc_errors(dev); sys_port_trace_syscall_exit(K_SYSCALL_CAN_STATS_GET_CRC_ERRORS, can_stats_get_crc_errors, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern uint32_t z_impl_can_stats_get_form_errors(const struct device * dev); + +__pinned_func +static inline uint32_t can_stats_get_form_errors(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (uint32_t) arch_syscall_invoke1(parm0.x, K_SYSCALL_CAN_STATS_GET_FORM_ERRORS); + } +#endif + compiler_barrier(); + return z_impl_can_stats_get_form_errors(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define can_stats_get_form_errors(dev) ({ uint32_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_CAN_STATS_GET_FORM_ERRORS, can_stats_get_form_errors, dev); syscall__retval = can_stats_get_form_errors(dev); sys_port_trace_syscall_exit(K_SYSCALL_CAN_STATS_GET_FORM_ERRORS, can_stats_get_form_errors, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern uint32_t z_impl_can_stats_get_ack_errors(const struct device * dev); + +__pinned_func +static inline uint32_t can_stats_get_ack_errors(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (uint32_t) arch_syscall_invoke1(parm0.x, K_SYSCALL_CAN_STATS_GET_ACK_ERRORS); + } +#endif + compiler_barrier(); + return z_impl_can_stats_get_ack_errors(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define can_stats_get_ack_errors(dev) ({ uint32_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_CAN_STATS_GET_ACK_ERRORS, can_stats_get_ack_errors, dev); syscall__retval = can_stats_get_ack_errors(dev); sys_port_trace_syscall_exit(K_SYSCALL_CAN_STATS_GET_ACK_ERRORS, can_stats_get_ack_errors, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern uint32_t z_impl_can_stats_get_rx_overruns(const struct device * dev); + +__pinned_func +static inline uint32_t can_stats_get_rx_overruns(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (uint32_t) arch_syscall_invoke1(parm0.x, K_SYSCALL_CAN_STATS_GET_RX_OVERRUNS); + } +#endif + compiler_barrier(); + return z_impl_can_stats_get_rx_overruns(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define can_stats_get_rx_overruns(dev) ({ uint32_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_CAN_STATS_GET_RX_OVERRUNS, can_stats_get_rx_overruns, dev); syscall__retval = can_stats_get_rx_overruns(dev); sys_port_trace_syscall_exit(K_SYSCALL_CAN_STATS_GET_RX_OVERRUNS, can_stats_get_rx_overruns, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/charger.h b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/charger.h new file mode 100644 index 0000000..e78ba1d --- /dev/null +++ b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/charger.h @@ -0,0 +1,102 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_CHARGER_H +#define Z_INCLUDE_SYSCALLS_CHARGER_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_charger_get_prop(const struct device * dev, const charger_prop_t prop, union charger_propval * val); + +__pinned_func +static inline int charger_get_prop(const struct device * dev, const charger_prop_t prop, union charger_propval * val) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; const charger_prop_t val; } parm1 = { .val = prop }; + union { uintptr_t x; union charger_propval * val; } parm2 = { .val = val }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_CHARGER_GET_PROP); + } +#endif + compiler_barrier(); + return z_impl_charger_get_prop(dev, prop, val); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define charger_get_prop(dev, prop, val) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_CHARGER_GET_PROP, charger_get_prop, dev, prop, val); syscall__retval = charger_get_prop(dev, prop, val); sys_port_trace_syscall_exit(K_SYSCALL_CHARGER_GET_PROP, charger_get_prop, dev, prop, val, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_charger_set_prop(const struct device * dev, const charger_prop_t prop, const union charger_propval * val); + +__pinned_func +static inline int charger_set_prop(const struct device * dev, const charger_prop_t prop, const union charger_propval * val) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; const charger_prop_t val; } parm1 = { .val = prop }; + union { uintptr_t x; const union charger_propval * val; } parm2 = { .val = val }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_CHARGER_SET_PROP); + } +#endif + compiler_barrier(); + return z_impl_charger_set_prop(dev, prop, val); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define charger_set_prop(dev, prop, val) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_CHARGER_SET_PROP, charger_set_prop, dev, prop, val); syscall__retval = charger_set_prop(dev, prop, val); sys_port_trace_syscall_exit(K_SYSCALL_CHARGER_SET_PROP, charger_set_prop, dev, prop, val, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_charger_charge_enable(const struct device * dev, const bool enable); + +__pinned_func +static inline int charger_charge_enable(const struct device * dev, const bool enable) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; const bool val; } parm1 = { .val = enable }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_CHARGER_CHARGE_ENABLE); + } +#endif + compiler_barrier(); + return z_impl_charger_charge_enable(dev, enable); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define charger_charge_enable(dev, enable) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_CHARGER_CHARGE_ENABLE, charger_charge_enable, dev, enable); syscall__retval = charger_charge_enable(dev, enable); sys_port_trace_syscall_exit(K_SYSCALL_CHARGER_CHARGE_ENABLE, charger_charge_enable, dev, enable, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/comparator.h b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/comparator.h new file mode 100644 index 0000000..dfae6e5 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/comparator.h @@ -0,0 +1,98 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_COMPARATOR_H +#define Z_INCLUDE_SYSCALLS_COMPARATOR_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_comparator_get_output(const struct device * dev); + +__pinned_func +static inline int comparator_get_output(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_COMPARATOR_GET_OUTPUT); + } +#endif + compiler_barrier(); + return z_impl_comparator_get_output(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define comparator_get_output(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_COMPARATOR_GET_OUTPUT, comparator_get_output, dev); syscall__retval = comparator_get_output(dev); sys_port_trace_syscall_exit(K_SYSCALL_COMPARATOR_GET_OUTPUT, comparator_get_output, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_comparator_set_trigger(const struct device * dev, enum comparator_trigger trigger); + +__pinned_func +static inline int comparator_set_trigger(const struct device * dev, enum comparator_trigger trigger) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; enum comparator_trigger val; } parm1 = { .val = trigger }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_COMPARATOR_SET_TRIGGER); + } +#endif + compiler_barrier(); + return z_impl_comparator_set_trigger(dev, trigger); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define comparator_set_trigger(dev, trigger) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_COMPARATOR_SET_TRIGGER, comparator_set_trigger, dev, trigger); syscall__retval = comparator_set_trigger(dev, trigger); sys_port_trace_syscall_exit(K_SYSCALL_COMPARATOR_SET_TRIGGER, comparator_set_trigger, dev, trigger, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_comparator_trigger_is_pending(const struct device * dev); + +__pinned_func +static inline int comparator_trigger_is_pending(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_COMPARATOR_TRIGGER_IS_PENDING); + } +#endif + compiler_barrier(); + return z_impl_comparator_trigger_is_pending(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define comparator_trigger_is_pending(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_COMPARATOR_TRIGGER_IS_PENDING, comparator_trigger_is_pending, dev); syscall__retval = comparator_trigger_is_pending(dev); sys_port_trace_syscall_exit(K_SYSCALL_COMPARATOR_TRIGGER_IS_PENDING, comparator_trigger_is_pending, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/counter.h b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/counter.h new file mode 100644 index 0000000..b674d17 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/counter.h @@ -0,0 +1,432 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_COUNTER_H +#define Z_INCLUDE_SYSCALLS_COUNTER_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern bool z_impl_counter_is_counting_up(const struct device * dev); + +__pinned_func +static inline bool counter_is_counting_up(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (bool) arch_syscall_invoke1(parm0.x, K_SYSCALL_COUNTER_IS_COUNTING_UP); + } +#endif + compiler_barrier(); + return z_impl_counter_is_counting_up(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define counter_is_counting_up(dev) ({ bool syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_COUNTER_IS_COUNTING_UP, counter_is_counting_up, dev); syscall__retval = counter_is_counting_up(dev); sys_port_trace_syscall_exit(K_SYSCALL_COUNTER_IS_COUNTING_UP, counter_is_counting_up, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern uint8_t z_impl_counter_get_num_of_channels(const struct device * dev); + +__pinned_func +static inline uint8_t counter_get_num_of_channels(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (uint8_t) arch_syscall_invoke1(parm0.x, K_SYSCALL_COUNTER_GET_NUM_OF_CHANNELS); + } +#endif + compiler_barrier(); + return z_impl_counter_get_num_of_channels(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define counter_get_num_of_channels(dev) ({ uint8_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_COUNTER_GET_NUM_OF_CHANNELS, counter_get_num_of_channels, dev); syscall__retval = counter_get_num_of_channels(dev); sys_port_trace_syscall_exit(K_SYSCALL_COUNTER_GET_NUM_OF_CHANNELS, counter_get_num_of_channels, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern uint32_t z_impl_counter_get_frequency(const struct device * dev); + +__pinned_func +static inline uint32_t counter_get_frequency(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (uint32_t) arch_syscall_invoke1(parm0.x, K_SYSCALL_COUNTER_GET_FREQUENCY); + } +#endif + compiler_barrier(); + return z_impl_counter_get_frequency(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define counter_get_frequency(dev) ({ uint32_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_COUNTER_GET_FREQUENCY, counter_get_frequency, dev); syscall__retval = counter_get_frequency(dev); sys_port_trace_syscall_exit(K_SYSCALL_COUNTER_GET_FREQUENCY, counter_get_frequency, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern uint32_t z_impl_counter_us_to_ticks(const struct device * dev, uint64_t us); + +__pinned_func +static inline uint32_t counter_us_to_ticks(const struct device * dev, uint64_t us) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { struct { uintptr_t lo, hi; } split; uint64_t val; } parm1 = { .val = us }; + return (uint32_t) arch_syscall_invoke3(parm0.x, parm1.split.lo, parm1.split.hi, K_SYSCALL_COUNTER_US_TO_TICKS); + } +#endif + compiler_barrier(); + return z_impl_counter_us_to_ticks(dev, us); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define counter_us_to_ticks(dev, us) ({ uint32_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_COUNTER_US_TO_TICKS, counter_us_to_ticks, dev, us); syscall__retval = counter_us_to_ticks(dev, us); sys_port_trace_syscall_exit(K_SYSCALL_COUNTER_US_TO_TICKS, counter_us_to_ticks, dev, us, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern uint64_t z_impl_counter_ticks_to_us(const struct device * dev, uint32_t ticks); + +__pinned_func +static inline uint64_t counter_ticks_to_us(const struct device * dev, uint32_t ticks) +{ +#ifdef CONFIG_USERSPACE + uint64_t ret64; + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = ticks }; + (void) arch_syscall_invoke3(parm0.x, parm1.x, (uintptr_t)&ret64, K_SYSCALL_COUNTER_TICKS_TO_US); + return (uint64_t) ret64; + } +#endif + compiler_barrier(); + return z_impl_counter_ticks_to_us(dev, ticks); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define counter_ticks_to_us(dev, ticks) ({ uint64_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_COUNTER_TICKS_TO_US, counter_ticks_to_us, dev, ticks); syscall__retval = counter_ticks_to_us(dev, ticks); sys_port_trace_syscall_exit(K_SYSCALL_COUNTER_TICKS_TO_US, counter_ticks_to_us, dev, ticks, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern uint32_t z_impl_counter_get_max_top_value(const struct device * dev); + +__pinned_func +static inline uint32_t counter_get_max_top_value(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (uint32_t) arch_syscall_invoke1(parm0.x, K_SYSCALL_COUNTER_GET_MAX_TOP_VALUE); + } +#endif + compiler_barrier(); + return z_impl_counter_get_max_top_value(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define counter_get_max_top_value(dev) ({ uint32_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_COUNTER_GET_MAX_TOP_VALUE, counter_get_max_top_value, dev); syscall__retval = counter_get_max_top_value(dev); sys_port_trace_syscall_exit(K_SYSCALL_COUNTER_GET_MAX_TOP_VALUE, counter_get_max_top_value, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_counter_start(const struct device * dev); + +__pinned_func +static inline int counter_start(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_COUNTER_START); + } +#endif + compiler_barrier(); + return z_impl_counter_start(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define counter_start(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_COUNTER_START, counter_start, dev); syscall__retval = counter_start(dev); sys_port_trace_syscall_exit(K_SYSCALL_COUNTER_START, counter_start, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_counter_stop(const struct device * dev); + +__pinned_func +static inline int counter_stop(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_COUNTER_STOP); + } +#endif + compiler_barrier(); + return z_impl_counter_stop(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define counter_stop(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_COUNTER_STOP, counter_stop, dev); syscall__retval = counter_stop(dev); sys_port_trace_syscall_exit(K_SYSCALL_COUNTER_STOP, counter_stop, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_counter_get_value(const struct device * dev, uint32_t * ticks); + +__pinned_func +static inline int counter_get_value(const struct device * dev, uint32_t * ticks) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t * val; } parm1 = { .val = ticks }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_COUNTER_GET_VALUE); + } +#endif + compiler_barrier(); + return z_impl_counter_get_value(dev, ticks); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define counter_get_value(dev, ticks) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_COUNTER_GET_VALUE, counter_get_value, dev, ticks); syscall__retval = counter_get_value(dev, ticks); sys_port_trace_syscall_exit(K_SYSCALL_COUNTER_GET_VALUE, counter_get_value, dev, ticks, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_counter_get_value_64(const struct device * dev, uint64_t * ticks); + +__pinned_func +static inline int counter_get_value_64(const struct device * dev, uint64_t * ticks) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint64_t * val; } parm1 = { .val = ticks }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_COUNTER_GET_VALUE_64); + } +#endif + compiler_barrier(); + return z_impl_counter_get_value_64(dev, ticks); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define counter_get_value_64(dev, ticks) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_COUNTER_GET_VALUE_64, counter_get_value_64, dev, ticks); syscall__retval = counter_get_value_64(dev, ticks); sys_port_trace_syscall_exit(K_SYSCALL_COUNTER_GET_VALUE_64, counter_get_value_64, dev, ticks, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_counter_set_channel_alarm(const struct device * dev, uint8_t chan_id, const struct counter_alarm_cfg * alarm_cfg); + +__pinned_func +static inline int counter_set_channel_alarm(const struct device * dev, uint8_t chan_id, const struct counter_alarm_cfg * alarm_cfg) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint8_t val; } parm1 = { .val = chan_id }; + union { uintptr_t x; const struct counter_alarm_cfg * val; } parm2 = { .val = alarm_cfg }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_COUNTER_SET_CHANNEL_ALARM); + } +#endif + compiler_barrier(); + return z_impl_counter_set_channel_alarm(dev, chan_id, alarm_cfg); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define counter_set_channel_alarm(dev, chan_id, alarm_cfg) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_COUNTER_SET_CHANNEL_ALARM, counter_set_channel_alarm, dev, chan_id, alarm_cfg); syscall__retval = counter_set_channel_alarm(dev, chan_id, alarm_cfg); sys_port_trace_syscall_exit(K_SYSCALL_COUNTER_SET_CHANNEL_ALARM, counter_set_channel_alarm, dev, chan_id, alarm_cfg, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_counter_cancel_channel_alarm(const struct device * dev, uint8_t chan_id); + +__pinned_func +static inline int counter_cancel_channel_alarm(const struct device * dev, uint8_t chan_id) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint8_t val; } parm1 = { .val = chan_id }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_COUNTER_CANCEL_CHANNEL_ALARM); + } +#endif + compiler_barrier(); + return z_impl_counter_cancel_channel_alarm(dev, chan_id); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define counter_cancel_channel_alarm(dev, chan_id) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_COUNTER_CANCEL_CHANNEL_ALARM, counter_cancel_channel_alarm, dev, chan_id); syscall__retval = counter_cancel_channel_alarm(dev, chan_id); sys_port_trace_syscall_exit(K_SYSCALL_COUNTER_CANCEL_CHANNEL_ALARM, counter_cancel_channel_alarm, dev, chan_id, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_counter_set_top_value(const struct device * dev, const struct counter_top_cfg * cfg); + +__pinned_func +static inline int counter_set_top_value(const struct device * dev, const struct counter_top_cfg * cfg) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; const struct counter_top_cfg * val; } parm1 = { .val = cfg }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_COUNTER_SET_TOP_VALUE); + } +#endif + compiler_barrier(); + return z_impl_counter_set_top_value(dev, cfg); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define counter_set_top_value(dev, cfg) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_COUNTER_SET_TOP_VALUE, counter_set_top_value, dev, cfg); syscall__retval = counter_set_top_value(dev, cfg); sys_port_trace_syscall_exit(K_SYSCALL_COUNTER_SET_TOP_VALUE, counter_set_top_value, dev, cfg, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_counter_get_pending_int(const struct device * dev); + +__pinned_func +static inline int counter_get_pending_int(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_COUNTER_GET_PENDING_INT); + } +#endif + compiler_barrier(); + return z_impl_counter_get_pending_int(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define counter_get_pending_int(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_COUNTER_GET_PENDING_INT, counter_get_pending_int, dev); syscall__retval = counter_get_pending_int(dev); sys_port_trace_syscall_exit(K_SYSCALL_COUNTER_GET_PENDING_INT, counter_get_pending_int, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern uint32_t z_impl_counter_get_top_value(const struct device * dev); + +__pinned_func +static inline uint32_t counter_get_top_value(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (uint32_t) arch_syscall_invoke1(parm0.x, K_SYSCALL_COUNTER_GET_TOP_VALUE); + } +#endif + compiler_barrier(); + return z_impl_counter_get_top_value(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define counter_get_top_value(dev) ({ uint32_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_COUNTER_GET_TOP_VALUE, counter_get_top_value, dev); syscall__retval = counter_get_top_value(dev); sys_port_trace_syscall_exit(K_SYSCALL_COUNTER_GET_TOP_VALUE, counter_get_top_value, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_counter_set_guard_period(const struct device * dev, uint32_t ticks, uint32_t flags); + +__pinned_func +static inline int counter_set_guard_period(const struct device * dev, uint32_t ticks, uint32_t flags) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = ticks }; + union { uintptr_t x; uint32_t val; } parm2 = { .val = flags }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_COUNTER_SET_GUARD_PERIOD); + } +#endif + compiler_barrier(); + return z_impl_counter_set_guard_period(dev, ticks, flags); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define counter_set_guard_period(dev, ticks, flags) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_COUNTER_SET_GUARD_PERIOD, counter_set_guard_period, dev, ticks, flags); syscall__retval = counter_set_guard_period(dev, ticks, flags); sys_port_trace_syscall_exit(K_SYSCALL_COUNTER_SET_GUARD_PERIOD, counter_set_guard_period, dev, ticks, flags, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern uint32_t z_impl_counter_get_guard_period(const struct device * dev, uint32_t flags); + +__pinned_func +static inline uint32_t counter_get_guard_period(const struct device * dev, uint32_t flags) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = flags }; + return (uint32_t) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_COUNTER_GET_GUARD_PERIOD); + } +#endif + compiler_barrier(); + return z_impl_counter_get_guard_period(dev, flags); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define counter_get_guard_period(dev, flags) ({ uint32_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_COUNTER_GET_GUARD_PERIOD, counter_get_guard_period, dev, flags); syscall__retval = counter_get_guard_period(dev, flags); sys_port_trace_syscall_exit(K_SYSCALL_COUNTER_GET_GUARD_PERIOD, counter_get_guard_period, dev, flags, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/dac.h b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/dac.h new file mode 100644 index 0000000..4e61714 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/dac.h @@ -0,0 +1,77 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_DAC_H +#define Z_INCLUDE_SYSCALLS_DAC_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_dac_channel_setup(const struct device * dev, const struct dac_channel_cfg * channel_cfg); + +__pinned_func +static inline int dac_channel_setup(const struct device * dev, const struct dac_channel_cfg * channel_cfg) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; const struct dac_channel_cfg * val; } parm1 = { .val = channel_cfg }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_DAC_CHANNEL_SETUP); + } +#endif + compiler_barrier(); + return z_impl_dac_channel_setup(dev, channel_cfg); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define dac_channel_setup(dev, channel_cfg) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_DAC_CHANNEL_SETUP, dac_channel_setup, dev, channel_cfg); syscall__retval = dac_channel_setup(dev, channel_cfg); sys_port_trace_syscall_exit(K_SYSCALL_DAC_CHANNEL_SETUP, dac_channel_setup, dev, channel_cfg, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_dac_write_value(const struct device * dev, uint8_t channel, uint32_t value); + +__pinned_func +static inline int dac_write_value(const struct device * dev, uint8_t channel, uint32_t value) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint8_t val; } parm1 = { .val = channel }; + union { uintptr_t x; uint32_t val; } parm2 = { .val = value }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_DAC_WRITE_VALUE); + } +#endif + compiler_barrier(); + return z_impl_dac_write_value(dev, channel, value); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define dac_write_value(dev, channel, value) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_DAC_WRITE_VALUE, dac_write_value, dev, channel, value); syscall__retval = dac_write_value(dev, channel, value); sys_port_trace_syscall_exit(K_SYSCALL_DAC_WRITE_VALUE, dac_write_value, dev, channel, value, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/demand_paging.h b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/demand_paging.h new file mode 100644 index 0000000..7887736 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/demand_paging.h @@ -0,0 +1,149 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_DEMAND_PAGING_H +#define Z_INCLUDE_SYSCALLS_DEMAND_PAGING_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern void z_impl_k_mem_paging_stats_get(struct k_mem_paging_stats_t * stats); + +__pinned_func +static inline void k_mem_paging_stats_get(struct k_mem_paging_stats_t * stats) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_mem_paging_stats_t * val; } parm0 = { .val = stats }; + (void) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_MEM_PAGING_STATS_GET); + return; + } +#endif + compiler_barrier(); + z_impl_k_mem_paging_stats_get(stats); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define k_mem_paging_stats_get(stats) do { sys_port_trace_syscall_enter(K_SYSCALL_K_MEM_PAGING_STATS_GET, k_mem_paging_stats_get, stats); k_mem_paging_stats_get(stats); sys_port_trace_syscall_exit(K_SYSCALL_K_MEM_PAGING_STATS_GET, k_mem_paging_stats_get, stats); } while(false) +#endif +#endif + + +extern void z_impl_k_mem_paging_thread_stats_get(struct k_thread * thread, struct k_mem_paging_stats_t * stats); + +__pinned_func +static inline void k_mem_paging_thread_stats_get(struct k_thread * thread, struct k_mem_paging_stats_t * stats) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_thread * val; } parm0 = { .val = thread }; + union { uintptr_t x; struct k_mem_paging_stats_t * val; } parm1 = { .val = stats }; + (void) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_K_MEM_PAGING_THREAD_STATS_GET); + return; + } +#endif + compiler_barrier(); + z_impl_k_mem_paging_thread_stats_get(thread, stats); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define k_mem_paging_thread_stats_get(thread, stats) do { sys_port_trace_syscall_enter(K_SYSCALL_K_MEM_PAGING_THREAD_STATS_GET, k_mem_paging_thread_stats_get, thread, stats); k_mem_paging_thread_stats_get(thread, stats); sys_port_trace_syscall_exit(K_SYSCALL_K_MEM_PAGING_THREAD_STATS_GET, k_mem_paging_thread_stats_get, thread, stats); } while(false) +#endif +#endif + + +extern void z_impl_k_mem_paging_histogram_eviction_get(struct k_mem_paging_histogram_t * hist); + +__pinned_func +static inline void k_mem_paging_histogram_eviction_get(struct k_mem_paging_histogram_t * hist) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_mem_paging_histogram_t * val; } parm0 = { .val = hist }; + (void) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_MEM_PAGING_HISTOGRAM_EVICTION_GET); + return; + } +#endif + compiler_barrier(); + z_impl_k_mem_paging_histogram_eviction_get(hist); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define k_mem_paging_histogram_eviction_get(hist) do { sys_port_trace_syscall_enter(K_SYSCALL_K_MEM_PAGING_HISTOGRAM_EVICTION_GET, k_mem_paging_histogram_eviction_get, hist); k_mem_paging_histogram_eviction_get(hist); sys_port_trace_syscall_exit(K_SYSCALL_K_MEM_PAGING_HISTOGRAM_EVICTION_GET, k_mem_paging_histogram_eviction_get, hist); } while(false) +#endif +#endif + + +extern void z_impl_k_mem_paging_histogram_backing_store_page_in_get(struct k_mem_paging_histogram_t * hist); + +__pinned_func +static inline void k_mem_paging_histogram_backing_store_page_in_get(struct k_mem_paging_histogram_t * hist) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_mem_paging_histogram_t * val; } parm0 = { .val = hist }; + (void) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_MEM_PAGING_HISTOGRAM_BACKING_STORE_PAGE_IN_GET); + return; + } +#endif + compiler_barrier(); + z_impl_k_mem_paging_histogram_backing_store_page_in_get(hist); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define k_mem_paging_histogram_backing_store_page_in_get(hist) do { sys_port_trace_syscall_enter(K_SYSCALL_K_MEM_PAGING_HISTOGRAM_BACKING_STORE_PAGE_IN_GET, k_mem_paging_histogram_backing_store_page_in_get, hist); k_mem_paging_histogram_backing_store_page_in_get(hist); sys_port_trace_syscall_exit(K_SYSCALL_K_MEM_PAGING_HISTOGRAM_BACKING_STORE_PAGE_IN_GET, k_mem_paging_histogram_backing_store_page_in_get, hist); } while(false) +#endif +#endif + + +extern void z_impl_k_mem_paging_histogram_backing_store_page_out_get(struct k_mem_paging_histogram_t * hist); + +__pinned_func +static inline void k_mem_paging_histogram_backing_store_page_out_get(struct k_mem_paging_histogram_t * hist) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_mem_paging_histogram_t * val; } parm0 = { .val = hist }; + (void) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_MEM_PAGING_HISTOGRAM_BACKING_STORE_PAGE_OUT_GET); + return; + } +#endif + compiler_barrier(); + z_impl_k_mem_paging_histogram_backing_store_page_out_get(hist); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define k_mem_paging_histogram_backing_store_page_out_get(hist) do { sys_port_trace_syscall_enter(K_SYSCALL_K_MEM_PAGING_HISTOGRAM_BACKING_STORE_PAGE_OUT_GET, k_mem_paging_histogram_backing_store_page_out_get, hist); k_mem_paging_histogram_backing_store_page_out_get(hist); sys_port_trace_syscall_exit(K_SYSCALL_K_MEM_PAGING_HISTOGRAM_BACKING_STORE_PAGE_OUT_GET, k_mem_paging_histogram_backing_store_page_out_get, hist); } while(false) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/device.h b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/device.h new file mode 100644 index 0000000..a4e7f4e --- /dev/null +++ b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/device.h @@ -0,0 +1,120 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_DEVICE_H +#define Z_INCLUDE_SYSCALLS_DEVICE_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern const struct device * z_impl_device_get_binding(const char * name); + +__pinned_func +static inline const struct device * device_get_binding(const char * name) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const char * val; } parm0 = { .val = name }; + return (const struct device *) arch_syscall_invoke1(parm0.x, K_SYSCALL_DEVICE_GET_BINDING); + } +#endif + compiler_barrier(); + return z_impl_device_get_binding(name); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define device_get_binding(name) ({ const struct device * syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_DEVICE_GET_BINDING, device_get_binding, name); syscall__retval = device_get_binding(name); sys_port_trace_syscall_exit(K_SYSCALL_DEVICE_GET_BINDING, device_get_binding, name, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern bool z_impl_device_is_ready(const struct device * dev); + +__pinned_func +static inline bool device_is_ready(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (bool) arch_syscall_invoke1(parm0.x, K_SYSCALL_DEVICE_IS_READY); + } +#endif + compiler_barrier(); + return z_impl_device_is_ready(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define device_is_ready(dev) ({ bool syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_DEVICE_IS_READY, device_is_ready, dev); syscall__retval = device_is_ready(dev); sys_port_trace_syscall_exit(K_SYSCALL_DEVICE_IS_READY, device_is_ready, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_device_init(const struct device * dev); + +__pinned_func +static inline int device_init(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_DEVICE_INIT); + } +#endif + compiler_barrier(); + return z_impl_device_init(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define device_init(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_DEVICE_INIT, device_init, dev); syscall__retval = device_init(dev); sys_port_trace_syscall_exit(K_SYSCALL_DEVICE_INIT, device_init, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern const struct device * z_impl_device_get_by_dt_nodelabel(const char * nodelabel); + +__pinned_func +static inline const struct device * device_get_by_dt_nodelabel(const char * nodelabel) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const char * val; } parm0 = { .val = nodelabel }; + return (const struct device *) arch_syscall_invoke1(parm0.x, K_SYSCALL_DEVICE_GET_BY_DT_NODELABEL); + } +#endif + compiler_barrier(); + return z_impl_device_get_by_dt_nodelabel(nodelabel); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define device_get_by_dt_nodelabel(nodelabel) ({ const struct device * syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_DEVICE_GET_BY_DT_NODELABEL, device_get_by_dt_nodelabel, nodelabel); syscall__retval = device_get_by_dt_nodelabel(nodelabel); sys_port_trace_syscall_exit(K_SYSCALL_DEVICE_GET_BY_DT_NODELABEL, device_get_by_dt_nodelabel, nodelabel, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/devmux.h b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/devmux.h new file mode 100644 index 0000000..dc5b4a9 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/devmux.h @@ -0,0 +1,75 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_DEVMUX_H +#define Z_INCLUDE_SYSCALLS_DEVMUX_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_devmux_select_get(const struct device * dev); + +__pinned_func +static inline int devmux_select_get(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_DEVMUX_SELECT_GET); + } +#endif + compiler_barrier(); + return z_impl_devmux_select_get(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define devmux_select_get(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_DEVMUX_SELECT_GET, devmux_select_get, dev); syscall__retval = devmux_select_get(dev); sys_port_trace_syscall_exit(K_SYSCALL_DEVMUX_SELECT_GET, devmux_select_get, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_devmux_select_set(struct device * dev, size_t index); + +__pinned_func +static inline int devmux_select_set(struct device * dev, size_t index) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; size_t val; } parm1 = { .val = index }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_DEVMUX_SELECT_SET); + } +#endif + compiler_barrier(); + return z_impl_devmux_select_set(dev, index); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define devmux_select_set(dev, index) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_DEVMUX_SELECT_SET, devmux_select_set, dev, index); syscall__retval = devmux_select_set(dev, index); sys_port_trace_syscall_exit(K_SYSCALL_DEVMUX_SELECT_SET, devmux_select_set, dev, index, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/dma.h b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/dma.h new file mode 100644 index 0000000..0e02ef8 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/dma.h @@ -0,0 +1,198 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_DMA_H +#define Z_INCLUDE_SYSCALLS_DMA_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_dma_start(const struct device * dev, uint32_t channel); + +__pinned_func +static inline int dma_start(const struct device * dev, uint32_t channel) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = channel }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_DMA_START); + } +#endif + compiler_barrier(); + return z_impl_dma_start(dev, channel); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define dma_start(dev, channel) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_DMA_START, dma_start, dev, channel); syscall__retval = dma_start(dev, channel); sys_port_trace_syscall_exit(K_SYSCALL_DMA_START, dma_start, dev, channel, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_dma_stop(const struct device * dev, uint32_t channel); + +__pinned_func +static inline int dma_stop(const struct device * dev, uint32_t channel) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = channel }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_DMA_STOP); + } +#endif + compiler_barrier(); + return z_impl_dma_stop(dev, channel); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define dma_stop(dev, channel) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_DMA_STOP, dma_stop, dev, channel); syscall__retval = dma_stop(dev, channel); sys_port_trace_syscall_exit(K_SYSCALL_DMA_STOP, dma_stop, dev, channel, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_dma_suspend(const struct device * dev, uint32_t channel); + +__pinned_func +static inline int dma_suspend(const struct device * dev, uint32_t channel) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = channel }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_DMA_SUSPEND); + } +#endif + compiler_barrier(); + return z_impl_dma_suspend(dev, channel); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define dma_suspend(dev, channel) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_DMA_SUSPEND, dma_suspend, dev, channel); syscall__retval = dma_suspend(dev, channel); sys_port_trace_syscall_exit(K_SYSCALL_DMA_SUSPEND, dma_suspend, dev, channel, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_dma_resume(const struct device * dev, uint32_t channel); + +__pinned_func +static inline int dma_resume(const struct device * dev, uint32_t channel) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = channel }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_DMA_RESUME); + } +#endif + compiler_barrier(); + return z_impl_dma_resume(dev, channel); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define dma_resume(dev, channel) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_DMA_RESUME, dma_resume, dev, channel); syscall__retval = dma_resume(dev, channel); sys_port_trace_syscall_exit(K_SYSCALL_DMA_RESUME, dma_resume, dev, channel, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_dma_request_channel(const struct device * dev, void * filter_param); + +__pinned_func +static inline int dma_request_channel(const struct device * dev, void * filter_param) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; void * val; } parm1 = { .val = filter_param }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_DMA_REQUEST_CHANNEL); + } +#endif + compiler_barrier(); + return z_impl_dma_request_channel(dev, filter_param); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define dma_request_channel(dev, filter_param) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_DMA_REQUEST_CHANNEL, dma_request_channel, dev, filter_param); syscall__retval = dma_request_channel(dev, filter_param); sys_port_trace_syscall_exit(K_SYSCALL_DMA_REQUEST_CHANNEL, dma_request_channel, dev, filter_param, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern void z_impl_dma_release_channel(const struct device * dev, uint32_t channel); + +__pinned_func +static inline void dma_release_channel(const struct device * dev, uint32_t channel) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = channel }; + (void) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_DMA_RELEASE_CHANNEL); + return; + } +#endif + compiler_barrier(); + z_impl_dma_release_channel(dev, channel); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define dma_release_channel(dev, channel) do { sys_port_trace_syscall_enter(K_SYSCALL_DMA_RELEASE_CHANNEL, dma_release_channel, dev, channel); dma_release_channel(dev, channel); sys_port_trace_syscall_exit(K_SYSCALL_DMA_RELEASE_CHANNEL, dma_release_channel, dev, channel); } while(false) +#endif +#endif + + +extern int z_impl_dma_chan_filter(const struct device * dev, int channel, void * filter_param); + +__pinned_func +static inline int dma_chan_filter(const struct device * dev, int channel, void * filter_param) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; int val; } parm1 = { .val = channel }; + union { uintptr_t x; void * val; } parm2 = { .val = filter_param }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_DMA_CHAN_FILTER); + } +#endif + compiler_barrier(); + return z_impl_dma_chan_filter(dev, channel, filter_param); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define dma_chan_filter(dev, channel, filter_param) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_DMA_CHAN_FILTER, dma_chan_filter, dev, channel, filter_param); syscall__retval = dma_chan_filter(dev, channel, filter_param); sys_port_trace_syscall_exit(K_SYSCALL_DMA_CHAN_FILTER, dma_chan_filter, dev, channel, filter_param, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/eeprom.h b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/eeprom.h new file mode 100644 index 0000000..4034552 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/eeprom.h @@ -0,0 +1,103 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_EEPROM_H +#define Z_INCLUDE_SYSCALLS_EEPROM_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_eeprom_read(const struct device * dev, off_t offset, void * data, size_t len); + +__pinned_func +static inline int eeprom_read(const struct device * dev, off_t offset, void * data, size_t len) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; off_t val; } parm1 = { .val = offset }; + union { uintptr_t x; void * val; } parm2 = { .val = data }; + union { uintptr_t x; size_t val; } parm3 = { .val = len }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_EEPROM_READ); + } +#endif + compiler_barrier(); + return z_impl_eeprom_read(dev, offset, data, len); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define eeprom_read(dev, offset, data, len) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_EEPROM_READ, eeprom_read, dev, offset, data, len); syscall__retval = eeprom_read(dev, offset, data, len); sys_port_trace_syscall_exit(K_SYSCALL_EEPROM_READ, eeprom_read, dev, offset, data, len, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_eeprom_write(const struct device * dev, off_t offset, const void * data, size_t len); + +__pinned_func +static inline int eeprom_write(const struct device * dev, off_t offset, const void * data, size_t len) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; off_t val; } parm1 = { .val = offset }; + union { uintptr_t x; const void * val; } parm2 = { .val = data }; + union { uintptr_t x; size_t val; } parm3 = { .val = len }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_EEPROM_WRITE); + } +#endif + compiler_barrier(); + return z_impl_eeprom_write(dev, offset, data, len); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define eeprom_write(dev, offset, data, len) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_EEPROM_WRITE, eeprom_write, dev, offset, data, len); syscall__retval = eeprom_write(dev, offset, data, len); sys_port_trace_syscall_exit(K_SYSCALL_EEPROM_WRITE, eeprom_write, dev, offset, data, len, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern size_t z_impl_eeprom_get_size(const struct device * dev); + +__pinned_func +static inline size_t eeprom_get_size(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (size_t) arch_syscall_invoke1(parm0.x, K_SYSCALL_EEPROM_GET_SIZE); + } +#endif + compiler_barrier(); + return z_impl_eeprom_get_size(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define eeprom_get_size(dev) ({ size_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_EEPROM_GET_SIZE, eeprom_get_size, dev); syscall__retval = eeprom_get_size(dev); sys_port_trace_syscall_exit(K_SYSCALL_EEPROM_GET_SIZE, eeprom_get_size, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/emul_fuel_gauge.h b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/emul_fuel_gauge.h new file mode 100644 index 0000000..d54cdec --- /dev/null +++ b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/emul_fuel_gauge.h @@ -0,0 +1,77 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_EMUL_FUEL_GAUGE_H +#define Z_INCLUDE_SYSCALLS_EMUL_FUEL_GAUGE_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_emul_fuel_gauge_set_battery_charging(const struct emul * target, uint32_t uV, int uA); + +__pinned_func +static inline int emul_fuel_gauge_set_battery_charging(const struct emul * target, uint32_t uV, int uA) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct emul * val; } parm0 = { .val = target }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = uV }; + union { uintptr_t x; int val; } parm2 = { .val = uA }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_EMUL_FUEL_GAUGE_SET_BATTERY_CHARGING); + } +#endif + compiler_barrier(); + return z_impl_emul_fuel_gauge_set_battery_charging(target, uV, uA); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define emul_fuel_gauge_set_battery_charging(target, uV, uA) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_EMUL_FUEL_GAUGE_SET_BATTERY_CHARGING, emul_fuel_gauge_set_battery_charging, target, uV, uA); syscall__retval = emul_fuel_gauge_set_battery_charging(target, uV, uA); sys_port_trace_syscall_exit(K_SYSCALL_EMUL_FUEL_GAUGE_SET_BATTERY_CHARGING, emul_fuel_gauge_set_battery_charging, target, uV, uA, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_emul_fuel_gauge_is_battery_cutoff(const struct emul * target, bool * cutoff); + +__pinned_func +static inline int emul_fuel_gauge_is_battery_cutoff(const struct emul * target, bool * cutoff) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct emul * val; } parm0 = { .val = target }; + union { uintptr_t x; bool * val; } parm1 = { .val = cutoff }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_EMUL_FUEL_GAUGE_IS_BATTERY_CUTOFF); + } +#endif + compiler_barrier(); + return z_impl_emul_fuel_gauge_is_battery_cutoff(target, cutoff); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define emul_fuel_gauge_is_battery_cutoff(target, cutoff) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_EMUL_FUEL_GAUGE_IS_BATTERY_CUTOFF, emul_fuel_gauge_is_battery_cutoff, target, cutoff); syscall__retval = emul_fuel_gauge_is_battery_cutoff(target, cutoff); sys_port_trace_syscall_exit(K_SYSCALL_EMUL_FUEL_GAUGE_IS_BATTERY_CUTOFF, emul_fuel_gauge_is_battery_cutoff, target, cutoff, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/entropy.h b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/entropy.h new file mode 100644 index 0000000..543cc20 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/entropy.h @@ -0,0 +1,53 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_ENTROPY_H +#define Z_INCLUDE_SYSCALLS_ENTROPY_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_entropy_get_entropy(const struct device * dev, uint8_t * buffer, uint16_t length); + +__pinned_func +static inline int entropy_get_entropy(const struct device * dev, uint8_t * buffer, uint16_t length) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint8_t * val; } parm1 = { .val = buffer }; + union { uintptr_t x; uint16_t val; } parm2 = { .val = length }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_ENTROPY_GET_ENTROPY); + } +#endif + compiler_barrier(); + return z_impl_entropy_get_entropy(dev, buffer, length); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define entropy_get_entropy(dev, buffer, length) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ENTROPY_GET_ENTROPY, entropy_get_entropy, dev, buffer, length); syscall__retval = entropy_get_entropy(dev, buffer, length); sys_port_trace_syscall_exit(K_SYSCALL_ENTROPY_GET_ENTROPY, entropy_get_entropy, dev, buffer, length, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/errno_private.h b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/errno_private.h new file mode 100644 index 0000000..4c4571c --- /dev/null +++ b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/errno_private.h @@ -0,0 +1,43 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_ERRNO_PRIVATE_H +#define Z_INCLUDE_SYSCALLS_ERRNO_PRIVATE_H + + + + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int * z_impl_z_errno(void); + +__pinned_func +static inline int * z_errno(void) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + return (int *) arch_syscall_invoke0(K_SYSCALL_Z_ERRNO); + } +#endif + compiler_barrier(); + return z_impl_z_errno(); +} + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/error.h b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/error.h new file mode 100644 index 0000000..8ae9708 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/error.h @@ -0,0 +1,52 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_ERROR_H +#define Z_INCLUDE_SYSCALLS_ERROR_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern void z_impl_user_fault(unsigned int reason); + +__pinned_func +static inline void user_fault(unsigned int reason) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; unsigned int val; } parm0 = { .val = reason }; + (void) arch_syscall_invoke1(parm0.x, K_SYSCALL_USER_FAULT); + return; + } +#endif + compiler_barrier(); + z_impl_user_fault(reason); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define user_fault(reason) do { sys_port_trace_syscall_enter(K_SYSCALL_USER_FAULT, user_fault, reason); user_fault(reason); sys_port_trace_syscall_exit(K_SYSCALL_USER_FAULT, user_fault, reason); } while(false) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/espi.h b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/espi.h new file mode 100644 index 0000000..b633999 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/espi.h @@ -0,0 +1,344 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_ESPI_H +#define Z_INCLUDE_SYSCALLS_ESPI_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_espi_config(const struct device * dev, struct espi_cfg * cfg); + +__pinned_func +static inline int espi_config(const struct device * dev, struct espi_cfg * cfg) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct espi_cfg * val; } parm1 = { .val = cfg }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_ESPI_CONFIG); + } +#endif + compiler_barrier(); + return z_impl_espi_config(dev, cfg); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define espi_config(dev, cfg) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ESPI_CONFIG, espi_config, dev, cfg); syscall__retval = espi_config(dev, cfg); sys_port_trace_syscall_exit(K_SYSCALL_ESPI_CONFIG, espi_config, dev, cfg, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern bool z_impl_espi_get_channel_status(const struct device * dev, enum espi_channel ch); + +__pinned_func +static inline bool espi_get_channel_status(const struct device * dev, enum espi_channel ch) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; enum espi_channel val; } parm1 = { .val = ch }; + return (bool) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_ESPI_GET_CHANNEL_STATUS); + } +#endif + compiler_barrier(); + return z_impl_espi_get_channel_status(dev, ch); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define espi_get_channel_status(dev, ch) ({ bool syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ESPI_GET_CHANNEL_STATUS, espi_get_channel_status, dev, ch); syscall__retval = espi_get_channel_status(dev, ch); sys_port_trace_syscall_exit(K_SYSCALL_ESPI_GET_CHANNEL_STATUS, espi_get_channel_status, dev, ch, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_espi_read_request(const struct device * dev, struct espi_request_packet * req); + +__pinned_func +static inline int espi_read_request(const struct device * dev, struct espi_request_packet * req) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct espi_request_packet * val; } parm1 = { .val = req }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_ESPI_READ_REQUEST); + } +#endif + compiler_barrier(); + return z_impl_espi_read_request(dev, req); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define espi_read_request(dev, req) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ESPI_READ_REQUEST, espi_read_request, dev, req); syscall__retval = espi_read_request(dev, req); sys_port_trace_syscall_exit(K_SYSCALL_ESPI_READ_REQUEST, espi_read_request, dev, req, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_espi_write_request(const struct device * dev, struct espi_request_packet * req); + +__pinned_func +static inline int espi_write_request(const struct device * dev, struct espi_request_packet * req) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct espi_request_packet * val; } parm1 = { .val = req }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_ESPI_WRITE_REQUEST); + } +#endif + compiler_barrier(); + return z_impl_espi_write_request(dev, req); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define espi_write_request(dev, req) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ESPI_WRITE_REQUEST, espi_write_request, dev, req); syscall__retval = espi_write_request(dev, req); sys_port_trace_syscall_exit(K_SYSCALL_ESPI_WRITE_REQUEST, espi_write_request, dev, req, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_espi_read_lpc_request(const struct device * dev, enum lpc_peripheral_opcode op, uint32_t * data); + +__pinned_func +static inline int espi_read_lpc_request(const struct device * dev, enum lpc_peripheral_opcode op, uint32_t * data) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; enum lpc_peripheral_opcode val; } parm1 = { .val = op }; + union { uintptr_t x; uint32_t * val; } parm2 = { .val = data }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_ESPI_READ_LPC_REQUEST); + } +#endif + compiler_barrier(); + return z_impl_espi_read_lpc_request(dev, op, data); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define espi_read_lpc_request(dev, op, data) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ESPI_READ_LPC_REQUEST, espi_read_lpc_request, dev, op, data); syscall__retval = espi_read_lpc_request(dev, op, data); sys_port_trace_syscall_exit(K_SYSCALL_ESPI_READ_LPC_REQUEST, espi_read_lpc_request, dev, op, data, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_espi_write_lpc_request(const struct device * dev, enum lpc_peripheral_opcode op, uint32_t * data); + +__pinned_func +static inline int espi_write_lpc_request(const struct device * dev, enum lpc_peripheral_opcode op, uint32_t * data) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; enum lpc_peripheral_opcode val; } parm1 = { .val = op }; + union { uintptr_t x; uint32_t * val; } parm2 = { .val = data }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_ESPI_WRITE_LPC_REQUEST); + } +#endif + compiler_barrier(); + return z_impl_espi_write_lpc_request(dev, op, data); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define espi_write_lpc_request(dev, op, data) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ESPI_WRITE_LPC_REQUEST, espi_write_lpc_request, dev, op, data); syscall__retval = espi_write_lpc_request(dev, op, data); sys_port_trace_syscall_exit(K_SYSCALL_ESPI_WRITE_LPC_REQUEST, espi_write_lpc_request, dev, op, data, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_espi_send_vwire(const struct device * dev, enum espi_vwire_signal signal, uint8_t level); + +__pinned_func +static inline int espi_send_vwire(const struct device * dev, enum espi_vwire_signal signal, uint8_t level) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; enum espi_vwire_signal val; } parm1 = { .val = signal }; + union { uintptr_t x; uint8_t val; } parm2 = { .val = level }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_ESPI_SEND_VWIRE); + } +#endif + compiler_barrier(); + return z_impl_espi_send_vwire(dev, signal, level); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define espi_send_vwire(dev, signal, level) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ESPI_SEND_VWIRE, espi_send_vwire, dev, signal, level); syscall__retval = espi_send_vwire(dev, signal, level); sys_port_trace_syscall_exit(K_SYSCALL_ESPI_SEND_VWIRE, espi_send_vwire, dev, signal, level, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_espi_receive_vwire(const struct device * dev, enum espi_vwire_signal signal, uint8_t * level); + +__pinned_func +static inline int espi_receive_vwire(const struct device * dev, enum espi_vwire_signal signal, uint8_t * level) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; enum espi_vwire_signal val; } parm1 = { .val = signal }; + union { uintptr_t x; uint8_t * val; } parm2 = { .val = level }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_ESPI_RECEIVE_VWIRE); + } +#endif + compiler_barrier(); + return z_impl_espi_receive_vwire(dev, signal, level); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define espi_receive_vwire(dev, signal, level) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ESPI_RECEIVE_VWIRE, espi_receive_vwire, dev, signal, level); syscall__retval = espi_receive_vwire(dev, signal, level); sys_port_trace_syscall_exit(K_SYSCALL_ESPI_RECEIVE_VWIRE, espi_receive_vwire, dev, signal, level, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_espi_send_oob(const struct device * dev, struct espi_oob_packet * pckt); + +__pinned_func +static inline int espi_send_oob(const struct device * dev, struct espi_oob_packet * pckt) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct espi_oob_packet * val; } parm1 = { .val = pckt }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_ESPI_SEND_OOB); + } +#endif + compiler_barrier(); + return z_impl_espi_send_oob(dev, pckt); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define espi_send_oob(dev, pckt) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ESPI_SEND_OOB, espi_send_oob, dev, pckt); syscall__retval = espi_send_oob(dev, pckt); sys_port_trace_syscall_exit(K_SYSCALL_ESPI_SEND_OOB, espi_send_oob, dev, pckt, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_espi_receive_oob(const struct device * dev, struct espi_oob_packet * pckt); + +__pinned_func +static inline int espi_receive_oob(const struct device * dev, struct espi_oob_packet * pckt) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct espi_oob_packet * val; } parm1 = { .val = pckt }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_ESPI_RECEIVE_OOB); + } +#endif + compiler_barrier(); + return z_impl_espi_receive_oob(dev, pckt); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define espi_receive_oob(dev, pckt) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ESPI_RECEIVE_OOB, espi_receive_oob, dev, pckt); syscall__retval = espi_receive_oob(dev, pckt); sys_port_trace_syscall_exit(K_SYSCALL_ESPI_RECEIVE_OOB, espi_receive_oob, dev, pckt, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_espi_read_flash(const struct device * dev, struct espi_flash_packet * pckt); + +__pinned_func +static inline int espi_read_flash(const struct device * dev, struct espi_flash_packet * pckt) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct espi_flash_packet * val; } parm1 = { .val = pckt }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_ESPI_READ_FLASH); + } +#endif + compiler_barrier(); + return z_impl_espi_read_flash(dev, pckt); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define espi_read_flash(dev, pckt) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ESPI_READ_FLASH, espi_read_flash, dev, pckt); syscall__retval = espi_read_flash(dev, pckt); sys_port_trace_syscall_exit(K_SYSCALL_ESPI_READ_FLASH, espi_read_flash, dev, pckt, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_espi_write_flash(const struct device * dev, struct espi_flash_packet * pckt); + +__pinned_func +static inline int espi_write_flash(const struct device * dev, struct espi_flash_packet * pckt) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct espi_flash_packet * val; } parm1 = { .val = pckt }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_ESPI_WRITE_FLASH); + } +#endif + compiler_barrier(); + return z_impl_espi_write_flash(dev, pckt); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define espi_write_flash(dev, pckt) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ESPI_WRITE_FLASH, espi_write_flash, dev, pckt); syscall__retval = espi_write_flash(dev, pckt); sys_port_trace_syscall_exit(K_SYSCALL_ESPI_WRITE_FLASH, espi_write_flash, dev, pckt, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_espi_flash_erase(const struct device * dev, struct espi_flash_packet * pckt); + +__pinned_func +static inline int espi_flash_erase(const struct device * dev, struct espi_flash_packet * pckt) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct espi_flash_packet * val; } parm1 = { .val = pckt }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_ESPI_FLASH_ERASE); + } +#endif + compiler_barrier(); + return z_impl_espi_flash_erase(dev, pckt); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define espi_flash_erase(dev, pckt) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ESPI_FLASH_ERASE, espi_flash_erase, dev, pckt); syscall__retval = espi_flash_erase(dev, pckt); sys_port_trace_syscall_exit(K_SYSCALL_ESPI_FLASH_ERASE, espi_flash_erase, dev, pckt, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/espi_saf.h b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/espi_saf.h new file mode 100644 index 0000000..e345a18 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/espi_saf.h @@ -0,0 +1,218 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_ESPI_SAF_H +#define Z_INCLUDE_SYSCALLS_ESPI_SAF_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_espi_saf_config(const struct device * dev, const struct espi_saf_cfg * cfg); + +__pinned_func +static inline int espi_saf_config(const struct device * dev, const struct espi_saf_cfg * cfg) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; const struct espi_saf_cfg * val; } parm1 = { .val = cfg }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_ESPI_SAF_CONFIG); + } +#endif + compiler_barrier(); + return z_impl_espi_saf_config(dev, cfg); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define espi_saf_config(dev, cfg) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ESPI_SAF_CONFIG, espi_saf_config, dev, cfg); syscall__retval = espi_saf_config(dev, cfg); sys_port_trace_syscall_exit(K_SYSCALL_ESPI_SAF_CONFIG, espi_saf_config, dev, cfg, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_espi_saf_set_protection_regions(const struct device * dev, const struct espi_saf_protection * pr); + +__pinned_func +static inline int espi_saf_set_protection_regions(const struct device * dev, const struct espi_saf_protection * pr) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; const struct espi_saf_protection * val; } parm1 = { .val = pr }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_ESPI_SAF_SET_PROTECTION_REGIONS); + } +#endif + compiler_barrier(); + return z_impl_espi_saf_set_protection_regions(dev, pr); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define espi_saf_set_protection_regions(dev, pr) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ESPI_SAF_SET_PROTECTION_REGIONS, espi_saf_set_protection_regions, dev, pr); syscall__retval = espi_saf_set_protection_regions(dev, pr); sys_port_trace_syscall_exit(K_SYSCALL_ESPI_SAF_SET_PROTECTION_REGIONS, espi_saf_set_protection_regions, dev, pr, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_espi_saf_activate(const struct device * dev); + +__pinned_func +static inline int espi_saf_activate(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_ESPI_SAF_ACTIVATE); + } +#endif + compiler_barrier(); + return z_impl_espi_saf_activate(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define espi_saf_activate(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ESPI_SAF_ACTIVATE, espi_saf_activate, dev); syscall__retval = espi_saf_activate(dev); sys_port_trace_syscall_exit(K_SYSCALL_ESPI_SAF_ACTIVATE, espi_saf_activate, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern bool z_impl_espi_saf_get_channel_status(const struct device * dev); + +__pinned_func +static inline bool espi_saf_get_channel_status(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (bool) arch_syscall_invoke1(parm0.x, K_SYSCALL_ESPI_SAF_GET_CHANNEL_STATUS); + } +#endif + compiler_barrier(); + return z_impl_espi_saf_get_channel_status(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define espi_saf_get_channel_status(dev) ({ bool syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ESPI_SAF_GET_CHANNEL_STATUS, espi_saf_get_channel_status, dev); syscall__retval = espi_saf_get_channel_status(dev); sys_port_trace_syscall_exit(K_SYSCALL_ESPI_SAF_GET_CHANNEL_STATUS, espi_saf_get_channel_status, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_espi_saf_flash_read(const struct device * dev, struct espi_saf_packet * pckt); + +__pinned_func +static inline int espi_saf_flash_read(const struct device * dev, struct espi_saf_packet * pckt) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct espi_saf_packet * val; } parm1 = { .val = pckt }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_ESPI_SAF_FLASH_READ); + } +#endif + compiler_barrier(); + return z_impl_espi_saf_flash_read(dev, pckt); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define espi_saf_flash_read(dev, pckt) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ESPI_SAF_FLASH_READ, espi_saf_flash_read, dev, pckt); syscall__retval = espi_saf_flash_read(dev, pckt); sys_port_trace_syscall_exit(K_SYSCALL_ESPI_SAF_FLASH_READ, espi_saf_flash_read, dev, pckt, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_espi_saf_flash_write(const struct device * dev, struct espi_saf_packet * pckt); + +__pinned_func +static inline int espi_saf_flash_write(const struct device * dev, struct espi_saf_packet * pckt) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct espi_saf_packet * val; } parm1 = { .val = pckt }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_ESPI_SAF_FLASH_WRITE); + } +#endif + compiler_barrier(); + return z_impl_espi_saf_flash_write(dev, pckt); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define espi_saf_flash_write(dev, pckt) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ESPI_SAF_FLASH_WRITE, espi_saf_flash_write, dev, pckt); syscall__retval = espi_saf_flash_write(dev, pckt); sys_port_trace_syscall_exit(K_SYSCALL_ESPI_SAF_FLASH_WRITE, espi_saf_flash_write, dev, pckt, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_espi_saf_flash_erase(const struct device * dev, struct espi_saf_packet * pckt); + +__pinned_func +static inline int espi_saf_flash_erase(const struct device * dev, struct espi_saf_packet * pckt) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct espi_saf_packet * val; } parm1 = { .val = pckt }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_ESPI_SAF_FLASH_ERASE); + } +#endif + compiler_barrier(); + return z_impl_espi_saf_flash_erase(dev, pckt); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define espi_saf_flash_erase(dev, pckt) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ESPI_SAF_FLASH_ERASE, espi_saf_flash_erase, dev, pckt); syscall__retval = espi_saf_flash_erase(dev, pckt); sys_port_trace_syscall_exit(K_SYSCALL_ESPI_SAF_FLASH_ERASE, espi_saf_flash_erase, dev, pckt, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_espi_saf_flash_unsuccess(const struct device * dev, struct espi_saf_packet * pckt); + +__pinned_func +static inline int espi_saf_flash_unsuccess(const struct device * dev, struct espi_saf_packet * pckt) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct espi_saf_packet * val; } parm1 = { .val = pckt }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_ESPI_SAF_FLASH_UNSUCCESS); + } +#endif + compiler_barrier(); + return z_impl_espi_saf_flash_unsuccess(dev, pckt); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define espi_saf_flash_unsuccess(dev, pckt) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ESPI_SAF_FLASH_UNSUCCESS, espi_saf_flash_unsuccess, dev, pckt); syscall__retval = espi_saf_flash_unsuccess(dev, pckt); sys_port_trace_syscall_exit(K_SYSCALL_ESPI_SAF_FLASH_UNSUCCESS, espi_saf_flash_unsuccess, dev, pckt, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/ethernet.h b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/ethernet.h new file mode 100644 index 0000000..af01e98 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/ethernet.h @@ -0,0 +1,51 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_ETHERNET_H +#define Z_INCLUDE_SYSCALLS_ETHERNET_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern const struct device * z_impl_net_eth_get_ptp_clock_by_index(int index); + +__pinned_func +static inline const struct device * net_eth_get_ptp_clock_by_index(int index) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; int val; } parm0 = { .val = index }; + return (const struct device *) arch_syscall_invoke1(parm0.x, K_SYSCALL_NET_ETH_GET_PTP_CLOCK_BY_INDEX); + } +#endif + compiler_barrier(); + return z_impl_net_eth_get_ptp_clock_by_index(index); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define net_eth_get_ptp_clock_by_index(index) ({ const struct device * syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_NET_ETH_GET_PTP_CLOCK_BY_INDEX, net_eth_get_ptp_clock_by_index, index); syscall__retval = net_eth_get_ptp_clock_by_index(index); sys_port_trace_syscall_exit(K_SYSCALL_NET_ETH_GET_PTP_CLOCK_BY_INDEX, net_eth_get_ptp_clock_by_index, index, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/fdtable.h b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/fdtable.h new file mode 100644 index 0000000..7ef4114 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/fdtable.h @@ -0,0 +1,81 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_FDTABLE_H +#define Z_INCLUDE_SYSCALLS_FDTABLE_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_zvfs_poll(struct zvfs_pollfd * fds, int nfds, int poll_timeout); + +__pinned_func +static inline int zvfs_poll(struct zvfs_pollfd * fds, int nfds, int poll_timeout) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct zvfs_pollfd * val; } parm0 = { .val = fds }; + union { uintptr_t x; int val; } parm1 = { .val = nfds }; + union { uintptr_t x; int val; } parm2 = { .val = poll_timeout }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_ZVFS_POLL); + } +#endif + compiler_barrier(); + return z_impl_zvfs_poll(fds, nfds, poll_timeout); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define zvfs_poll(fds, nfds, poll_timeout) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ZVFS_POLL, zvfs_poll, fds, nfds, poll_timeout); syscall__retval = zvfs_poll(fds, nfds, poll_timeout); sys_port_trace_syscall_exit(K_SYSCALL_ZVFS_POLL, zvfs_poll, fds, nfds, poll_timeout, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_zvfs_select(int nfds, struct zvfs_fd_set *ZRESTRICT readfds, struct zvfs_fd_set *ZRESTRICT writefds, struct zvfs_fd_set *ZRESTRICT errorfds, const struct timespec *ZRESTRICT timeout, const void *ZRESTRICT sigmask); + +__pinned_func +static inline int zvfs_select(int nfds, struct zvfs_fd_set *ZRESTRICT readfds, struct zvfs_fd_set *ZRESTRICT writefds, struct zvfs_fd_set *ZRESTRICT errorfds, const struct timespec *ZRESTRICT timeout, const void *ZRESTRICT sigmask) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; int val; } parm0 = { .val = nfds }; + union { uintptr_t x; struct zvfs_fd_set *ZRESTRICT val; } parm1 = { .val = readfds }; + union { uintptr_t x; struct zvfs_fd_set *ZRESTRICT val; } parm2 = { .val = writefds }; + union { uintptr_t x; struct zvfs_fd_set *ZRESTRICT val; } parm3 = { .val = errorfds }; + union { uintptr_t x; const struct timespec *ZRESTRICT val; } parm4 = { .val = timeout }; + union { uintptr_t x; const void *ZRESTRICT val; } parm5 = { .val = sigmask }; + return (int) arch_syscall_invoke6(parm0.x, parm1.x, parm2.x, parm3.x, parm4.x, parm5.x, K_SYSCALL_ZVFS_SELECT); + } +#endif + compiler_barrier(); + return z_impl_zvfs_select(nfds, readfds, writefds, errorfds, timeout, sigmask); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define zvfs_select(nfds, readfds, writefds, errorfds, timeout, sigmask) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ZVFS_SELECT, zvfs_select, nfds, readfds, writefds, errorfds, timeout, sigmask); syscall__retval = zvfs_select(nfds, readfds, writefds, errorfds, timeout, sigmask); sys_port_trace_syscall_exit(K_SYSCALL_ZVFS_SELECT, zvfs_select, nfds, readfds, writefds, errorfds, timeout, sigmask, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/flash.h b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/flash.h new file mode 100644 index 0000000..b9d580d --- /dev/null +++ b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/flash.h @@ -0,0 +1,408 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_FLASH_H +#define Z_INCLUDE_SYSCALLS_FLASH_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_flash_read(const struct device * dev, off_t offset, void * data, size_t len); + +__pinned_func +static inline int flash_read(const struct device * dev, off_t offset, void * data, size_t len) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; off_t val; } parm1 = { .val = offset }; + union { uintptr_t x; void * val; } parm2 = { .val = data }; + union { uintptr_t x; size_t val; } parm3 = { .val = len }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_FLASH_READ); + } +#endif + compiler_barrier(); + return z_impl_flash_read(dev, offset, data, len); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define flash_read(dev, offset, data, len) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_FLASH_READ, flash_read, dev, offset, data, len); syscall__retval = flash_read(dev, offset, data, len); sys_port_trace_syscall_exit(K_SYSCALL_FLASH_READ, flash_read, dev, offset, data, len, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_flash_write(const struct device * dev, off_t offset, const void * data, size_t len); + +__pinned_func +static inline int flash_write(const struct device * dev, off_t offset, const void * data, size_t len) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; off_t val; } parm1 = { .val = offset }; + union { uintptr_t x; const void * val; } parm2 = { .val = data }; + union { uintptr_t x; size_t val; } parm3 = { .val = len }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_FLASH_WRITE); + } +#endif + compiler_barrier(); + return z_impl_flash_write(dev, offset, data, len); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define flash_write(dev, offset, data, len) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_FLASH_WRITE, flash_write, dev, offset, data, len); syscall__retval = flash_write(dev, offset, data, len); sys_port_trace_syscall_exit(K_SYSCALL_FLASH_WRITE, flash_write, dev, offset, data, len, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_flash_erase(const struct device * dev, off_t offset, size_t size); + +__pinned_func +static inline int flash_erase(const struct device * dev, off_t offset, size_t size) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; off_t val; } parm1 = { .val = offset }; + union { uintptr_t x; size_t val; } parm2 = { .val = size }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_FLASH_ERASE); + } +#endif + compiler_barrier(); + return z_impl_flash_erase(dev, offset, size); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define flash_erase(dev, offset, size) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_FLASH_ERASE, flash_erase, dev, offset, size); syscall__retval = flash_erase(dev, offset, size); sys_port_trace_syscall_exit(K_SYSCALL_FLASH_ERASE, flash_erase, dev, offset, size, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_flash_get_size(const struct device * dev, uint64_t * size); + +__pinned_func +static inline int flash_get_size(const struct device * dev, uint64_t * size) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint64_t * val; } parm1 = { .val = size }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_FLASH_GET_SIZE); + } +#endif + compiler_barrier(); + return z_impl_flash_get_size(dev, size); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define flash_get_size(dev, size) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_FLASH_GET_SIZE, flash_get_size, dev, size); syscall__retval = flash_get_size(dev, size); sys_port_trace_syscall_exit(K_SYSCALL_FLASH_GET_SIZE, flash_get_size, dev, size, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_flash_fill(const struct device * dev, uint8_t val, off_t offset, size_t size); + +__pinned_func +static inline int flash_fill(const struct device * dev, uint8_t val, off_t offset, size_t size) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint8_t val; } parm1 = { .val = val }; + union { uintptr_t x; off_t val; } parm2 = { .val = offset }; + union { uintptr_t x; size_t val; } parm3 = { .val = size }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_FLASH_FILL); + } +#endif + compiler_barrier(); + return z_impl_flash_fill(dev, val, offset, size); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define flash_fill(dev, val, offset, size) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_FLASH_FILL, flash_fill, dev, val, offset, size); syscall__retval = flash_fill(dev, val, offset, size); sys_port_trace_syscall_exit(K_SYSCALL_FLASH_FILL, flash_fill, dev, val, offset, size, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_flash_flatten(const struct device * dev, off_t offset, size_t size); + +__pinned_func +static inline int flash_flatten(const struct device * dev, off_t offset, size_t size) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; off_t val; } parm1 = { .val = offset }; + union { uintptr_t x; size_t val; } parm2 = { .val = size }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_FLASH_FLATTEN); + } +#endif + compiler_barrier(); + return z_impl_flash_flatten(dev, offset, size); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define flash_flatten(dev, offset, size) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_FLASH_FLATTEN, flash_flatten, dev, offset, size); syscall__retval = flash_flatten(dev, offset, size); sys_port_trace_syscall_exit(K_SYSCALL_FLASH_FLATTEN, flash_flatten, dev, offset, size, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_flash_get_page_info_by_offs(const struct device * dev, off_t offset, struct flash_pages_info * info); + +__pinned_func +static inline int flash_get_page_info_by_offs(const struct device * dev, off_t offset, struct flash_pages_info * info) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; off_t val; } parm1 = { .val = offset }; + union { uintptr_t x; struct flash_pages_info * val; } parm2 = { .val = info }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_FLASH_GET_PAGE_INFO_BY_OFFS); + } +#endif + compiler_barrier(); + return z_impl_flash_get_page_info_by_offs(dev, offset, info); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define flash_get_page_info_by_offs(dev, offset, info) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_FLASH_GET_PAGE_INFO_BY_OFFS, flash_get_page_info_by_offs, dev, offset, info); syscall__retval = flash_get_page_info_by_offs(dev, offset, info); sys_port_trace_syscall_exit(K_SYSCALL_FLASH_GET_PAGE_INFO_BY_OFFS, flash_get_page_info_by_offs, dev, offset, info, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_flash_get_page_info_by_idx(const struct device * dev, uint32_t page_index, struct flash_pages_info * info); + +__pinned_func +static inline int flash_get_page_info_by_idx(const struct device * dev, uint32_t page_index, struct flash_pages_info * info) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = page_index }; + union { uintptr_t x; struct flash_pages_info * val; } parm2 = { .val = info }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_FLASH_GET_PAGE_INFO_BY_IDX); + } +#endif + compiler_barrier(); + return z_impl_flash_get_page_info_by_idx(dev, page_index, info); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define flash_get_page_info_by_idx(dev, page_index, info) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_FLASH_GET_PAGE_INFO_BY_IDX, flash_get_page_info_by_idx, dev, page_index, info); syscall__retval = flash_get_page_info_by_idx(dev, page_index, info); sys_port_trace_syscall_exit(K_SYSCALL_FLASH_GET_PAGE_INFO_BY_IDX, flash_get_page_info_by_idx, dev, page_index, info, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern size_t z_impl_flash_get_page_count(const struct device * dev); + +__pinned_func +static inline size_t flash_get_page_count(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (size_t) arch_syscall_invoke1(parm0.x, K_SYSCALL_FLASH_GET_PAGE_COUNT); + } +#endif + compiler_barrier(); + return z_impl_flash_get_page_count(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define flash_get_page_count(dev) ({ size_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_FLASH_GET_PAGE_COUNT, flash_get_page_count, dev); syscall__retval = flash_get_page_count(dev); sys_port_trace_syscall_exit(K_SYSCALL_FLASH_GET_PAGE_COUNT, flash_get_page_count, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_flash_sfdp_read(const struct device * dev, off_t offset, void * data, size_t len); + +__pinned_func +static inline int flash_sfdp_read(const struct device * dev, off_t offset, void * data, size_t len) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; off_t val; } parm1 = { .val = offset }; + union { uintptr_t x; void * val; } parm2 = { .val = data }; + union { uintptr_t x; size_t val; } parm3 = { .val = len }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_FLASH_SFDP_READ); + } +#endif + compiler_barrier(); + return z_impl_flash_sfdp_read(dev, offset, data, len); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define flash_sfdp_read(dev, offset, data, len) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_FLASH_SFDP_READ, flash_sfdp_read, dev, offset, data, len); syscall__retval = flash_sfdp_read(dev, offset, data, len); sys_port_trace_syscall_exit(K_SYSCALL_FLASH_SFDP_READ, flash_sfdp_read, dev, offset, data, len, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_flash_read_jedec_id(const struct device * dev, uint8_t * id); + +__pinned_func +static inline int flash_read_jedec_id(const struct device * dev, uint8_t * id) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint8_t * val; } parm1 = { .val = id }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_FLASH_READ_JEDEC_ID); + } +#endif + compiler_barrier(); + return z_impl_flash_read_jedec_id(dev, id); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define flash_read_jedec_id(dev, id) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_FLASH_READ_JEDEC_ID, flash_read_jedec_id, dev, id); syscall__retval = flash_read_jedec_id(dev, id); sys_port_trace_syscall_exit(K_SYSCALL_FLASH_READ_JEDEC_ID, flash_read_jedec_id, dev, id, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern size_t z_impl_flash_get_write_block_size(const struct device * dev); + +__pinned_func +static inline size_t flash_get_write_block_size(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (size_t) arch_syscall_invoke1(parm0.x, K_SYSCALL_FLASH_GET_WRITE_BLOCK_SIZE); + } +#endif + compiler_barrier(); + return z_impl_flash_get_write_block_size(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define flash_get_write_block_size(dev) ({ size_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_FLASH_GET_WRITE_BLOCK_SIZE, flash_get_write_block_size, dev); syscall__retval = flash_get_write_block_size(dev); sys_port_trace_syscall_exit(K_SYSCALL_FLASH_GET_WRITE_BLOCK_SIZE, flash_get_write_block_size, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern const struct flash_parameters * z_impl_flash_get_parameters(const struct device * dev); + +__pinned_func +static inline const struct flash_parameters * flash_get_parameters(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (const struct flash_parameters *) arch_syscall_invoke1(parm0.x, K_SYSCALL_FLASH_GET_PARAMETERS); + } +#endif + compiler_barrier(); + return z_impl_flash_get_parameters(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define flash_get_parameters(dev) ({ const struct flash_parameters * syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_FLASH_GET_PARAMETERS, flash_get_parameters, dev); syscall__retval = flash_get_parameters(dev); sys_port_trace_syscall_exit(K_SYSCALL_FLASH_GET_PARAMETERS, flash_get_parameters, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_flash_ex_op(const struct device * dev, uint16_t code, const uintptr_t in, void * out); + +__pinned_func +static inline int flash_ex_op(const struct device * dev, uint16_t code, const uintptr_t in, void * out) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint16_t val; } parm1 = { .val = code }; + union { uintptr_t x; const uintptr_t val; } parm2 = { .val = in }; + union { uintptr_t x; void * val; } parm3 = { .val = out }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_FLASH_EX_OP); + } +#endif + compiler_barrier(); + return z_impl_flash_ex_op(dev, code, in, out); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define flash_ex_op(dev, code, in, out) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_FLASH_EX_OP, flash_ex_op, dev, code, in, out); syscall__retval = flash_ex_op(dev, code, in, out); sys_port_trace_syscall_exit(K_SYSCALL_FLASH_EX_OP, flash_ex_op, dev, code, in, out, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_flash_copy(const struct device * src_dev, off_t src_offset, const struct device * dst_dev, off_t dst_offset, off_t size, uint8_t * buf, size_t buf_size); + +__pinned_func +static inline int flash_copy(const struct device * src_dev, off_t src_offset, const struct device * dst_dev, off_t dst_offset, off_t size, uint8_t * buf, size_t buf_size) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = src_dev }; + union { uintptr_t x; off_t val; } parm1 = { .val = src_offset }; + union { uintptr_t x; const struct device * val; } parm2 = { .val = dst_dev }; + union { uintptr_t x; off_t val; } parm3 = { .val = dst_offset }; + union { uintptr_t x; off_t val; } parm4 = { .val = size }; + union { uintptr_t x; uint8_t * val; } parm5 = { .val = buf }; + union { uintptr_t x; size_t val; } parm6 = { .val = buf_size }; + uintptr_t more[] = { + parm5.x, + parm6.x + }; + return (int) arch_syscall_invoke6(parm0.x, parm1.x, parm2.x, parm3.x, parm4.x, (uintptr_t) &more, K_SYSCALL_FLASH_COPY); + } +#endif + compiler_barrier(); + return z_impl_flash_copy(src_dev, src_offset, dst_dev, dst_offset, size, buf, buf_size); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define flash_copy(src_dev, src_offset, dst_dev, dst_offset, size, buf, buf_size) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_FLASH_COPY, flash_copy, src_dev, src_offset, dst_dev, dst_offset, size, buf, buf_size); syscall__retval = flash_copy(src_dev, src_offset, dst_dev, dst_offset, size, buf, buf_size); sys_port_trace_syscall_exit(K_SYSCALL_FLASH_COPY, flash_copy, src_dev, src_offset, dst_dev, dst_offset, size, buf, buf_size, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/flash_simulator.h b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/flash_simulator.h new file mode 100644 index 0000000..705ed43 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/flash_simulator.h @@ -0,0 +1,52 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_FLASH_SIMULATOR_H +#define Z_INCLUDE_SYSCALLS_FLASH_SIMULATOR_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern void * z_impl_flash_simulator_get_memory(const struct device * dev, size_t * mock_size); + +__pinned_func +static inline void * flash_simulator_get_memory(const struct device * dev, size_t * mock_size) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; size_t * val; } parm1 = { .val = mock_size }; + return (void *) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_FLASH_SIMULATOR_GET_MEMORY); + } +#endif + compiler_barrier(); + return z_impl_flash_simulator_get_memory(dev, mock_size); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define flash_simulator_get_memory(dev, mock_size) ({ void * syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_FLASH_SIMULATOR_GET_MEMORY, flash_simulator_get_memory, dev, mock_size); syscall__retval = flash_simulator_get_memory(dev, mock_size); sys_port_trace_syscall_exit(K_SYSCALL_FLASH_SIMULATOR_GET_MEMORY, flash_simulator_get_memory, dev, mock_size, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/fuel_gauge.h b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/fuel_gauge.h new file mode 100644 index 0000000..b06201d --- /dev/null +++ b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/fuel_gauge.h @@ -0,0 +1,179 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_FUEL_GAUGE_H +#define Z_INCLUDE_SYSCALLS_FUEL_GAUGE_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_fuel_gauge_get_prop(const struct device * dev, fuel_gauge_prop_t prop, union fuel_gauge_prop_val * val); + +__pinned_func +static inline int fuel_gauge_get_prop(const struct device * dev, fuel_gauge_prop_t prop, union fuel_gauge_prop_val * val) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; fuel_gauge_prop_t val; } parm1 = { .val = prop }; + union { uintptr_t x; union fuel_gauge_prop_val * val; } parm2 = { .val = val }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_FUEL_GAUGE_GET_PROP); + } +#endif + compiler_barrier(); + return z_impl_fuel_gauge_get_prop(dev, prop, val); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define fuel_gauge_get_prop(dev, prop, val) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_FUEL_GAUGE_GET_PROP, fuel_gauge_get_prop, dev, prop, val); syscall__retval = fuel_gauge_get_prop(dev, prop, val); sys_port_trace_syscall_exit(K_SYSCALL_FUEL_GAUGE_GET_PROP, fuel_gauge_get_prop, dev, prop, val, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_fuel_gauge_get_props(const struct device * dev, const fuel_gauge_prop_t * props, union fuel_gauge_prop_val * vals, size_t len); + +__pinned_func +static inline int fuel_gauge_get_props(const struct device * dev, const fuel_gauge_prop_t * props, union fuel_gauge_prop_val * vals, size_t len) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; const fuel_gauge_prop_t * val; } parm1 = { .val = props }; + union { uintptr_t x; union fuel_gauge_prop_val * val; } parm2 = { .val = vals }; + union { uintptr_t x; size_t val; } parm3 = { .val = len }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_FUEL_GAUGE_GET_PROPS); + } +#endif + compiler_barrier(); + return z_impl_fuel_gauge_get_props(dev, props, vals, len); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define fuel_gauge_get_props(dev, props, vals, len) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_FUEL_GAUGE_GET_PROPS, fuel_gauge_get_props, dev, props, vals, len); syscall__retval = fuel_gauge_get_props(dev, props, vals, len); sys_port_trace_syscall_exit(K_SYSCALL_FUEL_GAUGE_GET_PROPS, fuel_gauge_get_props, dev, props, vals, len, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_fuel_gauge_set_prop(const struct device * dev, fuel_gauge_prop_t prop, union fuel_gauge_prop_val val); + +__pinned_func +static inline int fuel_gauge_set_prop(const struct device * dev, fuel_gauge_prop_t prop, union fuel_gauge_prop_val val) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; fuel_gauge_prop_t val; } parm1 = { .val = prop }; + union { uintptr_t x; union fuel_gauge_prop_val val; } parm2 = { .val = val }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_FUEL_GAUGE_SET_PROP); + } +#endif + compiler_barrier(); + return z_impl_fuel_gauge_set_prop(dev, prop, val); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define fuel_gauge_set_prop(dev, prop, val) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_FUEL_GAUGE_SET_PROP, fuel_gauge_set_prop, dev, prop, val); syscall__retval = fuel_gauge_set_prop(dev, prop, val); sys_port_trace_syscall_exit(K_SYSCALL_FUEL_GAUGE_SET_PROP, fuel_gauge_set_prop, dev, prop, val, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_fuel_gauge_set_props(const struct device * dev, const fuel_gauge_prop_t * props, const union fuel_gauge_prop_val * vals, size_t len); + +__pinned_func +static inline int fuel_gauge_set_props(const struct device * dev, const fuel_gauge_prop_t * props, const union fuel_gauge_prop_val * vals, size_t len) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; const fuel_gauge_prop_t * val; } parm1 = { .val = props }; + union { uintptr_t x; const union fuel_gauge_prop_val * val; } parm2 = { .val = vals }; + union { uintptr_t x; size_t val; } parm3 = { .val = len }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_FUEL_GAUGE_SET_PROPS); + } +#endif + compiler_barrier(); + return z_impl_fuel_gauge_set_props(dev, props, vals, len); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define fuel_gauge_set_props(dev, props, vals, len) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_FUEL_GAUGE_SET_PROPS, fuel_gauge_set_props, dev, props, vals, len); syscall__retval = fuel_gauge_set_props(dev, props, vals, len); sys_port_trace_syscall_exit(K_SYSCALL_FUEL_GAUGE_SET_PROPS, fuel_gauge_set_props, dev, props, vals, len, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_fuel_gauge_get_buffer_prop(const struct device * dev, fuel_gauge_prop_t prop_type, void * dst, size_t dst_len); + +__pinned_func +static inline int fuel_gauge_get_buffer_prop(const struct device * dev, fuel_gauge_prop_t prop_type, void * dst, size_t dst_len) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; fuel_gauge_prop_t val; } parm1 = { .val = prop_type }; + union { uintptr_t x; void * val; } parm2 = { .val = dst }; + union { uintptr_t x; size_t val; } parm3 = { .val = dst_len }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_FUEL_GAUGE_GET_BUFFER_PROP); + } +#endif + compiler_barrier(); + return z_impl_fuel_gauge_get_buffer_prop(dev, prop_type, dst, dst_len); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define fuel_gauge_get_buffer_prop(dev, prop_type, dst, dst_len) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_FUEL_GAUGE_GET_BUFFER_PROP, fuel_gauge_get_buffer_prop, dev, prop_type, dst, dst_len); syscall__retval = fuel_gauge_get_buffer_prop(dev, prop_type, dst, dst_len); sys_port_trace_syscall_exit(K_SYSCALL_FUEL_GAUGE_GET_BUFFER_PROP, fuel_gauge_get_buffer_prop, dev, prop_type, dst, dst_len, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_fuel_gauge_battery_cutoff(const struct device * dev); + +__pinned_func +static inline int fuel_gauge_battery_cutoff(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_FUEL_GAUGE_BATTERY_CUTOFF); + } +#endif + compiler_barrier(); + return z_impl_fuel_gauge_battery_cutoff(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define fuel_gauge_battery_cutoff(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_FUEL_GAUGE_BATTERY_CUTOFF, fuel_gauge_battery_cutoff, dev); syscall__retval = fuel_gauge_battery_cutoff(dev); sys_port_trace_syscall_exit(K_SYSCALL_FUEL_GAUGE_BATTERY_CUTOFF, fuel_gauge_battery_cutoff, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/gnss.h b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/gnss.h new file mode 100644 index 0000000..0c64597 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/gnss.h @@ -0,0 +1,220 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_GNSS_H +#define Z_INCLUDE_SYSCALLS_GNSS_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_gnss_set_fix_rate(const struct device * dev, uint32_t fix_interval_ms); + +__pinned_func +static inline int gnss_set_fix_rate(const struct device * dev, uint32_t fix_interval_ms) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = fix_interval_ms }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_GNSS_SET_FIX_RATE); + } +#endif + compiler_barrier(); + return z_impl_gnss_set_fix_rate(dev, fix_interval_ms); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define gnss_set_fix_rate(dev, fix_interval_ms) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_GNSS_SET_FIX_RATE, gnss_set_fix_rate, dev, fix_interval_ms); syscall__retval = gnss_set_fix_rate(dev, fix_interval_ms); sys_port_trace_syscall_exit(K_SYSCALL_GNSS_SET_FIX_RATE, gnss_set_fix_rate, dev, fix_interval_ms, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_gnss_get_fix_rate(const struct device * dev, uint32_t * fix_interval_ms); + +__pinned_func +static inline int gnss_get_fix_rate(const struct device * dev, uint32_t * fix_interval_ms) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t * val; } parm1 = { .val = fix_interval_ms }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_GNSS_GET_FIX_RATE); + } +#endif + compiler_barrier(); + return z_impl_gnss_get_fix_rate(dev, fix_interval_ms); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define gnss_get_fix_rate(dev, fix_interval_ms) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_GNSS_GET_FIX_RATE, gnss_get_fix_rate, dev, fix_interval_ms); syscall__retval = gnss_get_fix_rate(dev, fix_interval_ms); sys_port_trace_syscall_exit(K_SYSCALL_GNSS_GET_FIX_RATE, gnss_get_fix_rate, dev, fix_interval_ms, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_gnss_set_navigation_mode(const struct device * dev, enum gnss_navigation_mode mode); + +__pinned_func +static inline int gnss_set_navigation_mode(const struct device * dev, enum gnss_navigation_mode mode) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; enum gnss_navigation_mode val; } parm1 = { .val = mode }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_GNSS_SET_NAVIGATION_MODE); + } +#endif + compiler_barrier(); + return z_impl_gnss_set_navigation_mode(dev, mode); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define gnss_set_navigation_mode(dev, mode) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_GNSS_SET_NAVIGATION_MODE, gnss_set_navigation_mode, dev, mode); syscall__retval = gnss_set_navigation_mode(dev, mode); sys_port_trace_syscall_exit(K_SYSCALL_GNSS_SET_NAVIGATION_MODE, gnss_set_navigation_mode, dev, mode, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_gnss_get_navigation_mode(const struct device * dev, enum gnss_navigation_mode * mode); + +__pinned_func +static inline int gnss_get_navigation_mode(const struct device * dev, enum gnss_navigation_mode * mode) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; enum gnss_navigation_mode * val; } parm1 = { .val = mode }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_GNSS_GET_NAVIGATION_MODE); + } +#endif + compiler_barrier(); + return z_impl_gnss_get_navigation_mode(dev, mode); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define gnss_get_navigation_mode(dev, mode) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_GNSS_GET_NAVIGATION_MODE, gnss_get_navigation_mode, dev, mode); syscall__retval = gnss_get_navigation_mode(dev, mode); sys_port_trace_syscall_exit(K_SYSCALL_GNSS_GET_NAVIGATION_MODE, gnss_get_navigation_mode, dev, mode, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_gnss_set_enabled_systems(const struct device * dev, gnss_systems_t systems); + +__pinned_func +static inline int gnss_set_enabled_systems(const struct device * dev, gnss_systems_t systems) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; gnss_systems_t val; } parm1 = { .val = systems }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_GNSS_SET_ENABLED_SYSTEMS); + } +#endif + compiler_barrier(); + return z_impl_gnss_set_enabled_systems(dev, systems); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define gnss_set_enabled_systems(dev, systems) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_GNSS_SET_ENABLED_SYSTEMS, gnss_set_enabled_systems, dev, systems); syscall__retval = gnss_set_enabled_systems(dev, systems); sys_port_trace_syscall_exit(K_SYSCALL_GNSS_SET_ENABLED_SYSTEMS, gnss_set_enabled_systems, dev, systems, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_gnss_get_enabled_systems(const struct device * dev, gnss_systems_t * systems); + +__pinned_func +static inline int gnss_get_enabled_systems(const struct device * dev, gnss_systems_t * systems) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; gnss_systems_t * val; } parm1 = { .val = systems }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_GNSS_GET_ENABLED_SYSTEMS); + } +#endif + compiler_barrier(); + return z_impl_gnss_get_enabled_systems(dev, systems); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define gnss_get_enabled_systems(dev, systems) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_GNSS_GET_ENABLED_SYSTEMS, gnss_get_enabled_systems, dev, systems); syscall__retval = gnss_get_enabled_systems(dev, systems); sys_port_trace_syscall_exit(K_SYSCALL_GNSS_GET_ENABLED_SYSTEMS, gnss_get_enabled_systems, dev, systems, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_gnss_get_supported_systems(const struct device * dev, gnss_systems_t * systems); + +__pinned_func +static inline int gnss_get_supported_systems(const struct device * dev, gnss_systems_t * systems) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; gnss_systems_t * val; } parm1 = { .val = systems }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_GNSS_GET_SUPPORTED_SYSTEMS); + } +#endif + compiler_barrier(); + return z_impl_gnss_get_supported_systems(dev, systems); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define gnss_get_supported_systems(dev, systems) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_GNSS_GET_SUPPORTED_SYSTEMS, gnss_get_supported_systems, dev, systems); syscall__retval = gnss_get_supported_systems(dev, systems); sys_port_trace_syscall_exit(K_SYSCALL_GNSS_GET_SUPPORTED_SYSTEMS, gnss_get_supported_systems, dev, systems, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_gnss_get_latest_timepulse(const struct device * dev, k_ticks_t * timestamp); + +__pinned_func +static inline int gnss_get_latest_timepulse(const struct device * dev, k_ticks_t * timestamp) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; k_ticks_t * val; } parm1 = { .val = timestamp }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_GNSS_GET_LATEST_TIMEPULSE); + } +#endif + compiler_barrier(); + return z_impl_gnss_get_latest_timepulse(dev, timestamp); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define gnss_get_latest_timepulse(dev, timestamp) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_GNSS_GET_LATEST_TIMEPULSE, gnss_get_latest_timepulse, dev, timestamp); syscall__retval = gnss_get_latest_timepulse(dev, timestamp); sys_port_trace_syscall_exit(K_SYSCALL_GNSS_GET_LATEST_TIMEPULSE, gnss_get_latest_timepulse, dev, timestamp, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/gpio.h b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/gpio.h new file mode 100644 index 0000000..74a1873 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/gpio.h @@ -0,0 +1,273 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_GPIO_H +#define Z_INCLUDE_SYSCALLS_GPIO_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_gpio_pin_interrupt_configure(const struct device * port, gpio_pin_t pin, gpio_flags_t flags); + +__pinned_func +static inline int gpio_pin_interrupt_configure(const struct device * port, gpio_pin_t pin, gpio_flags_t flags) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = port }; + union { uintptr_t x; gpio_pin_t val; } parm1 = { .val = pin }; + union { uintptr_t x; gpio_flags_t val; } parm2 = { .val = flags }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_GPIO_PIN_INTERRUPT_CONFIGURE); + } +#endif + compiler_barrier(); + return z_impl_gpio_pin_interrupt_configure(port, pin, flags); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define gpio_pin_interrupt_configure(port, pin, flags) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_GPIO_PIN_INTERRUPT_CONFIGURE, gpio_pin_interrupt_configure, port, pin, flags); syscall__retval = gpio_pin_interrupt_configure(port, pin, flags); sys_port_trace_syscall_exit(K_SYSCALL_GPIO_PIN_INTERRUPT_CONFIGURE, gpio_pin_interrupt_configure, port, pin, flags, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_gpio_pin_configure(const struct device * port, gpio_pin_t pin, gpio_flags_t flags); + +__pinned_func +static inline int gpio_pin_configure(const struct device * port, gpio_pin_t pin, gpio_flags_t flags) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = port }; + union { uintptr_t x; gpio_pin_t val; } parm1 = { .val = pin }; + union { uintptr_t x; gpio_flags_t val; } parm2 = { .val = flags }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_GPIO_PIN_CONFIGURE); + } +#endif + compiler_barrier(); + return z_impl_gpio_pin_configure(port, pin, flags); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define gpio_pin_configure(port, pin, flags) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_GPIO_PIN_CONFIGURE, gpio_pin_configure, port, pin, flags); syscall__retval = gpio_pin_configure(port, pin, flags); sys_port_trace_syscall_exit(K_SYSCALL_GPIO_PIN_CONFIGURE, gpio_pin_configure, port, pin, flags, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_gpio_port_get_direction(const struct device * port, gpio_port_pins_t map, gpio_port_pins_t * inputs, gpio_port_pins_t * outputs); + +__pinned_func +static inline int gpio_port_get_direction(const struct device * port, gpio_port_pins_t map, gpio_port_pins_t * inputs, gpio_port_pins_t * outputs) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = port }; + union { uintptr_t x; gpio_port_pins_t val; } parm1 = { .val = map }; + union { uintptr_t x; gpio_port_pins_t * val; } parm2 = { .val = inputs }; + union { uintptr_t x; gpio_port_pins_t * val; } parm3 = { .val = outputs }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_GPIO_PORT_GET_DIRECTION); + } +#endif + compiler_barrier(); + return z_impl_gpio_port_get_direction(port, map, inputs, outputs); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define gpio_port_get_direction(port, map, inputs, outputs) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_GPIO_PORT_GET_DIRECTION, gpio_port_get_direction, port, map, inputs, outputs); syscall__retval = gpio_port_get_direction(port, map, inputs, outputs); sys_port_trace_syscall_exit(K_SYSCALL_GPIO_PORT_GET_DIRECTION, gpio_port_get_direction, port, map, inputs, outputs, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_gpio_pin_get_config(const struct device * port, gpio_pin_t pin, gpio_flags_t * flags); + +__pinned_func +static inline int gpio_pin_get_config(const struct device * port, gpio_pin_t pin, gpio_flags_t * flags) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = port }; + union { uintptr_t x; gpio_pin_t val; } parm1 = { .val = pin }; + union { uintptr_t x; gpio_flags_t * val; } parm2 = { .val = flags }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_GPIO_PIN_GET_CONFIG); + } +#endif + compiler_barrier(); + return z_impl_gpio_pin_get_config(port, pin, flags); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define gpio_pin_get_config(port, pin, flags) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_GPIO_PIN_GET_CONFIG, gpio_pin_get_config, port, pin, flags); syscall__retval = gpio_pin_get_config(port, pin, flags); sys_port_trace_syscall_exit(K_SYSCALL_GPIO_PIN_GET_CONFIG, gpio_pin_get_config, port, pin, flags, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_gpio_port_get_raw(const struct device * port, gpio_port_value_t * value); + +__pinned_func +static inline int gpio_port_get_raw(const struct device * port, gpio_port_value_t * value) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = port }; + union { uintptr_t x; gpio_port_value_t * val; } parm1 = { .val = value }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_GPIO_PORT_GET_RAW); + } +#endif + compiler_barrier(); + return z_impl_gpio_port_get_raw(port, value); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define gpio_port_get_raw(port, value) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_GPIO_PORT_GET_RAW, gpio_port_get_raw, port, value); syscall__retval = gpio_port_get_raw(port, value); sys_port_trace_syscall_exit(K_SYSCALL_GPIO_PORT_GET_RAW, gpio_port_get_raw, port, value, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_gpio_port_set_masked_raw(const struct device * port, gpio_port_pins_t mask, gpio_port_value_t value); + +__pinned_func +static inline int gpio_port_set_masked_raw(const struct device * port, gpio_port_pins_t mask, gpio_port_value_t value) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = port }; + union { uintptr_t x; gpio_port_pins_t val; } parm1 = { .val = mask }; + union { uintptr_t x; gpio_port_value_t val; } parm2 = { .val = value }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_GPIO_PORT_SET_MASKED_RAW); + } +#endif + compiler_barrier(); + return z_impl_gpio_port_set_masked_raw(port, mask, value); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define gpio_port_set_masked_raw(port, mask, value) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_GPIO_PORT_SET_MASKED_RAW, gpio_port_set_masked_raw, port, mask, value); syscall__retval = gpio_port_set_masked_raw(port, mask, value); sys_port_trace_syscall_exit(K_SYSCALL_GPIO_PORT_SET_MASKED_RAW, gpio_port_set_masked_raw, port, mask, value, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_gpio_port_set_bits_raw(const struct device * port, gpio_port_pins_t pins); + +__pinned_func +static inline int gpio_port_set_bits_raw(const struct device * port, gpio_port_pins_t pins) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = port }; + union { uintptr_t x; gpio_port_pins_t val; } parm1 = { .val = pins }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_GPIO_PORT_SET_BITS_RAW); + } +#endif + compiler_barrier(); + return z_impl_gpio_port_set_bits_raw(port, pins); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define gpio_port_set_bits_raw(port, pins) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_GPIO_PORT_SET_BITS_RAW, gpio_port_set_bits_raw, port, pins); syscall__retval = gpio_port_set_bits_raw(port, pins); sys_port_trace_syscall_exit(K_SYSCALL_GPIO_PORT_SET_BITS_RAW, gpio_port_set_bits_raw, port, pins, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_gpio_port_clear_bits_raw(const struct device * port, gpio_port_pins_t pins); + +__pinned_func +static inline int gpio_port_clear_bits_raw(const struct device * port, gpio_port_pins_t pins) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = port }; + union { uintptr_t x; gpio_port_pins_t val; } parm1 = { .val = pins }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_GPIO_PORT_CLEAR_BITS_RAW); + } +#endif + compiler_barrier(); + return z_impl_gpio_port_clear_bits_raw(port, pins); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define gpio_port_clear_bits_raw(port, pins) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_GPIO_PORT_CLEAR_BITS_RAW, gpio_port_clear_bits_raw, port, pins); syscall__retval = gpio_port_clear_bits_raw(port, pins); sys_port_trace_syscall_exit(K_SYSCALL_GPIO_PORT_CLEAR_BITS_RAW, gpio_port_clear_bits_raw, port, pins, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_gpio_port_toggle_bits(const struct device * port, gpio_port_pins_t pins); + +__pinned_func +static inline int gpio_port_toggle_bits(const struct device * port, gpio_port_pins_t pins) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = port }; + union { uintptr_t x; gpio_port_pins_t val; } parm1 = { .val = pins }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_GPIO_PORT_TOGGLE_BITS); + } +#endif + compiler_barrier(); + return z_impl_gpio_port_toggle_bits(port, pins); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define gpio_port_toggle_bits(port, pins) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_GPIO_PORT_TOGGLE_BITS, gpio_port_toggle_bits, port, pins); syscall__retval = gpio_port_toggle_bits(port, pins); sys_port_trace_syscall_exit(K_SYSCALL_GPIO_PORT_TOGGLE_BITS, gpio_port_toggle_bits, port, pins, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_gpio_get_pending_int(const struct device * dev); + +__pinned_func +static inline int gpio_get_pending_int(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_GPIO_GET_PENDING_INT); + } +#endif + compiler_barrier(); + return z_impl_gpio_get_pending_int(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define gpio_get_pending_int(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_GPIO_GET_PENDING_INT, gpio_get_pending_int, dev); syscall__retval = gpio_get_pending_int(dev); sys_port_trace_syscall_exit(K_SYSCALL_GPIO_GET_PENDING_INT, gpio_get_pending_int, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/haptics.h b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/haptics.h new file mode 100644 index 0000000..b6e30be --- /dev/null +++ b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/haptics.h @@ -0,0 +1,74 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_HAPTICS_H +#define Z_INCLUDE_SYSCALLS_HAPTICS_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_haptics_start_output(const struct device * dev); + +__pinned_func +static inline int haptics_start_output(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_HAPTICS_START_OUTPUT); + } +#endif + compiler_barrier(); + return z_impl_haptics_start_output(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define haptics_start_output(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_HAPTICS_START_OUTPUT, haptics_start_output, dev); syscall__retval = haptics_start_output(dev); sys_port_trace_syscall_exit(K_SYSCALL_HAPTICS_START_OUTPUT, haptics_start_output, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_haptics_stop_output(const struct device * dev); + +__pinned_func +static inline int haptics_stop_output(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_HAPTICS_STOP_OUTPUT); + } +#endif + compiler_barrier(); + return z_impl_haptics_stop_output(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define haptics_stop_output(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_HAPTICS_STOP_OUTPUT, haptics_stop_output, dev); syscall__retval = haptics_stop_output(dev); sys_port_trace_syscall_exit(K_SYSCALL_HAPTICS_STOP_OUTPUT, haptics_stop_output, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/hwinfo.h b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/hwinfo.h new file mode 100644 index 0000000..cd05615 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/hwinfo.h @@ -0,0 +1,143 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_HWINFO_H +#define Z_INCLUDE_SYSCALLS_HWINFO_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern ssize_t z_impl_hwinfo_get_device_id(uint8_t * buffer, size_t length); + +__pinned_func +static inline ssize_t hwinfo_get_device_id(uint8_t * buffer, size_t length) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; uint8_t * val; } parm0 = { .val = buffer }; + union { uintptr_t x; size_t val; } parm1 = { .val = length }; + return (ssize_t) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_HWINFO_GET_DEVICE_ID); + } +#endif + compiler_barrier(); + return z_impl_hwinfo_get_device_id(buffer, length); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define hwinfo_get_device_id(buffer, length) ({ ssize_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_HWINFO_GET_DEVICE_ID, hwinfo_get_device_id, buffer, length); syscall__retval = hwinfo_get_device_id(buffer, length); sys_port_trace_syscall_exit(K_SYSCALL_HWINFO_GET_DEVICE_ID, hwinfo_get_device_id, buffer, length, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_hwinfo_get_device_eui64(uint8_t * buffer); + +__pinned_func +static inline int hwinfo_get_device_eui64(uint8_t * buffer) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; uint8_t * val; } parm0 = { .val = buffer }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_HWINFO_GET_DEVICE_EUI64); + } +#endif + compiler_barrier(); + return z_impl_hwinfo_get_device_eui64(buffer); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define hwinfo_get_device_eui64(buffer) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_HWINFO_GET_DEVICE_EUI64, hwinfo_get_device_eui64, buffer); syscall__retval = hwinfo_get_device_eui64(buffer); sys_port_trace_syscall_exit(K_SYSCALL_HWINFO_GET_DEVICE_EUI64, hwinfo_get_device_eui64, buffer, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_hwinfo_get_reset_cause(uint32_t * cause); + +__pinned_func +static inline int hwinfo_get_reset_cause(uint32_t * cause) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; uint32_t * val; } parm0 = { .val = cause }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_HWINFO_GET_RESET_CAUSE); + } +#endif + compiler_barrier(); + return z_impl_hwinfo_get_reset_cause(cause); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define hwinfo_get_reset_cause(cause) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_HWINFO_GET_RESET_CAUSE, hwinfo_get_reset_cause, cause); syscall__retval = hwinfo_get_reset_cause(cause); sys_port_trace_syscall_exit(K_SYSCALL_HWINFO_GET_RESET_CAUSE, hwinfo_get_reset_cause, cause, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_hwinfo_clear_reset_cause(void); + +__pinned_func +static inline int hwinfo_clear_reset_cause(void) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + return (int) arch_syscall_invoke0(K_SYSCALL_HWINFO_CLEAR_RESET_CAUSE); + } +#endif + compiler_barrier(); + return z_impl_hwinfo_clear_reset_cause(); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define hwinfo_clear_reset_cause() ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_HWINFO_CLEAR_RESET_CAUSE, hwinfo_clear_reset_cause); syscall__retval = hwinfo_clear_reset_cause(); sys_port_trace_syscall_exit(K_SYSCALL_HWINFO_CLEAR_RESET_CAUSE, hwinfo_clear_reset_cause, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_hwinfo_get_supported_reset_cause(uint32_t * supported); + +__pinned_func +static inline int hwinfo_get_supported_reset_cause(uint32_t * supported) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; uint32_t * val; } parm0 = { .val = supported }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_HWINFO_GET_SUPPORTED_RESET_CAUSE); + } +#endif + compiler_barrier(); + return z_impl_hwinfo_get_supported_reset_cause(supported); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define hwinfo_get_supported_reset_cause(supported) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_HWINFO_GET_SUPPORTED_RESET_CAUSE, hwinfo_get_supported_reset_cause, supported); syscall__retval = hwinfo_get_supported_reset_cause(supported); sys_port_trace_syscall_exit(K_SYSCALL_HWINFO_GET_SUPPORTED_RESET_CAUSE, hwinfo_get_supported_reset_cause, supported, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/hwspinlock.h b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/hwspinlock.h new file mode 100644 index 0000000..f9a5740 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/hwspinlock.h @@ -0,0 +1,125 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_HWSPINLOCK_H +#define Z_INCLUDE_SYSCALLS_HWSPINLOCK_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_hwspinlock_trylock(const struct device * dev, uint32_t id); + +__pinned_func +static inline int hwspinlock_trylock(const struct device * dev, uint32_t id) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = id }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_HWSPINLOCK_TRYLOCK); + } +#endif + compiler_barrier(); + return z_impl_hwspinlock_trylock(dev, id); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define hwspinlock_trylock(dev, id) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_HWSPINLOCK_TRYLOCK, hwspinlock_trylock, dev, id); syscall__retval = hwspinlock_trylock(dev, id); sys_port_trace_syscall_exit(K_SYSCALL_HWSPINLOCK_TRYLOCK, hwspinlock_trylock, dev, id, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern void z_impl_hwspinlock_lock(const struct device * dev, uint32_t id); + +__pinned_func +static inline void hwspinlock_lock(const struct device * dev, uint32_t id) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = id }; + (void) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_HWSPINLOCK_LOCK); + return; + } +#endif + compiler_barrier(); + z_impl_hwspinlock_lock(dev, id); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define hwspinlock_lock(dev, id) do { sys_port_trace_syscall_enter(K_SYSCALL_HWSPINLOCK_LOCK, hwspinlock_lock, dev, id); hwspinlock_lock(dev, id); sys_port_trace_syscall_exit(K_SYSCALL_HWSPINLOCK_LOCK, hwspinlock_lock, dev, id); } while(false) +#endif +#endif + + +extern void z_impl_hwspinlock_unlock(const struct device * dev, uint32_t id); + +__pinned_func +static inline void hwspinlock_unlock(const struct device * dev, uint32_t id) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = id }; + (void) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_HWSPINLOCK_UNLOCK); + return; + } +#endif + compiler_barrier(); + z_impl_hwspinlock_unlock(dev, id); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define hwspinlock_unlock(dev, id) do { sys_port_trace_syscall_enter(K_SYSCALL_HWSPINLOCK_UNLOCK, hwspinlock_unlock, dev, id); hwspinlock_unlock(dev, id); sys_port_trace_syscall_exit(K_SYSCALL_HWSPINLOCK_UNLOCK, hwspinlock_unlock, dev, id); } while(false) +#endif +#endif + + +extern uint32_t z_impl_hwspinlock_get_max_id(const struct device * dev); + +__pinned_func +static inline uint32_t hwspinlock_get_max_id(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (uint32_t) arch_syscall_invoke1(parm0.x, K_SYSCALL_HWSPINLOCK_GET_MAX_ID); + } +#endif + compiler_barrier(); + return z_impl_hwspinlock_get_max_id(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define hwspinlock_get_max_id(dev) ({ uint32_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_HWSPINLOCK_GET_MAX_ID, hwspinlock_get_max_id, dev); syscall__retval = hwspinlock_get_max_id(dev); sys_port_trace_syscall_exit(K_SYSCALL_HWSPINLOCK_GET_MAX_ID, hwspinlock_get_max_id, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/i2c.h b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/i2c.h new file mode 100644 index 0000000..8a11d7a --- /dev/null +++ b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/i2c.h @@ -0,0 +1,171 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_I2C_H +#define Z_INCLUDE_SYSCALLS_I2C_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_i2c_configure(const struct device * dev, uint32_t dev_config); + +__pinned_func +static inline int i2c_configure(const struct device * dev, uint32_t dev_config) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = dev_config }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_I2C_CONFIGURE); + } +#endif + compiler_barrier(); + return z_impl_i2c_configure(dev, dev_config); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define i2c_configure(dev, dev_config) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_I2C_CONFIGURE, i2c_configure, dev, dev_config); syscall__retval = i2c_configure(dev, dev_config); sys_port_trace_syscall_exit(K_SYSCALL_I2C_CONFIGURE, i2c_configure, dev, dev_config, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_i2c_get_config(const struct device * dev, uint32_t * dev_config); + +__pinned_func +static inline int i2c_get_config(const struct device * dev, uint32_t * dev_config) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t * val; } parm1 = { .val = dev_config }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_I2C_GET_CONFIG); + } +#endif + compiler_barrier(); + return z_impl_i2c_get_config(dev, dev_config); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define i2c_get_config(dev, dev_config) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_I2C_GET_CONFIG, i2c_get_config, dev, dev_config); syscall__retval = i2c_get_config(dev, dev_config); sys_port_trace_syscall_exit(K_SYSCALL_I2C_GET_CONFIG, i2c_get_config, dev, dev_config, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_i2c_transfer(const struct device * dev, struct i2c_msg * msgs, uint8_t num_msgs, uint16_t addr); + +__pinned_func +static inline int i2c_transfer(const struct device * dev, struct i2c_msg * msgs, uint8_t num_msgs, uint16_t addr) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct i2c_msg * val; } parm1 = { .val = msgs }; + union { uintptr_t x; uint8_t val; } parm2 = { .val = num_msgs }; + union { uintptr_t x; uint16_t val; } parm3 = { .val = addr }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_I2C_TRANSFER); + } +#endif + compiler_barrier(); + return z_impl_i2c_transfer(dev, msgs, num_msgs, addr); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define i2c_transfer(dev, msgs, num_msgs, addr) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_I2C_TRANSFER, i2c_transfer, dev, msgs, num_msgs, addr); syscall__retval = i2c_transfer(dev, msgs, num_msgs, addr); sys_port_trace_syscall_exit(K_SYSCALL_I2C_TRANSFER, i2c_transfer, dev, msgs, num_msgs, addr, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_i2c_recover_bus(const struct device * dev); + +__pinned_func +static inline int i2c_recover_bus(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_I2C_RECOVER_BUS); + } +#endif + compiler_barrier(); + return z_impl_i2c_recover_bus(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define i2c_recover_bus(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_I2C_RECOVER_BUS, i2c_recover_bus, dev); syscall__retval = i2c_recover_bus(dev); sys_port_trace_syscall_exit(K_SYSCALL_I2C_RECOVER_BUS, i2c_recover_bus, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_i2c_target_driver_register(const struct device * dev); + +__pinned_func +static inline int i2c_target_driver_register(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_I2C_TARGET_DRIVER_REGISTER); + } +#endif + compiler_barrier(); + return z_impl_i2c_target_driver_register(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define i2c_target_driver_register(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_I2C_TARGET_DRIVER_REGISTER, i2c_target_driver_register, dev); syscall__retval = i2c_target_driver_register(dev); sys_port_trace_syscall_exit(K_SYSCALL_I2C_TARGET_DRIVER_REGISTER, i2c_target_driver_register, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_i2c_target_driver_unregister(const struct device * dev); + +__pinned_func +static inline int i2c_target_driver_unregister(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_I2C_TARGET_DRIVER_UNREGISTER); + } +#endif + compiler_barrier(); + return z_impl_i2c_target_driver_unregister(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define i2c_target_driver_unregister(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_I2C_TARGET_DRIVER_UNREGISTER, i2c_target_driver_unregister, dev); syscall__retval = i2c_target_driver_unregister(dev); sys_port_trace_syscall_exit(K_SYSCALL_I2C_TARGET_DRIVER_UNREGISTER, i2c_target_driver_unregister, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/i2s.h b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/i2s.h new file mode 100644 index 0000000..3176fec --- /dev/null +++ b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/i2s.h @@ -0,0 +1,128 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_I2S_H +#define Z_INCLUDE_SYSCALLS_I2S_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_i2s_configure(const struct device * dev, enum i2s_dir dir, const struct i2s_config * cfg); + +__pinned_func +static inline int i2s_configure(const struct device * dev, enum i2s_dir dir, const struct i2s_config * cfg) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; enum i2s_dir val; } parm1 = { .val = dir }; + union { uintptr_t x; const struct i2s_config * val; } parm2 = { .val = cfg }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_I2S_CONFIGURE); + } +#endif + compiler_barrier(); + return z_impl_i2s_configure(dev, dir, cfg); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define i2s_configure(dev, dir, cfg) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_I2S_CONFIGURE, i2s_configure, dev, dir, cfg); syscall__retval = i2s_configure(dev, dir, cfg); sys_port_trace_syscall_exit(K_SYSCALL_I2S_CONFIGURE, i2s_configure, dev, dir, cfg, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_i2s_buf_read(const struct device * dev, void * buf, size_t * size); + +__pinned_func +static inline int i2s_buf_read(const struct device * dev, void * buf, size_t * size) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; void * val; } parm1 = { .val = buf }; + union { uintptr_t x; size_t * val; } parm2 = { .val = size }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_I2S_BUF_READ); + } +#endif + compiler_barrier(); + return z_impl_i2s_buf_read(dev, buf, size); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define i2s_buf_read(dev, buf, size) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_I2S_BUF_READ, i2s_buf_read, dev, buf, size); syscall__retval = i2s_buf_read(dev, buf, size); sys_port_trace_syscall_exit(K_SYSCALL_I2S_BUF_READ, i2s_buf_read, dev, buf, size, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_i2s_buf_write(const struct device * dev, void * buf, size_t size); + +__pinned_func +static inline int i2s_buf_write(const struct device * dev, void * buf, size_t size) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; void * val; } parm1 = { .val = buf }; + union { uintptr_t x; size_t val; } parm2 = { .val = size }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_I2S_BUF_WRITE); + } +#endif + compiler_barrier(); + return z_impl_i2s_buf_write(dev, buf, size); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define i2s_buf_write(dev, buf, size) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_I2S_BUF_WRITE, i2s_buf_write, dev, buf, size); syscall__retval = i2s_buf_write(dev, buf, size); sys_port_trace_syscall_exit(K_SYSCALL_I2S_BUF_WRITE, i2s_buf_write, dev, buf, size, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_i2s_trigger(const struct device * dev, enum i2s_dir dir, enum i2s_trigger_cmd cmd); + +__pinned_func +static inline int i2s_trigger(const struct device * dev, enum i2s_dir dir, enum i2s_trigger_cmd cmd) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; enum i2s_dir val; } parm1 = { .val = dir }; + union { uintptr_t x; enum i2s_trigger_cmd val; } parm2 = { .val = cmd }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_I2S_TRIGGER); + } +#endif + compiler_barrier(); + return z_impl_i2s_trigger(dev, dir, cmd); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define i2s_trigger(dev, dir, cmd) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_I2S_TRIGGER, i2s_trigger, dev, dir, cmd); syscall__retval = i2s_trigger(dev, dir, cmd); sys_port_trace_syscall_exit(K_SYSCALL_I2S_TRIGGER, i2s_trigger, dev, dir, cmd, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/i3c.h b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/i3c.h new file mode 100644 index 0000000..cb90359 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/i3c.h @@ -0,0 +1,77 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_I3C_H +#define Z_INCLUDE_SYSCALLS_I3C_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_i3c_do_ccc(const struct device * dev, struct i3c_ccc_payload * payload); + +__pinned_func +static inline int i3c_do_ccc(const struct device * dev, struct i3c_ccc_payload * payload) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct i3c_ccc_payload * val; } parm1 = { .val = payload }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_I3C_DO_CCC); + } +#endif + compiler_barrier(); + return z_impl_i3c_do_ccc(dev, payload); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define i3c_do_ccc(dev, payload) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_I3C_DO_CCC, i3c_do_ccc, dev, payload); syscall__retval = i3c_do_ccc(dev, payload); sys_port_trace_syscall_exit(K_SYSCALL_I3C_DO_CCC, i3c_do_ccc, dev, payload, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_i3c_transfer(struct i3c_device_desc * target, struct i3c_msg * msgs, uint8_t num_msgs); + +__pinned_func +static inline int i3c_transfer(struct i3c_device_desc * target, struct i3c_msg * msgs, uint8_t num_msgs) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct i3c_device_desc * val; } parm0 = { .val = target }; + union { uintptr_t x; struct i3c_msg * val; } parm1 = { .val = msgs }; + union { uintptr_t x; uint8_t val; } parm2 = { .val = num_msgs }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_I3C_TRANSFER); + } +#endif + compiler_barrier(); + return z_impl_i3c_transfer(target, msgs, num_msgs); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define i3c_transfer(target, msgs, num_msgs) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_I3C_TRANSFER, i3c_transfer, target, msgs, num_msgs); syscall__retval = i3c_transfer(target, msgs, num_msgs); sys_port_trace_syscall_exit(K_SYSCALL_I3C_TRANSFER, i3c_transfer, target, msgs, num_msgs, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/ipm.h b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/ipm.h new file mode 100644 index 0000000..beafd88 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/ipm.h @@ -0,0 +1,149 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_IPM_H +#define Z_INCLUDE_SYSCALLS_IPM_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_ipm_send(const struct device * ipmdev, int wait, uint32_t id, const void * data, int size); + +__pinned_func +static inline int ipm_send(const struct device * ipmdev, int wait, uint32_t id, const void * data, int size) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = ipmdev }; + union { uintptr_t x; int val; } parm1 = { .val = wait }; + union { uintptr_t x; uint32_t val; } parm2 = { .val = id }; + union { uintptr_t x; const void * val; } parm3 = { .val = data }; + union { uintptr_t x; int val; } parm4 = { .val = size }; + return (int) arch_syscall_invoke5(parm0.x, parm1.x, parm2.x, parm3.x, parm4.x, K_SYSCALL_IPM_SEND); + } +#endif + compiler_barrier(); + return z_impl_ipm_send(ipmdev, wait, id, data, size); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define ipm_send(ipmdev, wait, id, data, size) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_IPM_SEND, ipm_send, ipmdev, wait, id, data, size); syscall__retval = ipm_send(ipmdev, wait, id, data, size); sys_port_trace_syscall_exit(K_SYSCALL_IPM_SEND, ipm_send, ipmdev, wait, id, data, size, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_ipm_max_data_size_get(const struct device * ipmdev); + +__pinned_func +static inline int ipm_max_data_size_get(const struct device * ipmdev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = ipmdev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_IPM_MAX_DATA_SIZE_GET); + } +#endif + compiler_barrier(); + return z_impl_ipm_max_data_size_get(ipmdev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define ipm_max_data_size_get(ipmdev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_IPM_MAX_DATA_SIZE_GET, ipm_max_data_size_get, ipmdev); syscall__retval = ipm_max_data_size_get(ipmdev); sys_port_trace_syscall_exit(K_SYSCALL_IPM_MAX_DATA_SIZE_GET, ipm_max_data_size_get, ipmdev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern uint32_t z_impl_ipm_max_id_val_get(const struct device * ipmdev); + +__pinned_func +static inline uint32_t ipm_max_id_val_get(const struct device * ipmdev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = ipmdev }; + return (uint32_t) arch_syscall_invoke1(parm0.x, K_SYSCALL_IPM_MAX_ID_VAL_GET); + } +#endif + compiler_barrier(); + return z_impl_ipm_max_id_val_get(ipmdev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define ipm_max_id_val_get(ipmdev) ({ uint32_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_IPM_MAX_ID_VAL_GET, ipm_max_id_val_get, ipmdev); syscall__retval = ipm_max_id_val_get(ipmdev); sys_port_trace_syscall_exit(K_SYSCALL_IPM_MAX_ID_VAL_GET, ipm_max_id_val_get, ipmdev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_ipm_set_enabled(const struct device * ipmdev, int enable); + +__pinned_func +static inline int ipm_set_enabled(const struct device * ipmdev, int enable) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = ipmdev }; + union { uintptr_t x; int val; } parm1 = { .val = enable }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_IPM_SET_ENABLED); + } +#endif + compiler_barrier(); + return z_impl_ipm_set_enabled(ipmdev, enable); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define ipm_set_enabled(ipmdev, enable) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_IPM_SET_ENABLED, ipm_set_enabled, ipmdev, enable); syscall__retval = ipm_set_enabled(ipmdev, enable); sys_port_trace_syscall_exit(K_SYSCALL_IPM_SET_ENABLED, ipm_set_enabled, ipmdev, enable, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern void z_impl_ipm_complete(const struct device * ipmdev); + +__pinned_func +static inline void ipm_complete(const struct device * ipmdev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = ipmdev }; + (void) arch_syscall_invoke1(parm0.x, K_SYSCALL_IPM_COMPLETE); + return; + } +#endif + compiler_barrier(); + z_impl_ipm_complete(ipmdev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define ipm_complete(ipmdev) do { sys_port_trace_syscall_enter(K_SYSCALL_IPM_COMPLETE, ipm_complete, ipmdev); ipm_complete(ipmdev); sys_port_trace_syscall_exit(K_SYSCALL_IPM_COMPLETE, ipm_complete, ipmdev); } while(false) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/ivshmem.h b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/ivshmem.h new file mode 100644 index 0000000..d16fdd7 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/ivshmem.h @@ -0,0 +1,315 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_IVSHMEM_H +#define Z_INCLUDE_SYSCALLS_IVSHMEM_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern size_t z_impl_ivshmem_get_mem(const struct device * dev, uintptr_t * memmap); + +__pinned_func +static inline size_t ivshmem_get_mem(const struct device * dev, uintptr_t * memmap) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uintptr_t * val; } parm1 = { .val = memmap }; + return (size_t) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_IVSHMEM_GET_MEM); + } +#endif + compiler_barrier(); + return z_impl_ivshmem_get_mem(dev, memmap); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define ivshmem_get_mem(dev, memmap) ({ size_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_IVSHMEM_GET_MEM, ivshmem_get_mem, dev, memmap); syscall__retval = ivshmem_get_mem(dev, memmap); sys_port_trace_syscall_exit(K_SYSCALL_IVSHMEM_GET_MEM, ivshmem_get_mem, dev, memmap, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern uint32_t z_impl_ivshmem_get_id(const struct device * dev); + +__pinned_func +static inline uint32_t ivshmem_get_id(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (uint32_t) arch_syscall_invoke1(parm0.x, K_SYSCALL_IVSHMEM_GET_ID); + } +#endif + compiler_barrier(); + return z_impl_ivshmem_get_id(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define ivshmem_get_id(dev) ({ uint32_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_IVSHMEM_GET_ID, ivshmem_get_id, dev); syscall__retval = ivshmem_get_id(dev); sys_port_trace_syscall_exit(K_SYSCALL_IVSHMEM_GET_ID, ivshmem_get_id, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern uint16_t z_impl_ivshmem_get_vectors(const struct device * dev); + +__pinned_func +static inline uint16_t ivshmem_get_vectors(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (uint16_t) arch_syscall_invoke1(parm0.x, K_SYSCALL_IVSHMEM_GET_VECTORS); + } +#endif + compiler_barrier(); + return z_impl_ivshmem_get_vectors(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define ivshmem_get_vectors(dev) ({ uint16_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_IVSHMEM_GET_VECTORS, ivshmem_get_vectors, dev); syscall__retval = ivshmem_get_vectors(dev); sys_port_trace_syscall_exit(K_SYSCALL_IVSHMEM_GET_VECTORS, ivshmem_get_vectors, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_ivshmem_int_peer(const struct device * dev, uint32_t peer_id, uint16_t vector); + +__pinned_func +static inline int ivshmem_int_peer(const struct device * dev, uint32_t peer_id, uint16_t vector) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = peer_id }; + union { uintptr_t x; uint16_t val; } parm2 = { .val = vector }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_IVSHMEM_INT_PEER); + } +#endif + compiler_barrier(); + return z_impl_ivshmem_int_peer(dev, peer_id, vector); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define ivshmem_int_peer(dev, peer_id, vector) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_IVSHMEM_INT_PEER, ivshmem_int_peer, dev, peer_id, vector); syscall__retval = ivshmem_int_peer(dev, peer_id, vector); sys_port_trace_syscall_exit(K_SYSCALL_IVSHMEM_INT_PEER, ivshmem_int_peer, dev, peer_id, vector, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_ivshmem_register_handler(const struct device * dev, struct k_poll_signal * signal, uint16_t vector); + +__pinned_func +static inline int ivshmem_register_handler(const struct device * dev, struct k_poll_signal * signal, uint16_t vector) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct k_poll_signal * val; } parm1 = { .val = signal }; + union { uintptr_t x; uint16_t val; } parm2 = { .val = vector }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_IVSHMEM_REGISTER_HANDLER); + } +#endif + compiler_barrier(); + return z_impl_ivshmem_register_handler(dev, signal, vector); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define ivshmem_register_handler(dev, signal, vector) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_IVSHMEM_REGISTER_HANDLER, ivshmem_register_handler, dev, signal, vector); syscall__retval = ivshmem_register_handler(dev, signal, vector); sys_port_trace_syscall_exit(K_SYSCALL_IVSHMEM_REGISTER_HANDLER, ivshmem_register_handler, dev, signal, vector, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern size_t z_impl_ivshmem_get_rw_mem_section(const struct device * dev, uintptr_t * memmap); + +__pinned_func +static inline size_t ivshmem_get_rw_mem_section(const struct device * dev, uintptr_t * memmap) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uintptr_t * val; } parm1 = { .val = memmap }; + return (size_t) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_IVSHMEM_GET_RW_MEM_SECTION); + } +#endif + compiler_barrier(); + return z_impl_ivshmem_get_rw_mem_section(dev, memmap); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define ivshmem_get_rw_mem_section(dev, memmap) ({ size_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_IVSHMEM_GET_RW_MEM_SECTION, ivshmem_get_rw_mem_section, dev, memmap); syscall__retval = ivshmem_get_rw_mem_section(dev, memmap); sys_port_trace_syscall_exit(K_SYSCALL_IVSHMEM_GET_RW_MEM_SECTION, ivshmem_get_rw_mem_section, dev, memmap, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern size_t z_impl_ivshmem_get_output_mem_section(const struct device * dev, uint32_t peer_id, uintptr_t * memmap); + +__pinned_func +static inline size_t ivshmem_get_output_mem_section(const struct device * dev, uint32_t peer_id, uintptr_t * memmap) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = peer_id }; + union { uintptr_t x; uintptr_t * val; } parm2 = { .val = memmap }; + return (size_t) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_IVSHMEM_GET_OUTPUT_MEM_SECTION); + } +#endif + compiler_barrier(); + return z_impl_ivshmem_get_output_mem_section(dev, peer_id, memmap); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define ivshmem_get_output_mem_section(dev, peer_id, memmap) ({ size_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_IVSHMEM_GET_OUTPUT_MEM_SECTION, ivshmem_get_output_mem_section, dev, peer_id, memmap); syscall__retval = ivshmem_get_output_mem_section(dev, peer_id, memmap); sys_port_trace_syscall_exit(K_SYSCALL_IVSHMEM_GET_OUTPUT_MEM_SECTION, ivshmem_get_output_mem_section, dev, peer_id, memmap, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern uint32_t z_impl_ivshmem_get_state(const struct device * dev, uint32_t peer_id); + +__pinned_func +static inline uint32_t ivshmem_get_state(const struct device * dev, uint32_t peer_id) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = peer_id }; + return (uint32_t) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_IVSHMEM_GET_STATE); + } +#endif + compiler_barrier(); + return z_impl_ivshmem_get_state(dev, peer_id); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define ivshmem_get_state(dev, peer_id) ({ uint32_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_IVSHMEM_GET_STATE, ivshmem_get_state, dev, peer_id); syscall__retval = ivshmem_get_state(dev, peer_id); sys_port_trace_syscall_exit(K_SYSCALL_IVSHMEM_GET_STATE, ivshmem_get_state, dev, peer_id, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_ivshmem_set_state(const struct device * dev, uint32_t state); + +__pinned_func +static inline int ivshmem_set_state(const struct device * dev, uint32_t state) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = state }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_IVSHMEM_SET_STATE); + } +#endif + compiler_barrier(); + return z_impl_ivshmem_set_state(dev, state); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define ivshmem_set_state(dev, state) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_IVSHMEM_SET_STATE, ivshmem_set_state, dev, state); syscall__retval = ivshmem_set_state(dev, state); sys_port_trace_syscall_exit(K_SYSCALL_IVSHMEM_SET_STATE, ivshmem_set_state, dev, state, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern uint32_t z_impl_ivshmem_get_max_peers(const struct device * dev); + +__pinned_func +static inline uint32_t ivshmem_get_max_peers(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (uint32_t) arch_syscall_invoke1(parm0.x, K_SYSCALL_IVSHMEM_GET_MAX_PEERS); + } +#endif + compiler_barrier(); + return z_impl_ivshmem_get_max_peers(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define ivshmem_get_max_peers(dev) ({ uint32_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_IVSHMEM_GET_MAX_PEERS, ivshmem_get_max_peers, dev); syscall__retval = ivshmem_get_max_peers(dev); sys_port_trace_syscall_exit(K_SYSCALL_IVSHMEM_GET_MAX_PEERS, ivshmem_get_max_peers, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern uint16_t z_impl_ivshmem_get_protocol(const struct device * dev); + +__pinned_func +static inline uint16_t ivshmem_get_protocol(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (uint16_t) arch_syscall_invoke1(parm0.x, K_SYSCALL_IVSHMEM_GET_PROTOCOL); + } +#endif + compiler_barrier(); + return z_impl_ivshmem_get_protocol(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define ivshmem_get_protocol(dev) ({ uint16_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_IVSHMEM_GET_PROTOCOL, ivshmem_get_protocol, dev); syscall__retval = ivshmem_get_protocol(dev); sys_port_trace_syscall_exit(K_SYSCALL_IVSHMEM_GET_PROTOCOL, ivshmem_get_protocol, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_ivshmem_enable_interrupts(const struct device * dev, bool enable); + +__pinned_func +static inline int ivshmem_enable_interrupts(const struct device * dev, bool enable) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; bool val; } parm1 = { .val = enable }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_IVSHMEM_ENABLE_INTERRUPTS); + } +#endif + compiler_barrier(); + return z_impl_ivshmem_enable_interrupts(dev, enable); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define ivshmem_enable_interrupts(dev, enable) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_IVSHMEM_ENABLE_INTERRUPTS, ivshmem_enable_interrupts, dev, enable); syscall__retval = ivshmem_enable_interrupts(dev, enable); sys_port_trace_syscall_exit(K_SYSCALL_IVSHMEM_ENABLE_INTERRUPTS, ivshmem_enable_interrupts, dev, enable, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/kernel.h b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/kernel.h new file mode 100644 index 0000000..b09a13d --- /dev/null +++ b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/kernel.h @@ -0,0 +1,1589 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_KERNEL_H +#define Z_INCLUDE_SYSCALLS_KERNEL_H + + + + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern k_thread_stack_t * z_impl_k_thread_stack_alloc(size_t size, int flags); + +__pinned_func +static inline k_thread_stack_t * k_thread_stack_alloc(size_t size, int flags) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; size_t val; } parm0 = { .val = size }; + union { uintptr_t x; int val; } parm1 = { .val = flags }; + return (k_thread_stack_t *) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_K_THREAD_STACK_ALLOC); + } +#endif + compiler_barrier(); + return z_impl_k_thread_stack_alloc(size, flags); +} + + +extern int z_impl_k_thread_stack_free(k_thread_stack_t * stack); + +__pinned_func +static inline int k_thread_stack_free(k_thread_stack_t * stack) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; k_thread_stack_t * val; } parm0 = { .val = stack }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_THREAD_STACK_FREE); + } +#endif + compiler_barrier(); + return z_impl_k_thread_stack_free(stack); +} + + +extern k_tid_t z_impl_k_thread_create(struct k_thread * new_thread, k_thread_stack_t * stack, size_t stack_size, k_thread_entry_t entry, void * p1, void * p2, void * p3, int prio, uint32_t options, k_timeout_t delay); + +__pinned_func +static inline k_tid_t k_thread_create(struct k_thread * new_thread, k_thread_stack_t * stack, size_t stack_size, k_thread_entry_t entry, void * p1, void * p2, void * p3, int prio, uint32_t options, k_timeout_t delay) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_thread * val; } parm0 = { .val = new_thread }; + union { uintptr_t x; k_thread_stack_t * val; } parm1 = { .val = stack }; + union { uintptr_t x; size_t val; } parm2 = { .val = stack_size }; + union { uintptr_t x; k_thread_entry_t val; } parm3 = { .val = entry }; + union { uintptr_t x; void * val; } parm4 = { .val = p1 }; + union { uintptr_t x; void * val; } parm5 = { .val = p2 }; + union { uintptr_t x; void * val; } parm6 = { .val = p3 }; + union { uintptr_t x; int val; } parm7 = { .val = prio }; + union { uintptr_t x; uint32_t val; } parm8 = { .val = options }; + union { struct { uintptr_t lo, hi; } split; k_timeout_t val; } parm9 = { .val = delay }; + uintptr_t more[] = { + parm5.x, + parm6.x, + parm7.x, + parm8.x, + parm9.split.lo, + parm9.split.hi + }; + return (k_tid_t) arch_syscall_invoke6(parm0.x, parm1.x, parm2.x, parm3.x, parm4.x, (uintptr_t) &more, K_SYSCALL_K_THREAD_CREATE); + } +#endif + compiler_barrier(); + return z_impl_k_thread_create(new_thread, stack, stack_size, entry, p1, p2, p3, prio, options, delay); +} + + +extern int z_impl_k_thread_stack_space_get(const struct k_thread * thread, size_t * unused_ptr); + +__pinned_func +static inline int k_thread_stack_space_get(const struct k_thread * thread, size_t * unused_ptr) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct k_thread * val; } parm0 = { .val = thread }; + union { uintptr_t x; size_t * val; } parm1 = { .val = unused_ptr }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_K_THREAD_STACK_SPACE_GET); + } +#endif + compiler_barrier(); + return z_impl_k_thread_stack_space_get(thread, unused_ptr); +} + + +extern int z_impl_k_thread_join(struct k_thread * thread, k_timeout_t timeout); + +__pinned_func +static inline int k_thread_join(struct k_thread * thread, k_timeout_t timeout) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_thread * val; } parm0 = { .val = thread }; + union { struct { uintptr_t lo, hi; } split; k_timeout_t val; } parm1 = { .val = timeout }; + return (int) arch_syscall_invoke3(parm0.x, parm1.split.lo, parm1.split.hi, K_SYSCALL_K_THREAD_JOIN); + } +#endif + compiler_barrier(); + return z_impl_k_thread_join(thread, timeout); +} + + +extern int32_t z_impl_k_sleep(k_timeout_t timeout); + +__pinned_func +static inline int32_t k_sleep(k_timeout_t timeout) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { struct { uintptr_t lo, hi; } split; k_timeout_t val; } parm0 = { .val = timeout }; + return (int32_t) arch_syscall_invoke2(parm0.split.lo, parm0.split.hi, K_SYSCALL_K_SLEEP); + } +#endif + compiler_barrier(); + return z_impl_k_sleep(timeout); +} + + +extern int32_t z_impl_k_usleep(int32_t us); + +__pinned_func +static inline int32_t k_usleep(int32_t us) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; int32_t val; } parm0 = { .val = us }; + return (int32_t) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_USLEEP); + } +#endif + compiler_barrier(); + return z_impl_k_usleep(us); +} + + +extern void z_impl_k_busy_wait(uint32_t usec_to_wait); + +__pinned_func +static inline void k_busy_wait(uint32_t usec_to_wait) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; uint32_t val; } parm0 = { .val = usec_to_wait }; + (void) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_BUSY_WAIT); + return; + } +#endif + compiler_barrier(); + z_impl_k_busy_wait(usec_to_wait); +} + + +extern void z_impl_k_yield(void); + +__pinned_func +static inline void k_yield(void) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + (void) arch_syscall_invoke0(K_SYSCALL_K_YIELD); + return; + } +#endif + compiler_barrier(); + z_impl_k_yield(); +} + + +extern void z_impl_k_wakeup(k_tid_t thread); + +__pinned_func +static inline void k_wakeup(k_tid_t thread) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; k_tid_t val; } parm0 = { .val = thread }; + (void) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_WAKEUP); + return; + } +#endif + compiler_barrier(); + z_impl_k_wakeup(thread); +} + + +extern k_tid_t z_impl_k_sched_current_thread_query(void); + +__pinned_func +static inline k_tid_t k_sched_current_thread_query(void) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + return (k_tid_t) arch_syscall_invoke0(K_SYSCALL_K_SCHED_CURRENT_THREAD_QUERY); + } +#endif + compiler_barrier(); + return z_impl_k_sched_current_thread_query(); +} + + +extern void z_impl_k_thread_abort(k_tid_t thread); + +__pinned_func +static inline void k_thread_abort(k_tid_t thread) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; k_tid_t val; } parm0 = { .val = thread }; + (void) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_THREAD_ABORT); + return; + } +#endif + compiler_barrier(); + z_impl_k_thread_abort(thread); +} + + +extern k_ticks_t z_impl_k_thread_timeout_expires_ticks(const struct k_thread * thread); + +__pinned_func +static inline k_ticks_t k_thread_timeout_expires_ticks(const struct k_thread * thread) +{ +#ifdef CONFIG_USERSPACE + uint64_t ret64; + if (z_syscall_trap()) { + union { uintptr_t x; const struct k_thread * val; } parm0 = { .val = thread }; + (void) arch_syscall_invoke2(parm0.x, (uintptr_t)&ret64, K_SYSCALL_K_THREAD_TIMEOUT_EXPIRES_TICKS); + return (k_ticks_t) ret64; + } +#endif + compiler_barrier(); + return z_impl_k_thread_timeout_expires_ticks(thread); +} + + +extern k_ticks_t z_impl_k_thread_timeout_remaining_ticks(const struct k_thread * thread); + +__pinned_func +static inline k_ticks_t k_thread_timeout_remaining_ticks(const struct k_thread * thread) +{ +#ifdef CONFIG_USERSPACE + uint64_t ret64; + if (z_syscall_trap()) { + union { uintptr_t x; const struct k_thread * val; } parm0 = { .val = thread }; + (void) arch_syscall_invoke2(parm0.x, (uintptr_t)&ret64, K_SYSCALL_K_THREAD_TIMEOUT_REMAINING_TICKS); + return (k_ticks_t) ret64; + } +#endif + compiler_barrier(); + return z_impl_k_thread_timeout_remaining_ticks(thread); +} + + +extern int z_impl_k_thread_priority_get(k_tid_t thread); + +__pinned_func +static inline int k_thread_priority_get(k_tid_t thread) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; k_tid_t val; } parm0 = { .val = thread }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_THREAD_PRIORITY_GET); + } +#endif + compiler_barrier(); + return z_impl_k_thread_priority_get(thread); +} + + +extern void z_impl_k_thread_priority_set(k_tid_t thread, int prio); + +__pinned_func +static inline void k_thread_priority_set(k_tid_t thread, int prio) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; k_tid_t val; } parm0 = { .val = thread }; + union { uintptr_t x; int val; } parm1 = { .val = prio }; + (void) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_K_THREAD_PRIORITY_SET); + return; + } +#endif + compiler_barrier(); + z_impl_k_thread_priority_set(thread, prio); +} + + +extern void z_impl_k_thread_deadline_set(k_tid_t thread, int deadline); + +__pinned_func +static inline void k_thread_deadline_set(k_tid_t thread, int deadline) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; k_tid_t val; } parm0 = { .val = thread }; + union { uintptr_t x; int val; } parm1 = { .val = deadline }; + (void) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_K_THREAD_DEADLINE_SET); + return; + } +#endif + compiler_barrier(); + z_impl_k_thread_deadline_set(thread, deadline); +} + + +extern void z_impl_k_reschedule(void); + +__pinned_func +static inline void k_reschedule(void) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + (void) arch_syscall_invoke0(K_SYSCALL_K_RESCHEDULE); + return; + } +#endif + compiler_barrier(); + z_impl_k_reschedule(); +} + + +extern void z_impl_k_thread_suspend(k_tid_t thread); + +__pinned_func +static inline void k_thread_suspend(k_tid_t thread) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; k_tid_t val; } parm0 = { .val = thread }; + (void) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_THREAD_SUSPEND); + return; + } +#endif + compiler_barrier(); + z_impl_k_thread_suspend(thread); +} + + +extern void z_impl_k_thread_resume(k_tid_t thread); + +__pinned_func +static inline void k_thread_resume(k_tid_t thread) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; k_tid_t val; } parm0 = { .val = thread }; + (void) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_THREAD_RESUME); + return; + } +#endif + compiler_barrier(); + z_impl_k_thread_resume(thread); +} + + +extern int z_impl_k_is_preempt_thread(void); + +__pinned_func +static inline int k_is_preempt_thread(void) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + return (int) arch_syscall_invoke0(K_SYSCALL_K_IS_PREEMPT_THREAD); + } +#endif + compiler_barrier(); + return z_impl_k_is_preempt_thread(); +} + + +extern void z_impl_k_thread_custom_data_set(void * value); + +__pinned_func +static inline void k_thread_custom_data_set(void * value) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; void * val; } parm0 = { .val = value }; + (void) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_THREAD_CUSTOM_DATA_SET); + return; + } +#endif + compiler_barrier(); + z_impl_k_thread_custom_data_set(value); +} + + +extern void * z_impl_k_thread_custom_data_get(void); + +__pinned_func +static inline void * k_thread_custom_data_get(void) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + return (void *) arch_syscall_invoke0(K_SYSCALL_K_THREAD_CUSTOM_DATA_GET); + } +#endif + compiler_barrier(); + return z_impl_k_thread_custom_data_get(); +} + + +extern int z_impl_k_thread_name_set(k_tid_t thread, const char * str); + +__pinned_func +static inline int k_thread_name_set(k_tid_t thread, const char * str) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; k_tid_t val; } parm0 = { .val = thread }; + union { uintptr_t x; const char * val; } parm1 = { .val = str }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_K_THREAD_NAME_SET); + } +#endif + compiler_barrier(); + return z_impl_k_thread_name_set(thread, str); +} + + +extern int z_impl_k_thread_name_copy(k_tid_t thread, char * buf, size_t size); + +__pinned_func +static inline int k_thread_name_copy(k_tid_t thread, char * buf, size_t size) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; k_tid_t val; } parm0 = { .val = thread }; + union { uintptr_t x; char * val; } parm1 = { .val = buf }; + union { uintptr_t x; size_t val; } parm2 = { .val = size }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_K_THREAD_NAME_COPY); + } +#endif + compiler_barrier(); + return z_impl_k_thread_name_copy(thread, buf, size); +} + + +extern void z_impl_k_timer_start(struct k_timer * timer, k_timeout_t duration, k_timeout_t period); + +__pinned_func +static inline void k_timer_start(struct k_timer * timer, k_timeout_t duration, k_timeout_t period) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_timer * val; } parm0 = { .val = timer }; + union { struct { uintptr_t lo, hi; } split; k_timeout_t val; } parm1 = { .val = duration }; + union { struct { uintptr_t lo, hi; } split; k_timeout_t val; } parm2 = { .val = period }; + (void) arch_syscall_invoke5(parm0.x, parm1.split.lo, parm1.split.hi, parm2.split.lo, parm2.split.hi, K_SYSCALL_K_TIMER_START); + return; + } +#endif + compiler_barrier(); + z_impl_k_timer_start(timer, duration, period); +} + + +extern void z_impl_k_timer_stop(struct k_timer * timer); + +__pinned_func +static inline void k_timer_stop(struct k_timer * timer) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_timer * val; } parm0 = { .val = timer }; + (void) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_TIMER_STOP); + return; + } +#endif + compiler_barrier(); + z_impl_k_timer_stop(timer); +} + + +extern uint32_t z_impl_k_timer_status_get(struct k_timer * timer); + +__pinned_func +static inline uint32_t k_timer_status_get(struct k_timer * timer) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_timer * val; } parm0 = { .val = timer }; + return (uint32_t) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_TIMER_STATUS_GET); + } +#endif + compiler_barrier(); + return z_impl_k_timer_status_get(timer); +} + + +extern uint32_t z_impl_k_timer_status_sync(struct k_timer * timer); + +__pinned_func +static inline uint32_t k_timer_status_sync(struct k_timer * timer) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_timer * val; } parm0 = { .val = timer }; + return (uint32_t) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_TIMER_STATUS_SYNC); + } +#endif + compiler_barrier(); + return z_impl_k_timer_status_sync(timer); +} + + +extern k_ticks_t z_impl_k_timer_expires_ticks(const struct k_timer * timer); + +__pinned_func +static inline k_ticks_t k_timer_expires_ticks(const struct k_timer * timer) +{ +#ifdef CONFIG_USERSPACE + uint64_t ret64; + if (z_syscall_trap()) { + union { uintptr_t x; const struct k_timer * val; } parm0 = { .val = timer }; + (void) arch_syscall_invoke2(parm0.x, (uintptr_t)&ret64, K_SYSCALL_K_TIMER_EXPIRES_TICKS); + return (k_ticks_t) ret64; + } +#endif + compiler_barrier(); + return z_impl_k_timer_expires_ticks(timer); +} + + +extern k_ticks_t z_impl_k_timer_remaining_ticks(const struct k_timer * timer); + +__pinned_func +static inline k_ticks_t k_timer_remaining_ticks(const struct k_timer * timer) +{ +#ifdef CONFIG_USERSPACE + uint64_t ret64; + if (z_syscall_trap()) { + union { uintptr_t x; const struct k_timer * val; } parm0 = { .val = timer }; + (void) arch_syscall_invoke2(parm0.x, (uintptr_t)&ret64, K_SYSCALL_K_TIMER_REMAINING_TICKS); + return (k_ticks_t) ret64; + } +#endif + compiler_barrier(); + return z_impl_k_timer_remaining_ticks(timer); +} + + +extern void z_impl_k_timer_user_data_set(struct k_timer * timer, void * user_data); + +__pinned_func +static inline void k_timer_user_data_set(struct k_timer * timer, void * user_data) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_timer * val; } parm0 = { .val = timer }; + union { uintptr_t x; void * val; } parm1 = { .val = user_data }; + (void) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_K_TIMER_USER_DATA_SET); + return; + } +#endif + compiler_barrier(); + z_impl_k_timer_user_data_set(timer, user_data); +} + + +extern void * z_impl_k_timer_user_data_get(const struct k_timer * timer); + +__pinned_func +static inline void * k_timer_user_data_get(const struct k_timer * timer) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct k_timer * val; } parm0 = { .val = timer }; + return (void *) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_TIMER_USER_DATA_GET); + } +#endif + compiler_barrier(); + return z_impl_k_timer_user_data_get(timer); +} + + +extern int64_t z_impl_k_uptime_ticks(void); + +__pinned_func +static inline int64_t k_uptime_ticks(void) +{ +#ifdef CONFIG_USERSPACE + uint64_t ret64; + if (z_syscall_trap()) { + (void) arch_syscall_invoke1((uintptr_t)&ret64, K_SYSCALL_K_UPTIME_TICKS); + return (int64_t) ret64; + } +#endif + compiler_barrier(); + return z_impl_k_uptime_ticks(); +} + + +extern void z_impl_k_queue_init(struct k_queue * queue); + +__pinned_func +static inline void k_queue_init(struct k_queue * queue) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_queue * val; } parm0 = { .val = queue }; + (void) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_QUEUE_INIT); + return; + } +#endif + compiler_barrier(); + z_impl_k_queue_init(queue); +} + + +extern void z_impl_k_queue_cancel_wait(struct k_queue * queue); + +__pinned_func +static inline void k_queue_cancel_wait(struct k_queue * queue) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_queue * val; } parm0 = { .val = queue }; + (void) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_QUEUE_CANCEL_WAIT); + return; + } +#endif + compiler_barrier(); + z_impl_k_queue_cancel_wait(queue); +} + + +extern int32_t z_impl_k_queue_alloc_append(struct k_queue * queue, void * data); + +__pinned_func +static inline int32_t k_queue_alloc_append(struct k_queue * queue, void * data) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_queue * val; } parm0 = { .val = queue }; + union { uintptr_t x; void * val; } parm1 = { .val = data }; + return (int32_t) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_K_QUEUE_ALLOC_APPEND); + } +#endif + compiler_barrier(); + return z_impl_k_queue_alloc_append(queue, data); +} + + +extern int32_t z_impl_k_queue_alloc_prepend(struct k_queue * queue, void * data); + +__pinned_func +static inline int32_t k_queue_alloc_prepend(struct k_queue * queue, void * data) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_queue * val; } parm0 = { .val = queue }; + union { uintptr_t x; void * val; } parm1 = { .val = data }; + return (int32_t) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_K_QUEUE_ALLOC_PREPEND); + } +#endif + compiler_barrier(); + return z_impl_k_queue_alloc_prepend(queue, data); +} + + +extern void * z_impl_k_queue_get(struct k_queue * queue, k_timeout_t timeout); + +__pinned_func +static inline void * k_queue_get(struct k_queue * queue, k_timeout_t timeout) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_queue * val; } parm0 = { .val = queue }; + union { struct { uintptr_t lo, hi; } split; k_timeout_t val; } parm1 = { .val = timeout }; + return (void *) arch_syscall_invoke3(parm0.x, parm1.split.lo, parm1.split.hi, K_SYSCALL_K_QUEUE_GET); + } +#endif + compiler_barrier(); + return z_impl_k_queue_get(queue, timeout); +} + + +extern int z_impl_k_queue_is_empty(struct k_queue * queue); + +__pinned_func +static inline int k_queue_is_empty(struct k_queue * queue) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_queue * val; } parm0 = { .val = queue }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_QUEUE_IS_EMPTY); + } +#endif + compiler_barrier(); + return z_impl_k_queue_is_empty(queue); +} + + +extern void * z_impl_k_queue_peek_head(struct k_queue * queue); + +__pinned_func +static inline void * k_queue_peek_head(struct k_queue * queue) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_queue * val; } parm0 = { .val = queue }; + return (void *) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_QUEUE_PEEK_HEAD); + } +#endif + compiler_barrier(); + return z_impl_k_queue_peek_head(queue); +} + + +extern void * z_impl_k_queue_peek_tail(struct k_queue * queue); + +__pinned_func +static inline void * k_queue_peek_tail(struct k_queue * queue) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_queue * val; } parm0 = { .val = queue }; + return (void *) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_QUEUE_PEEK_TAIL); + } +#endif + compiler_barrier(); + return z_impl_k_queue_peek_tail(queue); +} + + +extern int z_impl_k_futex_wait(struct k_futex * futex, int expected, k_timeout_t timeout); + +__pinned_func +static inline int k_futex_wait(struct k_futex * futex, int expected, k_timeout_t timeout) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_futex * val; } parm0 = { .val = futex }; + union { uintptr_t x; int val; } parm1 = { .val = expected }; + union { struct { uintptr_t lo, hi; } split; k_timeout_t val; } parm2 = { .val = timeout }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.split.lo, parm2.split.hi, K_SYSCALL_K_FUTEX_WAIT); + } +#endif + compiler_barrier(); + return z_impl_k_futex_wait(futex, expected, timeout); +} + + +extern int z_impl_k_futex_wake(struct k_futex * futex, bool wake_all); + +__pinned_func +static inline int k_futex_wake(struct k_futex * futex, bool wake_all) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_futex * val; } parm0 = { .val = futex }; + union { uintptr_t x; bool val; } parm1 = { .val = wake_all }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_K_FUTEX_WAKE); + } +#endif + compiler_barrier(); + return z_impl_k_futex_wake(futex, wake_all); +} + + +extern void z_impl_k_event_init(struct k_event * event); + +__pinned_func +static inline void k_event_init(struct k_event * event) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_event * val; } parm0 = { .val = event }; + (void) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_EVENT_INIT); + return; + } +#endif + compiler_barrier(); + z_impl_k_event_init(event); +} + + +extern uint32_t z_impl_k_event_post(struct k_event * event, uint32_t events); + +__pinned_func +static inline uint32_t k_event_post(struct k_event * event, uint32_t events) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_event * val; } parm0 = { .val = event }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = events }; + return (uint32_t) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_K_EVENT_POST); + } +#endif + compiler_barrier(); + return z_impl_k_event_post(event, events); +} + + +extern uint32_t z_impl_k_event_set(struct k_event * event, uint32_t events); + +__pinned_func +static inline uint32_t k_event_set(struct k_event * event, uint32_t events) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_event * val; } parm0 = { .val = event }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = events }; + return (uint32_t) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_K_EVENT_SET); + } +#endif + compiler_barrier(); + return z_impl_k_event_set(event, events); +} + + +extern uint32_t z_impl_k_event_set_masked(struct k_event * event, uint32_t events, uint32_t events_mask); + +__pinned_func +static inline uint32_t k_event_set_masked(struct k_event * event, uint32_t events, uint32_t events_mask) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_event * val; } parm0 = { .val = event }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = events }; + union { uintptr_t x; uint32_t val; } parm2 = { .val = events_mask }; + return (uint32_t) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_K_EVENT_SET_MASKED); + } +#endif + compiler_barrier(); + return z_impl_k_event_set_masked(event, events, events_mask); +} + + +extern uint32_t z_impl_k_event_clear(struct k_event * event, uint32_t events); + +__pinned_func +static inline uint32_t k_event_clear(struct k_event * event, uint32_t events) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_event * val; } parm0 = { .val = event }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = events }; + return (uint32_t) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_K_EVENT_CLEAR); + } +#endif + compiler_barrier(); + return z_impl_k_event_clear(event, events); +} + + +extern uint32_t z_impl_k_event_wait(struct k_event * event, uint32_t events, bool reset, k_timeout_t timeout); + +__pinned_func +static inline uint32_t k_event_wait(struct k_event * event, uint32_t events, bool reset, k_timeout_t timeout) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_event * val; } parm0 = { .val = event }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = events }; + union { uintptr_t x; bool val; } parm2 = { .val = reset }; + union { struct { uintptr_t lo, hi; } split; k_timeout_t val; } parm3 = { .val = timeout }; + return (uint32_t) arch_syscall_invoke5(parm0.x, parm1.x, parm2.x, parm3.split.lo, parm3.split.hi, K_SYSCALL_K_EVENT_WAIT); + } +#endif + compiler_barrier(); + return z_impl_k_event_wait(event, events, reset, timeout); +} + + +extern uint32_t z_impl_k_event_wait_all(struct k_event * event, uint32_t events, bool reset, k_timeout_t timeout); + +__pinned_func +static inline uint32_t k_event_wait_all(struct k_event * event, uint32_t events, bool reset, k_timeout_t timeout) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_event * val; } parm0 = { .val = event }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = events }; + union { uintptr_t x; bool val; } parm2 = { .val = reset }; + union { struct { uintptr_t lo, hi; } split; k_timeout_t val; } parm3 = { .val = timeout }; + return (uint32_t) arch_syscall_invoke5(parm0.x, parm1.x, parm2.x, parm3.split.lo, parm3.split.hi, K_SYSCALL_K_EVENT_WAIT_ALL); + } +#endif + compiler_barrier(); + return z_impl_k_event_wait_all(event, events, reset, timeout); +} + + +extern int32_t z_impl_k_stack_alloc_init(struct k_stack * stack, uint32_t num_entries); + +__pinned_func +static inline int32_t k_stack_alloc_init(struct k_stack * stack, uint32_t num_entries) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_stack * val; } parm0 = { .val = stack }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = num_entries }; + return (int32_t) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_K_STACK_ALLOC_INIT); + } +#endif + compiler_barrier(); + return z_impl_k_stack_alloc_init(stack, num_entries); +} + + +extern int z_impl_k_stack_push(struct k_stack * stack, stack_data_t data); + +__pinned_func +static inline int k_stack_push(struct k_stack * stack, stack_data_t data) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_stack * val; } parm0 = { .val = stack }; + union { uintptr_t x; stack_data_t val; } parm1 = { .val = data }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_K_STACK_PUSH); + } +#endif + compiler_barrier(); + return z_impl_k_stack_push(stack, data); +} + + +extern int z_impl_k_stack_pop(struct k_stack * stack, stack_data_t * data, k_timeout_t timeout); + +__pinned_func +static inline int k_stack_pop(struct k_stack * stack, stack_data_t * data, k_timeout_t timeout) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_stack * val; } parm0 = { .val = stack }; + union { uintptr_t x; stack_data_t * val; } parm1 = { .val = data }; + union { struct { uintptr_t lo, hi; } split; k_timeout_t val; } parm2 = { .val = timeout }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.split.lo, parm2.split.hi, K_SYSCALL_K_STACK_POP); + } +#endif + compiler_barrier(); + return z_impl_k_stack_pop(stack, data, timeout); +} + + +extern int z_impl_k_mutex_init(struct k_mutex * mutex); + +__pinned_func +static inline int k_mutex_init(struct k_mutex * mutex) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_mutex * val; } parm0 = { .val = mutex }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_MUTEX_INIT); + } +#endif + compiler_barrier(); + return z_impl_k_mutex_init(mutex); +} + + +extern int z_impl_k_mutex_lock(struct k_mutex * mutex, k_timeout_t timeout); + +__pinned_func +static inline int k_mutex_lock(struct k_mutex * mutex, k_timeout_t timeout) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_mutex * val; } parm0 = { .val = mutex }; + union { struct { uintptr_t lo, hi; } split; k_timeout_t val; } parm1 = { .val = timeout }; + return (int) arch_syscall_invoke3(parm0.x, parm1.split.lo, parm1.split.hi, K_SYSCALL_K_MUTEX_LOCK); + } +#endif + compiler_barrier(); + return z_impl_k_mutex_lock(mutex, timeout); +} + + +extern int z_impl_k_mutex_unlock(struct k_mutex * mutex); + +__pinned_func +static inline int k_mutex_unlock(struct k_mutex * mutex) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_mutex * val; } parm0 = { .val = mutex }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_MUTEX_UNLOCK); + } +#endif + compiler_barrier(); + return z_impl_k_mutex_unlock(mutex); +} + + +extern int z_impl_k_condvar_init(struct k_condvar * condvar); + +__pinned_func +static inline int k_condvar_init(struct k_condvar * condvar) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_condvar * val; } parm0 = { .val = condvar }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_CONDVAR_INIT); + } +#endif + compiler_barrier(); + return z_impl_k_condvar_init(condvar); +} + + +extern int z_impl_k_condvar_signal(struct k_condvar * condvar); + +__pinned_func +static inline int k_condvar_signal(struct k_condvar * condvar) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_condvar * val; } parm0 = { .val = condvar }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_CONDVAR_SIGNAL); + } +#endif + compiler_barrier(); + return z_impl_k_condvar_signal(condvar); +} + + +extern int z_impl_k_condvar_broadcast(struct k_condvar * condvar); + +__pinned_func +static inline int k_condvar_broadcast(struct k_condvar * condvar) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_condvar * val; } parm0 = { .val = condvar }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_CONDVAR_BROADCAST); + } +#endif + compiler_barrier(); + return z_impl_k_condvar_broadcast(condvar); +} + + +extern int z_impl_k_condvar_wait(struct k_condvar * condvar, struct k_mutex * mutex, k_timeout_t timeout); + +__pinned_func +static inline int k_condvar_wait(struct k_condvar * condvar, struct k_mutex * mutex, k_timeout_t timeout) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_condvar * val; } parm0 = { .val = condvar }; + union { uintptr_t x; struct k_mutex * val; } parm1 = { .val = mutex }; + union { struct { uintptr_t lo, hi; } split; k_timeout_t val; } parm2 = { .val = timeout }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.split.lo, parm2.split.hi, K_SYSCALL_K_CONDVAR_WAIT); + } +#endif + compiler_barrier(); + return z_impl_k_condvar_wait(condvar, mutex, timeout); +} + + +extern int z_impl_k_sem_init(struct k_sem * sem, unsigned int initial_count, unsigned int limit); + +__pinned_func +static inline int k_sem_init(struct k_sem * sem, unsigned int initial_count, unsigned int limit) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_sem * val; } parm0 = { .val = sem }; + union { uintptr_t x; unsigned int val; } parm1 = { .val = initial_count }; + union { uintptr_t x; unsigned int val; } parm2 = { .val = limit }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_K_SEM_INIT); + } +#endif + compiler_barrier(); + return z_impl_k_sem_init(sem, initial_count, limit); +} + + +extern int z_impl_k_sem_take(struct k_sem * sem, k_timeout_t timeout); + +__pinned_func +static inline int k_sem_take(struct k_sem * sem, k_timeout_t timeout) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_sem * val; } parm0 = { .val = sem }; + union { struct { uintptr_t lo, hi; } split; k_timeout_t val; } parm1 = { .val = timeout }; + return (int) arch_syscall_invoke3(parm0.x, parm1.split.lo, parm1.split.hi, K_SYSCALL_K_SEM_TAKE); + } +#endif + compiler_barrier(); + return z_impl_k_sem_take(sem, timeout); +} + + +extern void z_impl_k_sem_give(struct k_sem * sem); + +__pinned_func +static inline void k_sem_give(struct k_sem * sem) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_sem * val; } parm0 = { .val = sem }; + (void) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_SEM_GIVE); + return; + } +#endif + compiler_barrier(); + z_impl_k_sem_give(sem); +} + + +extern void z_impl_k_sem_reset(struct k_sem * sem); + +__pinned_func +static inline void k_sem_reset(struct k_sem * sem) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_sem * val; } parm0 = { .val = sem }; + (void) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_SEM_RESET); + return; + } +#endif + compiler_barrier(); + z_impl_k_sem_reset(sem); +} + + +extern unsigned int z_impl_k_sem_count_get(struct k_sem * sem); + +__pinned_func +static inline unsigned int k_sem_count_get(struct k_sem * sem) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_sem * val; } parm0 = { .val = sem }; + return (unsigned int) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_SEM_COUNT_GET); + } +#endif + compiler_barrier(); + return z_impl_k_sem_count_get(sem); +} + + +extern int z_impl_k_msgq_alloc_init(struct k_msgq * msgq, size_t msg_size, uint32_t max_msgs); + +__pinned_func +static inline int k_msgq_alloc_init(struct k_msgq * msgq, size_t msg_size, uint32_t max_msgs) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_msgq * val; } parm0 = { .val = msgq }; + union { uintptr_t x; size_t val; } parm1 = { .val = msg_size }; + union { uintptr_t x; uint32_t val; } parm2 = { .val = max_msgs }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_K_MSGQ_ALLOC_INIT); + } +#endif + compiler_barrier(); + return z_impl_k_msgq_alloc_init(msgq, msg_size, max_msgs); +} + + +extern int z_impl_k_msgq_put(struct k_msgq * msgq, const void * data, k_timeout_t timeout); + +__pinned_func +static inline int k_msgq_put(struct k_msgq * msgq, const void * data, k_timeout_t timeout) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_msgq * val; } parm0 = { .val = msgq }; + union { uintptr_t x; const void * val; } parm1 = { .val = data }; + union { struct { uintptr_t lo, hi; } split; k_timeout_t val; } parm2 = { .val = timeout }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.split.lo, parm2.split.hi, K_SYSCALL_K_MSGQ_PUT); + } +#endif + compiler_barrier(); + return z_impl_k_msgq_put(msgq, data, timeout); +} + + +extern int z_impl_k_msgq_get(struct k_msgq * msgq, void * data, k_timeout_t timeout); + +__pinned_func +static inline int k_msgq_get(struct k_msgq * msgq, void * data, k_timeout_t timeout) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_msgq * val; } parm0 = { .val = msgq }; + union { uintptr_t x; void * val; } parm1 = { .val = data }; + union { struct { uintptr_t lo, hi; } split; k_timeout_t val; } parm2 = { .val = timeout }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.split.lo, parm2.split.hi, K_SYSCALL_K_MSGQ_GET); + } +#endif + compiler_barrier(); + return z_impl_k_msgq_get(msgq, data, timeout); +} + + +extern int z_impl_k_msgq_peek(struct k_msgq * msgq, void * data); + +__pinned_func +static inline int k_msgq_peek(struct k_msgq * msgq, void * data) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_msgq * val; } parm0 = { .val = msgq }; + union { uintptr_t x; void * val; } parm1 = { .val = data }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_K_MSGQ_PEEK); + } +#endif + compiler_barrier(); + return z_impl_k_msgq_peek(msgq, data); +} + + +extern int z_impl_k_msgq_peek_at(struct k_msgq * msgq, void * data, uint32_t idx); + +__pinned_func +static inline int k_msgq_peek_at(struct k_msgq * msgq, void * data, uint32_t idx) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_msgq * val; } parm0 = { .val = msgq }; + union { uintptr_t x; void * val; } parm1 = { .val = data }; + union { uintptr_t x; uint32_t val; } parm2 = { .val = idx }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_K_MSGQ_PEEK_AT); + } +#endif + compiler_barrier(); + return z_impl_k_msgq_peek_at(msgq, data, idx); +} + + +extern void z_impl_k_msgq_purge(struct k_msgq * msgq); + +__pinned_func +static inline void k_msgq_purge(struct k_msgq * msgq) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_msgq * val; } parm0 = { .val = msgq }; + (void) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_MSGQ_PURGE); + return; + } +#endif + compiler_barrier(); + z_impl_k_msgq_purge(msgq); +} + + +extern uint32_t z_impl_k_msgq_num_free_get(struct k_msgq * msgq); + +__pinned_func +static inline uint32_t k_msgq_num_free_get(struct k_msgq * msgq) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_msgq * val; } parm0 = { .val = msgq }; + return (uint32_t) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_MSGQ_NUM_FREE_GET); + } +#endif + compiler_barrier(); + return z_impl_k_msgq_num_free_get(msgq); +} + + +extern void z_impl_k_msgq_get_attrs(struct k_msgq * msgq, struct k_msgq_attrs * attrs); + +__pinned_func +static inline void k_msgq_get_attrs(struct k_msgq * msgq, struct k_msgq_attrs * attrs) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_msgq * val; } parm0 = { .val = msgq }; + union { uintptr_t x; struct k_msgq_attrs * val; } parm1 = { .val = attrs }; + (void) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_K_MSGQ_GET_ATTRS); + return; + } +#endif + compiler_barrier(); + z_impl_k_msgq_get_attrs(msgq, attrs); +} + + +extern uint32_t z_impl_k_msgq_num_used_get(struct k_msgq * msgq); + +__pinned_func +static inline uint32_t k_msgq_num_used_get(struct k_msgq * msgq) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_msgq * val; } parm0 = { .val = msgq }; + return (uint32_t) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_MSGQ_NUM_USED_GET); + } +#endif + compiler_barrier(); + return z_impl_k_msgq_num_used_get(msgq); +} + + +extern int z_impl_k_pipe_alloc_init(struct k_pipe * pipe, size_t size); + +__pinned_func +static inline int k_pipe_alloc_init(struct k_pipe * pipe, size_t size) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_pipe * val; } parm0 = { .val = pipe }; + union { uintptr_t x; size_t val; } parm1 = { .val = size }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_K_PIPE_ALLOC_INIT); + } +#endif + compiler_barrier(); + return z_impl_k_pipe_alloc_init(pipe, size); +} + + +extern int z_impl_k_pipe_put(struct k_pipe * pipe, const void * data, size_t bytes_to_write, size_t * bytes_written, size_t min_xfer, k_timeout_t timeout); + +__pinned_func +static inline int k_pipe_put(struct k_pipe * pipe, const void * data, size_t bytes_to_write, size_t * bytes_written, size_t min_xfer, k_timeout_t timeout) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_pipe * val; } parm0 = { .val = pipe }; + union { uintptr_t x; const void * val; } parm1 = { .val = data }; + union { uintptr_t x; size_t val; } parm2 = { .val = bytes_to_write }; + union { uintptr_t x; size_t * val; } parm3 = { .val = bytes_written }; + union { uintptr_t x; size_t val; } parm4 = { .val = min_xfer }; + union { struct { uintptr_t lo, hi; } split; k_timeout_t val; } parm5 = { .val = timeout }; + uintptr_t more[] = { + parm5.split.lo, + parm5.split.hi + }; + return (int) arch_syscall_invoke6(parm0.x, parm1.x, parm2.x, parm3.x, parm4.x, (uintptr_t) &more, K_SYSCALL_K_PIPE_PUT); + } +#endif + compiler_barrier(); + return z_impl_k_pipe_put(pipe, data, bytes_to_write, bytes_written, min_xfer, timeout); +} + + +extern int z_impl_k_pipe_get(struct k_pipe * pipe, void * data, size_t bytes_to_read, size_t * bytes_read, size_t min_xfer, k_timeout_t timeout); + +__pinned_func +static inline int k_pipe_get(struct k_pipe * pipe, void * data, size_t bytes_to_read, size_t * bytes_read, size_t min_xfer, k_timeout_t timeout) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_pipe * val; } parm0 = { .val = pipe }; + union { uintptr_t x; void * val; } parm1 = { .val = data }; + union { uintptr_t x; size_t val; } parm2 = { .val = bytes_to_read }; + union { uintptr_t x; size_t * val; } parm3 = { .val = bytes_read }; + union { uintptr_t x; size_t val; } parm4 = { .val = min_xfer }; + union { struct { uintptr_t lo, hi; } split; k_timeout_t val; } parm5 = { .val = timeout }; + uintptr_t more[] = { + parm5.split.lo, + parm5.split.hi + }; + return (int) arch_syscall_invoke6(parm0.x, parm1.x, parm2.x, parm3.x, parm4.x, (uintptr_t) &more, K_SYSCALL_K_PIPE_GET); + } +#endif + compiler_barrier(); + return z_impl_k_pipe_get(pipe, data, bytes_to_read, bytes_read, min_xfer, timeout); +} + + +extern size_t z_impl_k_pipe_read_avail(struct k_pipe * pipe); + +__pinned_func +static inline size_t k_pipe_read_avail(struct k_pipe * pipe) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_pipe * val; } parm0 = { .val = pipe }; + return (size_t) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_PIPE_READ_AVAIL); + } +#endif + compiler_barrier(); + return z_impl_k_pipe_read_avail(pipe); +} + + +extern size_t z_impl_k_pipe_write_avail(struct k_pipe * pipe); + +__pinned_func +static inline size_t k_pipe_write_avail(struct k_pipe * pipe) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_pipe * val; } parm0 = { .val = pipe }; + return (size_t) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_PIPE_WRITE_AVAIL); + } +#endif + compiler_barrier(); + return z_impl_k_pipe_write_avail(pipe); +} + + +extern void z_impl_k_pipe_flush(struct k_pipe * pipe); + +__pinned_func +static inline void k_pipe_flush(struct k_pipe * pipe) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_pipe * val; } parm0 = { .val = pipe }; + (void) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_PIPE_FLUSH); + return; + } +#endif + compiler_barrier(); + z_impl_k_pipe_flush(pipe); +} + + +extern void z_impl_k_pipe_buffer_flush(struct k_pipe * pipe); + +__pinned_func +static inline void k_pipe_buffer_flush(struct k_pipe * pipe) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_pipe * val; } parm0 = { .val = pipe }; + (void) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_PIPE_BUFFER_FLUSH); + return; + } +#endif + compiler_barrier(); + z_impl_k_pipe_buffer_flush(pipe); +} + + +extern int z_impl_k_poll(struct k_poll_event * events, int num_events, k_timeout_t timeout); + +__pinned_func +static inline int k_poll(struct k_poll_event * events, int num_events, k_timeout_t timeout) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_poll_event * val; } parm0 = { .val = events }; + union { uintptr_t x; int val; } parm1 = { .val = num_events }; + union { struct { uintptr_t lo, hi; } split; k_timeout_t val; } parm2 = { .val = timeout }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.split.lo, parm2.split.hi, K_SYSCALL_K_POLL); + } +#endif + compiler_barrier(); + return z_impl_k_poll(events, num_events, timeout); +} + + +extern void z_impl_k_poll_signal_init(struct k_poll_signal * sig); + +__pinned_func +static inline void k_poll_signal_init(struct k_poll_signal * sig) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_poll_signal * val; } parm0 = { .val = sig }; + (void) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_POLL_SIGNAL_INIT); + return; + } +#endif + compiler_barrier(); + z_impl_k_poll_signal_init(sig); +} + + +extern void z_impl_k_poll_signal_reset(struct k_poll_signal * sig); + +__pinned_func +static inline void k_poll_signal_reset(struct k_poll_signal * sig) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_poll_signal * val; } parm0 = { .val = sig }; + (void) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_POLL_SIGNAL_RESET); + return; + } +#endif + compiler_barrier(); + z_impl_k_poll_signal_reset(sig); +} + + +extern void z_impl_k_poll_signal_check(struct k_poll_signal * sig, unsigned int * signaled, int * result); + +__pinned_func +static inline void k_poll_signal_check(struct k_poll_signal * sig, unsigned int * signaled, int * result) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_poll_signal * val; } parm0 = { .val = sig }; + union { uintptr_t x; unsigned int * val; } parm1 = { .val = signaled }; + union { uintptr_t x; int * val; } parm2 = { .val = result }; + (void) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_K_POLL_SIGNAL_CHECK); + return; + } +#endif + compiler_barrier(); + z_impl_k_poll_signal_check(sig, signaled, result); +} + + +extern int z_impl_k_poll_signal_raise(struct k_poll_signal * sig, int result); + +__pinned_func +static inline int k_poll_signal_raise(struct k_poll_signal * sig, int result) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_poll_signal * val; } parm0 = { .val = sig }; + union { uintptr_t x; int val; } parm1 = { .val = result }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_K_POLL_SIGNAL_RAISE); + } +#endif + compiler_barrier(); + return z_impl_k_poll_signal_raise(sig, result); +} + + +extern void z_impl_k_str_out(char * c, size_t n); + +__pinned_func +static inline void k_str_out(char * c, size_t n) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; char * val; } parm0 = { .val = c }; + union { uintptr_t x; size_t val; } parm1 = { .val = n }; + (void) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_K_STR_OUT); + return; + } +#endif + compiler_barrier(); + z_impl_k_str_out(c, n); +} + + +extern int z_impl_k_float_disable(struct k_thread * thread); + +__pinned_func +static inline int k_float_disable(struct k_thread * thread) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_thread * val; } parm0 = { .val = thread }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_FLOAT_DISABLE); + } +#endif + compiler_barrier(); + return z_impl_k_float_disable(thread); +} + + +extern int z_impl_k_float_enable(struct k_thread * thread, unsigned int options); + +__pinned_func +static inline int k_float_enable(struct k_thread * thread, unsigned int options) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_thread * val; } parm0 = { .val = thread }; + union { uintptr_t x; unsigned int val; } parm1 = { .val = options }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_K_FLOAT_ENABLE); + } +#endif + compiler_barrier(); + return z_impl_k_float_enable(thread, options); +} + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/kobject.h b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/kobject.h new file mode 100644 index 0000000..7935be8 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/kobject.h @@ -0,0 +1,124 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_KOBJECT_H +#define Z_INCLUDE_SYSCALLS_KOBJECT_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern void z_impl_k_object_access_grant(const void * object, struct k_thread * thread); + +__pinned_func +static inline void k_object_access_grant(const void * object, struct k_thread * thread) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const void * val; } parm0 = { .val = object }; + union { uintptr_t x; struct k_thread * val; } parm1 = { .val = thread }; + (void) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_K_OBJECT_ACCESS_GRANT); + return; + } +#endif + compiler_barrier(); + z_impl_k_object_access_grant(object, thread); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define k_object_access_grant(object, thread) do { sys_port_trace_syscall_enter(K_SYSCALL_K_OBJECT_ACCESS_GRANT, k_object_access_grant, object, thread); k_object_access_grant(object, thread); sys_port_trace_syscall_exit(K_SYSCALL_K_OBJECT_ACCESS_GRANT, k_object_access_grant, object, thread); } while(false) +#endif +#endif + + +extern void z_impl_k_object_release(const void * object); + +__pinned_func +static inline void k_object_release(const void * object) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const void * val; } parm0 = { .val = object }; + (void) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_OBJECT_RELEASE); + return; + } +#endif + compiler_barrier(); + z_impl_k_object_release(object); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define k_object_release(object) do { sys_port_trace_syscall_enter(K_SYSCALL_K_OBJECT_RELEASE, k_object_release, object); k_object_release(object); sys_port_trace_syscall_exit(K_SYSCALL_K_OBJECT_RELEASE, k_object_release, object); } while(false) +#endif +#endif + + +extern void * z_impl_k_object_alloc(enum k_objects otype); + +__pinned_func +static inline void * k_object_alloc(enum k_objects otype) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; enum k_objects val; } parm0 = { .val = otype }; + return (void *) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_OBJECT_ALLOC); + } +#endif + compiler_barrier(); + return z_impl_k_object_alloc(otype); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define k_object_alloc(otype) ({ void * syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_K_OBJECT_ALLOC, k_object_alloc, otype); syscall__retval = k_object_alloc(otype); sys_port_trace_syscall_exit(K_SYSCALL_K_OBJECT_ALLOC, k_object_alloc, otype, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern void * z_impl_k_object_alloc_size(enum k_objects otype, size_t size); + +__pinned_func +static inline void * k_object_alloc_size(enum k_objects otype, size_t size) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; enum k_objects val; } parm0 = { .val = otype }; + union { uintptr_t x; size_t val; } parm1 = { .val = size }; + return (void *) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_K_OBJECT_ALLOC_SIZE); + } +#endif + compiler_barrier(); + return z_impl_k_object_alloc_size(otype, size); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define k_object_alloc_size(otype, size) ({ void * syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_K_OBJECT_ALLOC_SIZE, k_object_alloc_size, otype, size); syscall__retval = k_object_alloc_size(otype, size); sys_port_trace_syscall_exit(K_SYSCALL_K_OBJECT_ALLOC_SIZE, k_object_alloc_size, otype, size, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/kscan.h b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/kscan.h new file mode 100644 index 0000000..dab2d70 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/kscan.h @@ -0,0 +1,98 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_KSCAN_H +#define Z_INCLUDE_SYSCALLS_KSCAN_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_kscan_config(const struct device * dev, kscan_callback_t callback); + +__pinned_func +static inline int kscan_config(const struct device * dev, kscan_callback_t callback) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; kscan_callback_t val; } parm1 = { .val = callback }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_KSCAN_CONFIG); + } +#endif + compiler_barrier(); + return z_impl_kscan_config(dev, callback); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define kscan_config(dev, callback) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_KSCAN_CONFIG, kscan_config, dev, callback); syscall__retval = kscan_config(dev, callback); sys_port_trace_syscall_exit(K_SYSCALL_KSCAN_CONFIG, kscan_config, dev, callback, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_kscan_enable_callback(const struct device * dev); + +__pinned_func +static inline int kscan_enable_callback(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_KSCAN_ENABLE_CALLBACK); + } +#endif + compiler_barrier(); + return z_impl_kscan_enable_callback(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define kscan_enable_callback(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_KSCAN_ENABLE_CALLBACK, kscan_enable_callback, dev); syscall__retval = kscan_enable_callback(dev); sys_port_trace_syscall_exit(K_SYSCALL_KSCAN_ENABLE_CALLBACK, kscan_enable_callback, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_kscan_disable_callback(const struct device * dev); + +__pinned_func +static inline int kscan_disable_callback(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_KSCAN_DISABLE_CALLBACK); + } +#endif + compiler_barrier(); + return z_impl_kscan_disable_callback(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define kscan_disable_callback(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_KSCAN_DISABLE_CALLBACK, kscan_disable_callback, dev); syscall__retval = kscan_disable_callback(dev); sys_port_trace_syscall_exit(K_SYSCALL_KSCAN_DISABLE_CALLBACK, kscan_disable_callback, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/led.h b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/led.h new file mode 100644 index 0000000..ab2d074 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/led.h @@ -0,0 +1,229 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_LED_H +#define Z_INCLUDE_SYSCALLS_LED_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_led_blink(const struct device * dev, uint32_t led, uint32_t delay_on, uint32_t delay_off); + +__pinned_func +static inline int led_blink(const struct device * dev, uint32_t led, uint32_t delay_on, uint32_t delay_off) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = led }; + union { uintptr_t x; uint32_t val; } parm2 = { .val = delay_on }; + union { uintptr_t x; uint32_t val; } parm3 = { .val = delay_off }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_LED_BLINK); + } +#endif + compiler_barrier(); + return z_impl_led_blink(dev, led, delay_on, delay_off); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define led_blink(dev, led, delay_on, delay_off) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_LED_BLINK, led_blink, dev, led, delay_on, delay_off); syscall__retval = led_blink(dev, led, delay_on, delay_off); sys_port_trace_syscall_exit(K_SYSCALL_LED_BLINK, led_blink, dev, led, delay_on, delay_off, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_led_get_info(const struct device * dev, uint32_t led, const struct led_info ** info); + +__pinned_func +static inline int led_get_info(const struct device * dev, uint32_t led, const struct led_info ** info) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = led }; + union { uintptr_t x; const struct led_info ** val; } parm2 = { .val = info }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_LED_GET_INFO); + } +#endif + compiler_barrier(); + return z_impl_led_get_info(dev, led, info); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define led_get_info(dev, led, info) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_LED_GET_INFO, led_get_info, dev, led, info); syscall__retval = led_get_info(dev, led, info); sys_port_trace_syscall_exit(K_SYSCALL_LED_GET_INFO, led_get_info, dev, led, info, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_led_set_brightness(const struct device * dev, uint32_t led, uint8_t value); + +__pinned_func +static inline int led_set_brightness(const struct device * dev, uint32_t led, uint8_t value) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = led }; + union { uintptr_t x; uint8_t val; } parm2 = { .val = value }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_LED_SET_BRIGHTNESS); + } +#endif + compiler_barrier(); + return z_impl_led_set_brightness(dev, led, value); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define led_set_brightness(dev, led, value) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_LED_SET_BRIGHTNESS, led_set_brightness, dev, led, value); syscall__retval = led_set_brightness(dev, led, value); sys_port_trace_syscall_exit(K_SYSCALL_LED_SET_BRIGHTNESS, led_set_brightness, dev, led, value, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_led_write_channels(const struct device * dev, uint32_t start_channel, uint32_t num_channels, const uint8_t * buf); + +__pinned_func +static inline int led_write_channels(const struct device * dev, uint32_t start_channel, uint32_t num_channels, const uint8_t * buf) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = start_channel }; + union { uintptr_t x; uint32_t val; } parm2 = { .val = num_channels }; + union { uintptr_t x; const uint8_t * val; } parm3 = { .val = buf }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_LED_WRITE_CHANNELS); + } +#endif + compiler_barrier(); + return z_impl_led_write_channels(dev, start_channel, num_channels, buf); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define led_write_channels(dev, start_channel, num_channels, buf) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_LED_WRITE_CHANNELS, led_write_channels, dev, start_channel, num_channels, buf); syscall__retval = led_write_channels(dev, start_channel, num_channels, buf); sys_port_trace_syscall_exit(K_SYSCALL_LED_WRITE_CHANNELS, led_write_channels, dev, start_channel, num_channels, buf, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_led_set_channel(const struct device * dev, uint32_t channel, uint8_t value); + +__pinned_func +static inline int led_set_channel(const struct device * dev, uint32_t channel, uint8_t value) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = channel }; + union { uintptr_t x; uint8_t val; } parm2 = { .val = value }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_LED_SET_CHANNEL); + } +#endif + compiler_barrier(); + return z_impl_led_set_channel(dev, channel, value); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define led_set_channel(dev, channel, value) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_LED_SET_CHANNEL, led_set_channel, dev, channel, value); syscall__retval = led_set_channel(dev, channel, value); sys_port_trace_syscall_exit(K_SYSCALL_LED_SET_CHANNEL, led_set_channel, dev, channel, value, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_led_set_color(const struct device * dev, uint32_t led, uint8_t num_colors, const uint8_t * color); + +__pinned_func +static inline int led_set_color(const struct device * dev, uint32_t led, uint8_t num_colors, const uint8_t * color) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = led }; + union { uintptr_t x; uint8_t val; } parm2 = { .val = num_colors }; + union { uintptr_t x; const uint8_t * val; } parm3 = { .val = color }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_LED_SET_COLOR); + } +#endif + compiler_barrier(); + return z_impl_led_set_color(dev, led, num_colors, color); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define led_set_color(dev, led, num_colors, color) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_LED_SET_COLOR, led_set_color, dev, led, num_colors, color); syscall__retval = led_set_color(dev, led, num_colors, color); sys_port_trace_syscall_exit(K_SYSCALL_LED_SET_COLOR, led_set_color, dev, led, num_colors, color, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_led_on(const struct device * dev, uint32_t led); + +__pinned_func +static inline int led_on(const struct device * dev, uint32_t led) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = led }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_LED_ON); + } +#endif + compiler_barrier(); + return z_impl_led_on(dev, led); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define led_on(dev, led) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_LED_ON, led_on, dev, led); syscall__retval = led_on(dev, led); sys_port_trace_syscall_exit(K_SYSCALL_LED_ON, led_on, dev, led, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_led_off(const struct device * dev, uint32_t led); + +__pinned_func +static inline int led_off(const struct device * dev, uint32_t led) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = led }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_LED_OFF); + } +#endif + compiler_barrier(); + return z_impl_led_off(dev, led); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define led_off(dev, led) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_LED_OFF, led_off, dev, led); syscall__retval = led_off(dev, led); sys_port_trace_syscall_exit(K_SYSCALL_LED_OFF, led_off, dev, led, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/libc-hooks.h b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/libc-hooks.h new file mode 100644 index 0000000..f6f5042 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/libc-hooks.h @@ -0,0 +1,126 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_LIBC_HOOKS_H +#define Z_INCLUDE_SYSCALLS_LIBC_HOOKS_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_zephyr_read_stdin(char * buf, int nbytes); + +__pinned_func +static inline int zephyr_read_stdin(char * buf, int nbytes) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; char * val; } parm0 = { .val = buf }; + union { uintptr_t x; int val; } parm1 = { .val = nbytes }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_ZEPHYR_READ_STDIN); + } +#endif + compiler_barrier(); + return z_impl_zephyr_read_stdin(buf, nbytes); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define zephyr_read_stdin(buf, nbytes) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ZEPHYR_READ_STDIN, zephyr_read_stdin, buf, nbytes); syscall__retval = zephyr_read_stdin(buf, nbytes); sys_port_trace_syscall_exit(K_SYSCALL_ZEPHYR_READ_STDIN, zephyr_read_stdin, buf, nbytes, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_zephyr_write_stdout(const void * buf, int nbytes); + +__pinned_func +static inline int zephyr_write_stdout(const void * buf, int nbytes) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const void * val; } parm0 = { .val = buf }; + union { uintptr_t x; int val; } parm1 = { .val = nbytes }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_ZEPHYR_WRITE_STDOUT); + } +#endif + compiler_barrier(); + return z_impl_zephyr_write_stdout(buf, nbytes); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define zephyr_write_stdout(buf, nbytes) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ZEPHYR_WRITE_STDOUT, zephyr_write_stdout, buf, nbytes); syscall__retval = zephyr_write_stdout(buf, nbytes); sys_port_trace_syscall_exit(K_SYSCALL_ZEPHYR_WRITE_STDOUT, zephyr_write_stdout, buf, nbytes, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_zephyr_fputc(int c, FILE * stream); + +__pinned_func +static inline int zephyr_fputc(int c, FILE * stream) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; int val; } parm0 = { .val = c }; + union { uintptr_t x; FILE * val; } parm1 = { .val = stream }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_ZEPHYR_FPUTC); + } +#endif + compiler_barrier(); + return z_impl_zephyr_fputc(c, stream); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define zephyr_fputc(c, stream) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ZEPHYR_FPUTC, zephyr_fputc, c, stream); syscall__retval = zephyr_fputc(c, stream); sys_port_trace_syscall_exit(K_SYSCALL_ZEPHYR_FPUTC, zephyr_fputc, c, stream, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern size_t z_impl_zephyr_fwrite(const void *ZRESTRICT ptr, size_t size, size_t nitems, FILE *ZRESTRICT stream); + +__pinned_func +static inline size_t zephyr_fwrite(const void *ZRESTRICT ptr, size_t size, size_t nitems, FILE *ZRESTRICT stream) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const void *ZRESTRICT val; } parm0 = { .val = ptr }; + union { uintptr_t x; size_t val; } parm1 = { .val = size }; + union { uintptr_t x; size_t val; } parm2 = { .val = nitems }; + union { uintptr_t x; FILE *ZRESTRICT val; } parm3 = { .val = stream }; + return (size_t) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_ZEPHYR_FWRITE); + } +#endif + compiler_barrier(); + return z_impl_zephyr_fwrite(ptr, size, nitems, stream); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define zephyr_fwrite(ptr, size, nitems, stream) ({ size_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ZEPHYR_FWRITE, zephyr_fwrite, ptr, size, nitems, stream); syscall__retval = zephyr_fwrite(ptr, size, nitems, stream); sys_port_trace_syscall_exit(K_SYSCALL_ZEPHYR_FWRITE, zephyr_fwrite, ptr, size, nitems, stream, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/llext.h b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/llext.h new file mode 100644 index 0000000..72ba359 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/llext.h @@ -0,0 +1,54 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_LLEXT_H +#define Z_INCLUDE_SYSCALLS_LLEXT_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern ssize_t z_impl_llext_get_fn_table(struct llext * ext, bool is_init, void * buf, size_t size); + +__pinned_func +static inline ssize_t llext_get_fn_table(struct llext * ext, bool is_init, void * buf, size_t size) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct llext * val; } parm0 = { .val = ext }; + union { uintptr_t x; bool val; } parm1 = { .val = is_init }; + union { uintptr_t x; void * val; } parm2 = { .val = buf }; + union { uintptr_t x; size_t val; } parm3 = { .val = size }; + return (ssize_t) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_LLEXT_GET_FN_TABLE); + } +#endif + compiler_barrier(); + return z_impl_llext_get_fn_table(ext, is_init, buf, size); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define llext_get_fn_table(ext, is_init, buf, size) ({ ssize_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_LLEXT_GET_FN_TABLE, llext_get_fn_table, ext, is_init, buf, size); syscall__retval = llext_get_fn_table(ext, is_init, buf, size); sys_port_trace_syscall_exit(K_SYSCALL_LLEXT_GET_FN_TABLE, llext_get_fn_table, ext, is_init, buf, size, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/log_ctrl.h b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/log_ctrl.h new file mode 100644 index 0000000..e4061a2 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/log_ctrl.h @@ -0,0 +1,145 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_LOG_CTRL_H +#define Z_INCLUDE_SYSCALLS_LOG_CTRL_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern void z_impl_log_panic(void); + +__pinned_func +static inline void log_panic(void) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + (void) arch_syscall_invoke0(K_SYSCALL_LOG_PANIC); + return; + } +#endif + compiler_barrier(); + z_impl_log_panic(); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define log_panic() do { sys_port_trace_syscall_enter(K_SYSCALL_LOG_PANIC, log_panic); log_panic(); sys_port_trace_syscall_exit(K_SYSCALL_LOG_PANIC, log_panic); } while(false) +#endif +#endif + + +extern bool z_impl_log_process(void); + +__pinned_func +static inline bool log_process(void) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + return (bool) arch_syscall_invoke0(K_SYSCALL_LOG_PROCESS); + } +#endif + compiler_barrier(); + return z_impl_log_process(); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define log_process() ({ bool syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_LOG_PROCESS, log_process); syscall__retval = log_process(); sys_port_trace_syscall_exit(K_SYSCALL_LOG_PROCESS, log_process, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern uint32_t z_impl_log_buffered_cnt(void); + +__pinned_func +static inline uint32_t log_buffered_cnt(void) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + return (uint32_t) arch_syscall_invoke0(K_SYSCALL_LOG_BUFFERED_CNT); + } +#endif + compiler_barrier(); + return z_impl_log_buffered_cnt(); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define log_buffered_cnt() ({ uint32_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_LOG_BUFFERED_CNT, log_buffered_cnt); syscall__retval = log_buffered_cnt(); sys_port_trace_syscall_exit(K_SYSCALL_LOG_BUFFERED_CNT, log_buffered_cnt, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern uint32_t z_impl_log_filter_set(struct log_backend const *const backend, uint32_t domain_id, int16_t source_id, uint32_t level); + +__pinned_func +static inline uint32_t log_filter_set(struct log_backend const *const backend, uint32_t domain_id, int16_t source_id, uint32_t level) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct log_backend const *const val; } parm0 = { .val = backend }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = domain_id }; + union { uintptr_t x; int16_t val; } parm2 = { .val = source_id }; + union { uintptr_t x; uint32_t val; } parm3 = { .val = level }; + return (uint32_t) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_LOG_FILTER_SET); + } +#endif + compiler_barrier(); + return z_impl_log_filter_set(backend, domain_id, source_id, level); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define log_filter_set(backend, domain_id, source_id, level) ({ uint32_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_LOG_FILTER_SET, log_filter_set, backend, domain_id, source_id, level); syscall__retval = log_filter_set(backend, domain_id, source_id, level); sys_port_trace_syscall_exit(K_SYSCALL_LOG_FILTER_SET, log_filter_set, backend, domain_id, source_id, level, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern uint32_t z_impl_log_frontend_filter_set(int16_t source_id, uint32_t level); + +__pinned_func +static inline uint32_t log_frontend_filter_set(int16_t source_id, uint32_t level) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; int16_t val; } parm0 = { .val = source_id }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = level }; + return (uint32_t) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_LOG_FRONTEND_FILTER_SET); + } +#endif + compiler_barrier(); + return z_impl_log_frontend_filter_set(source_id, level); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define log_frontend_filter_set(source_id, level) ({ uint32_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_LOG_FRONTEND_FILTER_SET, log_frontend_filter_set, source_id, level); syscall__retval = log_frontend_filter_set(source_id, level); sys_port_trace_syscall_exit(K_SYSCALL_LOG_FRONTEND_FILTER_SET, log_frontend_filter_set, source_id, level, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/log_msg.h b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/log_msg.h new file mode 100644 index 0000000..9b8bab5 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/log_msg.h @@ -0,0 +1,136 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_LOG_MSG_H +#define Z_INCLUDE_SYSCALLS_LOG_MSG_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern void z_impl_z_log_msg_simple_create_0(const void * source, uint32_t level, const char * fmt); + +__pinned_func +static inline void z_log_msg_simple_create_0(const void * source, uint32_t level, const char * fmt) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const void * val; } parm0 = { .val = source }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = level }; + union { uintptr_t x; const char * val; } parm2 = { .val = fmt }; + (void) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_Z_LOG_MSG_SIMPLE_CREATE_0); + return; + } +#endif + compiler_barrier(); + z_impl_z_log_msg_simple_create_0(source, level, fmt); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define z_log_msg_simple_create_0(source, level, fmt) do { sys_port_trace_syscall_enter(K_SYSCALL_Z_LOG_MSG_SIMPLE_CREATE_0, z_log_msg_simple_create_0, source, level, fmt); z_log_msg_simple_create_0(source, level, fmt); sys_port_trace_syscall_exit(K_SYSCALL_Z_LOG_MSG_SIMPLE_CREATE_0, z_log_msg_simple_create_0, source, level, fmt); } while(false) +#endif +#endif + + +extern void z_impl_z_log_msg_simple_create_1(const void * source, uint32_t level, const char * fmt, uint32_t arg); + +__pinned_func +static inline void z_log_msg_simple_create_1(const void * source, uint32_t level, const char * fmt, uint32_t arg) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const void * val; } parm0 = { .val = source }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = level }; + union { uintptr_t x; const char * val; } parm2 = { .val = fmt }; + union { uintptr_t x; uint32_t val; } parm3 = { .val = arg }; + (void) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_Z_LOG_MSG_SIMPLE_CREATE_1); + return; + } +#endif + compiler_barrier(); + z_impl_z_log_msg_simple_create_1(source, level, fmt, arg); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define z_log_msg_simple_create_1(source, level, fmt, arg) do { sys_port_trace_syscall_enter(K_SYSCALL_Z_LOG_MSG_SIMPLE_CREATE_1, z_log_msg_simple_create_1, source, level, fmt, arg); z_log_msg_simple_create_1(source, level, fmt, arg); sys_port_trace_syscall_exit(K_SYSCALL_Z_LOG_MSG_SIMPLE_CREATE_1, z_log_msg_simple_create_1, source, level, fmt, arg); } while(false) +#endif +#endif + + +extern void z_impl_z_log_msg_simple_create_2(const void * source, uint32_t level, const char * fmt, uint32_t arg0, uint32_t arg1); + +__pinned_func +static inline void z_log_msg_simple_create_2(const void * source, uint32_t level, const char * fmt, uint32_t arg0, uint32_t arg1) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const void * val; } parm0 = { .val = source }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = level }; + union { uintptr_t x; const char * val; } parm2 = { .val = fmt }; + union { uintptr_t x; uint32_t val; } parm3 = { .val = arg0 }; + union { uintptr_t x; uint32_t val; } parm4 = { .val = arg1 }; + (void) arch_syscall_invoke5(parm0.x, parm1.x, parm2.x, parm3.x, parm4.x, K_SYSCALL_Z_LOG_MSG_SIMPLE_CREATE_2); + return; + } +#endif + compiler_barrier(); + z_impl_z_log_msg_simple_create_2(source, level, fmt, arg0, arg1); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define z_log_msg_simple_create_2(source, level, fmt, arg0, arg1) do { sys_port_trace_syscall_enter(K_SYSCALL_Z_LOG_MSG_SIMPLE_CREATE_2, z_log_msg_simple_create_2, source, level, fmt, arg0, arg1); z_log_msg_simple_create_2(source, level, fmt, arg0, arg1); sys_port_trace_syscall_exit(K_SYSCALL_Z_LOG_MSG_SIMPLE_CREATE_2, z_log_msg_simple_create_2, source, level, fmt, arg0, arg1); } while(false) +#endif +#endif + + +extern void z_impl_z_log_msg_static_create(const void * source, const struct log_msg_desc desc, uint8_t * package, const void * data); + +__pinned_func +static inline void z_log_msg_static_create(const void * source, const struct log_msg_desc desc, uint8_t * package, const void * data) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const void * val; } parm0 = { .val = source }; + union { uintptr_t x; const struct log_msg_desc val; } parm1 = { .val = desc }; + union { uintptr_t x; uint8_t * val; } parm2 = { .val = package }; + union { uintptr_t x; const void * val; } parm3 = { .val = data }; + (void) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_Z_LOG_MSG_STATIC_CREATE); + return; + } +#endif + compiler_barrier(); + z_impl_z_log_msg_static_create(source, desc, package, data); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define z_log_msg_static_create(source, desc, package, data) do { sys_port_trace_syscall_enter(K_SYSCALL_Z_LOG_MSG_STATIC_CREATE, z_log_msg_static_create, source, desc, package, data); z_log_msg_static_create(source, desc, package, data); sys_port_trace_syscall_exit(K_SYSCALL_Z_LOG_MSG_STATIC_CREATE, z_log_msg_static_create, source, desc, package, data); } while(false) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/maxim_ds3231.h b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/maxim_ds3231.h new file mode 100644 index 0000000..d6e399d --- /dev/null +++ b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/maxim_ds3231.h @@ -0,0 +1,76 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_MAXIM_DS3231_H +#define Z_INCLUDE_SYSCALLS_MAXIM_DS3231_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_maxim_ds3231_req_syncpoint(const struct device * dev, struct k_poll_signal * signal); + +__pinned_func +static inline int maxim_ds3231_req_syncpoint(const struct device * dev, struct k_poll_signal * signal) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct k_poll_signal * val; } parm1 = { .val = signal }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_MAXIM_DS3231_REQ_SYNCPOINT); + } +#endif + compiler_barrier(); + return z_impl_maxim_ds3231_req_syncpoint(dev, signal); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define maxim_ds3231_req_syncpoint(dev, signal) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_MAXIM_DS3231_REQ_SYNCPOINT, maxim_ds3231_req_syncpoint, dev, signal); syscall__retval = maxim_ds3231_req_syncpoint(dev, signal); sys_port_trace_syscall_exit(K_SYSCALL_MAXIM_DS3231_REQ_SYNCPOINT, maxim_ds3231_req_syncpoint, dev, signal, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_maxim_ds3231_get_syncpoint(const struct device * dev, struct maxim_ds3231_syncpoint * syncpoint); + +__pinned_func +static inline int maxim_ds3231_get_syncpoint(const struct device * dev, struct maxim_ds3231_syncpoint * syncpoint) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct maxim_ds3231_syncpoint * val; } parm1 = { .val = syncpoint }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_MAXIM_DS3231_GET_SYNCPOINT); + } +#endif + compiler_barrier(); + return z_impl_maxim_ds3231_get_syncpoint(dev, syncpoint); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define maxim_ds3231_get_syncpoint(dev, syncpoint) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_MAXIM_DS3231_GET_SYNCPOINT, maxim_ds3231_get_syncpoint, dev, syncpoint); syscall__retval = maxim_ds3231_get_syncpoint(dev, syncpoint); sys_port_trace_syscall_exit(K_SYSCALL_MAXIM_DS3231_GET_SYNCPOINT, maxim_ds3231_get_syncpoint, dev, syncpoint, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/mbox.h b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/mbox.h new file mode 100644 index 0000000..53ef70b --- /dev/null +++ b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/mbox.h @@ -0,0 +1,124 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_MBOX_H +#define Z_INCLUDE_SYSCALLS_MBOX_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_mbox_send(const struct device * dev, mbox_channel_id_t channel_id, const struct mbox_msg * msg); + +__pinned_func +static inline int mbox_send(const struct device * dev, mbox_channel_id_t channel_id, const struct mbox_msg * msg) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; mbox_channel_id_t val; } parm1 = { .val = channel_id }; + union { uintptr_t x; const struct mbox_msg * val; } parm2 = { .val = msg }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_MBOX_SEND); + } +#endif + compiler_barrier(); + return z_impl_mbox_send(dev, channel_id, msg); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define mbox_send(dev, channel_id, msg) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_MBOX_SEND, mbox_send, dev, channel_id, msg); syscall__retval = mbox_send(dev, channel_id, msg); sys_port_trace_syscall_exit(K_SYSCALL_MBOX_SEND, mbox_send, dev, channel_id, msg, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_mbox_mtu_get(const struct device * dev); + +__pinned_func +static inline int mbox_mtu_get(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_MBOX_MTU_GET); + } +#endif + compiler_barrier(); + return z_impl_mbox_mtu_get(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define mbox_mtu_get(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_MBOX_MTU_GET, mbox_mtu_get, dev); syscall__retval = mbox_mtu_get(dev); sys_port_trace_syscall_exit(K_SYSCALL_MBOX_MTU_GET, mbox_mtu_get, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_mbox_set_enabled(const struct device * dev, mbox_channel_id_t channel_id, bool enabled); + +__pinned_func +static inline int mbox_set_enabled(const struct device * dev, mbox_channel_id_t channel_id, bool enabled) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; mbox_channel_id_t val; } parm1 = { .val = channel_id }; + union { uintptr_t x; bool val; } parm2 = { .val = enabled }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_MBOX_SET_ENABLED); + } +#endif + compiler_barrier(); + return z_impl_mbox_set_enabled(dev, channel_id, enabled); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define mbox_set_enabled(dev, channel_id, enabled) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_MBOX_SET_ENABLED, mbox_set_enabled, dev, channel_id, enabled); syscall__retval = mbox_set_enabled(dev, channel_id, enabled); sys_port_trace_syscall_exit(K_SYSCALL_MBOX_SET_ENABLED, mbox_set_enabled, dev, channel_id, enabled, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern uint32_t z_impl_mbox_max_channels_get(const struct device * dev); + +__pinned_func +static inline uint32_t mbox_max_channels_get(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (uint32_t) arch_syscall_invoke1(parm0.x, K_SYSCALL_MBOX_MAX_CHANNELS_GET); + } +#endif + compiler_barrier(); + return z_impl_mbox_max_channels_get(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define mbox_max_channels_get(dev) ({ uint32_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_MBOX_MAX_CHANNELS_GET, mbox_max_channels_get, dev); syscall__retval = mbox_max_channels_get(dev); sys_port_trace_syscall_exit(K_SYSCALL_MBOX_MAX_CHANNELS_GET, mbox_max_channels_get, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/mdio.h b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/mdio.h new file mode 100644 index 0000000..c00fefe --- /dev/null +++ b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/mdio.h @@ -0,0 +1,182 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_MDIO_H +#define Z_INCLUDE_SYSCALLS_MDIO_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern void z_impl_mdio_bus_enable(const struct device * dev); + +__pinned_func +static inline void mdio_bus_enable(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + (void) arch_syscall_invoke1(parm0.x, K_SYSCALL_MDIO_BUS_ENABLE); + return; + } +#endif + compiler_barrier(); + z_impl_mdio_bus_enable(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define mdio_bus_enable(dev) do { sys_port_trace_syscall_enter(K_SYSCALL_MDIO_BUS_ENABLE, mdio_bus_enable, dev); mdio_bus_enable(dev); sys_port_trace_syscall_exit(K_SYSCALL_MDIO_BUS_ENABLE, mdio_bus_enable, dev); } while(false) +#endif +#endif + + +extern void z_impl_mdio_bus_disable(const struct device * dev); + +__pinned_func +static inline void mdio_bus_disable(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + (void) arch_syscall_invoke1(parm0.x, K_SYSCALL_MDIO_BUS_DISABLE); + return; + } +#endif + compiler_barrier(); + z_impl_mdio_bus_disable(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define mdio_bus_disable(dev) do { sys_port_trace_syscall_enter(K_SYSCALL_MDIO_BUS_DISABLE, mdio_bus_disable, dev); mdio_bus_disable(dev); sys_port_trace_syscall_exit(K_SYSCALL_MDIO_BUS_DISABLE, mdio_bus_disable, dev); } while(false) +#endif +#endif + + +extern int z_impl_mdio_read(const struct device * dev, uint8_t prtad, uint8_t regad, uint16_t * data); + +__pinned_func +static inline int mdio_read(const struct device * dev, uint8_t prtad, uint8_t regad, uint16_t * data) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint8_t val; } parm1 = { .val = prtad }; + union { uintptr_t x; uint8_t val; } parm2 = { .val = regad }; + union { uintptr_t x; uint16_t * val; } parm3 = { .val = data }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_MDIO_READ); + } +#endif + compiler_barrier(); + return z_impl_mdio_read(dev, prtad, regad, data); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define mdio_read(dev, prtad, regad, data) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_MDIO_READ, mdio_read, dev, prtad, regad, data); syscall__retval = mdio_read(dev, prtad, regad, data); sys_port_trace_syscall_exit(K_SYSCALL_MDIO_READ, mdio_read, dev, prtad, regad, data, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_mdio_write(const struct device * dev, uint8_t prtad, uint8_t regad, uint16_t data); + +__pinned_func +static inline int mdio_write(const struct device * dev, uint8_t prtad, uint8_t regad, uint16_t data) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint8_t val; } parm1 = { .val = prtad }; + union { uintptr_t x; uint8_t val; } parm2 = { .val = regad }; + union { uintptr_t x; uint16_t val; } parm3 = { .val = data }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_MDIO_WRITE); + } +#endif + compiler_barrier(); + return z_impl_mdio_write(dev, prtad, regad, data); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define mdio_write(dev, prtad, regad, data) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_MDIO_WRITE, mdio_write, dev, prtad, regad, data); syscall__retval = mdio_write(dev, prtad, regad, data); sys_port_trace_syscall_exit(K_SYSCALL_MDIO_WRITE, mdio_write, dev, prtad, regad, data, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_mdio_read_c45(const struct device * dev, uint8_t prtad, uint8_t devad, uint16_t regad, uint16_t * data); + +__pinned_func +static inline int mdio_read_c45(const struct device * dev, uint8_t prtad, uint8_t devad, uint16_t regad, uint16_t * data) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint8_t val; } parm1 = { .val = prtad }; + union { uintptr_t x; uint8_t val; } parm2 = { .val = devad }; + union { uintptr_t x; uint16_t val; } parm3 = { .val = regad }; + union { uintptr_t x; uint16_t * val; } parm4 = { .val = data }; + return (int) arch_syscall_invoke5(parm0.x, parm1.x, parm2.x, parm3.x, parm4.x, K_SYSCALL_MDIO_READ_C45); + } +#endif + compiler_barrier(); + return z_impl_mdio_read_c45(dev, prtad, devad, regad, data); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define mdio_read_c45(dev, prtad, devad, regad, data) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_MDIO_READ_C45, mdio_read_c45, dev, prtad, devad, regad, data); syscall__retval = mdio_read_c45(dev, prtad, devad, regad, data); sys_port_trace_syscall_exit(K_SYSCALL_MDIO_READ_C45, mdio_read_c45, dev, prtad, devad, regad, data, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_mdio_write_c45(const struct device * dev, uint8_t prtad, uint8_t devad, uint16_t regad, uint16_t data); + +__pinned_func +static inline int mdio_write_c45(const struct device * dev, uint8_t prtad, uint8_t devad, uint16_t regad, uint16_t data) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint8_t val; } parm1 = { .val = prtad }; + union { uintptr_t x; uint8_t val; } parm2 = { .val = devad }; + union { uintptr_t x; uint16_t val; } parm3 = { .val = regad }; + union { uintptr_t x; uint16_t val; } parm4 = { .val = data }; + return (int) arch_syscall_invoke5(parm0.x, parm1.x, parm2.x, parm3.x, parm4.x, K_SYSCALL_MDIO_WRITE_C45); + } +#endif + compiler_barrier(); + return z_impl_mdio_write_c45(dev, prtad, devad, regad, data); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define mdio_write_c45(dev, prtad, devad, regad, data) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_MDIO_WRITE_C45, mdio_write_c45, dev, prtad, devad, regad, data); syscall__retval = mdio_write_c45(dev, prtad, devad, regad, data); sys_port_trace_syscall_exit(K_SYSCALL_MDIO_WRITE_C45, mdio_write_c45, dev, prtad, devad, regad, data, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/mspi.h b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/mspi.h new file mode 100644 index 0000000..6a72b61 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/mspi.h @@ -0,0 +1,202 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_MSPI_H +#define Z_INCLUDE_SYSCALLS_MSPI_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_mspi_config(const struct mspi_dt_spec * spec); + +__pinned_func +static inline int mspi_config(const struct mspi_dt_spec * spec) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct mspi_dt_spec * val; } parm0 = { .val = spec }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_MSPI_CONFIG); + } +#endif + compiler_barrier(); + return z_impl_mspi_config(spec); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define mspi_config(spec) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_MSPI_CONFIG, mspi_config, spec); syscall__retval = mspi_config(spec); sys_port_trace_syscall_exit(K_SYSCALL_MSPI_CONFIG, mspi_config, spec, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_mspi_dev_config(const struct device * controller, const struct mspi_dev_id * dev_id, const enum mspi_dev_cfg_mask param_mask, const struct mspi_dev_cfg * cfg); + +__pinned_func +static inline int mspi_dev_config(const struct device * controller, const struct mspi_dev_id * dev_id, const enum mspi_dev_cfg_mask param_mask, const struct mspi_dev_cfg * cfg) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = controller }; + union { uintptr_t x; const struct mspi_dev_id * val; } parm1 = { .val = dev_id }; + union { uintptr_t x; const enum mspi_dev_cfg_mask val; } parm2 = { .val = param_mask }; + union { uintptr_t x; const struct mspi_dev_cfg * val; } parm3 = { .val = cfg }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_MSPI_DEV_CONFIG); + } +#endif + compiler_barrier(); + return z_impl_mspi_dev_config(controller, dev_id, param_mask, cfg); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define mspi_dev_config(controller, dev_id, param_mask, cfg) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_MSPI_DEV_CONFIG, mspi_dev_config, controller, dev_id, param_mask, cfg); syscall__retval = mspi_dev_config(controller, dev_id, param_mask, cfg); sys_port_trace_syscall_exit(K_SYSCALL_MSPI_DEV_CONFIG, mspi_dev_config, controller, dev_id, param_mask, cfg, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_mspi_get_channel_status(const struct device * controller, uint8_t ch); + +__pinned_func +static inline int mspi_get_channel_status(const struct device * controller, uint8_t ch) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = controller }; + union { uintptr_t x; uint8_t val; } parm1 = { .val = ch }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_MSPI_GET_CHANNEL_STATUS); + } +#endif + compiler_barrier(); + return z_impl_mspi_get_channel_status(controller, ch); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define mspi_get_channel_status(controller, ch) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_MSPI_GET_CHANNEL_STATUS, mspi_get_channel_status, controller, ch); syscall__retval = mspi_get_channel_status(controller, ch); sys_port_trace_syscall_exit(K_SYSCALL_MSPI_GET_CHANNEL_STATUS, mspi_get_channel_status, controller, ch, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_mspi_transceive(const struct device * controller, const struct mspi_dev_id * dev_id, const struct mspi_xfer * req); + +__pinned_func +static inline int mspi_transceive(const struct device * controller, const struct mspi_dev_id * dev_id, const struct mspi_xfer * req) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = controller }; + union { uintptr_t x; const struct mspi_dev_id * val; } parm1 = { .val = dev_id }; + union { uintptr_t x; const struct mspi_xfer * val; } parm2 = { .val = req }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_MSPI_TRANSCEIVE); + } +#endif + compiler_barrier(); + return z_impl_mspi_transceive(controller, dev_id, req); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define mspi_transceive(controller, dev_id, req) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_MSPI_TRANSCEIVE, mspi_transceive, controller, dev_id, req); syscall__retval = mspi_transceive(controller, dev_id, req); sys_port_trace_syscall_exit(K_SYSCALL_MSPI_TRANSCEIVE, mspi_transceive, controller, dev_id, req, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_mspi_xip_config(const struct device * controller, const struct mspi_dev_id * dev_id, const struct mspi_xip_cfg * cfg); + +__pinned_func +static inline int mspi_xip_config(const struct device * controller, const struct mspi_dev_id * dev_id, const struct mspi_xip_cfg * cfg) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = controller }; + union { uintptr_t x; const struct mspi_dev_id * val; } parm1 = { .val = dev_id }; + union { uintptr_t x; const struct mspi_xip_cfg * val; } parm2 = { .val = cfg }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_MSPI_XIP_CONFIG); + } +#endif + compiler_barrier(); + return z_impl_mspi_xip_config(controller, dev_id, cfg); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define mspi_xip_config(controller, dev_id, cfg) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_MSPI_XIP_CONFIG, mspi_xip_config, controller, dev_id, cfg); syscall__retval = mspi_xip_config(controller, dev_id, cfg); sys_port_trace_syscall_exit(K_SYSCALL_MSPI_XIP_CONFIG, mspi_xip_config, controller, dev_id, cfg, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_mspi_scramble_config(const struct device * controller, const struct mspi_dev_id * dev_id, const struct mspi_scramble_cfg * cfg); + +__pinned_func +static inline int mspi_scramble_config(const struct device * controller, const struct mspi_dev_id * dev_id, const struct mspi_scramble_cfg * cfg) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = controller }; + union { uintptr_t x; const struct mspi_dev_id * val; } parm1 = { .val = dev_id }; + union { uintptr_t x; const struct mspi_scramble_cfg * val; } parm2 = { .val = cfg }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_MSPI_SCRAMBLE_CONFIG); + } +#endif + compiler_barrier(); + return z_impl_mspi_scramble_config(controller, dev_id, cfg); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define mspi_scramble_config(controller, dev_id, cfg) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_MSPI_SCRAMBLE_CONFIG, mspi_scramble_config, controller, dev_id, cfg); syscall__retval = mspi_scramble_config(controller, dev_id, cfg); sys_port_trace_syscall_exit(K_SYSCALL_MSPI_SCRAMBLE_CONFIG, mspi_scramble_config, controller, dev_id, cfg, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_mspi_timing_config(const struct device * controller, const struct mspi_dev_id * dev_id, const uint32_t param_mask, void * cfg); + +__pinned_func +static inline int mspi_timing_config(const struct device * controller, const struct mspi_dev_id * dev_id, const uint32_t param_mask, void * cfg) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = controller }; + union { uintptr_t x; const struct mspi_dev_id * val; } parm1 = { .val = dev_id }; + union { uintptr_t x; const uint32_t val; } parm2 = { .val = param_mask }; + union { uintptr_t x; void * val; } parm3 = { .val = cfg }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_MSPI_TIMING_CONFIG); + } +#endif + compiler_barrier(); + return z_impl_mspi_timing_config(controller, dev_id, param_mask, cfg); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define mspi_timing_config(controller, dev_id, param_mask, cfg) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_MSPI_TIMING_CONFIG, mspi_timing_config, controller, dev_id, param_mask, cfg); syscall__retval = mspi_timing_config(controller, dev_id, param_mask, cfg); sys_port_trace_syscall_exit(K_SYSCALL_MSPI_TIMING_CONFIG, mspi_timing_config, controller, dev_id, param_mask, cfg, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/mutex.h b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/mutex.h new file mode 100644 index 0000000..1e90425 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/mutex.h @@ -0,0 +1,75 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_MUTEX_H +#define Z_INCLUDE_SYSCALLS_MUTEX_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_z_sys_mutex_kernel_lock(struct sys_mutex * mutex, k_timeout_t timeout); + +__pinned_func +static inline int z_sys_mutex_kernel_lock(struct sys_mutex * mutex, k_timeout_t timeout) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct sys_mutex * val; } parm0 = { .val = mutex }; + union { struct { uintptr_t lo, hi; } split; k_timeout_t val; } parm1 = { .val = timeout }; + return (int) arch_syscall_invoke3(parm0.x, parm1.split.lo, parm1.split.hi, K_SYSCALL_Z_SYS_MUTEX_KERNEL_LOCK); + } +#endif + compiler_barrier(); + return z_impl_z_sys_mutex_kernel_lock(mutex, timeout); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define z_sys_mutex_kernel_lock(mutex, timeout) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_Z_SYS_MUTEX_KERNEL_LOCK, z_sys_mutex_kernel_lock, mutex, timeout); syscall__retval = z_sys_mutex_kernel_lock(mutex, timeout); sys_port_trace_syscall_exit(K_SYSCALL_Z_SYS_MUTEX_KERNEL_LOCK, z_sys_mutex_kernel_lock, mutex, timeout, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_z_sys_mutex_kernel_unlock(struct sys_mutex * mutex); + +__pinned_func +static inline int z_sys_mutex_kernel_unlock(struct sys_mutex * mutex) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct sys_mutex * val; } parm0 = { .val = mutex }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_Z_SYS_MUTEX_KERNEL_UNLOCK); + } +#endif + compiler_barrier(); + return z_impl_z_sys_mutex_kernel_unlock(mutex); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define z_sys_mutex_kernel_unlock(mutex) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_Z_SYS_MUTEX_KERNEL_UNLOCK, z_sys_mutex_kernel_unlock, mutex); syscall__retval = z_sys_mutex_kernel_unlock(mutex); sys_port_trace_syscall_exit(K_SYSCALL_Z_SYS_MUTEX_KERNEL_UNLOCK, z_sys_mutex_kernel_unlock, mutex, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/net_if.h b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/net_if.h new file mode 100644 index 0000000..b029e18 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/net_if.h @@ -0,0 +1,270 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_NET_IF_H +#define Z_INCLUDE_SYSCALLS_NET_IF_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_net_if_ipv6_addr_lookup_by_index(const struct in6_addr * addr); + +__pinned_func +static inline int net_if_ipv6_addr_lookup_by_index(const struct in6_addr * addr) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct in6_addr * val; } parm0 = { .val = addr }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_NET_IF_IPV6_ADDR_LOOKUP_BY_INDEX); + } +#endif + compiler_barrier(); + return z_impl_net_if_ipv6_addr_lookup_by_index(addr); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define net_if_ipv6_addr_lookup_by_index(addr) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_NET_IF_IPV6_ADDR_LOOKUP_BY_INDEX, net_if_ipv6_addr_lookup_by_index, addr); syscall__retval = net_if_ipv6_addr_lookup_by_index(addr); sys_port_trace_syscall_exit(K_SYSCALL_NET_IF_IPV6_ADDR_LOOKUP_BY_INDEX, net_if_ipv6_addr_lookup_by_index, addr, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern bool z_impl_net_if_ipv6_addr_add_by_index(int index, struct in6_addr * addr, enum net_addr_type addr_type, uint32_t vlifetime); + +__pinned_func +static inline bool net_if_ipv6_addr_add_by_index(int index, struct in6_addr * addr, enum net_addr_type addr_type, uint32_t vlifetime) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; int val; } parm0 = { .val = index }; + union { uintptr_t x; struct in6_addr * val; } parm1 = { .val = addr }; + union { uintptr_t x; enum net_addr_type val; } parm2 = { .val = addr_type }; + union { uintptr_t x; uint32_t val; } parm3 = { .val = vlifetime }; + return (bool) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_NET_IF_IPV6_ADDR_ADD_BY_INDEX); + } +#endif + compiler_barrier(); + return z_impl_net_if_ipv6_addr_add_by_index(index, addr, addr_type, vlifetime); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define net_if_ipv6_addr_add_by_index(index, addr, addr_type, vlifetime) ({ bool syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_NET_IF_IPV6_ADDR_ADD_BY_INDEX, net_if_ipv6_addr_add_by_index, index, addr, addr_type, vlifetime); syscall__retval = net_if_ipv6_addr_add_by_index(index, addr, addr_type, vlifetime); sys_port_trace_syscall_exit(K_SYSCALL_NET_IF_IPV6_ADDR_ADD_BY_INDEX, net_if_ipv6_addr_add_by_index, index, addr, addr_type, vlifetime, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern bool z_impl_net_if_ipv6_addr_rm_by_index(int index, const struct in6_addr * addr); + +__pinned_func +static inline bool net_if_ipv6_addr_rm_by_index(int index, const struct in6_addr * addr) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; int val; } parm0 = { .val = index }; + union { uintptr_t x; const struct in6_addr * val; } parm1 = { .val = addr }; + return (bool) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_NET_IF_IPV6_ADDR_RM_BY_INDEX); + } +#endif + compiler_barrier(); + return z_impl_net_if_ipv6_addr_rm_by_index(index, addr); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define net_if_ipv6_addr_rm_by_index(index, addr) ({ bool syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_NET_IF_IPV6_ADDR_RM_BY_INDEX, net_if_ipv6_addr_rm_by_index, index, addr); syscall__retval = net_if_ipv6_addr_rm_by_index(index, addr); sys_port_trace_syscall_exit(K_SYSCALL_NET_IF_IPV6_ADDR_RM_BY_INDEX, net_if_ipv6_addr_rm_by_index, index, addr, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_net_if_ipv4_addr_lookup_by_index(const struct in_addr * addr); + +__pinned_func +static inline int net_if_ipv4_addr_lookup_by_index(const struct in_addr * addr) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct in_addr * val; } parm0 = { .val = addr }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_NET_IF_IPV4_ADDR_LOOKUP_BY_INDEX); + } +#endif + compiler_barrier(); + return z_impl_net_if_ipv4_addr_lookup_by_index(addr); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define net_if_ipv4_addr_lookup_by_index(addr) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_NET_IF_IPV4_ADDR_LOOKUP_BY_INDEX, net_if_ipv4_addr_lookup_by_index, addr); syscall__retval = net_if_ipv4_addr_lookup_by_index(addr); sys_port_trace_syscall_exit(K_SYSCALL_NET_IF_IPV4_ADDR_LOOKUP_BY_INDEX, net_if_ipv4_addr_lookup_by_index, addr, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern bool z_impl_net_if_ipv4_addr_add_by_index(int index, struct in_addr * addr, enum net_addr_type addr_type, uint32_t vlifetime); + +__pinned_func +static inline bool net_if_ipv4_addr_add_by_index(int index, struct in_addr * addr, enum net_addr_type addr_type, uint32_t vlifetime) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; int val; } parm0 = { .val = index }; + union { uintptr_t x; struct in_addr * val; } parm1 = { .val = addr }; + union { uintptr_t x; enum net_addr_type val; } parm2 = { .val = addr_type }; + union { uintptr_t x; uint32_t val; } parm3 = { .val = vlifetime }; + return (bool) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_NET_IF_IPV4_ADDR_ADD_BY_INDEX); + } +#endif + compiler_barrier(); + return z_impl_net_if_ipv4_addr_add_by_index(index, addr, addr_type, vlifetime); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define net_if_ipv4_addr_add_by_index(index, addr, addr_type, vlifetime) ({ bool syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_NET_IF_IPV4_ADDR_ADD_BY_INDEX, net_if_ipv4_addr_add_by_index, index, addr, addr_type, vlifetime); syscall__retval = net_if_ipv4_addr_add_by_index(index, addr, addr_type, vlifetime); sys_port_trace_syscall_exit(K_SYSCALL_NET_IF_IPV4_ADDR_ADD_BY_INDEX, net_if_ipv4_addr_add_by_index, index, addr, addr_type, vlifetime, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern bool z_impl_net_if_ipv4_addr_rm_by_index(int index, const struct in_addr * addr); + +__pinned_func +static inline bool net_if_ipv4_addr_rm_by_index(int index, const struct in_addr * addr) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; int val; } parm0 = { .val = index }; + union { uintptr_t x; const struct in_addr * val; } parm1 = { .val = addr }; + return (bool) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_NET_IF_IPV4_ADDR_RM_BY_INDEX); + } +#endif + compiler_barrier(); + return z_impl_net_if_ipv4_addr_rm_by_index(index, addr); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define net_if_ipv4_addr_rm_by_index(index, addr) ({ bool syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_NET_IF_IPV4_ADDR_RM_BY_INDEX, net_if_ipv4_addr_rm_by_index, index, addr); syscall__retval = net_if_ipv4_addr_rm_by_index(index, addr); sys_port_trace_syscall_exit(K_SYSCALL_NET_IF_IPV4_ADDR_RM_BY_INDEX, net_if_ipv4_addr_rm_by_index, index, addr, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern bool z_impl_net_if_ipv4_set_netmask_by_index(int index, const struct in_addr * netmask); + +__pinned_func +static inline bool net_if_ipv4_set_netmask_by_index(int index, const struct in_addr * netmask) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; int val; } parm0 = { .val = index }; + union { uintptr_t x; const struct in_addr * val; } parm1 = { .val = netmask }; + return (bool) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_NET_IF_IPV4_SET_NETMASK_BY_INDEX); + } +#endif + compiler_barrier(); + return z_impl_net_if_ipv4_set_netmask_by_index(index, netmask); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define net_if_ipv4_set_netmask_by_index(index, netmask) ({ bool syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_NET_IF_IPV4_SET_NETMASK_BY_INDEX, net_if_ipv4_set_netmask_by_index, index, netmask); syscall__retval = net_if_ipv4_set_netmask_by_index(index, netmask); sys_port_trace_syscall_exit(K_SYSCALL_NET_IF_IPV4_SET_NETMASK_BY_INDEX, net_if_ipv4_set_netmask_by_index, index, netmask, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern bool z_impl_net_if_ipv4_set_netmask_by_addr_by_index(int index, const struct in_addr * addr, const struct in_addr * netmask); + +__pinned_func +static inline bool net_if_ipv4_set_netmask_by_addr_by_index(int index, const struct in_addr * addr, const struct in_addr * netmask) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; int val; } parm0 = { .val = index }; + union { uintptr_t x; const struct in_addr * val; } parm1 = { .val = addr }; + union { uintptr_t x; const struct in_addr * val; } parm2 = { .val = netmask }; + return (bool) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_NET_IF_IPV4_SET_NETMASK_BY_ADDR_BY_INDEX); + } +#endif + compiler_barrier(); + return z_impl_net_if_ipv4_set_netmask_by_addr_by_index(index, addr, netmask); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define net_if_ipv4_set_netmask_by_addr_by_index(index, addr, netmask) ({ bool syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_NET_IF_IPV4_SET_NETMASK_BY_ADDR_BY_INDEX, net_if_ipv4_set_netmask_by_addr_by_index, index, addr, netmask); syscall__retval = net_if_ipv4_set_netmask_by_addr_by_index(index, addr, netmask); sys_port_trace_syscall_exit(K_SYSCALL_NET_IF_IPV4_SET_NETMASK_BY_ADDR_BY_INDEX, net_if_ipv4_set_netmask_by_addr_by_index, index, addr, netmask, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern bool z_impl_net_if_ipv4_set_gw_by_index(int index, const struct in_addr * gw); + +__pinned_func +static inline bool net_if_ipv4_set_gw_by_index(int index, const struct in_addr * gw) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; int val; } parm0 = { .val = index }; + union { uintptr_t x; const struct in_addr * val; } parm1 = { .val = gw }; + return (bool) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_NET_IF_IPV4_SET_GW_BY_INDEX); + } +#endif + compiler_barrier(); + return z_impl_net_if_ipv4_set_gw_by_index(index, gw); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define net_if_ipv4_set_gw_by_index(index, gw) ({ bool syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_NET_IF_IPV4_SET_GW_BY_INDEX, net_if_ipv4_set_gw_by_index, index, gw); syscall__retval = net_if_ipv4_set_gw_by_index(index, gw); sys_port_trace_syscall_exit(K_SYSCALL_NET_IF_IPV4_SET_GW_BY_INDEX, net_if_ipv4_set_gw_by_index, index, gw, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern struct net_if * z_impl_net_if_get_by_index(int index); + +__pinned_func +static inline struct net_if * net_if_get_by_index(int index) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; int val; } parm0 = { .val = index }; + return (struct net_if *) arch_syscall_invoke1(parm0.x, K_SYSCALL_NET_IF_GET_BY_INDEX); + } +#endif + compiler_barrier(); + return z_impl_net_if_get_by_index(index); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define net_if_get_by_index(index) ({ struct net_if * syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_NET_IF_GET_BY_INDEX, net_if_get_by_index, index); syscall__retval = net_if_get_by_index(index); sys_port_trace_syscall_exit(K_SYSCALL_NET_IF_GET_BY_INDEX, net_if_get_by_index, index, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/net_ip.h b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/net_ip.h new file mode 100644 index 0000000..aeed478 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/net_ip.h @@ -0,0 +1,79 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_NET_IP_H +#define Z_INCLUDE_SYSCALLS_NET_IP_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_net_addr_pton(sa_family_t family, const char * src, void * dst); + +__pinned_func +static inline int net_addr_pton(sa_family_t family, const char * src, void * dst) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; sa_family_t val; } parm0 = { .val = family }; + union { uintptr_t x; const char * val; } parm1 = { .val = src }; + union { uintptr_t x; void * val; } parm2 = { .val = dst }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_NET_ADDR_PTON); + } +#endif + compiler_barrier(); + return z_impl_net_addr_pton(family, src, dst); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define net_addr_pton(family, src, dst) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_NET_ADDR_PTON, net_addr_pton, family, src, dst); syscall__retval = net_addr_pton(family, src, dst); sys_port_trace_syscall_exit(K_SYSCALL_NET_ADDR_PTON, net_addr_pton, family, src, dst, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern char * z_impl_net_addr_ntop(sa_family_t family, const void * src, char * dst, size_t size); + +__pinned_func +static inline char * net_addr_ntop(sa_family_t family, const void * src, char * dst, size_t size) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; sa_family_t val; } parm0 = { .val = family }; + union { uintptr_t x; const void * val; } parm1 = { .val = src }; + union { uintptr_t x; char * val; } parm2 = { .val = dst }; + union { uintptr_t x; size_t val; } parm3 = { .val = size }; + return (char *) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_NET_ADDR_NTOP); + } +#endif + compiler_barrier(); + return z_impl_net_addr_ntop(family, src, dst, size); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define net_addr_ntop(family, src, dst, size) ({ char * syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_NET_ADDR_NTOP, net_addr_ntop, family, src, dst, size); syscall__retval = net_addr_ntop(family, src, dst, size); sys_port_trace_syscall_exit(K_SYSCALL_NET_ADDR_NTOP, net_addr_ntop, family, src, dst, size, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/nrf_qspi_nor.h b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/nrf_qspi_nor.h new file mode 100644 index 0000000..ea0c654 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/nrf_qspi_nor.h @@ -0,0 +1,53 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_NRF_QSPI_NOR_H +#define Z_INCLUDE_SYSCALLS_NRF_QSPI_NOR_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern void z_impl_nrf_qspi_nor_xip_enable(const struct device * dev, bool enable); + +__pinned_func +static inline void nrf_qspi_nor_xip_enable(const struct device * dev, bool enable) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; bool val; } parm1 = { .val = enable }; + (void) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_NRF_QSPI_NOR_XIP_ENABLE); + return; + } +#endif + compiler_barrier(); + z_impl_nrf_qspi_nor_xip_enable(dev, enable); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define nrf_qspi_nor_xip_enable(dev, enable) do { sys_port_trace_syscall_enter(K_SYSCALL_NRF_QSPI_NOR_XIP_ENABLE, nrf_qspi_nor_xip_enable, dev, enable); nrf_qspi_nor_xip_enable(dev, enable); sys_port_trace_syscall_exit(K_SYSCALL_NRF_QSPI_NOR_XIP_ENABLE, nrf_qspi_nor_xip_enable, dev, enable); } while(false) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/peci.h b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/peci.h new file mode 100644 index 0000000..17acef0 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/peci.h @@ -0,0 +1,122 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_PECI_H +#define Z_INCLUDE_SYSCALLS_PECI_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_peci_config(const struct device * dev, uint32_t bitrate); + +__pinned_func +static inline int peci_config(const struct device * dev, uint32_t bitrate) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = bitrate }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_PECI_CONFIG); + } +#endif + compiler_barrier(); + return z_impl_peci_config(dev, bitrate); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define peci_config(dev, bitrate) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_PECI_CONFIG, peci_config, dev, bitrate); syscall__retval = peci_config(dev, bitrate); sys_port_trace_syscall_exit(K_SYSCALL_PECI_CONFIG, peci_config, dev, bitrate, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_peci_enable(const struct device * dev); + +__pinned_func +static inline int peci_enable(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_PECI_ENABLE); + } +#endif + compiler_barrier(); + return z_impl_peci_enable(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define peci_enable(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_PECI_ENABLE, peci_enable, dev); syscall__retval = peci_enable(dev); sys_port_trace_syscall_exit(K_SYSCALL_PECI_ENABLE, peci_enable, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_peci_disable(const struct device * dev); + +__pinned_func +static inline int peci_disable(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_PECI_DISABLE); + } +#endif + compiler_barrier(); + return z_impl_peci_disable(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define peci_disable(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_PECI_DISABLE, peci_disable, dev); syscall__retval = peci_disable(dev); sys_port_trace_syscall_exit(K_SYSCALL_PECI_DISABLE, peci_disable, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_peci_transfer(const struct device * dev, struct peci_msg * msg); + +__pinned_func +static inline int peci_transfer(const struct device * dev, struct peci_msg * msg) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct peci_msg * val; } parm1 = { .val = msg }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_PECI_TRANSFER); + } +#endif + compiler_barrier(); + return z_impl_peci_transfer(dev, msg); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define peci_transfer(dev, msg) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_PECI_TRANSFER, peci_transfer, dev, msg); syscall__retval = peci_transfer(dev, msg); sys_port_trace_syscall_exit(K_SYSCALL_PECI_TRANSFER, peci_transfer, dev, msg, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/ps2.h b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/ps2.h new file mode 100644 index 0000000..4b94318 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/ps2.h @@ -0,0 +1,146 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_PS2_H +#define Z_INCLUDE_SYSCALLS_PS2_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_ps2_config(const struct device * dev, ps2_callback_t callback_isr); + +__pinned_func +static inline int ps2_config(const struct device * dev, ps2_callback_t callback_isr) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; ps2_callback_t val; } parm1 = { .val = callback_isr }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_PS2_CONFIG); + } +#endif + compiler_barrier(); + return z_impl_ps2_config(dev, callback_isr); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define ps2_config(dev, callback_isr) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_PS2_CONFIG, ps2_config, dev, callback_isr); syscall__retval = ps2_config(dev, callback_isr); sys_port_trace_syscall_exit(K_SYSCALL_PS2_CONFIG, ps2_config, dev, callback_isr, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_ps2_write(const struct device * dev, uint8_t value); + +__pinned_func +static inline int ps2_write(const struct device * dev, uint8_t value) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint8_t val; } parm1 = { .val = value }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_PS2_WRITE); + } +#endif + compiler_barrier(); + return z_impl_ps2_write(dev, value); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define ps2_write(dev, value) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_PS2_WRITE, ps2_write, dev, value); syscall__retval = ps2_write(dev, value); sys_port_trace_syscall_exit(K_SYSCALL_PS2_WRITE, ps2_write, dev, value, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_ps2_read(const struct device * dev, uint8_t * value); + +__pinned_func +static inline int ps2_read(const struct device * dev, uint8_t * value) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint8_t * val; } parm1 = { .val = value }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_PS2_READ); + } +#endif + compiler_barrier(); + return z_impl_ps2_read(dev, value); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define ps2_read(dev, value) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_PS2_READ, ps2_read, dev, value); syscall__retval = ps2_read(dev, value); sys_port_trace_syscall_exit(K_SYSCALL_PS2_READ, ps2_read, dev, value, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_ps2_enable_callback(const struct device * dev); + +__pinned_func +static inline int ps2_enable_callback(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_PS2_ENABLE_CALLBACK); + } +#endif + compiler_barrier(); + return z_impl_ps2_enable_callback(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define ps2_enable_callback(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_PS2_ENABLE_CALLBACK, ps2_enable_callback, dev); syscall__retval = ps2_enable_callback(dev); sys_port_trace_syscall_exit(K_SYSCALL_PS2_ENABLE_CALLBACK, ps2_enable_callback, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_ps2_disable_callback(const struct device * dev); + +__pinned_func +static inline int ps2_disable_callback(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_PS2_DISABLE_CALLBACK); + } +#endif + compiler_barrier(); + return z_impl_ps2_disable_callback(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define ps2_disable_callback(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_PS2_DISABLE_CALLBACK, ps2_disable_callback, dev); syscall__retval = ps2_disable_callback(dev); sys_port_trace_syscall_exit(K_SYSCALL_PS2_DISABLE_CALLBACK, ps2_disable_callback, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/ptp_clock.h b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/ptp_clock.h new file mode 100644 index 0000000..399019c --- /dev/null +++ b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/ptp_clock.h @@ -0,0 +1,52 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_PTP_CLOCK_H +#define Z_INCLUDE_SYSCALLS_PTP_CLOCK_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_ptp_clock_get(const struct device * dev, struct net_ptp_time * tm); + +__pinned_func +static inline int ptp_clock_get(const struct device * dev, struct net_ptp_time * tm) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct net_ptp_time * val; } parm1 = { .val = tm }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_PTP_CLOCK_GET); + } +#endif + compiler_barrier(); + return z_impl_ptp_clock_get(dev, tm); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define ptp_clock_get(dev, tm) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_PTP_CLOCK_GET, ptp_clock_get, dev, tm); syscall__retval = ptp_clock_get(dev, tm); sys_port_trace_syscall_exit(K_SYSCALL_PTP_CLOCK_GET, ptp_clock_get, dev, tm, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/pwm.h b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/pwm.h new file mode 100644 index 0000000..49d249f --- /dev/null +++ b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/pwm.h @@ -0,0 +1,160 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_PWM_H +#define Z_INCLUDE_SYSCALLS_PWM_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_pwm_set_cycles(const struct device * dev, uint32_t channel, uint32_t period, uint32_t pulse, pwm_flags_t flags); + +__pinned_func +static inline int pwm_set_cycles(const struct device * dev, uint32_t channel, uint32_t period, uint32_t pulse, pwm_flags_t flags) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = channel }; + union { uintptr_t x; uint32_t val; } parm2 = { .val = period }; + union { uintptr_t x; uint32_t val; } parm3 = { .val = pulse }; + union { uintptr_t x; pwm_flags_t val; } parm4 = { .val = flags }; + return (int) arch_syscall_invoke5(parm0.x, parm1.x, parm2.x, parm3.x, parm4.x, K_SYSCALL_PWM_SET_CYCLES); + } +#endif + compiler_barrier(); + return z_impl_pwm_set_cycles(dev, channel, period, pulse, flags); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define pwm_set_cycles(dev, channel, period, pulse, flags) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_PWM_SET_CYCLES, pwm_set_cycles, dev, channel, period, pulse, flags); syscall__retval = pwm_set_cycles(dev, channel, period, pulse, flags); sys_port_trace_syscall_exit(K_SYSCALL_PWM_SET_CYCLES, pwm_set_cycles, dev, channel, period, pulse, flags, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_pwm_get_cycles_per_sec(const struct device * dev, uint32_t channel, uint64_t * cycles); + +__pinned_func +static inline int pwm_get_cycles_per_sec(const struct device * dev, uint32_t channel, uint64_t * cycles) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = channel }; + union { uintptr_t x; uint64_t * val; } parm2 = { .val = cycles }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_PWM_GET_CYCLES_PER_SEC); + } +#endif + compiler_barrier(); + return z_impl_pwm_get_cycles_per_sec(dev, channel, cycles); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define pwm_get_cycles_per_sec(dev, channel, cycles) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_PWM_GET_CYCLES_PER_SEC, pwm_get_cycles_per_sec, dev, channel, cycles); syscall__retval = pwm_get_cycles_per_sec(dev, channel, cycles); sys_port_trace_syscall_exit(K_SYSCALL_PWM_GET_CYCLES_PER_SEC, pwm_get_cycles_per_sec, dev, channel, cycles, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_pwm_enable_capture(const struct device * dev, uint32_t channel); + +__pinned_func +static inline int pwm_enable_capture(const struct device * dev, uint32_t channel) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = channel }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_PWM_ENABLE_CAPTURE); + } +#endif + compiler_barrier(); + return z_impl_pwm_enable_capture(dev, channel); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define pwm_enable_capture(dev, channel) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_PWM_ENABLE_CAPTURE, pwm_enable_capture, dev, channel); syscall__retval = pwm_enable_capture(dev, channel); sys_port_trace_syscall_exit(K_SYSCALL_PWM_ENABLE_CAPTURE, pwm_enable_capture, dev, channel, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_pwm_disable_capture(const struct device * dev, uint32_t channel); + +__pinned_func +static inline int pwm_disable_capture(const struct device * dev, uint32_t channel) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = channel }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_PWM_DISABLE_CAPTURE); + } +#endif + compiler_barrier(); + return z_impl_pwm_disable_capture(dev, channel); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define pwm_disable_capture(dev, channel) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_PWM_DISABLE_CAPTURE, pwm_disable_capture, dev, channel); syscall__retval = pwm_disable_capture(dev, channel); sys_port_trace_syscall_exit(K_SYSCALL_PWM_DISABLE_CAPTURE, pwm_disable_capture, dev, channel, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_pwm_capture_cycles(const struct device * dev, uint32_t channel, pwm_flags_t flags, uint32_t * period, uint32_t * pulse, k_timeout_t timeout); + +__pinned_func +static inline int pwm_capture_cycles(const struct device * dev, uint32_t channel, pwm_flags_t flags, uint32_t * period, uint32_t * pulse, k_timeout_t timeout) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = channel }; + union { uintptr_t x; pwm_flags_t val; } parm2 = { .val = flags }; + union { uintptr_t x; uint32_t * val; } parm3 = { .val = period }; + union { uintptr_t x; uint32_t * val; } parm4 = { .val = pulse }; + union { struct { uintptr_t lo, hi; } split; k_timeout_t val; } parm5 = { .val = timeout }; + uintptr_t more[] = { + parm5.split.lo, + parm5.split.hi + }; + return (int) arch_syscall_invoke6(parm0.x, parm1.x, parm2.x, parm3.x, parm4.x, (uintptr_t) &more, K_SYSCALL_PWM_CAPTURE_CYCLES); + } +#endif + compiler_barrier(); + return z_impl_pwm_capture_cycles(dev, channel, flags, period, pulse, timeout); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define pwm_capture_cycles(dev, channel, flags, period, pulse, timeout) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_PWM_CAPTURE_CYCLES, pwm_capture_cycles, dev, channel, flags, period, pulse, timeout); syscall__retval = pwm_capture_cycles(dev, channel, flags, period, pulse, timeout); sys_port_trace_syscall_exit(K_SYSCALL_PWM_CAPTURE_CYCLES, pwm_capture_cycles, dev, channel, flags, period, pulse, timeout, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/random.h b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/random.h new file mode 100644 index 0000000..0e0a77c --- /dev/null +++ b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/random.h @@ -0,0 +1,77 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_RANDOM_H +#define Z_INCLUDE_SYSCALLS_RANDOM_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern void z_impl_sys_rand_get(void * dst, size_t len); + +__pinned_func +static inline void sys_rand_get(void * dst, size_t len) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; void * val; } parm0 = { .val = dst }; + union { uintptr_t x; size_t val; } parm1 = { .val = len }; + (void) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_SYS_RAND_GET); + return; + } +#endif + compiler_barrier(); + z_impl_sys_rand_get(dst, len); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define sys_rand_get(dst, len) do { sys_port_trace_syscall_enter(K_SYSCALL_SYS_RAND_GET, sys_rand_get, dst, len); sys_rand_get(dst, len); sys_port_trace_syscall_exit(K_SYSCALL_SYS_RAND_GET, sys_rand_get, dst, len); } while(false) +#endif +#endif + + +extern int z_impl_sys_csrand_get(void * dst, size_t len); + +__pinned_func +static inline int sys_csrand_get(void * dst, size_t len) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; void * val; } parm0 = { .val = dst }; + union { uintptr_t x; size_t val; } parm1 = { .val = len }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_SYS_CSRAND_GET); + } +#endif + compiler_barrier(); + return z_impl_sys_csrand_get(dst, len); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define sys_csrand_get(dst, len) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SYS_CSRAND_GET, sys_csrand_get, dst, len); syscall__retval = sys_csrand_get(dst, len); sys_port_trace_syscall_exit(K_SYSCALL_SYS_CSRAND_GET, sys_csrand_get, dst, len, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/reset.h b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/reset.h new file mode 100644 index 0000000..c6be6fd --- /dev/null +++ b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/reset.h @@ -0,0 +1,125 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_RESET_H +#define Z_INCLUDE_SYSCALLS_RESET_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_reset_status(const struct device * dev, uint32_t id, uint8_t * status); + +__pinned_func +static inline int reset_status(const struct device * dev, uint32_t id, uint8_t * status) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = id }; + union { uintptr_t x; uint8_t * val; } parm2 = { .val = status }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_RESET_STATUS); + } +#endif + compiler_barrier(); + return z_impl_reset_status(dev, id, status); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define reset_status(dev, id, status) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_RESET_STATUS, reset_status, dev, id, status); syscall__retval = reset_status(dev, id, status); sys_port_trace_syscall_exit(K_SYSCALL_RESET_STATUS, reset_status, dev, id, status, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_reset_line_assert(const struct device * dev, uint32_t id); + +__pinned_func +static inline int reset_line_assert(const struct device * dev, uint32_t id) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = id }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_RESET_LINE_ASSERT); + } +#endif + compiler_barrier(); + return z_impl_reset_line_assert(dev, id); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define reset_line_assert(dev, id) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_RESET_LINE_ASSERT, reset_line_assert, dev, id); syscall__retval = reset_line_assert(dev, id); sys_port_trace_syscall_exit(K_SYSCALL_RESET_LINE_ASSERT, reset_line_assert, dev, id, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_reset_line_deassert(const struct device * dev, uint32_t id); + +__pinned_func +static inline int reset_line_deassert(const struct device * dev, uint32_t id) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = id }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_RESET_LINE_DEASSERT); + } +#endif + compiler_barrier(); + return z_impl_reset_line_deassert(dev, id); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define reset_line_deassert(dev, id) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_RESET_LINE_DEASSERT, reset_line_deassert, dev, id); syscall__retval = reset_line_deassert(dev, id); sys_port_trace_syscall_exit(K_SYSCALL_RESET_LINE_DEASSERT, reset_line_deassert, dev, id, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_reset_line_toggle(const struct device * dev, uint32_t id); + +__pinned_func +static inline int reset_line_toggle(const struct device * dev, uint32_t id) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = id }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_RESET_LINE_TOGGLE); + } +#endif + compiler_barrier(); + return z_impl_reset_line_toggle(dev, id); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define reset_line_toggle(dev, id) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_RESET_LINE_TOGGLE, reset_line_toggle, dev, id); syscall__retval = reset_line_toggle(dev, id); sys_port_trace_syscall_exit(K_SYSCALL_RESET_LINE_TOGGLE, reset_line_toggle, dev, id, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/retained_mem.h b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/retained_mem.h new file mode 100644 index 0000000..b3725f1 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/retained_mem.h @@ -0,0 +1,126 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_RETAINED_MEM_H +#define Z_INCLUDE_SYSCALLS_RETAINED_MEM_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern ssize_t z_impl_retained_mem_size(const struct device * dev); + +__pinned_func +static inline ssize_t retained_mem_size(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (ssize_t) arch_syscall_invoke1(parm0.x, K_SYSCALL_RETAINED_MEM_SIZE); + } +#endif + compiler_barrier(); + return z_impl_retained_mem_size(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define retained_mem_size(dev) ({ ssize_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_RETAINED_MEM_SIZE, retained_mem_size, dev); syscall__retval = retained_mem_size(dev); sys_port_trace_syscall_exit(K_SYSCALL_RETAINED_MEM_SIZE, retained_mem_size, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_retained_mem_read(const struct device * dev, off_t offset, uint8_t * buffer, size_t size); + +__pinned_func +static inline int retained_mem_read(const struct device * dev, off_t offset, uint8_t * buffer, size_t size) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; off_t val; } parm1 = { .val = offset }; + union { uintptr_t x; uint8_t * val; } parm2 = { .val = buffer }; + union { uintptr_t x; size_t val; } parm3 = { .val = size }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_RETAINED_MEM_READ); + } +#endif + compiler_barrier(); + return z_impl_retained_mem_read(dev, offset, buffer, size); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define retained_mem_read(dev, offset, buffer, size) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_RETAINED_MEM_READ, retained_mem_read, dev, offset, buffer, size); syscall__retval = retained_mem_read(dev, offset, buffer, size); sys_port_trace_syscall_exit(K_SYSCALL_RETAINED_MEM_READ, retained_mem_read, dev, offset, buffer, size, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_retained_mem_write(const struct device * dev, off_t offset, const uint8_t * buffer, size_t size); + +__pinned_func +static inline int retained_mem_write(const struct device * dev, off_t offset, const uint8_t * buffer, size_t size) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; off_t val; } parm1 = { .val = offset }; + union { uintptr_t x; const uint8_t * val; } parm2 = { .val = buffer }; + union { uintptr_t x; size_t val; } parm3 = { .val = size }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_RETAINED_MEM_WRITE); + } +#endif + compiler_barrier(); + return z_impl_retained_mem_write(dev, offset, buffer, size); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define retained_mem_write(dev, offset, buffer, size) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_RETAINED_MEM_WRITE, retained_mem_write, dev, offset, buffer, size); syscall__retval = retained_mem_write(dev, offset, buffer, size); sys_port_trace_syscall_exit(K_SYSCALL_RETAINED_MEM_WRITE, retained_mem_write, dev, offset, buffer, size, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_retained_mem_clear(const struct device * dev); + +__pinned_func +static inline int retained_mem_clear(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_RETAINED_MEM_CLEAR); + } +#endif + compiler_barrier(); + return z_impl_retained_mem_clear(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define retained_mem_clear(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_RETAINED_MEM_CLEAR, retained_mem_clear, dev); syscall__retval = retained_mem_clear(dev); sys_port_trace_syscall_exit(K_SYSCALL_RETAINED_MEM_CLEAR, retained_mem_clear, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/rtc.h b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/rtc.h new file mode 100644 index 0000000..0bde518 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/rtc.h @@ -0,0 +1,276 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_RTC_H +#define Z_INCLUDE_SYSCALLS_RTC_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_rtc_set_time(const struct device * dev, const struct rtc_time * timeptr); + +__pinned_func +static inline int rtc_set_time(const struct device * dev, const struct rtc_time * timeptr) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; const struct rtc_time * val; } parm1 = { .val = timeptr }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_RTC_SET_TIME); + } +#endif + compiler_barrier(); + return z_impl_rtc_set_time(dev, timeptr); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define rtc_set_time(dev, timeptr) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_RTC_SET_TIME, rtc_set_time, dev, timeptr); syscall__retval = rtc_set_time(dev, timeptr); sys_port_trace_syscall_exit(K_SYSCALL_RTC_SET_TIME, rtc_set_time, dev, timeptr, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_rtc_get_time(const struct device * dev, struct rtc_time * timeptr); + +__pinned_func +static inline int rtc_get_time(const struct device * dev, struct rtc_time * timeptr) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct rtc_time * val; } parm1 = { .val = timeptr }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_RTC_GET_TIME); + } +#endif + compiler_barrier(); + return z_impl_rtc_get_time(dev, timeptr); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define rtc_get_time(dev, timeptr) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_RTC_GET_TIME, rtc_get_time, dev, timeptr); syscall__retval = rtc_get_time(dev, timeptr); sys_port_trace_syscall_exit(K_SYSCALL_RTC_GET_TIME, rtc_get_time, dev, timeptr, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_rtc_alarm_get_supported_fields(const struct device * dev, uint16_t id, uint16_t * mask); + +__pinned_func +static inline int rtc_alarm_get_supported_fields(const struct device * dev, uint16_t id, uint16_t * mask) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint16_t val; } parm1 = { .val = id }; + union { uintptr_t x; uint16_t * val; } parm2 = { .val = mask }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_RTC_ALARM_GET_SUPPORTED_FIELDS); + } +#endif + compiler_barrier(); + return z_impl_rtc_alarm_get_supported_fields(dev, id, mask); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define rtc_alarm_get_supported_fields(dev, id, mask) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_RTC_ALARM_GET_SUPPORTED_FIELDS, rtc_alarm_get_supported_fields, dev, id, mask); syscall__retval = rtc_alarm_get_supported_fields(dev, id, mask); sys_port_trace_syscall_exit(K_SYSCALL_RTC_ALARM_GET_SUPPORTED_FIELDS, rtc_alarm_get_supported_fields, dev, id, mask, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_rtc_alarm_set_time(const struct device * dev, uint16_t id, uint16_t mask, const struct rtc_time * timeptr); + +__pinned_func +static inline int rtc_alarm_set_time(const struct device * dev, uint16_t id, uint16_t mask, const struct rtc_time * timeptr) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint16_t val; } parm1 = { .val = id }; + union { uintptr_t x; uint16_t val; } parm2 = { .val = mask }; + union { uintptr_t x; const struct rtc_time * val; } parm3 = { .val = timeptr }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_RTC_ALARM_SET_TIME); + } +#endif + compiler_barrier(); + return z_impl_rtc_alarm_set_time(dev, id, mask, timeptr); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define rtc_alarm_set_time(dev, id, mask, timeptr) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_RTC_ALARM_SET_TIME, rtc_alarm_set_time, dev, id, mask, timeptr); syscall__retval = rtc_alarm_set_time(dev, id, mask, timeptr); sys_port_trace_syscall_exit(K_SYSCALL_RTC_ALARM_SET_TIME, rtc_alarm_set_time, dev, id, mask, timeptr, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_rtc_alarm_get_time(const struct device * dev, uint16_t id, uint16_t * mask, struct rtc_time * timeptr); + +__pinned_func +static inline int rtc_alarm_get_time(const struct device * dev, uint16_t id, uint16_t * mask, struct rtc_time * timeptr) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint16_t val; } parm1 = { .val = id }; + union { uintptr_t x; uint16_t * val; } parm2 = { .val = mask }; + union { uintptr_t x; struct rtc_time * val; } parm3 = { .val = timeptr }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_RTC_ALARM_GET_TIME); + } +#endif + compiler_barrier(); + return z_impl_rtc_alarm_get_time(dev, id, mask, timeptr); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define rtc_alarm_get_time(dev, id, mask, timeptr) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_RTC_ALARM_GET_TIME, rtc_alarm_get_time, dev, id, mask, timeptr); syscall__retval = rtc_alarm_get_time(dev, id, mask, timeptr); sys_port_trace_syscall_exit(K_SYSCALL_RTC_ALARM_GET_TIME, rtc_alarm_get_time, dev, id, mask, timeptr, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_rtc_alarm_is_pending(const struct device * dev, uint16_t id); + +__pinned_func +static inline int rtc_alarm_is_pending(const struct device * dev, uint16_t id) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint16_t val; } parm1 = { .val = id }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_RTC_ALARM_IS_PENDING); + } +#endif + compiler_barrier(); + return z_impl_rtc_alarm_is_pending(dev, id); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define rtc_alarm_is_pending(dev, id) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_RTC_ALARM_IS_PENDING, rtc_alarm_is_pending, dev, id); syscall__retval = rtc_alarm_is_pending(dev, id); sys_port_trace_syscall_exit(K_SYSCALL_RTC_ALARM_IS_PENDING, rtc_alarm_is_pending, dev, id, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_rtc_alarm_set_callback(const struct device * dev, uint16_t id, rtc_alarm_callback callback, void * user_data); + +__pinned_func +static inline int rtc_alarm_set_callback(const struct device * dev, uint16_t id, rtc_alarm_callback callback, void * user_data) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint16_t val; } parm1 = { .val = id }; + union { uintptr_t x; rtc_alarm_callback val; } parm2 = { .val = callback }; + union { uintptr_t x; void * val; } parm3 = { .val = user_data }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_RTC_ALARM_SET_CALLBACK); + } +#endif + compiler_barrier(); + return z_impl_rtc_alarm_set_callback(dev, id, callback, user_data); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define rtc_alarm_set_callback(dev, id, callback, user_data) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_RTC_ALARM_SET_CALLBACK, rtc_alarm_set_callback, dev, id, callback, user_data); syscall__retval = rtc_alarm_set_callback(dev, id, callback, user_data); sys_port_trace_syscall_exit(K_SYSCALL_RTC_ALARM_SET_CALLBACK, rtc_alarm_set_callback, dev, id, callback, user_data, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_rtc_update_set_callback(const struct device * dev, rtc_update_callback callback, void * user_data); + +__pinned_func +static inline int rtc_update_set_callback(const struct device * dev, rtc_update_callback callback, void * user_data) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; rtc_update_callback val; } parm1 = { .val = callback }; + union { uintptr_t x; void * val; } parm2 = { .val = user_data }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_RTC_UPDATE_SET_CALLBACK); + } +#endif + compiler_barrier(); + return z_impl_rtc_update_set_callback(dev, callback, user_data); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define rtc_update_set_callback(dev, callback, user_data) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_RTC_UPDATE_SET_CALLBACK, rtc_update_set_callback, dev, callback, user_data); syscall__retval = rtc_update_set_callback(dev, callback, user_data); sys_port_trace_syscall_exit(K_SYSCALL_RTC_UPDATE_SET_CALLBACK, rtc_update_set_callback, dev, callback, user_data, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_rtc_set_calibration(const struct device * dev, int32_t calibration); + +__pinned_func +static inline int rtc_set_calibration(const struct device * dev, int32_t calibration) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; int32_t val; } parm1 = { .val = calibration }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_RTC_SET_CALIBRATION); + } +#endif + compiler_barrier(); + return z_impl_rtc_set_calibration(dev, calibration); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define rtc_set_calibration(dev, calibration) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_RTC_SET_CALIBRATION, rtc_set_calibration, dev, calibration); syscall__retval = rtc_set_calibration(dev, calibration); sys_port_trace_syscall_exit(K_SYSCALL_RTC_SET_CALIBRATION, rtc_set_calibration, dev, calibration, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_rtc_get_calibration(const struct device * dev, int32_t * calibration); + +__pinned_func +static inline int rtc_get_calibration(const struct device * dev, int32_t * calibration) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; int32_t * val; } parm1 = { .val = calibration }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_RTC_GET_CALIBRATION); + } +#endif + compiler_barrier(); + return z_impl_rtc_get_calibration(dev, calibration); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define rtc_get_calibration(dev, calibration) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_RTC_GET_CALIBRATION, rtc_get_calibration, dev, calibration); syscall__retval = rtc_get_calibration(dev, calibration); sys_port_trace_syscall_exit(K_SYSCALL_RTC_GET_CALIBRATION, rtc_get_calibration, dev, calibration, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/rtio.h b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/rtio.h new file mode 100644 index 0000000..0f85295 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/rtio.h @@ -0,0 +1,179 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_RTIO_H +#define Z_INCLUDE_SYSCALLS_RTIO_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_rtio_cqe_get_mempool_buffer(const struct rtio * r, struct rtio_cqe * cqe, uint8_t ** buff, uint32_t * buff_len); + +__pinned_func +static inline int rtio_cqe_get_mempool_buffer(const struct rtio * r, struct rtio_cqe * cqe, uint8_t ** buff, uint32_t * buff_len) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct rtio * val; } parm0 = { .val = r }; + union { uintptr_t x; struct rtio_cqe * val; } parm1 = { .val = cqe }; + union { uintptr_t x; uint8_t ** val; } parm2 = { .val = buff }; + union { uintptr_t x; uint32_t * val; } parm3 = { .val = buff_len }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_RTIO_CQE_GET_MEMPOOL_BUFFER); + } +#endif + compiler_barrier(); + return z_impl_rtio_cqe_get_mempool_buffer(r, cqe, buff, buff_len); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define rtio_cqe_get_mempool_buffer(r, cqe, buff, buff_len) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_RTIO_CQE_GET_MEMPOOL_BUFFER, rtio_cqe_get_mempool_buffer, r, cqe, buff, buff_len); syscall__retval = rtio_cqe_get_mempool_buffer(r, cqe, buff, buff_len); sys_port_trace_syscall_exit(K_SYSCALL_RTIO_CQE_GET_MEMPOOL_BUFFER, rtio_cqe_get_mempool_buffer, r, cqe, buff, buff_len, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern void z_impl_rtio_release_buffer(struct rtio * r, void * buff, uint32_t buff_len); + +__pinned_func +static inline void rtio_release_buffer(struct rtio * r, void * buff, uint32_t buff_len) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct rtio * val; } parm0 = { .val = r }; + union { uintptr_t x; void * val; } parm1 = { .val = buff }; + union { uintptr_t x; uint32_t val; } parm2 = { .val = buff_len }; + (void) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_RTIO_RELEASE_BUFFER); + return; + } +#endif + compiler_barrier(); + z_impl_rtio_release_buffer(r, buff, buff_len); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define rtio_release_buffer(r, buff, buff_len) do { sys_port_trace_syscall_enter(K_SYSCALL_RTIO_RELEASE_BUFFER, rtio_release_buffer, r, buff, buff_len); rtio_release_buffer(r, buff, buff_len); sys_port_trace_syscall_exit(K_SYSCALL_RTIO_RELEASE_BUFFER, rtio_release_buffer, r, buff, buff_len); } while(false) +#endif +#endif + + +extern int z_impl_rtio_sqe_cancel(struct rtio_sqe * sqe); + +__pinned_func +static inline int rtio_sqe_cancel(struct rtio_sqe * sqe) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct rtio_sqe * val; } parm0 = { .val = sqe }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_RTIO_SQE_CANCEL); + } +#endif + compiler_barrier(); + return z_impl_rtio_sqe_cancel(sqe); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define rtio_sqe_cancel(sqe) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_RTIO_SQE_CANCEL, rtio_sqe_cancel, sqe); syscall__retval = rtio_sqe_cancel(sqe); sys_port_trace_syscall_exit(K_SYSCALL_RTIO_SQE_CANCEL, rtio_sqe_cancel, sqe, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_rtio_sqe_copy_in_get_handles(struct rtio * r, const struct rtio_sqe * sqes, struct rtio_sqe ** handle, size_t sqe_count); + +__pinned_func +static inline int rtio_sqe_copy_in_get_handles(struct rtio * r, const struct rtio_sqe * sqes, struct rtio_sqe ** handle, size_t sqe_count) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct rtio * val; } parm0 = { .val = r }; + union { uintptr_t x; const struct rtio_sqe * val; } parm1 = { .val = sqes }; + union { uintptr_t x; struct rtio_sqe ** val; } parm2 = { .val = handle }; + union { uintptr_t x; size_t val; } parm3 = { .val = sqe_count }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_RTIO_SQE_COPY_IN_GET_HANDLES); + } +#endif + compiler_barrier(); + return z_impl_rtio_sqe_copy_in_get_handles(r, sqes, handle, sqe_count); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define rtio_sqe_copy_in_get_handles(r, sqes, handle, sqe_count) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_RTIO_SQE_COPY_IN_GET_HANDLES, rtio_sqe_copy_in_get_handles, r, sqes, handle, sqe_count); syscall__retval = rtio_sqe_copy_in_get_handles(r, sqes, handle, sqe_count); sys_port_trace_syscall_exit(K_SYSCALL_RTIO_SQE_COPY_IN_GET_HANDLES, rtio_sqe_copy_in_get_handles, r, sqes, handle, sqe_count, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_rtio_cqe_copy_out(struct rtio * r, struct rtio_cqe * cqes, size_t cqe_count, k_timeout_t timeout); + +__pinned_func +static inline int rtio_cqe_copy_out(struct rtio * r, struct rtio_cqe * cqes, size_t cqe_count, k_timeout_t timeout) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct rtio * val; } parm0 = { .val = r }; + union { uintptr_t x; struct rtio_cqe * val; } parm1 = { .val = cqes }; + union { uintptr_t x; size_t val; } parm2 = { .val = cqe_count }; + union { struct { uintptr_t lo, hi; } split; k_timeout_t val; } parm3 = { .val = timeout }; + return (int) arch_syscall_invoke5(parm0.x, parm1.x, parm2.x, parm3.split.lo, parm3.split.hi, K_SYSCALL_RTIO_CQE_COPY_OUT); + } +#endif + compiler_barrier(); + return z_impl_rtio_cqe_copy_out(r, cqes, cqe_count, timeout); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define rtio_cqe_copy_out(r, cqes, cqe_count, timeout) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_RTIO_CQE_COPY_OUT, rtio_cqe_copy_out, r, cqes, cqe_count, timeout); syscall__retval = rtio_cqe_copy_out(r, cqes, cqe_count, timeout); sys_port_trace_syscall_exit(K_SYSCALL_RTIO_CQE_COPY_OUT, rtio_cqe_copy_out, r, cqes, cqe_count, timeout, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_rtio_submit(struct rtio * r, uint32_t wait_count); + +__pinned_func +static inline int rtio_submit(struct rtio * r, uint32_t wait_count) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct rtio * val; } parm0 = { .val = r }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = wait_count }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_RTIO_SUBMIT); + } +#endif + compiler_barrier(); + return z_impl_rtio_submit(r, wait_count); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define rtio_submit(r, wait_count) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_RTIO_SUBMIT, rtio_submit, r, wait_count); syscall__retval = rtio_submit(r, wait_count); sys_port_trace_syscall_exit(K_SYSCALL_RTIO_SUBMIT, rtio_submit, r, wait_count, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/sdhc.h b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/sdhc.h new file mode 100644 index 0000000..5e0ec48 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/sdhc.h @@ -0,0 +1,243 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_SDHC_H +#define Z_INCLUDE_SYSCALLS_SDHC_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_sdhc_hw_reset(const struct device * dev); + +__pinned_func +static inline int sdhc_hw_reset(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_SDHC_HW_RESET); + } +#endif + compiler_barrier(); + return z_impl_sdhc_hw_reset(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define sdhc_hw_reset(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SDHC_HW_RESET, sdhc_hw_reset, dev); syscall__retval = sdhc_hw_reset(dev); sys_port_trace_syscall_exit(K_SYSCALL_SDHC_HW_RESET, sdhc_hw_reset, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_sdhc_request(const struct device * dev, struct sdhc_command * cmd, struct sdhc_data * data); + +__pinned_func +static inline int sdhc_request(const struct device * dev, struct sdhc_command * cmd, struct sdhc_data * data) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct sdhc_command * val; } parm1 = { .val = cmd }; + union { uintptr_t x; struct sdhc_data * val; } parm2 = { .val = data }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_SDHC_REQUEST); + } +#endif + compiler_barrier(); + return z_impl_sdhc_request(dev, cmd, data); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define sdhc_request(dev, cmd, data) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SDHC_REQUEST, sdhc_request, dev, cmd, data); syscall__retval = sdhc_request(dev, cmd, data); sys_port_trace_syscall_exit(K_SYSCALL_SDHC_REQUEST, sdhc_request, dev, cmd, data, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_sdhc_set_io(const struct device * dev, struct sdhc_io * io); + +__pinned_func +static inline int sdhc_set_io(const struct device * dev, struct sdhc_io * io) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct sdhc_io * val; } parm1 = { .val = io }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_SDHC_SET_IO); + } +#endif + compiler_barrier(); + return z_impl_sdhc_set_io(dev, io); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define sdhc_set_io(dev, io) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SDHC_SET_IO, sdhc_set_io, dev, io); syscall__retval = sdhc_set_io(dev, io); sys_port_trace_syscall_exit(K_SYSCALL_SDHC_SET_IO, sdhc_set_io, dev, io, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_sdhc_card_present(const struct device * dev); + +__pinned_func +static inline int sdhc_card_present(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_SDHC_CARD_PRESENT); + } +#endif + compiler_barrier(); + return z_impl_sdhc_card_present(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define sdhc_card_present(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SDHC_CARD_PRESENT, sdhc_card_present, dev); syscall__retval = sdhc_card_present(dev); sys_port_trace_syscall_exit(K_SYSCALL_SDHC_CARD_PRESENT, sdhc_card_present, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_sdhc_execute_tuning(const struct device * dev); + +__pinned_func +static inline int sdhc_execute_tuning(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_SDHC_EXECUTE_TUNING); + } +#endif + compiler_barrier(); + return z_impl_sdhc_execute_tuning(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define sdhc_execute_tuning(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SDHC_EXECUTE_TUNING, sdhc_execute_tuning, dev); syscall__retval = sdhc_execute_tuning(dev); sys_port_trace_syscall_exit(K_SYSCALL_SDHC_EXECUTE_TUNING, sdhc_execute_tuning, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_sdhc_card_busy(const struct device * dev); + +__pinned_func +static inline int sdhc_card_busy(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_SDHC_CARD_BUSY); + } +#endif + compiler_barrier(); + return z_impl_sdhc_card_busy(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define sdhc_card_busy(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SDHC_CARD_BUSY, sdhc_card_busy, dev); syscall__retval = sdhc_card_busy(dev); sys_port_trace_syscall_exit(K_SYSCALL_SDHC_CARD_BUSY, sdhc_card_busy, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_sdhc_get_host_props(const struct device * dev, struct sdhc_host_props * props); + +__pinned_func +static inline int sdhc_get_host_props(const struct device * dev, struct sdhc_host_props * props) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct sdhc_host_props * val; } parm1 = { .val = props }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_SDHC_GET_HOST_PROPS); + } +#endif + compiler_barrier(); + return z_impl_sdhc_get_host_props(dev, props); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define sdhc_get_host_props(dev, props) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SDHC_GET_HOST_PROPS, sdhc_get_host_props, dev, props); syscall__retval = sdhc_get_host_props(dev, props); sys_port_trace_syscall_exit(K_SYSCALL_SDHC_GET_HOST_PROPS, sdhc_get_host_props, dev, props, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_sdhc_enable_interrupt(const struct device * dev, sdhc_interrupt_cb_t callback, int sources, void * user_data); + +__pinned_func +static inline int sdhc_enable_interrupt(const struct device * dev, sdhc_interrupt_cb_t callback, int sources, void * user_data) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; sdhc_interrupt_cb_t val; } parm1 = { .val = callback }; + union { uintptr_t x; int val; } parm2 = { .val = sources }; + union { uintptr_t x; void * val; } parm3 = { .val = user_data }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_SDHC_ENABLE_INTERRUPT); + } +#endif + compiler_barrier(); + return z_impl_sdhc_enable_interrupt(dev, callback, sources, user_data); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define sdhc_enable_interrupt(dev, callback, sources, user_data) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SDHC_ENABLE_INTERRUPT, sdhc_enable_interrupt, dev, callback, sources, user_data); syscall__retval = sdhc_enable_interrupt(dev, callback, sources, user_data); sys_port_trace_syscall_exit(K_SYSCALL_SDHC_ENABLE_INTERRUPT, sdhc_enable_interrupt, dev, callback, sources, user_data, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_sdhc_disable_interrupt(const struct device * dev, int sources); + +__pinned_func +static inline int sdhc_disable_interrupt(const struct device * dev, int sources) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; int val; } parm1 = { .val = sources }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_SDHC_DISABLE_INTERRUPT); + } +#endif + compiler_barrier(); + return z_impl_sdhc_disable_interrupt(dev, sources); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define sdhc_disable_interrupt(dev, sources) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SDHC_DISABLE_INTERRUPT, sdhc_disable_interrupt, dev, sources); syscall__retval = sdhc_disable_interrupt(dev, sources); sys_port_trace_syscall_exit(K_SYSCALL_SDHC_DISABLE_INTERRUPT, sdhc_disable_interrupt, dev, sources, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/sensor.h b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/sensor.h new file mode 100644 index 0000000..668d9ef --- /dev/null +++ b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/sensor.h @@ -0,0 +1,202 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_SENSOR_H +#define Z_INCLUDE_SYSCALLS_SENSOR_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_sensor_attr_set(const struct device * dev, enum sensor_channel chan, enum sensor_attribute attr, const struct sensor_value * val); + +__pinned_func +static inline int sensor_attr_set(const struct device * dev, enum sensor_channel chan, enum sensor_attribute attr, const struct sensor_value * val) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; enum sensor_channel val; } parm1 = { .val = chan }; + union { uintptr_t x; enum sensor_attribute val; } parm2 = { .val = attr }; + union { uintptr_t x; const struct sensor_value * val; } parm3 = { .val = val }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_SENSOR_ATTR_SET); + } +#endif + compiler_barrier(); + return z_impl_sensor_attr_set(dev, chan, attr, val); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define sensor_attr_set(dev, chan, attr, val) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SENSOR_ATTR_SET, sensor_attr_set, dev, chan, attr, val); syscall__retval = sensor_attr_set(dev, chan, attr, val); sys_port_trace_syscall_exit(K_SYSCALL_SENSOR_ATTR_SET, sensor_attr_set, dev, chan, attr, val, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_sensor_attr_get(const struct device * dev, enum sensor_channel chan, enum sensor_attribute attr, struct sensor_value * val); + +__pinned_func +static inline int sensor_attr_get(const struct device * dev, enum sensor_channel chan, enum sensor_attribute attr, struct sensor_value * val) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; enum sensor_channel val; } parm1 = { .val = chan }; + union { uintptr_t x; enum sensor_attribute val; } parm2 = { .val = attr }; + union { uintptr_t x; struct sensor_value * val; } parm3 = { .val = val }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_SENSOR_ATTR_GET); + } +#endif + compiler_barrier(); + return z_impl_sensor_attr_get(dev, chan, attr, val); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define sensor_attr_get(dev, chan, attr, val) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SENSOR_ATTR_GET, sensor_attr_get, dev, chan, attr, val); syscall__retval = sensor_attr_get(dev, chan, attr, val); sys_port_trace_syscall_exit(K_SYSCALL_SENSOR_ATTR_GET, sensor_attr_get, dev, chan, attr, val, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_sensor_sample_fetch(const struct device * dev); + +__pinned_func +static inline int sensor_sample_fetch(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_SENSOR_SAMPLE_FETCH); + } +#endif + compiler_barrier(); + return z_impl_sensor_sample_fetch(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define sensor_sample_fetch(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SENSOR_SAMPLE_FETCH, sensor_sample_fetch, dev); syscall__retval = sensor_sample_fetch(dev); sys_port_trace_syscall_exit(K_SYSCALL_SENSOR_SAMPLE_FETCH, sensor_sample_fetch, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_sensor_sample_fetch_chan(const struct device * dev, enum sensor_channel type); + +__pinned_func +static inline int sensor_sample_fetch_chan(const struct device * dev, enum sensor_channel type) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; enum sensor_channel val; } parm1 = { .val = type }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_SENSOR_SAMPLE_FETCH_CHAN); + } +#endif + compiler_barrier(); + return z_impl_sensor_sample_fetch_chan(dev, type); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define sensor_sample_fetch_chan(dev, type) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SENSOR_SAMPLE_FETCH_CHAN, sensor_sample_fetch_chan, dev, type); syscall__retval = sensor_sample_fetch_chan(dev, type); sys_port_trace_syscall_exit(K_SYSCALL_SENSOR_SAMPLE_FETCH_CHAN, sensor_sample_fetch_chan, dev, type, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_sensor_channel_get(const struct device * dev, enum sensor_channel chan, struct sensor_value * val); + +__pinned_func +static inline int sensor_channel_get(const struct device * dev, enum sensor_channel chan, struct sensor_value * val) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; enum sensor_channel val; } parm1 = { .val = chan }; + union { uintptr_t x; struct sensor_value * val; } parm2 = { .val = val }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_SENSOR_CHANNEL_GET); + } +#endif + compiler_barrier(); + return z_impl_sensor_channel_get(dev, chan, val); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define sensor_channel_get(dev, chan, val) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SENSOR_CHANNEL_GET, sensor_channel_get, dev, chan, val); syscall__retval = sensor_channel_get(dev, chan, val); sys_port_trace_syscall_exit(K_SYSCALL_SENSOR_CHANNEL_GET, sensor_channel_get, dev, chan, val, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_sensor_get_decoder(const struct device * dev, const struct sensor_decoder_api ** decoder); + +__pinned_func +static inline int sensor_get_decoder(const struct device * dev, const struct sensor_decoder_api ** decoder) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; const struct sensor_decoder_api ** val; } parm1 = { .val = decoder }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_SENSOR_GET_DECODER); + } +#endif + compiler_barrier(); + return z_impl_sensor_get_decoder(dev, decoder); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define sensor_get_decoder(dev, decoder) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SENSOR_GET_DECODER, sensor_get_decoder, dev, decoder); syscall__retval = sensor_get_decoder(dev, decoder); sys_port_trace_syscall_exit(K_SYSCALL_SENSOR_GET_DECODER, sensor_get_decoder, dev, decoder, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_sensor_reconfigure_read_iodev(struct rtio_iodev * iodev, const struct device * sensor, const struct sensor_chan_spec * channels, size_t num_channels); + +__pinned_func +static inline int sensor_reconfigure_read_iodev(struct rtio_iodev * iodev, const struct device * sensor, const struct sensor_chan_spec * channels, size_t num_channels) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct rtio_iodev * val; } parm0 = { .val = iodev }; + union { uintptr_t x; const struct device * val; } parm1 = { .val = sensor }; + union { uintptr_t x; const struct sensor_chan_spec * val; } parm2 = { .val = channels }; + union { uintptr_t x; size_t val; } parm3 = { .val = num_channels }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_SENSOR_RECONFIGURE_READ_IODEV); + } +#endif + compiler_barrier(); + return z_impl_sensor_reconfigure_read_iodev(iodev, sensor, channels, num_channels); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define sensor_reconfigure_read_iodev(iodev, sensor, channels, num_channels) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SENSOR_RECONFIGURE_READ_IODEV, sensor_reconfigure_read_iodev, iodev, sensor, channels, num_channels); syscall__retval = sensor_reconfigure_read_iodev(iodev, sensor, channels, num_channels); sys_port_trace_syscall_exit(K_SYSCALL_SENSOR_RECONFIGURE_READ_IODEV, sensor_reconfigure_read_iodev, iodev, sensor, channels, num_channels, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/sip_svc_driver.h b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/sip_svc_driver.h new file mode 100644 index 0000000..7d306e7 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/sip_svc_driver.h @@ -0,0 +1,285 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_SIP_SVC_DRIVER_H +#define Z_INCLUDE_SYSCALLS_SIP_SVC_DRIVER_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern void z_impl_sip_supervisory_call(const struct device * dev, unsigned long function_id, unsigned long arg0, unsigned long arg1, unsigned long arg2, unsigned long arg3, unsigned long arg4, unsigned long arg5, unsigned long arg6, struct arm_smccc_res * res); + +__pinned_func +static inline void sip_supervisory_call(const struct device * dev, unsigned long function_id, unsigned long arg0, unsigned long arg1, unsigned long arg2, unsigned long arg3, unsigned long arg4, unsigned long arg5, unsigned long arg6, struct arm_smccc_res * res) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; unsigned long val; } parm1 = { .val = function_id }; + union { uintptr_t x; unsigned long val; } parm2 = { .val = arg0 }; + union { uintptr_t x; unsigned long val; } parm3 = { .val = arg1 }; + union { uintptr_t x; unsigned long val; } parm4 = { .val = arg2 }; + union { uintptr_t x; unsigned long val; } parm5 = { .val = arg3 }; + union { uintptr_t x; unsigned long val; } parm6 = { .val = arg4 }; + union { uintptr_t x; unsigned long val; } parm7 = { .val = arg5 }; + union { uintptr_t x; unsigned long val; } parm8 = { .val = arg6 }; + union { uintptr_t x; struct arm_smccc_res * val; } parm9 = { .val = res }; + uintptr_t more[] = { + parm5.x, + parm6.x, + parm7.x, + parm8.x, + parm9.x + }; + (void) arch_syscall_invoke6(parm0.x, parm1.x, parm2.x, parm3.x, parm4.x, (uintptr_t) &more, K_SYSCALL_SIP_SUPERVISORY_CALL); + return; + } +#endif + compiler_barrier(); + z_impl_sip_supervisory_call(dev, function_id, arg0, arg1, arg2, arg3, arg4, arg5, arg6, res); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define sip_supervisory_call(dev, function_id, arg0, arg1, arg2, arg3, arg4, arg5, arg6, res) do { sys_port_trace_syscall_enter(K_SYSCALL_SIP_SUPERVISORY_CALL, sip_supervisory_call, dev, function_id, arg0, arg1, arg2, arg3, arg4, arg5, arg6, res); sip_supervisory_call(dev, function_id, arg0, arg1, arg2, arg3, arg4, arg5, arg6, res); sys_port_trace_syscall_exit(K_SYSCALL_SIP_SUPERVISORY_CALL, sip_supervisory_call, dev, function_id, arg0, arg1, arg2, arg3, arg4, arg5, arg6, res); } while(false) +#endif +#endif + + +extern bool z_impl_sip_svc_plat_func_id_valid(const struct device * dev, uint32_t command, uint32_t func_id); + +__pinned_func +static inline bool sip_svc_plat_func_id_valid(const struct device * dev, uint32_t command, uint32_t func_id) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = command }; + union { uintptr_t x; uint32_t val; } parm2 = { .val = func_id }; + return (bool) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_SIP_SVC_PLAT_FUNC_ID_VALID); + } +#endif + compiler_barrier(); + return z_impl_sip_svc_plat_func_id_valid(dev, command, func_id); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define sip_svc_plat_func_id_valid(dev, command, func_id) ({ bool syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SIP_SVC_PLAT_FUNC_ID_VALID, sip_svc_plat_func_id_valid, dev, command, func_id); syscall__retval = sip_svc_plat_func_id_valid(dev, command, func_id); sys_port_trace_syscall_exit(K_SYSCALL_SIP_SVC_PLAT_FUNC_ID_VALID, sip_svc_plat_func_id_valid, dev, command, func_id, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern uint32_t z_impl_sip_svc_plat_format_trans_id(const struct device * dev, uint32_t client_idx, uint32_t trans_idx); + +__pinned_func +static inline uint32_t sip_svc_plat_format_trans_id(const struct device * dev, uint32_t client_idx, uint32_t trans_idx) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = client_idx }; + union { uintptr_t x; uint32_t val; } parm2 = { .val = trans_idx }; + return (uint32_t) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_SIP_SVC_PLAT_FORMAT_TRANS_ID); + } +#endif + compiler_barrier(); + return z_impl_sip_svc_plat_format_trans_id(dev, client_idx, trans_idx); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define sip_svc_plat_format_trans_id(dev, client_idx, trans_idx) ({ uint32_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SIP_SVC_PLAT_FORMAT_TRANS_ID, sip_svc_plat_format_trans_id, dev, client_idx, trans_idx); syscall__retval = sip_svc_plat_format_trans_id(dev, client_idx, trans_idx); sys_port_trace_syscall_exit(K_SYSCALL_SIP_SVC_PLAT_FORMAT_TRANS_ID, sip_svc_plat_format_trans_id, dev, client_idx, trans_idx, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern uint32_t z_impl_sip_svc_plat_get_trans_idx(const struct device * dev, uint32_t trans_id); + +__pinned_func +static inline uint32_t sip_svc_plat_get_trans_idx(const struct device * dev, uint32_t trans_id) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = trans_id }; + return (uint32_t) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_SIP_SVC_PLAT_GET_TRANS_IDX); + } +#endif + compiler_barrier(); + return z_impl_sip_svc_plat_get_trans_idx(dev, trans_id); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define sip_svc_plat_get_trans_idx(dev, trans_id) ({ uint32_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SIP_SVC_PLAT_GET_TRANS_IDX, sip_svc_plat_get_trans_idx, dev, trans_id); syscall__retval = sip_svc_plat_get_trans_idx(dev, trans_id); sys_port_trace_syscall_exit(K_SYSCALL_SIP_SVC_PLAT_GET_TRANS_IDX, sip_svc_plat_get_trans_idx, dev, trans_id, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern void z_impl_sip_svc_plat_update_trans_id(const struct device * dev, struct sip_svc_request * request, uint32_t trans_id); + +__pinned_func +static inline void sip_svc_plat_update_trans_id(const struct device * dev, struct sip_svc_request * request, uint32_t trans_id) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct sip_svc_request * val; } parm1 = { .val = request }; + union { uintptr_t x; uint32_t val; } parm2 = { .val = trans_id }; + (void) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_SIP_SVC_PLAT_UPDATE_TRANS_ID); + return; + } +#endif + compiler_barrier(); + z_impl_sip_svc_plat_update_trans_id(dev, request, trans_id); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define sip_svc_plat_update_trans_id(dev, request, trans_id) do { sys_port_trace_syscall_enter(K_SYSCALL_SIP_SVC_PLAT_UPDATE_TRANS_ID, sip_svc_plat_update_trans_id, dev, request, trans_id); sip_svc_plat_update_trans_id(dev, request, trans_id); sys_port_trace_syscall_exit(K_SYSCALL_SIP_SVC_PLAT_UPDATE_TRANS_ID, sip_svc_plat_update_trans_id, dev, request, trans_id); } while(false) +#endif +#endif + + +extern uint32_t z_impl_sip_svc_plat_get_error_code(const struct device * dev, struct arm_smccc_res * res); + +__pinned_func +static inline uint32_t sip_svc_plat_get_error_code(const struct device * dev, struct arm_smccc_res * res) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct arm_smccc_res * val; } parm1 = { .val = res }; + return (uint32_t) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_SIP_SVC_PLAT_GET_ERROR_CODE); + } +#endif + compiler_barrier(); + return z_impl_sip_svc_plat_get_error_code(dev, res); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define sip_svc_plat_get_error_code(dev, res) ({ uint32_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SIP_SVC_PLAT_GET_ERROR_CODE, sip_svc_plat_get_error_code, dev, res); syscall__retval = sip_svc_plat_get_error_code(dev, res); sys_port_trace_syscall_exit(K_SYSCALL_SIP_SVC_PLAT_GET_ERROR_CODE, sip_svc_plat_get_error_code, dev, res, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_sip_svc_plat_async_res_req(const struct device * dev, unsigned long * a0, unsigned long * a1, unsigned long * a2, unsigned long * a3, unsigned long * a4, unsigned long * a5, unsigned long * a6, unsigned long * a7, char * buf, size_t size); + +__pinned_func +static inline int sip_svc_plat_async_res_req(const struct device * dev, unsigned long * a0, unsigned long * a1, unsigned long * a2, unsigned long * a3, unsigned long * a4, unsigned long * a5, unsigned long * a6, unsigned long * a7, char * buf, size_t size) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; unsigned long * val; } parm1 = { .val = a0 }; + union { uintptr_t x; unsigned long * val; } parm2 = { .val = a1 }; + union { uintptr_t x; unsigned long * val; } parm3 = { .val = a2 }; + union { uintptr_t x; unsigned long * val; } parm4 = { .val = a3 }; + union { uintptr_t x; unsigned long * val; } parm5 = { .val = a4 }; + union { uintptr_t x; unsigned long * val; } parm6 = { .val = a5 }; + union { uintptr_t x; unsigned long * val; } parm7 = { .val = a6 }; + union { uintptr_t x; unsigned long * val; } parm8 = { .val = a7 }; + union { uintptr_t x; char * val; } parm9 = { .val = buf }; + union { uintptr_t x; size_t val; } parm10 = { .val = size }; + uintptr_t more[] = { + parm5.x, + parm6.x, + parm7.x, + parm8.x, + parm9.x, + parm10.x + }; + return (int) arch_syscall_invoke6(parm0.x, parm1.x, parm2.x, parm3.x, parm4.x, (uintptr_t) &more, K_SYSCALL_SIP_SVC_PLAT_ASYNC_RES_REQ); + } +#endif + compiler_barrier(); + return z_impl_sip_svc_plat_async_res_req(dev, a0, a1, a2, a3, a4, a5, a6, a7, buf, size); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define sip_svc_plat_async_res_req(dev, a0, a1, a2, a3, a4, a5, a6, a7, buf, size) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SIP_SVC_PLAT_ASYNC_RES_REQ, sip_svc_plat_async_res_req, dev, a0, a1, a2, a3, a4, a5, a6, a7, buf, size); syscall__retval = sip_svc_plat_async_res_req(dev, a0, a1, a2, a3, a4, a5, a6, a7, buf, size); sys_port_trace_syscall_exit(K_SYSCALL_SIP_SVC_PLAT_ASYNC_RES_REQ, sip_svc_plat_async_res_req, dev, a0, a1, a2, a3, a4, a5, a6, a7, buf, size, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_sip_svc_plat_async_res_res(const struct device * dev, struct arm_smccc_res * res, char * buf, size_t * size, uint32_t * trans_id); + +__pinned_func +static inline int sip_svc_plat_async_res_res(const struct device * dev, struct arm_smccc_res * res, char * buf, size_t * size, uint32_t * trans_id) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct arm_smccc_res * val; } parm1 = { .val = res }; + union { uintptr_t x; char * val; } parm2 = { .val = buf }; + union { uintptr_t x; size_t * val; } parm3 = { .val = size }; + union { uintptr_t x; uint32_t * val; } parm4 = { .val = trans_id }; + return (int) arch_syscall_invoke5(parm0.x, parm1.x, parm2.x, parm3.x, parm4.x, K_SYSCALL_SIP_SVC_PLAT_ASYNC_RES_RES); + } +#endif + compiler_barrier(); + return z_impl_sip_svc_plat_async_res_res(dev, res, buf, size, trans_id); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define sip_svc_plat_async_res_res(dev, res, buf, size, trans_id) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SIP_SVC_PLAT_ASYNC_RES_RES, sip_svc_plat_async_res_res, dev, res, buf, size, trans_id); syscall__retval = sip_svc_plat_async_res_res(dev, res, buf, size, trans_id); sys_port_trace_syscall_exit(K_SYSCALL_SIP_SVC_PLAT_ASYNC_RES_RES, sip_svc_plat_async_res_res, dev, res, buf, size, trans_id, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern void z_impl_sip_svc_plat_free_async_memory(const struct device * dev, struct sip_svc_request * request); + +__pinned_func +static inline void sip_svc_plat_free_async_memory(const struct device * dev, struct sip_svc_request * request) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct sip_svc_request * val; } parm1 = { .val = request }; + (void) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_SIP_SVC_PLAT_FREE_ASYNC_MEMORY); + return; + } +#endif + compiler_barrier(); + z_impl_sip_svc_plat_free_async_memory(dev, request); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define sip_svc_plat_free_async_memory(dev, request) do { sys_port_trace_syscall_enter(K_SYSCALL_SIP_SVC_PLAT_FREE_ASYNC_MEMORY, sip_svc_plat_free_async_memory, dev, request); sip_svc_plat_free_async_memory(dev, request); sys_port_trace_syscall_exit(K_SYSCALL_SIP_SVC_PLAT_FREE_ASYNC_MEMORY, sip_svc_plat_free_async_memory, dev, request); } while(false) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/smbus.h b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/smbus.h new file mode 100644 index 0000000..ff86135 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/smbus.h @@ -0,0 +1,417 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_SMBUS_H +#define Z_INCLUDE_SYSCALLS_SMBUS_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_smbus_configure(const struct device * dev, uint32_t dev_config); + +__pinned_func +static inline int smbus_configure(const struct device * dev, uint32_t dev_config) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = dev_config }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_SMBUS_CONFIGURE); + } +#endif + compiler_barrier(); + return z_impl_smbus_configure(dev, dev_config); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define smbus_configure(dev, dev_config) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SMBUS_CONFIGURE, smbus_configure, dev, dev_config); syscall__retval = smbus_configure(dev, dev_config); sys_port_trace_syscall_exit(K_SYSCALL_SMBUS_CONFIGURE, smbus_configure, dev, dev_config, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_smbus_get_config(const struct device * dev, uint32_t * dev_config); + +__pinned_func +static inline int smbus_get_config(const struct device * dev, uint32_t * dev_config) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t * val; } parm1 = { .val = dev_config }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_SMBUS_GET_CONFIG); + } +#endif + compiler_barrier(); + return z_impl_smbus_get_config(dev, dev_config); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define smbus_get_config(dev, dev_config) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SMBUS_GET_CONFIG, smbus_get_config, dev, dev_config); syscall__retval = smbus_get_config(dev, dev_config); sys_port_trace_syscall_exit(K_SYSCALL_SMBUS_GET_CONFIG, smbus_get_config, dev, dev_config, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_smbus_smbalert_remove_cb(const struct device * dev, struct smbus_callback * cb); + +__pinned_func +static inline int smbus_smbalert_remove_cb(const struct device * dev, struct smbus_callback * cb) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct smbus_callback * val; } parm1 = { .val = cb }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_SMBUS_SMBALERT_REMOVE_CB); + } +#endif + compiler_barrier(); + return z_impl_smbus_smbalert_remove_cb(dev, cb); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define smbus_smbalert_remove_cb(dev, cb) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SMBUS_SMBALERT_REMOVE_CB, smbus_smbalert_remove_cb, dev, cb); syscall__retval = smbus_smbalert_remove_cb(dev, cb); sys_port_trace_syscall_exit(K_SYSCALL_SMBUS_SMBALERT_REMOVE_CB, smbus_smbalert_remove_cb, dev, cb, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_smbus_host_notify_remove_cb(const struct device * dev, struct smbus_callback * cb); + +__pinned_func +static inline int smbus_host_notify_remove_cb(const struct device * dev, struct smbus_callback * cb) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct smbus_callback * val; } parm1 = { .val = cb }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_SMBUS_HOST_NOTIFY_REMOVE_CB); + } +#endif + compiler_barrier(); + return z_impl_smbus_host_notify_remove_cb(dev, cb); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define smbus_host_notify_remove_cb(dev, cb) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SMBUS_HOST_NOTIFY_REMOVE_CB, smbus_host_notify_remove_cb, dev, cb); syscall__retval = smbus_host_notify_remove_cb(dev, cb); sys_port_trace_syscall_exit(K_SYSCALL_SMBUS_HOST_NOTIFY_REMOVE_CB, smbus_host_notify_remove_cb, dev, cb, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_smbus_quick(const struct device * dev, uint16_t addr, enum smbus_direction direction); + +__pinned_func +static inline int smbus_quick(const struct device * dev, uint16_t addr, enum smbus_direction direction) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint16_t val; } parm1 = { .val = addr }; + union { uintptr_t x; enum smbus_direction val; } parm2 = { .val = direction }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_SMBUS_QUICK); + } +#endif + compiler_barrier(); + return z_impl_smbus_quick(dev, addr, direction); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define smbus_quick(dev, addr, direction) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SMBUS_QUICK, smbus_quick, dev, addr, direction); syscall__retval = smbus_quick(dev, addr, direction); sys_port_trace_syscall_exit(K_SYSCALL_SMBUS_QUICK, smbus_quick, dev, addr, direction, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_smbus_byte_write(const struct device * dev, uint16_t addr, uint8_t byte); + +__pinned_func +static inline int smbus_byte_write(const struct device * dev, uint16_t addr, uint8_t byte) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint16_t val; } parm1 = { .val = addr }; + union { uintptr_t x; uint8_t val; } parm2 = { .val = byte }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_SMBUS_BYTE_WRITE); + } +#endif + compiler_barrier(); + return z_impl_smbus_byte_write(dev, addr, byte); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define smbus_byte_write(dev, addr, byte) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SMBUS_BYTE_WRITE, smbus_byte_write, dev, addr, byte); syscall__retval = smbus_byte_write(dev, addr, byte); sys_port_trace_syscall_exit(K_SYSCALL_SMBUS_BYTE_WRITE, smbus_byte_write, dev, addr, byte, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_smbus_byte_read(const struct device * dev, uint16_t addr, uint8_t * byte); + +__pinned_func +static inline int smbus_byte_read(const struct device * dev, uint16_t addr, uint8_t * byte) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint16_t val; } parm1 = { .val = addr }; + union { uintptr_t x; uint8_t * val; } parm2 = { .val = byte }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_SMBUS_BYTE_READ); + } +#endif + compiler_barrier(); + return z_impl_smbus_byte_read(dev, addr, byte); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define smbus_byte_read(dev, addr, byte) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SMBUS_BYTE_READ, smbus_byte_read, dev, addr, byte); syscall__retval = smbus_byte_read(dev, addr, byte); sys_port_trace_syscall_exit(K_SYSCALL_SMBUS_BYTE_READ, smbus_byte_read, dev, addr, byte, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_smbus_byte_data_write(const struct device * dev, uint16_t addr, uint8_t cmd, uint8_t byte); + +__pinned_func +static inline int smbus_byte_data_write(const struct device * dev, uint16_t addr, uint8_t cmd, uint8_t byte) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint16_t val; } parm1 = { .val = addr }; + union { uintptr_t x; uint8_t val; } parm2 = { .val = cmd }; + union { uintptr_t x; uint8_t val; } parm3 = { .val = byte }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_SMBUS_BYTE_DATA_WRITE); + } +#endif + compiler_barrier(); + return z_impl_smbus_byte_data_write(dev, addr, cmd, byte); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define smbus_byte_data_write(dev, addr, cmd, byte) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SMBUS_BYTE_DATA_WRITE, smbus_byte_data_write, dev, addr, cmd, byte); syscall__retval = smbus_byte_data_write(dev, addr, cmd, byte); sys_port_trace_syscall_exit(K_SYSCALL_SMBUS_BYTE_DATA_WRITE, smbus_byte_data_write, dev, addr, cmd, byte, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_smbus_byte_data_read(const struct device * dev, uint16_t addr, uint8_t cmd, uint8_t * byte); + +__pinned_func +static inline int smbus_byte_data_read(const struct device * dev, uint16_t addr, uint8_t cmd, uint8_t * byte) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint16_t val; } parm1 = { .val = addr }; + union { uintptr_t x; uint8_t val; } parm2 = { .val = cmd }; + union { uintptr_t x; uint8_t * val; } parm3 = { .val = byte }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_SMBUS_BYTE_DATA_READ); + } +#endif + compiler_barrier(); + return z_impl_smbus_byte_data_read(dev, addr, cmd, byte); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define smbus_byte_data_read(dev, addr, cmd, byte) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SMBUS_BYTE_DATA_READ, smbus_byte_data_read, dev, addr, cmd, byte); syscall__retval = smbus_byte_data_read(dev, addr, cmd, byte); sys_port_trace_syscall_exit(K_SYSCALL_SMBUS_BYTE_DATA_READ, smbus_byte_data_read, dev, addr, cmd, byte, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_smbus_word_data_write(const struct device * dev, uint16_t addr, uint8_t cmd, uint16_t word); + +__pinned_func +static inline int smbus_word_data_write(const struct device * dev, uint16_t addr, uint8_t cmd, uint16_t word) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint16_t val; } parm1 = { .val = addr }; + union { uintptr_t x; uint8_t val; } parm2 = { .val = cmd }; + union { uintptr_t x; uint16_t val; } parm3 = { .val = word }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_SMBUS_WORD_DATA_WRITE); + } +#endif + compiler_barrier(); + return z_impl_smbus_word_data_write(dev, addr, cmd, word); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define smbus_word_data_write(dev, addr, cmd, word) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SMBUS_WORD_DATA_WRITE, smbus_word_data_write, dev, addr, cmd, word); syscall__retval = smbus_word_data_write(dev, addr, cmd, word); sys_port_trace_syscall_exit(K_SYSCALL_SMBUS_WORD_DATA_WRITE, smbus_word_data_write, dev, addr, cmd, word, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_smbus_word_data_read(const struct device * dev, uint16_t addr, uint8_t cmd, uint16_t * word); + +__pinned_func +static inline int smbus_word_data_read(const struct device * dev, uint16_t addr, uint8_t cmd, uint16_t * word) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint16_t val; } parm1 = { .val = addr }; + union { uintptr_t x; uint8_t val; } parm2 = { .val = cmd }; + union { uintptr_t x; uint16_t * val; } parm3 = { .val = word }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_SMBUS_WORD_DATA_READ); + } +#endif + compiler_barrier(); + return z_impl_smbus_word_data_read(dev, addr, cmd, word); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define smbus_word_data_read(dev, addr, cmd, word) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SMBUS_WORD_DATA_READ, smbus_word_data_read, dev, addr, cmd, word); syscall__retval = smbus_word_data_read(dev, addr, cmd, word); sys_port_trace_syscall_exit(K_SYSCALL_SMBUS_WORD_DATA_READ, smbus_word_data_read, dev, addr, cmd, word, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_smbus_pcall(const struct device * dev, uint16_t addr, uint8_t cmd, uint16_t send_word, uint16_t * recv_word); + +__pinned_func +static inline int smbus_pcall(const struct device * dev, uint16_t addr, uint8_t cmd, uint16_t send_word, uint16_t * recv_word) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint16_t val; } parm1 = { .val = addr }; + union { uintptr_t x; uint8_t val; } parm2 = { .val = cmd }; + union { uintptr_t x; uint16_t val; } parm3 = { .val = send_word }; + union { uintptr_t x; uint16_t * val; } parm4 = { .val = recv_word }; + return (int) arch_syscall_invoke5(parm0.x, parm1.x, parm2.x, parm3.x, parm4.x, K_SYSCALL_SMBUS_PCALL); + } +#endif + compiler_barrier(); + return z_impl_smbus_pcall(dev, addr, cmd, send_word, recv_word); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define smbus_pcall(dev, addr, cmd, send_word, recv_word) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SMBUS_PCALL, smbus_pcall, dev, addr, cmd, send_word, recv_word); syscall__retval = smbus_pcall(dev, addr, cmd, send_word, recv_word); sys_port_trace_syscall_exit(K_SYSCALL_SMBUS_PCALL, smbus_pcall, dev, addr, cmd, send_word, recv_word, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_smbus_block_write(const struct device * dev, uint16_t addr, uint8_t cmd, uint8_t count, uint8_t * buf); + +__pinned_func +static inline int smbus_block_write(const struct device * dev, uint16_t addr, uint8_t cmd, uint8_t count, uint8_t * buf) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint16_t val; } parm1 = { .val = addr }; + union { uintptr_t x; uint8_t val; } parm2 = { .val = cmd }; + union { uintptr_t x; uint8_t val; } parm3 = { .val = count }; + union { uintptr_t x; uint8_t * val; } parm4 = { .val = buf }; + return (int) arch_syscall_invoke5(parm0.x, parm1.x, parm2.x, parm3.x, parm4.x, K_SYSCALL_SMBUS_BLOCK_WRITE); + } +#endif + compiler_barrier(); + return z_impl_smbus_block_write(dev, addr, cmd, count, buf); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define smbus_block_write(dev, addr, cmd, count, buf) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SMBUS_BLOCK_WRITE, smbus_block_write, dev, addr, cmd, count, buf); syscall__retval = smbus_block_write(dev, addr, cmd, count, buf); sys_port_trace_syscall_exit(K_SYSCALL_SMBUS_BLOCK_WRITE, smbus_block_write, dev, addr, cmd, count, buf, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_smbus_block_read(const struct device * dev, uint16_t addr, uint8_t cmd, uint8_t * count, uint8_t * buf); + +__pinned_func +static inline int smbus_block_read(const struct device * dev, uint16_t addr, uint8_t cmd, uint8_t * count, uint8_t * buf) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint16_t val; } parm1 = { .val = addr }; + union { uintptr_t x; uint8_t val; } parm2 = { .val = cmd }; + union { uintptr_t x; uint8_t * val; } parm3 = { .val = count }; + union { uintptr_t x; uint8_t * val; } parm4 = { .val = buf }; + return (int) arch_syscall_invoke5(parm0.x, parm1.x, parm2.x, parm3.x, parm4.x, K_SYSCALL_SMBUS_BLOCK_READ); + } +#endif + compiler_barrier(); + return z_impl_smbus_block_read(dev, addr, cmd, count, buf); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define smbus_block_read(dev, addr, cmd, count, buf) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SMBUS_BLOCK_READ, smbus_block_read, dev, addr, cmd, count, buf); syscall__retval = smbus_block_read(dev, addr, cmd, count, buf); sys_port_trace_syscall_exit(K_SYSCALL_SMBUS_BLOCK_READ, smbus_block_read, dev, addr, cmd, count, buf, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_smbus_block_pcall(const struct device * dev, uint16_t addr, uint8_t cmd, uint8_t snd_count, uint8_t * snd_buf, uint8_t * rcv_count, uint8_t * rcv_buf); + +__pinned_func +static inline int smbus_block_pcall(const struct device * dev, uint16_t addr, uint8_t cmd, uint8_t snd_count, uint8_t * snd_buf, uint8_t * rcv_count, uint8_t * rcv_buf) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint16_t val; } parm1 = { .val = addr }; + union { uintptr_t x; uint8_t val; } parm2 = { .val = cmd }; + union { uintptr_t x; uint8_t val; } parm3 = { .val = snd_count }; + union { uintptr_t x; uint8_t * val; } parm4 = { .val = snd_buf }; + union { uintptr_t x; uint8_t * val; } parm5 = { .val = rcv_count }; + union { uintptr_t x; uint8_t * val; } parm6 = { .val = rcv_buf }; + uintptr_t more[] = { + parm5.x, + parm6.x + }; + return (int) arch_syscall_invoke6(parm0.x, parm1.x, parm2.x, parm3.x, parm4.x, (uintptr_t) &more, K_SYSCALL_SMBUS_BLOCK_PCALL); + } +#endif + compiler_barrier(); + return z_impl_smbus_block_pcall(dev, addr, cmd, snd_count, snd_buf, rcv_count, rcv_buf); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define smbus_block_pcall(dev, addr, cmd, snd_count, snd_buf, rcv_count, rcv_buf) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SMBUS_BLOCK_PCALL, smbus_block_pcall, dev, addr, cmd, snd_count, snd_buf, rcv_count, rcv_buf); syscall__retval = smbus_block_pcall(dev, addr, cmd, snd_count, snd_buf, rcv_count, rcv_buf); sys_port_trace_syscall_exit(K_SYSCALL_SMBUS_BLOCK_PCALL, smbus_block_pcall, dev, addr, cmd, snd_count, snd_buf, rcv_count, rcv_buf, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/socket.h b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/socket.h new file mode 100644 index 0000000..548884c --- /dev/null +++ b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/socket.h @@ -0,0 +1,586 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_SOCKET_H +#define Z_INCLUDE_SYSCALLS_SOCKET_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern void * z_impl_zsock_get_context_object(int sock); + +__pinned_func +static inline void * zsock_get_context_object(int sock) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; int val; } parm0 = { .val = sock }; + return (void *) arch_syscall_invoke1(parm0.x, K_SYSCALL_ZSOCK_GET_CONTEXT_OBJECT); + } +#endif + compiler_barrier(); + return z_impl_zsock_get_context_object(sock); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define zsock_get_context_object(sock) ({ void * syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ZSOCK_GET_CONTEXT_OBJECT, zsock_get_context_object, sock); syscall__retval = zsock_get_context_object(sock); sys_port_trace_syscall_exit(K_SYSCALL_ZSOCK_GET_CONTEXT_OBJECT, zsock_get_context_object, sock, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_zsock_socket(int family, int type, int proto); + +__pinned_func +static inline int zsock_socket(int family, int type, int proto) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; int val; } parm0 = { .val = family }; + union { uintptr_t x; int val; } parm1 = { .val = type }; + union { uintptr_t x; int val; } parm2 = { .val = proto }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_ZSOCK_SOCKET); + } +#endif + compiler_barrier(); + return z_impl_zsock_socket(family, type, proto); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define zsock_socket(family, type, proto) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ZSOCK_SOCKET, zsock_socket, family, type, proto); syscall__retval = zsock_socket(family, type, proto); sys_port_trace_syscall_exit(K_SYSCALL_ZSOCK_SOCKET, zsock_socket, family, type, proto, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_zsock_socketpair(int family, int type, int proto, int * sv); + +__pinned_func +static inline int zsock_socketpair(int family, int type, int proto, int * sv) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; int val; } parm0 = { .val = family }; + union { uintptr_t x; int val; } parm1 = { .val = type }; + union { uintptr_t x; int val; } parm2 = { .val = proto }; + union { uintptr_t x; int * val; } parm3 = { .val = sv }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_ZSOCK_SOCKETPAIR); + } +#endif + compiler_barrier(); + return z_impl_zsock_socketpair(family, type, proto, sv); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define zsock_socketpair(family, type, proto, sv) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ZSOCK_SOCKETPAIR, zsock_socketpair, family, type, proto, sv); syscall__retval = zsock_socketpair(family, type, proto, sv); sys_port_trace_syscall_exit(K_SYSCALL_ZSOCK_SOCKETPAIR, zsock_socketpair, family, type, proto, sv, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_zsock_close(int sock); + +__pinned_func +static inline int zsock_close(int sock) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; int val; } parm0 = { .val = sock }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_ZSOCK_CLOSE); + } +#endif + compiler_barrier(); + return z_impl_zsock_close(sock); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define zsock_close(sock) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ZSOCK_CLOSE, zsock_close, sock); syscall__retval = zsock_close(sock); sys_port_trace_syscall_exit(K_SYSCALL_ZSOCK_CLOSE, zsock_close, sock, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_zsock_shutdown(int sock, int how); + +__pinned_func +static inline int zsock_shutdown(int sock, int how) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; int val; } parm0 = { .val = sock }; + union { uintptr_t x; int val; } parm1 = { .val = how }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_ZSOCK_SHUTDOWN); + } +#endif + compiler_barrier(); + return z_impl_zsock_shutdown(sock, how); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define zsock_shutdown(sock, how) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ZSOCK_SHUTDOWN, zsock_shutdown, sock, how); syscall__retval = zsock_shutdown(sock, how); sys_port_trace_syscall_exit(K_SYSCALL_ZSOCK_SHUTDOWN, zsock_shutdown, sock, how, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_zsock_bind(int sock, const struct sockaddr * addr, socklen_t addrlen); + +__pinned_func +static inline int zsock_bind(int sock, const struct sockaddr * addr, socklen_t addrlen) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; int val; } parm0 = { .val = sock }; + union { uintptr_t x; const struct sockaddr * val; } parm1 = { .val = addr }; + union { uintptr_t x; socklen_t val; } parm2 = { .val = addrlen }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_ZSOCK_BIND); + } +#endif + compiler_barrier(); + return z_impl_zsock_bind(sock, addr, addrlen); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define zsock_bind(sock, addr, addrlen) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ZSOCK_BIND, zsock_bind, sock, addr, addrlen); syscall__retval = zsock_bind(sock, addr, addrlen); sys_port_trace_syscall_exit(K_SYSCALL_ZSOCK_BIND, zsock_bind, sock, addr, addrlen, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_zsock_connect(int sock, const struct sockaddr * addr, socklen_t addrlen); + +__pinned_func +static inline int zsock_connect(int sock, const struct sockaddr * addr, socklen_t addrlen) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; int val; } parm0 = { .val = sock }; + union { uintptr_t x; const struct sockaddr * val; } parm1 = { .val = addr }; + union { uintptr_t x; socklen_t val; } parm2 = { .val = addrlen }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_ZSOCK_CONNECT); + } +#endif + compiler_barrier(); + return z_impl_zsock_connect(sock, addr, addrlen); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define zsock_connect(sock, addr, addrlen) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ZSOCK_CONNECT, zsock_connect, sock, addr, addrlen); syscall__retval = zsock_connect(sock, addr, addrlen); sys_port_trace_syscall_exit(K_SYSCALL_ZSOCK_CONNECT, zsock_connect, sock, addr, addrlen, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_zsock_listen(int sock, int backlog); + +__pinned_func +static inline int zsock_listen(int sock, int backlog) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; int val; } parm0 = { .val = sock }; + union { uintptr_t x; int val; } parm1 = { .val = backlog }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_ZSOCK_LISTEN); + } +#endif + compiler_barrier(); + return z_impl_zsock_listen(sock, backlog); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define zsock_listen(sock, backlog) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ZSOCK_LISTEN, zsock_listen, sock, backlog); syscall__retval = zsock_listen(sock, backlog); sys_port_trace_syscall_exit(K_SYSCALL_ZSOCK_LISTEN, zsock_listen, sock, backlog, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_zsock_accept(int sock, struct sockaddr * addr, socklen_t * addrlen); + +__pinned_func +static inline int zsock_accept(int sock, struct sockaddr * addr, socklen_t * addrlen) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; int val; } parm0 = { .val = sock }; + union { uintptr_t x; struct sockaddr * val; } parm1 = { .val = addr }; + union { uintptr_t x; socklen_t * val; } parm2 = { .val = addrlen }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_ZSOCK_ACCEPT); + } +#endif + compiler_barrier(); + return z_impl_zsock_accept(sock, addr, addrlen); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define zsock_accept(sock, addr, addrlen) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ZSOCK_ACCEPT, zsock_accept, sock, addr, addrlen); syscall__retval = zsock_accept(sock, addr, addrlen); sys_port_trace_syscall_exit(K_SYSCALL_ZSOCK_ACCEPT, zsock_accept, sock, addr, addrlen, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern ssize_t z_impl_zsock_sendto(int sock, const void * buf, size_t len, int flags, const struct sockaddr * dest_addr, socklen_t addrlen); + +__pinned_func +static inline ssize_t zsock_sendto(int sock, const void * buf, size_t len, int flags, const struct sockaddr * dest_addr, socklen_t addrlen) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; int val; } parm0 = { .val = sock }; + union { uintptr_t x; const void * val; } parm1 = { .val = buf }; + union { uintptr_t x; size_t val; } parm2 = { .val = len }; + union { uintptr_t x; int val; } parm3 = { .val = flags }; + union { uintptr_t x; const struct sockaddr * val; } parm4 = { .val = dest_addr }; + union { uintptr_t x; socklen_t val; } parm5 = { .val = addrlen }; + return (ssize_t) arch_syscall_invoke6(parm0.x, parm1.x, parm2.x, parm3.x, parm4.x, parm5.x, K_SYSCALL_ZSOCK_SENDTO); + } +#endif + compiler_barrier(); + return z_impl_zsock_sendto(sock, buf, len, flags, dest_addr, addrlen); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define zsock_sendto(sock, buf, len, flags, dest_addr, addrlen) ({ ssize_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ZSOCK_SENDTO, zsock_sendto, sock, buf, len, flags, dest_addr, addrlen); syscall__retval = zsock_sendto(sock, buf, len, flags, dest_addr, addrlen); sys_port_trace_syscall_exit(K_SYSCALL_ZSOCK_SENDTO, zsock_sendto, sock, buf, len, flags, dest_addr, addrlen, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern ssize_t z_impl_zsock_sendmsg(int sock, const struct msghdr * msg, int flags); + +__pinned_func +static inline ssize_t zsock_sendmsg(int sock, const struct msghdr * msg, int flags) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; int val; } parm0 = { .val = sock }; + union { uintptr_t x; const struct msghdr * val; } parm1 = { .val = msg }; + union { uintptr_t x; int val; } parm2 = { .val = flags }; + return (ssize_t) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_ZSOCK_SENDMSG); + } +#endif + compiler_barrier(); + return z_impl_zsock_sendmsg(sock, msg, flags); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define zsock_sendmsg(sock, msg, flags) ({ ssize_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ZSOCK_SENDMSG, zsock_sendmsg, sock, msg, flags); syscall__retval = zsock_sendmsg(sock, msg, flags); sys_port_trace_syscall_exit(K_SYSCALL_ZSOCK_SENDMSG, zsock_sendmsg, sock, msg, flags, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern ssize_t z_impl_zsock_recvfrom(int sock, void * buf, size_t max_len, int flags, struct sockaddr * src_addr, socklen_t * addrlen); + +__pinned_func +static inline ssize_t zsock_recvfrom(int sock, void * buf, size_t max_len, int flags, struct sockaddr * src_addr, socklen_t * addrlen) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; int val; } parm0 = { .val = sock }; + union { uintptr_t x; void * val; } parm1 = { .val = buf }; + union { uintptr_t x; size_t val; } parm2 = { .val = max_len }; + union { uintptr_t x; int val; } parm3 = { .val = flags }; + union { uintptr_t x; struct sockaddr * val; } parm4 = { .val = src_addr }; + union { uintptr_t x; socklen_t * val; } parm5 = { .val = addrlen }; + return (ssize_t) arch_syscall_invoke6(parm0.x, parm1.x, parm2.x, parm3.x, parm4.x, parm5.x, K_SYSCALL_ZSOCK_RECVFROM); + } +#endif + compiler_barrier(); + return z_impl_zsock_recvfrom(sock, buf, max_len, flags, src_addr, addrlen); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define zsock_recvfrom(sock, buf, max_len, flags, src_addr, addrlen) ({ ssize_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ZSOCK_RECVFROM, zsock_recvfrom, sock, buf, max_len, flags, src_addr, addrlen); syscall__retval = zsock_recvfrom(sock, buf, max_len, flags, src_addr, addrlen); sys_port_trace_syscall_exit(K_SYSCALL_ZSOCK_RECVFROM, zsock_recvfrom, sock, buf, max_len, flags, src_addr, addrlen, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern ssize_t z_impl_zsock_recvmsg(int sock, struct msghdr * msg, int flags); + +__pinned_func +static inline ssize_t zsock_recvmsg(int sock, struct msghdr * msg, int flags) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; int val; } parm0 = { .val = sock }; + union { uintptr_t x; struct msghdr * val; } parm1 = { .val = msg }; + union { uintptr_t x; int val; } parm2 = { .val = flags }; + return (ssize_t) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_ZSOCK_RECVMSG); + } +#endif + compiler_barrier(); + return z_impl_zsock_recvmsg(sock, msg, flags); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define zsock_recvmsg(sock, msg, flags) ({ ssize_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ZSOCK_RECVMSG, zsock_recvmsg, sock, msg, flags); syscall__retval = zsock_recvmsg(sock, msg, flags); sys_port_trace_syscall_exit(K_SYSCALL_ZSOCK_RECVMSG, zsock_recvmsg, sock, msg, flags, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_zsock_fcntl_impl(int sock, int cmd, int flags); + +__pinned_func +static inline int zsock_fcntl_impl(int sock, int cmd, int flags) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; int val; } parm0 = { .val = sock }; + union { uintptr_t x; int val; } parm1 = { .val = cmd }; + union { uintptr_t x; int val; } parm2 = { .val = flags }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_ZSOCK_FCNTL_IMPL); + } +#endif + compiler_barrier(); + return z_impl_zsock_fcntl_impl(sock, cmd, flags); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define zsock_fcntl_impl(sock, cmd, flags) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ZSOCK_FCNTL_IMPL, zsock_fcntl_impl, sock, cmd, flags); syscall__retval = zsock_fcntl_impl(sock, cmd, flags); sys_port_trace_syscall_exit(K_SYSCALL_ZSOCK_FCNTL_IMPL, zsock_fcntl_impl, sock, cmd, flags, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_zsock_ioctl_impl(int sock, unsigned long request, va_list ap); + +__pinned_func +static inline int zsock_ioctl_impl(int sock, unsigned long request, va_list ap) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; int val; } parm0 = { .val = sock }; + union { uintptr_t x; unsigned long val; } parm1 = { .val = request }; + union { uintptr_t x; va_list val; } parm2; + va_copy(parm2.val, ap); + int invoke__retval = arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_ZSOCK_IOCTL_IMPL); + va_end(parm2.val); + return invoke__retval; + } +#endif + compiler_barrier(); + return z_impl_zsock_ioctl_impl(sock, request, ap); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define zsock_ioctl_impl(sock, request, ap) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ZSOCK_IOCTL_IMPL, zsock_ioctl_impl, sock, request, ap); syscall__retval = zsock_ioctl_impl(sock, request, ap); sys_port_trace_syscall_exit(K_SYSCALL_ZSOCK_IOCTL_IMPL, zsock_ioctl_impl, sock, request, ap, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_zsock_getsockopt(int sock, int level, int optname, void * optval, socklen_t * optlen); + +__pinned_func +static inline int zsock_getsockopt(int sock, int level, int optname, void * optval, socklen_t * optlen) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; int val; } parm0 = { .val = sock }; + union { uintptr_t x; int val; } parm1 = { .val = level }; + union { uintptr_t x; int val; } parm2 = { .val = optname }; + union { uintptr_t x; void * val; } parm3 = { .val = optval }; + union { uintptr_t x; socklen_t * val; } parm4 = { .val = optlen }; + return (int) arch_syscall_invoke5(parm0.x, parm1.x, parm2.x, parm3.x, parm4.x, K_SYSCALL_ZSOCK_GETSOCKOPT); + } +#endif + compiler_barrier(); + return z_impl_zsock_getsockopt(sock, level, optname, optval, optlen); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define zsock_getsockopt(sock, level, optname, optval, optlen) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ZSOCK_GETSOCKOPT, zsock_getsockopt, sock, level, optname, optval, optlen); syscall__retval = zsock_getsockopt(sock, level, optname, optval, optlen); sys_port_trace_syscall_exit(K_SYSCALL_ZSOCK_GETSOCKOPT, zsock_getsockopt, sock, level, optname, optval, optlen, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_zsock_setsockopt(int sock, int level, int optname, const void * optval, socklen_t optlen); + +__pinned_func +static inline int zsock_setsockopt(int sock, int level, int optname, const void * optval, socklen_t optlen) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; int val; } parm0 = { .val = sock }; + union { uintptr_t x; int val; } parm1 = { .val = level }; + union { uintptr_t x; int val; } parm2 = { .val = optname }; + union { uintptr_t x; const void * val; } parm3 = { .val = optval }; + union { uintptr_t x; socklen_t val; } parm4 = { .val = optlen }; + return (int) arch_syscall_invoke5(parm0.x, parm1.x, parm2.x, parm3.x, parm4.x, K_SYSCALL_ZSOCK_SETSOCKOPT); + } +#endif + compiler_barrier(); + return z_impl_zsock_setsockopt(sock, level, optname, optval, optlen); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define zsock_setsockopt(sock, level, optname, optval, optlen) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ZSOCK_SETSOCKOPT, zsock_setsockopt, sock, level, optname, optval, optlen); syscall__retval = zsock_setsockopt(sock, level, optname, optval, optlen); sys_port_trace_syscall_exit(K_SYSCALL_ZSOCK_SETSOCKOPT, zsock_setsockopt, sock, level, optname, optval, optlen, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_zsock_getpeername(int sock, struct sockaddr * addr, socklen_t * addrlen); + +__pinned_func +static inline int zsock_getpeername(int sock, struct sockaddr * addr, socklen_t * addrlen) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; int val; } parm0 = { .val = sock }; + union { uintptr_t x; struct sockaddr * val; } parm1 = { .val = addr }; + union { uintptr_t x; socklen_t * val; } parm2 = { .val = addrlen }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_ZSOCK_GETPEERNAME); + } +#endif + compiler_barrier(); + return z_impl_zsock_getpeername(sock, addr, addrlen); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define zsock_getpeername(sock, addr, addrlen) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ZSOCK_GETPEERNAME, zsock_getpeername, sock, addr, addrlen); syscall__retval = zsock_getpeername(sock, addr, addrlen); sys_port_trace_syscall_exit(K_SYSCALL_ZSOCK_GETPEERNAME, zsock_getpeername, sock, addr, addrlen, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_zsock_getsockname(int sock, struct sockaddr * addr, socklen_t * addrlen); + +__pinned_func +static inline int zsock_getsockname(int sock, struct sockaddr * addr, socklen_t * addrlen) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; int val; } parm0 = { .val = sock }; + union { uintptr_t x; struct sockaddr * val; } parm1 = { .val = addr }; + union { uintptr_t x; socklen_t * val; } parm2 = { .val = addrlen }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_ZSOCK_GETSOCKNAME); + } +#endif + compiler_barrier(); + return z_impl_zsock_getsockname(sock, addr, addrlen); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define zsock_getsockname(sock, addr, addrlen) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ZSOCK_GETSOCKNAME, zsock_getsockname, sock, addr, addrlen); syscall__retval = zsock_getsockname(sock, addr, addrlen); sys_port_trace_syscall_exit(K_SYSCALL_ZSOCK_GETSOCKNAME, zsock_getsockname, sock, addr, addrlen, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_zsock_gethostname(char * buf, size_t len); + +__pinned_func +static inline int zsock_gethostname(char * buf, size_t len) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; char * val; } parm0 = { .val = buf }; + union { uintptr_t x; size_t val; } parm1 = { .val = len }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_ZSOCK_GETHOSTNAME); + } +#endif + compiler_barrier(); + return z_impl_zsock_gethostname(buf, len); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define zsock_gethostname(buf, len) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ZSOCK_GETHOSTNAME, zsock_gethostname, buf, len); syscall__retval = zsock_gethostname(buf, len); sys_port_trace_syscall_exit(K_SYSCALL_ZSOCK_GETHOSTNAME, zsock_gethostname, buf, len, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_zsock_inet_pton(sa_family_t family, const char * src, void * dst); + +__pinned_func +static inline int zsock_inet_pton(sa_family_t family, const char * src, void * dst) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; sa_family_t val; } parm0 = { .val = family }; + union { uintptr_t x; const char * val; } parm1 = { .val = src }; + union { uintptr_t x; void * val; } parm2 = { .val = dst }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_ZSOCK_INET_PTON); + } +#endif + compiler_barrier(); + return z_impl_zsock_inet_pton(family, src, dst); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define zsock_inet_pton(family, src, dst) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ZSOCK_INET_PTON, zsock_inet_pton, family, src, dst); syscall__retval = zsock_inet_pton(family, src, dst); sys_port_trace_syscall_exit(K_SYSCALL_ZSOCK_INET_PTON, zsock_inet_pton, family, src, dst, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_z_zsock_getaddrinfo_internal(const char * host, const char * service, const struct zsock_addrinfo * hints, struct zsock_addrinfo * res); + +__pinned_func +static inline int z_zsock_getaddrinfo_internal(const char * host, const char * service, const struct zsock_addrinfo * hints, struct zsock_addrinfo * res) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const char * val; } parm0 = { .val = host }; + union { uintptr_t x; const char * val; } parm1 = { .val = service }; + union { uintptr_t x; const struct zsock_addrinfo * val; } parm2 = { .val = hints }; + union { uintptr_t x; struct zsock_addrinfo * val; } parm3 = { .val = res }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_Z_ZSOCK_GETADDRINFO_INTERNAL); + } +#endif + compiler_barrier(); + return z_impl_z_zsock_getaddrinfo_internal(host, service, hints, res); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define z_zsock_getaddrinfo_internal(host, service, hints, res) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_Z_ZSOCK_GETADDRINFO_INTERNAL, z_zsock_getaddrinfo_internal, host, service, hints, res); syscall__retval = z_zsock_getaddrinfo_internal(host, service, hints, res); sys_port_trace_syscall_exit(K_SYSCALL_Z_ZSOCK_GETADDRINFO_INTERNAL, z_zsock_getaddrinfo_internal, host, service, hints, res, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/socket_service.h b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/socket_service.h new file mode 100644 index 0000000..6660b91 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/socket_service.h @@ -0,0 +1,54 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_SOCKET_SERVICE_H +#define Z_INCLUDE_SYSCALLS_SOCKET_SERVICE_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_net_socket_service_register(const struct net_socket_service_desc * service, struct zsock_pollfd * fds, int len, void * user_data); + +__pinned_func +static inline int net_socket_service_register(const struct net_socket_service_desc * service, struct zsock_pollfd * fds, int len, void * user_data) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct net_socket_service_desc * val; } parm0 = { .val = service }; + union { uintptr_t x; struct zsock_pollfd * val; } parm1 = { .val = fds }; + union { uintptr_t x; int val; } parm2 = { .val = len }; + union { uintptr_t x; void * val; } parm3 = { .val = user_data }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_NET_SOCKET_SERVICE_REGISTER); + } +#endif + compiler_barrier(); + return z_impl_net_socket_service_register(service, fds, len, user_data); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define net_socket_service_register(service, fds, len, user_data) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_NET_SOCKET_SERVICE_REGISTER, net_socket_service_register, service, fds, len, user_data); syscall__retval = net_socket_service_register(service, fds, len, user_data); sys_port_trace_syscall_exit(K_SYSCALL_NET_SOCKET_SERVICE_REGISTER, net_socket_service_register, service, fds, len, user_data, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/spi.h b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/spi.h new file mode 100644 index 0000000..0737a35 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/spi.h @@ -0,0 +1,78 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_SPI_H +#define Z_INCLUDE_SYSCALLS_SPI_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_spi_transceive(const struct device * dev, const struct spi_config * config, const struct spi_buf_set * tx_bufs, const struct spi_buf_set * rx_bufs); + +__pinned_func +static inline int spi_transceive(const struct device * dev, const struct spi_config * config, const struct spi_buf_set * tx_bufs, const struct spi_buf_set * rx_bufs) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; const struct spi_config * val; } parm1 = { .val = config }; + union { uintptr_t x; const struct spi_buf_set * val; } parm2 = { .val = tx_bufs }; + union { uintptr_t x; const struct spi_buf_set * val; } parm3 = { .val = rx_bufs }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_SPI_TRANSCEIVE); + } +#endif + compiler_barrier(); + return z_impl_spi_transceive(dev, config, tx_bufs, rx_bufs); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define spi_transceive(dev, config, tx_bufs, rx_bufs) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SPI_TRANSCEIVE, spi_transceive, dev, config, tx_bufs, rx_bufs); syscall__retval = spi_transceive(dev, config, tx_bufs, rx_bufs); sys_port_trace_syscall_exit(K_SYSCALL_SPI_TRANSCEIVE, spi_transceive, dev, config, tx_bufs, rx_bufs, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_spi_release(const struct device * dev, const struct spi_config * config); + +__pinned_func +static inline int spi_release(const struct device * dev, const struct spi_config * config) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; const struct spi_config * val; } parm1 = { .val = config }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_SPI_RELEASE); + } +#endif + compiler_barrier(); + return z_impl_spi_release(dev, config); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define spi_release(dev, config) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SPI_RELEASE, spi_release, dev, config); syscall__retval = spi_release(dev, config); sys_port_trace_syscall_exit(K_SYSCALL_SPI_RELEASE, spi_release, dev, config, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/stepper.h b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/stepper.h new file mode 100644 index 0000000..598cd51 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/stepper.h @@ -0,0 +1,294 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_STEPPER_H +#define Z_INCLUDE_SYSCALLS_STEPPER_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_stepper_enable(const struct device * dev, const bool enable); + +__pinned_func +static inline int stepper_enable(const struct device * dev, const bool enable) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; const bool val; } parm1 = { .val = enable }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_STEPPER_ENABLE); + } +#endif + compiler_barrier(); + return z_impl_stepper_enable(dev, enable); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define stepper_enable(dev, enable) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_STEPPER_ENABLE, stepper_enable, dev, enable); syscall__retval = stepper_enable(dev, enable); sys_port_trace_syscall_exit(K_SYSCALL_STEPPER_ENABLE, stepper_enable, dev, enable, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_stepper_move_by(const struct device * dev, int32_t micro_steps); + +__pinned_func +static inline int stepper_move_by(const struct device * dev, int32_t micro_steps) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; int32_t val; } parm1 = { .val = micro_steps }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_STEPPER_MOVE_BY); + } +#endif + compiler_barrier(); + return z_impl_stepper_move_by(dev, micro_steps); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define stepper_move_by(dev, micro_steps) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_STEPPER_MOVE_BY, stepper_move_by, dev, micro_steps); syscall__retval = stepper_move_by(dev, micro_steps); sys_port_trace_syscall_exit(K_SYSCALL_STEPPER_MOVE_BY, stepper_move_by, dev, micro_steps, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_stepper_set_max_velocity(const struct device * dev, uint32_t micro_steps_per_second); + +__pinned_func +static inline int stepper_set_max_velocity(const struct device * dev, uint32_t micro_steps_per_second) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = micro_steps_per_second }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_STEPPER_SET_MAX_VELOCITY); + } +#endif + compiler_barrier(); + return z_impl_stepper_set_max_velocity(dev, micro_steps_per_second); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define stepper_set_max_velocity(dev, micro_steps_per_second) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_STEPPER_SET_MAX_VELOCITY, stepper_set_max_velocity, dev, micro_steps_per_second); syscall__retval = stepper_set_max_velocity(dev, micro_steps_per_second); sys_port_trace_syscall_exit(K_SYSCALL_STEPPER_SET_MAX_VELOCITY, stepper_set_max_velocity, dev, micro_steps_per_second, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_stepper_set_micro_step_res(const struct device * dev, enum stepper_micro_step_resolution resolution); + +__pinned_func +static inline int stepper_set_micro_step_res(const struct device * dev, enum stepper_micro_step_resolution resolution) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; enum stepper_micro_step_resolution val; } parm1 = { .val = resolution }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_STEPPER_SET_MICRO_STEP_RES); + } +#endif + compiler_barrier(); + return z_impl_stepper_set_micro_step_res(dev, resolution); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define stepper_set_micro_step_res(dev, resolution) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_STEPPER_SET_MICRO_STEP_RES, stepper_set_micro_step_res, dev, resolution); syscall__retval = stepper_set_micro_step_res(dev, resolution); sys_port_trace_syscall_exit(K_SYSCALL_STEPPER_SET_MICRO_STEP_RES, stepper_set_micro_step_res, dev, resolution, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_stepper_get_micro_step_res(const struct device * dev, enum stepper_micro_step_resolution * resolution); + +__pinned_func +static inline int stepper_get_micro_step_res(const struct device * dev, enum stepper_micro_step_resolution * resolution) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; enum stepper_micro_step_resolution * val; } parm1 = { .val = resolution }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_STEPPER_GET_MICRO_STEP_RES); + } +#endif + compiler_barrier(); + return z_impl_stepper_get_micro_step_res(dev, resolution); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define stepper_get_micro_step_res(dev, resolution) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_STEPPER_GET_MICRO_STEP_RES, stepper_get_micro_step_res, dev, resolution); syscall__retval = stepper_get_micro_step_res(dev, resolution); sys_port_trace_syscall_exit(K_SYSCALL_STEPPER_GET_MICRO_STEP_RES, stepper_get_micro_step_res, dev, resolution, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_stepper_set_reference_position(const struct device * dev, int32_t value); + +__pinned_func +static inline int stepper_set_reference_position(const struct device * dev, int32_t value) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; int32_t val; } parm1 = { .val = value }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_STEPPER_SET_REFERENCE_POSITION); + } +#endif + compiler_barrier(); + return z_impl_stepper_set_reference_position(dev, value); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define stepper_set_reference_position(dev, value) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_STEPPER_SET_REFERENCE_POSITION, stepper_set_reference_position, dev, value); syscall__retval = stepper_set_reference_position(dev, value); sys_port_trace_syscall_exit(K_SYSCALL_STEPPER_SET_REFERENCE_POSITION, stepper_set_reference_position, dev, value, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_stepper_get_actual_position(const struct device * dev, int32_t * value); + +__pinned_func +static inline int stepper_get_actual_position(const struct device * dev, int32_t * value) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; int32_t * val; } parm1 = { .val = value }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_STEPPER_GET_ACTUAL_POSITION); + } +#endif + compiler_barrier(); + return z_impl_stepper_get_actual_position(dev, value); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define stepper_get_actual_position(dev, value) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_STEPPER_GET_ACTUAL_POSITION, stepper_get_actual_position, dev, value); syscall__retval = stepper_get_actual_position(dev, value); sys_port_trace_syscall_exit(K_SYSCALL_STEPPER_GET_ACTUAL_POSITION, stepper_get_actual_position, dev, value, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_stepper_move_to(const struct device * dev, int32_t micro_steps); + +__pinned_func +static inline int stepper_move_to(const struct device * dev, int32_t micro_steps) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; int32_t val; } parm1 = { .val = micro_steps }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_STEPPER_MOVE_TO); + } +#endif + compiler_barrier(); + return z_impl_stepper_move_to(dev, micro_steps); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define stepper_move_to(dev, micro_steps) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_STEPPER_MOVE_TO, stepper_move_to, dev, micro_steps); syscall__retval = stepper_move_to(dev, micro_steps); sys_port_trace_syscall_exit(K_SYSCALL_STEPPER_MOVE_TO, stepper_move_to, dev, micro_steps, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_stepper_is_moving(const struct device * dev, bool * is_moving); + +__pinned_func +static inline int stepper_is_moving(const struct device * dev, bool * is_moving) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; bool * val; } parm1 = { .val = is_moving }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_STEPPER_IS_MOVING); + } +#endif + compiler_barrier(); + return z_impl_stepper_is_moving(dev, is_moving); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define stepper_is_moving(dev, is_moving) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_STEPPER_IS_MOVING, stepper_is_moving, dev, is_moving); syscall__retval = stepper_is_moving(dev, is_moving); sys_port_trace_syscall_exit(K_SYSCALL_STEPPER_IS_MOVING, stepper_is_moving, dev, is_moving, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_stepper_run(const struct device * dev, enum stepper_direction direction, uint32_t velocity); + +__pinned_func +static inline int stepper_run(const struct device * dev, enum stepper_direction direction, uint32_t velocity) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; enum stepper_direction val; } parm1 = { .val = direction }; + union { uintptr_t x; uint32_t val; } parm2 = { .val = velocity }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_STEPPER_RUN); + } +#endif + compiler_barrier(); + return z_impl_stepper_run(dev, direction, velocity); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define stepper_run(dev, direction, velocity) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_STEPPER_RUN, stepper_run, dev, direction, velocity); syscall__retval = stepper_run(dev, direction, velocity); sys_port_trace_syscall_exit(K_SYSCALL_STEPPER_RUN, stepper_run, dev, direction, velocity, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_stepper_set_event_callback(const struct device * dev, stepper_event_callback_t callback, void * user_data); + +__pinned_func +static inline int stepper_set_event_callback(const struct device * dev, stepper_event_callback_t callback, void * user_data) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; stepper_event_callback_t val; } parm1 = { .val = callback }; + union { uintptr_t x; void * val; } parm2 = { .val = user_data }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_STEPPER_SET_EVENT_CALLBACK); + } +#endif + compiler_barrier(); + return z_impl_stepper_set_event_callback(dev, callback, user_data); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define stepper_set_event_callback(dev, callback, user_data) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_STEPPER_SET_EVENT_CALLBACK, stepper_set_event_callback, dev, callback, user_data); syscall__retval = stepper_set_event_callback(dev, callback, user_data); sys_port_trace_syscall_exit(K_SYSCALL_STEPPER_SET_EVENT_CALLBACK, stepper_set_event_callback, dev, callback, user_data, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/syscon.h b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/syscon.h new file mode 100644 index 0000000..3f0eaba --- /dev/null +++ b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/syscon.h @@ -0,0 +1,126 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_SYSCON_H +#define Z_INCLUDE_SYSCALLS_SYSCON_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_syscon_get_base(const struct device * dev, uintptr_t * addr); + +__pinned_func +static inline int syscon_get_base(const struct device * dev, uintptr_t * addr) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uintptr_t * val; } parm1 = { .val = addr }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_SYSCON_GET_BASE); + } +#endif + compiler_barrier(); + return z_impl_syscon_get_base(dev, addr); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define syscon_get_base(dev, addr) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SYSCON_GET_BASE, syscon_get_base, dev, addr); syscall__retval = syscon_get_base(dev, addr); sys_port_trace_syscall_exit(K_SYSCALL_SYSCON_GET_BASE, syscon_get_base, dev, addr, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_syscon_read_reg(const struct device * dev, uint16_t reg, uint32_t * val); + +__pinned_func +static inline int syscon_read_reg(const struct device * dev, uint16_t reg, uint32_t * val) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint16_t val; } parm1 = { .val = reg }; + union { uintptr_t x; uint32_t * val; } parm2 = { .val = val }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_SYSCON_READ_REG); + } +#endif + compiler_barrier(); + return z_impl_syscon_read_reg(dev, reg, val); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define syscon_read_reg(dev, reg, val) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SYSCON_READ_REG, syscon_read_reg, dev, reg, val); syscall__retval = syscon_read_reg(dev, reg, val); sys_port_trace_syscall_exit(K_SYSCALL_SYSCON_READ_REG, syscon_read_reg, dev, reg, val, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_syscon_write_reg(const struct device * dev, uint16_t reg, uint32_t val); + +__pinned_func +static inline int syscon_write_reg(const struct device * dev, uint16_t reg, uint32_t val) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint16_t val; } parm1 = { .val = reg }; + union { uintptr_t x; uint32_t val; } parm2 = { .val = val }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_SYSCON_WRITE_REG); + } +#endif + compiler_barrier(); + return z_impl_syscon_write_reg(dev, reg, val); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define syscon_write_reg(dev, reg, val) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SYSCON_WRITE_REG, syscon_write_reg, dev, reg, val); syscall__retval = syscon_write_reg(dev, reg, val); sys_port_trace_syscall_exit(K_SYSCALL_SYSCON_WRITE_REG, syscon_write_reg, dev, reg, val, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_syscon_get_size(const struct device * dev, size_t * size); + +__pinned_func +static inline int syscon_get_size(const struct device * dev, size_t * size) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; size_t * val; } parm1 = { .val = size }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_SYSCON_GET_SIZE); + } +#endif + compiler_barrier(); + return z_impl_syscon_get_size(dev, size); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define syscon_get_size(dev, size) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SYSCON_GET_SIZE, syscon_get_size, dev, size); syscall__retval = syscon_get_size(dev, size); sys_port_trace_syscall_exit(K_SYSCALL_SYSCON_GET_SIZE, syscon_get_size, dev, size, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/tee.h b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/tee.h new file mode 100644 index 0000000..e579353 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/tee.h @@ -0,0 +1,307 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_TEE_H +#define Z_INCLUDE_SYSCALLS_TEE_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_tee_get_version(const struct device * dev, struct tee_version_info * info); + +__pinned_func +static inline int tee_get_version(const struct device * dev, struct tee_version_info * info) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct tee_version_info * val; } parm1 = { .val = info }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_TEE_GET_VERSION); + } +#endif + compiler_barrier(); + return z_impl_tee_get_version(dev, info); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define tee_get_version(dev, info) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_TEE_GET_VERSION, tee_get_version, dev, info); syscall__retval = tee_get_version(dev, info); sys_port_trace_syscall_exit(K_SYSCALL_TEE_GET_VERSION, tee_get_version, dev, info, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_tee_open_session(const struct device * dev, struct tee_open_session_arg * arg, unsigned int num_param, struct tee_param * param, uint32_t * session_id); + +__pinned_func +static inline int tee_open_session(const struct device * dev, struct tee_open_session_arg * arg, unsigned int num_param, struct tee_param * param, uint32_t * session_id) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct tee_open_session_arg * val; } parm1 = { .val = arg }; + union { uintptr_t x; unsigned int val; } parm2 = { .val = num_param }; + union { uintptr_t x; struct tee_param * val; } parm3 = { .val = param }; + union { uintptr_t x; uint32_t * val; } parm4 = { .val = session_id }; + return (int) arch_syscall_invoke5(parm0.x, parm1.x, parm2.x, parm3.x, parm4.x, K_SYSCALL_TEE_OPEN_SESSION); + } +#endif + compiler_barrier(); + return z_impl_tee_open_session(dev, arg, num_param, param, session_id); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define tee_open_session(dev, arg, num_param, param, session_id) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_TEE_OPEN_SESSION, tee_open_session, dev, arg, num_param, param, session_id); syscall__retval = tee_open_session(dev, arg, num_param, param, session_id); sys_port_trace_syscall_exit(K_SYSCALL_TEE_OPEN_SESSION, tee_open_session, dev, arg, num_param, param, session_id, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_tee_close_session(const struct device * dev, uint32_t session_id); + +__pinned_func +static inline int tee_close_session(const struct device * dev, uint32_t session_id) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = session_id }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_TEE_CLOSE_SESSION); + } +#endif + compiler_barrier(); + return z_impl_tee_close_session(dev, session_id); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define tee_close_session(dev, session_id) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_TEE_CLOSE_SESSION, tee_close_session, dev, session_id); syscall__retval = tee_close_session(dev, session_id); sys_port_trace_syscall_exit(K_SYSCALL_TEE_CLOSE_SESSION, tee_close_session, dev, session_id, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_tee_cancel(const struct device * dev, uint32_t session_id, uint32_t cancel_id); + +__pinned_func +static inline int tee_cancel(const struct device * dev, uint32_t session_id, uint32_t cancel_id) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = session_id }; + union { uintptr_t x; uint32_t val; } parm2 = { .val = cancel_id }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_TEE_CANCEL); + } +#endif + compiler_barrier(); + return z_impl_tee_cancel(dev, session_id, cancel_id); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define tee_cancel(dev, session_id, cancel_id) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_TEE_CANCEL, tee_cancel, dev, session_id, cancel_id); syscall__retval = tee_cancel(dev, session_id, cancel_id); sys_port_trace_syscall_exit(K_SYSCALL_TEE_CANCEL, tee_cancel, dev, session_id, cancel_id, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_tee_invoke_func(const struct device * dev, struct tee_invoke_func_arg * arg, unsigned int num_param, struct tee_param * param); + +__pinned_func +static inline int tee_invoke_func(const struct device * dev, struct tee_invoke_func_arg * arg, unsigned int num_param, struct tee_param * param) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct tee_invoke_func_arg * val; } parm1 = { .val = arg }; + union { uintptr_t x; unsigned int val; } parm2 = { .val = num_param }; + union { uintptr_t x; struct tee_param * val; } parm3 = { .val = param }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_TEE_INVOKE_FUNC); + } +#endif + compiler_barrier(); + return z_impl_tee_invoke_func(dev, arg, num_param, param); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define tee_invoke_func(dev, arg, num_param, param) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_TEE_INVOKE_FUNC, tee_invoke_func, dev, arg, num_param, param); syscall__retval = tee_invoke_func(dev, arg, num_param, param); sys_port_trace_syscall_exit(K_SYSCALL_TEE_INVOKE_FUNC, tee_invoke_func, dev, arg, num_param, param, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_tee_shm_register(const struct device * dev, void * addr, size_t size, uint32_t flags, struct tee_shm ** shm); + +__pinned_func +static inline int tee_shm_register(const struct device * dev, void * addr, size_t size, uint32_t flags, struct tee_shm ** shm) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; void * val; } parm1 = { .val = addr }; + union { uintptr_t x; size_t val; } parm2 = { .val = size }; + union { uintptr_t x; uint32_t val; } parm3 = { .val = flags }; + union { uintptr_t x; struct tee_shm ** val; } parm4 = { .val = shm }; + return (int) arch_syscall_invoke5(parm0.x, parm1.x, parm2.x, parm3.x, parm4.x, K_SYSCALL_TEE_SHM_REGISTER); + } +#endif + compiler_barrier(); + return z_impl_tee_shm_register(dev, addr, size, flags, shm); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define tee_shm_register(dev, addr, size, flags, shm) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_TEE_SHM_REGISTER, tee_shm_register, dev, addr, size, flags, shm); syscall__retval = tee_shm_register(dev, addr, size, flags, shm); sys_port_trace_syscall_exit(K_SYSCALL_TEE_SHM_REGISTER, tee_shm_register, dev, addr, size, flags, shm, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_tee_shm_unregister(const struct device * dev, struct tee_shm * shm); + +__pinned_func +static inline int tee_shm_unregister(const struct device * dev, struct tee_shm * shm) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct tee_shm * val; } parm1 = { .val = shm }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_TEE_SHM_UNREGISTER); + } +#endif + compiler_barrier(); + return z_impl_tee_shm_unregister(dev, shm); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define tee_shm_unregister(dev, shm) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_TEE_SHM_UNREGISTER, tee_shm_unregister, dev, shm); syscall__retval = tee_shm_unregister(dev, shm); sys_port_trace_syscall_exit(K_SYSCALL_TEE_SHM_UNREGISTER, tee_shm_unregister, dev, shm, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_tee_shm_alloc(const struct device * dev, size_t size, uint32_t flags, struct tee_shm ** shm); + +__pinned_func +static inline int tee_shm_alloc(const struct device * dev, size_t size, uint32_t flags, struct tee_shm ** shm) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; size_t val; } parm1 = { .val = size }; + union { uintptr_t x; uint32_t val; } parm2 = { .val = flags }; + union { uintptr_t x; struct tee_shm ** val; } parm3 = { .val = shm }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_TEE_SHM_ALLOC); + } +#endif + compiler_barrier(); + return z_impl_tee_shm_alloc(dev, size, flags, shm); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define tee_shm_alloc(dev, size, flags, shm) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_TEE_SHM_ALLOC, tee_shm_alloc, dev, size, flags, shm); syscall__retval = tee_shm_alloc(dev, size, flags, shm); sys_port_trace_syscall_exit(K_SYSCALL_TEE_SHM_ALLOC, tee_shm_alloc, dev, size, flags, shm, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_tee_shm_free(const struct device * dev, struct tee_shm * shm); + +__pinned_func +static inline int tee_shm_free(const struct device * dev, struct tee_shm * shm) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct tee_shm * val; } parm1 = { .val = shm }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_TEE_SHM_FREE); + } +#endif + compiler_barrier(); + return z_impl_tee_shm_free(dev, shm); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define tee_shm_free(dev, shm) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_TEE_SHM_FREE, tee_shm_free, dev, shm); syscall__retval = tee_shm_free(dev, shm); sys_port_trace_syscall_exit(K_SYSCALL_TEE_SHM_FREE, tee_shm_free, dev, shm, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_tee_suppl_recv(const struct device * dev, uint32_t * func, unsigned int * num_params, struct tee_param * param); + +__pinned_func +static inline int tee_suppl_recv(const struct device * dev, uint32_t * func, unsigned int * num_params, struct tee_param * param) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t * val; } parm1 = { .val = func }; + union { uintptr_t x; unsigned int * val; } parm2 = { .val = num_params }; + union { uintptr_t x; struct tee_param * val; } parm3 = { .val = param }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_TEE_SUPPL_RECV); + } +#endif + compiler_barrier(); + return z_impl_tee_suppl_recv(dev, func, num_params, param); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define tee_suppl_recv(dev, func, num_params, param) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_TEE_SUPPL_RECV, tee_suppl_recv, dev, func, num_params, param); syscall__retval = tee_suppl_recv(dev, func, num_params, param); sys_port_trace_syscall_exit(K_SYSCALL_TEE_SUPPL_RECV, tee_suppl_recv, dev, func, num_params, param, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_tee_suppl_send(const struct device * dev, unsigned int ret, unsigned int num_params, struct tee_param * param); + +__pinned_func +static inline int tee_suppl_send(const struct device * dev, unsigned int ret, unsigned int num_params, struct tee_param * param) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; unsigned int val; } parm1 = { .val = ret }; + union { uintptr_t x; unsigned int val; } parm2 = { .val = num_params }; + union { uintptr_t x; struct tee_param * val; } parm3 = { .val = param }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_TEE_SUPPL_SEND); + } +#endif + compiler_barrier(); + return z_impl_tee_suppl_send(dev, ret, num_params, param); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define tee_suppl_send(dev, ret, num_params, param) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_TEE_SUPPL_SEND, tee_suppl_send, dev, ret, num_params, param); syscall__retval = tee_suppl_send(dev, ret, num_params, param); sys_port_trace_syscall_exit(K_SYSCALL_TEE_SUPPL_SEND, tee_suppl_send, dev, ret, num_params, param, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/time_units.h b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/time_units.h new file mode 100644 index 0000000..8154c89 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/time_units.h @@ -0,0 +1,50 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_TIME_UNITS_H +#define Z_INCLUDE_SYSCALLS_TIME_UNITS_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_sys_clock_hw_cycles_per_sec_runtime_get(void); + +__pinned_func +static inline int sys_clock_hw_cycles_per_sec_runtime_get(void) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + return (int) arch_syscall_invoke0(K_SYSCALL_SYS_CLOCK_HW_CYCLES_PER_SEC_RUNTIME_GET); + } +#endif + compiler_barrier(); + return z_impl_sys_clock_hw_cycles_per_sec_runtime_get(); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define sys_clock_hw_cycles_per_sec_runtime_get() ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SYS_CLOCK_HW_CYCLES_PER_SEC_RUNTIME_GET, sys_clock_hw_cycles_per_sec_runtime_get); syscall__retval = sys_clock_hw_cycles_per_sec_runtime_get(); sys_port_trace_syscall_exit(K_SYSCALL_SYS_CLOCK_HW_CYCLES_PER_SEC_RUNTIME_GET, sys_clock_hw_cycles_per_sec_runtime_get, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/timeaware_gpio.h b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/timeaware_gpio.h new file mode 100644 index 0000000..2b97560 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/timeaware_gpio.h @@ -0,0 +1,182 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_TIMEAWARE_GPIO_H +#define Z_INCLUDE_SYSCALLS_TIMEAWARE_GPIO_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_tgpio_port_get_time(const struct device * dev, uint64_t * current_time); + +__pinned_func +static inline int tgpio_port_get_time(const struct device * dev, uint64_t * current_time) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint64_t * val; } parm1 = { .val = current_time }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_TGPIO_PORT_GET_TIME); + } +#endif + compiler_barrier(); + return z_impl_tgpio_port_get_time(dev, current_time); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define tgpio_port_get_time(dev, current_time) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_TGPIO_PORT_GET_TIME, tgpio_port_get_time, dev, current_time); syscall__retval = tgpio_port_get_time(dev, current_time); sys_port_trace_syscall_exit(K_SYSCALL_TGPIO_PORT_GET_TIME, tgpio_port_get_time, dev, current_time, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_tgpio_port_get_cycles_per_second(const struct device * dev, uint32_t * cycles); + +__pinned_func +static inline int tgpio_port_get_cycles_per_second(const struct device * dev, uint32_t * cycles) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t * val; } parm1 = { .val = cycles }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_TGPIO_PORT_GET_CYCLES_PER_SECOND); + } +#endif + compiler_barrier(); + return z_impl_tgpio_port_get_cycles_per_second(dev, cycles); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define tgpio_port_get_cycles_per_second(dev, cycles) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_TGPIO_PORT_GET_CYCLES_PER_SECOND, tgpio_port_get_cycles_per_second, dev, cycles); syscall__retval = tgpio_port_get_cycles_per_second(dev, cycles); sys_port_trace_syscall_exit(K_SYSCALL_TGPIO_PORT_GET_CYCLES_PER_SECOND, tgpio_port_get_cycles_per_second, dev, cycles, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_tgpio_pin_disable(const struct device * dev, uint32_t pin); + +__pinned_func +static inline int tgpio_pin_disable(const struct device * dev, uint32_t pin) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = pin }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_TGPIO_PIN_DISABLE); + } +#endif + compiler_barrier(); + return z_impl_tgpio_pin_disable(dev, pin); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define tgpio_pin_disable(dev, pin) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_TGPIO_PIN_DISABLE, tgpio_pin_disable, dev, pin); syscall__retval = tgpio_pin_disable(dev, pin); sys_port_trace_syscall_exit(K_SYSCALL_TGPIO_PIN_DISABLE, tgpio_pin_disable, dev, pin, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_tgpio_pin_config_ext_timestamp(const struct device * dev, uint32_t pin, uint32_t event_polarity); + +__pinned_func +static inline int tgpio_pin_config_ext_timestamp(const struct device * dev, uint32_t pin, uint32_t event_polarity) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = pin }; + union { uintptr_t x; uint32_t val; } parm2 = { .val = event_polarity }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_TGPIO_PIN_CONFIG_EXT_TIMESTAMP); + } +#endif + compiler_barrier(); + return z_impl_tgpio_pin_config_ext_timestamp(dev, pin, event_polarity); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define tgpio_pin_config_ext_timestamp(dev, pin, event_polarity) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_TGPIO_PIN_CONFIG_EXT_TIMESTAMP, tgpio_pin_config_ext_timestamp, dev, pin, event_polarity); syscall__retval = tgpio_pin_config_ext_timestamp(dev, pin, event_polarity); sys_port_trace_syscall_exit(K_SYSCALL_TGPIO_PIN_CONFIG_EXT_TIMESTAMP, tgpio_pin_config_ext_timestamp, dev, pin, event_polarity, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_tgpio_pin_periodic_output(const struct device * dev, uint32_t pin, uint64_t start_time, uint64_t repeat_interval, bool periodic_enable); + +__pinned_func +static inline int tgpio_pin_periodic_output(const struct device * dev, uint32_t pin, uint64_t start_time, uint64_t repeat_interval, bool periodic_enable) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = pin }; + union { struct { uintptr_t lo, hi; } split; uint64_t val; } parm2 = { .val = start_time }; + union { struct { uintptr_t lo, hi; } split; uint64_t val; } parm3 = { .val = repeat_interval }; + union { uintptr_t x; bool val; } parm4 = { .val = periodic_enable }; + uintptr_t more[] = { + parm3.split.hi, + parm4.x + }; + return (int) arch_syscall_invoke6(parm0.x, parm1.x, parm2.split.lo, parm2.split.hi, parm3.split.lo, (uintptr_t) &more, K_SYSCALL_TGPIO_PIN_PERIODIC_OUTPUT); + } +#endif + compiler_barrier(); + return z_impl_tgpio_pin_periodic_output(dev, pin, start_time, repeat_interval, periodic_enable); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define tgpio_pin_periodic_output(dev, pin, start_time, repeat_interval, periodic_enable) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_TGPIO_PIN_PERIODIC_OUTPUT, tgpio_pin_periodic_output, dev, pin, start_time, repeat_interval, periodic_enable); syscall__retval = tgpio_pin_periodic_output(dev, pin, start_time, repeat_interval, periodic_enable); sys_port_trace_syscall_exit(K_SYSCALL_TGPIO_PIN_PERIODIC_OUTPUT, tgpio_pin_periodic_output, dev, pin, start_time, repeat_interval, periodic_enable, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_tgpio_pin_read_ts_ec(const struct device * dev, uint32_t pin, uint64_t * timestamp, uint64_t * event_count); + +__pinned_func +static inline int tgpio_pin_read_ts_ec(const struct device * dev, uint32_t pin, uint64_t * timestamp, uint64_t * event_count) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = pin }; + union { uintptr_t x; uint64_t * val; } parm2 = { .val = timestamp }; + union { uintptr_t x; uint64_t * val; } parm3 = { .val = event_count }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_TGPIO_PIN_READ_TS_EC); + } +#endif + compiler_barrier(); + return z_impl_tgpio_pin_read_ts_ec(dev, pin, timestamp, event_count); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define tgpio_pin_read_ts_ec(dev, pin, timestamp, event_count) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_TGPIO_PIN_READ_TS_EC, tgpio_pin_read_ts_ec, dev, pin, timestamp, event_count); syscall__retval = tgpio_pin_read_ts_ec(dev, pin, timestamp, event_count); sys_port_trace_syscall_exit(K_SYSCALL_TGPIO_PIN_READ_TS_EC, tgpio_pin_read_ts_ec, dev, pin, timestamp, event_count, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/uart.h b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/uart.h new file mode 100644 index 0000000..d7094ca --- /dev/null +++ b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/uart.h @@ -0,0 +1,612 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_UART_H +#define Z_INCLUDE_SYSCALLS_UART_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_uart_err_check(const struct device * dev); + +__pinned_func +static inline int uart_err_check(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_UART_ERR_CHECK); + } +#endif + compiler_barrier(); + return z_impl_uart_err_check(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define uart_err_check(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_UART_ERR_CHECK, uart_err_check, dev); syscall__retval = uart_err_check(dev); sys_port_trace_syscall_exit(K_SYSCALL_UART_ERR_CHECK, uart_err_check, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_uart_poll_in(const struct device * dev, unsigned char * p_char); + +__pinned_func +static inline int uart_poll_in(const struct device * dev, unsigned char * p_char) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; unsigned char * val; } parm1 = { .val = p_char }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_UART_POLL_IN); + } +#endif + compiler_barrier(); + return z_impl_uart_poll_in(dev, p_char); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define uart_poll_in(dev, p_char) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_UART_POLL_IN, uart_poll_in, dev, p_char); syscall__retval = uart_poll_in(dev, p_char); sys_port_trace_syscall_exit(K_SYSCALL_UART_POLL_IN, uart_poll_in, dev, p_char, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_uart_poll_in_u16(const struct device * dev, uint16_t * p_u16); + +__pinned_func +static inline int uart_poll_in_u16(const struct device * dev, uint16_t * p_u16) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint16_t * val; } parm1 = { .val = p_u16 }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_UART_POLL_IN_U16); + } +#endif + compiler_barrier(); + return z_impl_uart_poll_in_u16(dev, p_u16); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define uart_poll_in_u16(dev, p_u16) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_UART_POLL_IN_U16, uart_poll_in_u16, dev, p_u16); syscall__retval = uart_poll_in_u16(dev, p_u16); sys_port_trace_syscall_exit(K_SYSCALL_UART_POLL_IN_U16, uart_poll_in_u16, dev, p_u16, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern void z_impl_uart_poll_out(const struct device * dev, unsigned char out_char); + +__pinned_func +static inline void uart_poll_out(const struct device * dev, unsigned char out_char) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; unsigned char val; } parm1 = { .val = out_char }; + (void) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_UART_POLL_OUT); + return; + } +#endif + compiler_barrier(); + z_impl_uart_poll_out(dev, out_char); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define uart_poll_out(dev, out_char) do { sys_port_trace_syscall_enter(K_SYSCALL_UART_POLL_OUT, uart_poll_out, dev, out_char); uart_poll_out(dev, out_char); sys_port_trace_syscall_exit(K_SYSCALL_UART_POLL_OUT, uart_poll_out, dev, out_char); } while(false) +#endif +#endif + + +extern void z_impl_uart_poll_out_u16(const struct device * dev, uint16_t out_u16); + +__pinned_func +static inline void uart_poll_out_u16(const struct device * dev, uint16_t out_u16) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint16_t val; } parm1 = { .val = out_u16 }; + (void) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_UART_POLL_OUT_U16); + return; + } +#endif + compiler_barrier(); + z_impl_uart_poll_out_u16(dev, out_u16); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define uart_poll_out_u16(dev, out_u16) do { sys_port_trace_syscall_enter(K_SYSCALL_UART_POLL_OUT_U16, uart_poll_out_u16, dev, out_u16); uart_poll_out_u16(dev, out_u16); sys_port_trace_syscall_exit(K_SYSCALL_UART_POLL_OUT_U16, uart_poll_out_u16, dev, out_u16); } while(false) +#endif +#endif + + +extern int z_impl_uart_configure(const struct device * dev, const struct uart_config * cfg); + +__pinned_func +static inline int uart_configure(const struct device * dev, const struct uart_config * cfg) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; const struct uart_config * val; } parm1 = { .val = cfg }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_UART_CONFIGURE); + } +#endif + compiler_barrier(); + return z_impl_uart_configure(dev, cfg); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define uart_configure(dev, cfg) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_UART_CONFIGURE, uart_configure, dev, cfg); syscall__retval = uart_configure(dev, cfg); sys_port_trace_syscall_exit(K_SYSCALL_UART_CONFIGURE, uart_configure, dev, cfg, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_uart_config_get(const struct device * dev, struct uart_config * cfg); + +__pinned_func +static inline int uart_config_get(const struct device * dev, struct uart_config * cfg) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct uart_config * val; } parm1 = { .val = cfg }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_UART_CONFIG_GET); + } +#endif + compiler_barrier(); + return z_impl_uart_config_get(dev, cfg); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define uart_config_get(dev, cfg) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_UART_CONFIG_GET, uart_config_get, dev, cfg); syscall__retval = uart_config_get(dev, cfg); sys_port_trace_syscall_exit(K_SYSCALL_UART_CONFIG_GET, uart_config_get, dev, cfg, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern void z_impl_uart_irq_tx_enable(const struct device * dev); + +__pinned_func +static inline void uart_irq_tx_enable(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + (void) arch_syscall_invoke1(parm0.x, K_SYSCALL_UART_IRQ_TX_ENABLE); + return; + } +#endif + compiler_barrier(); + z_impl_uart_irq_tx_enable(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define uart_irq_tx_enable(dev) do { sys_port_trace_syscall_enter(K_SYSCALL_UART_IRQ_TX_ENABLE, uart_irq_tx_enable, dev); uart_irq_tx_enable(dev); sys_port_trace_syscall_exit(K_SYSCALL_UART_IRQ_TX_ENABLE, uart_irq_tx_enable, dev); } while(false) +#endif +#endif + + +extern void z_impl_uart_irq_tx_disable(const struct device * dev); + +__pinned_func +static inline void uart_irq_tx_disable(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + (void) arch_syscall_invoke1(parm0.x, K_SYSCALL_UART_IRQ_TX_DISABLE); + return; + } +#endif + compiler_barrier(); + z_impl_uart_irq_tx_disable(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define uart_irq_tx_disable(dev) do { sys_port_trace_syscall_enter(K_SYSCALL_UART_IRQ_TX_DISABLE, uart_irq_tx_disable, dev); uart_irq_tx_disable(dev); sys_port_trace_syscall_exit(K_SYSCALL_UART_IRQ_TX_DISABLE, uart_irq_tx_disable, dev); } while(false) +#endif +#endif + + +extern void z_impl_uart_irq_rx_enable(const struct device * dev); + +__pinned_func +static inline void uart_irq_rx_enable(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + (void) arch_syscall_invoke1(parm0.x, K_SYSCALL_UART_IRQ_RX_ENABLE); + return; + } +#endif + compiler_barrier(); + z_impl_uart_irq_rx_enable(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define uart_irq_rx_enable(dev) do { sys_port_trace_syscall_enter(K_SYSCALL_UART_IRQ_RX_ENABLE, uart_irq_rx_enable, dev); uart_irq_rx_enable(dev); sys_port_trace_syscall_exit(K_SYSCALL_UART_IRQ_RX_ENABLE, uart_irq_rx_enable, dev); } while(false) +#endif +#endif + + +extern void z_impl_uart_irq_rx_disable(const struct device * dev); + +__pinned_func +static inline void uart_irq_rx_disable(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + (void) arch_syscall_invoke1(parm0.x, K_SYSCALL_UART_IRQ_RX_DISABLE); + return; + } +#endif + compiler_barrier(); + z_impl_uart_irq_rx_disable(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define uart_irq_rx_disable(dev) do { sys_port_trace_syscall_enter(K_SYSCALL_UART_IRQ_RX_DISABLE, uart_irq_rx_disable, dev); uart_irq_rx_disable(dev); sys_port_trace_syscall_exit(K_SYSCALL_UART_IRQ_RX_DISABLE, uart_irq_rx_disable, dev); } while(false) +#endif +#endif + + +extern void z_impl_uart_irq_err_enable(const struct device * dev); + +__pinned_func +static inline void uart_irq_err_enable(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + (void) arch_syscall_invoke1(parm0.x, K_SYSCALL_UART_IRQ_ERR_ENABLE); + return; + } +#endif + compiler_barrier(); + z_impl_uart_irq_err_enable(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define uart_irq_err_enable(dev) do { sys_port_trace_syscall_enter(K_SYSCALL_UART_IRQ_ERR_ENABLE, uart_irq_err_enable, dev); uart_irq_err_enable(dev); sys_port_trace_syscall_exit(K_SYSCALL_UART_IRQ_ERR_ENABLE, uart_irq_err_enable, dev); } while(false) +#endif +#endif + + +extern void z_impl_uart_irq_err_disable(const struct device * dev); + +__pinned_func +static inline void uart_irq_err_disable(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + (void) arch_syscall_invoke1(parm0.x, K_SYSCALL_UART_IRQ_ERR_DISABLE); + return; + } +#endif + compiler_barrier(); + z_impl_uart_irq_err_disable(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define uart_irq_err_disable(dev) do { sys_port_trace_syscall_enter(K_SYSCALL_UART_IRQ_ERR_DISABLE, uart_irq_err_disable, dev); uart_irq_err_disable(dev); sys_port_trace_syscall_exit(K_SYSCALL_UART_IRQ_ERR_DISABLE, uart_irq_err_disable, dev); } while(false) +#endif +#endif + + +extern int z_impl_uart_irq_is_pending(const struct device * dev); + +__pinned_func +static inline int uart_irq_is_pending(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_UART_IRQ_IS_PENDING); + } +#endif + compiler_barrier(); + return z_impl_uart_irq_is_pending(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define uart_irq_is_pending(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_UART_IRQ_IS_PENDING, uart_irq_is_pending, dev); syscall__retval = uart_irq_is_pending(dev); sys_port_trace_syscall_exit(K_SYSCALL_UART_IRQ_IS_PENDING, uart_irq_is_pending, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_uart_irq_update(const struct device * dev); + +__pinned_func +static inline int uart_irq_update(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_UART_IRQ_UPDATE); + } +#endif + compiler_barrier(); + return z_impl_uart_irq_update(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define uart_irq_update(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_UART_IRQ_UPDATE, uart_irq_update, dev); syscall__retval = uart_irq_update(dev); sys_port_trace_syscall_exit(K_SYSCALL_UART_IRQ_UPDATE, uart_irq_update, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_uart_tx(const struct device * dev, const uint8_t * buf, size_t len, int32_t timeout); + +__pinned_func +static inline int uart_tx(const struct device * dev, const uint8_t * buf, size_t len, int32_t timeout) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; const uint8_t * val; } parm1 = { .val = buf }; + union { uintptr_t x; size_t val; } parm2 = { .val = len }; + union { uintptr_t x; int32_t val; } parm3 = { .val = timeout }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_UART_TX); + } +#endif + compiler_barrier(); + return z_impl_uart_tx(dev, buf, len, timeout); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define uart_tx(dev, buf, len, timeout) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_UART_TX, uart_tx, dev, buf, len, timeout); syscall__retval = uart_tx(dev, buf, len, timeout); sys_port_trace_syscall_exit(K_SYSCALL_UART_TX, uart_tx, dev, buf, len, timeout, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_uart_tx_u16(const struct device * dev, const uint16_t * buf, size_t len, int32_t timeout); + +__pinned_func +static inline int uart_tx_u16(const struct device * dev, const uint16_t * buf, size_t len, int32_t timeout) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; const uint16_t * val; } parm1 = { .val = buf }; + union { uintptr_t x; size_t val; } parm2 = { .val = len }; + union { uintptr_t x; int32_t val; } parm3 = { .val = timeout }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_UART_TX_U16); + } +#endif + compiler_barrier(); + return z_impl_uart_tx_u16(dev, buf, len, timeout); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define uart_tx_u16(dev, buf, len, timeout) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_UART_TX_U16, uart_tx_u16, dev, buf, len, timeout); syscall__retval = uart_tx_u16(dev, buf, len, timeout); sys_port_trace_syscall_exit(K_SYSCALL_UART_TX_U16, uart_tx_u16, dev, buf, len, timeout, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_uart_tx_abort(const struct device * dev); + +__pinned_func +static inline int uart_tx_abort(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_UART_TX_ABORT); + } +#endif + compiler_barrier(); + return z_impl_uart_tx_abort(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define uart_tx_abort(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_UART_TX_ABORT, uart_tx_abort, dev); syscall__retval = uart_tx_abort(dev); sys_port_trace_syscall_exit(K_SYSCALL_UART_TX_ABORT, uart_tx_abort, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_uart_rx_enable(const struct device * dev, uint8_t * buf, size_t len, int32_t timeout); + +__pinned_func +static inline int uart_rx_enable(const struct device * dev, uint8_t * buf, size_t len, int32_t timeout) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint8_t * val; } parm1 = { .val = buf }; + union { uintptr_t x; size_t val; } parm2 = { .val = len }; + union { uintptr_t x; int32_t val; } parm3 = { .val = timeout }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_UART_RX_ENABLE); + } +#endif + compiler_barrier(); + return z_impl_uart_rx_enable(dev, buf, len, timeout); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define uart_rx_enable(dev, buf, len, timeout) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_UART_RX_ENABLE, uart_rx_enable, dev, buf, len, timeout); syscall__retval = uart_rx_enable(dev, buf, len, timeout); sys_port_trace_syscall_exit(K_SYSCALL_UART_RX_ENABLE, uart_rx_enable, dev, buf, len, timeout, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_uart_rx_enable_u16(const struct device * dev, uint16_t * buf, size_t len, int32_t timeout); + +__pinned_func +static inline int uart_rx_enable_u16(const struct device * dev, uint16_t * buf, size_t len, int32_t timeout) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint16_t * val; } parm1 = { .val = buf }; + union { uintptr_t x; size_t val; } parm2 = { .val = len }; + union { uintptr_t x; int32_t val; } parm3 = { .val = timeout }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_UART_RX_ENABLE_U16); + } +#endif + compiler_barrier(); + return z_impl_uart_rx_enable_u16(dev, buf, len, timeout); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define uart_rx_enable_u16(dev, buf, len, timeout) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_UART_RX_ENABLE_U16, uart_rx_enable_u16, dev, buf, len, timeout); syscall__retval = uart_rx_enable_u16(dev, buf, len, timeout); sys_port_trace_syscall_exit(K_SYSCALL_UART_RX_ENABLE_U16, uart_rx_enable_u16, dev, buf, len, timeout, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_uart_rx_disable(const struct device * dev); + +__pinned_func +static inline int uart_rx_disable(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_UART_RX_DISABLE); + } +#endif + compiler_barrier(); + return z_impl_uart_rx_disable(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define uart_rx_disable(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_UART_RX_DISABLE, uart_rx_disable, dev); syscall__retval = uart_rx_disable(dev); sys_port_trace_syscall_exit(K_SYSCALL_UART_RX_DISABLE, uart_rx_disable, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_uart_line_ctrl_set(const struct device * dev, uint32_t ctrl, uint32_t val); + +__pinned_func +static inline int uart_line_ctrl_set(const struct device * dev, uint32_t ctrl, uint32_t val) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = ctrl }; + union { uintptr_t x; uint32_t val; } parm2 = { .val = val }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_UART_LINE_CTRL_SET); + } +#endif + compiler_barrier(); + return z_impl_uart_line_ctrl_set(dev, ctrl, val); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define uart_line_ctrl_set(dev, ctrl, val) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_UART_LINE_CTRL_SET, uart_line_ctrl_set, dev, ctrl, val); syscall__retval = uart_line_ctrl_set(dev, ctrl, val); sys_port_trace_syscall_exit(K_SYSCALL_UART_LINE_CTRL_SET, uart_line_ctrl_set, dev, ctrl, val, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_uart_line_ctrl_get(const struct device * dev, uint32_t ctrl, uint32_t * val); + +__pinned_func +static inline int uart_line_ctrl_get(const struct device * dev, uint32_t ctrl, uint32_t * val) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = ctrl }; + union { uintptr_t x; uint32_t * val; } parm2 = { .val = val }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_UART_LINE_CTRL_GET); + } +#endif + compiler_barrier(); + return z_impl_uart_line_ctrl_get(dev, ctrl, val); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define uart_line_ctrl_get(dev, ctrl, val) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_UART_LINE_CTRL_GET, uart_line_ctrl_get, dev, ctrl, val); syscall__retval = uart_line_ctrl_get(dev, ctrl, val); sys_port_trace_syscall_exit(K_SYSCALL_UART_LINE_CTRL_GET, uart_line_ctrl_get, dev, ctrl, val, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_uart_drv_cmd(const struct device * dev, uint32_t cmd, uint32_t p); + +__pinned_func +static inline int uart_drv_cmd(const struct device * dev, uint32_t cmd, uint32_t p) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = cmd }; + union { uintptr_t x; uint32_t val; } parm2 = { .val = p }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_UART_DRV_CMD); + } +#endif + compiler_barrier(); + return z_impl_uart_drv_cmd(dev, cmd, p); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define uart_drv_cmd(dev, cmd, p) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_UART_DRV_CMD, uart_drv_cmd, dev, cmd, p); syscall__retval = uart_drv_cmd(dev, cmd, p); sys_port_trace_syscall_exit(K_SYSCALL_UART_DRV_CMD, uart_drv_cmd, dev, cmd, p, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/updatehub.h b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/updatehub.h new file mode 100644 index 0000000..b675188 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/updatehub.h @@ -0,0 +1,139 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_UPDATEHUB_H +#define Z_INCLUDE_SYSCALLS_UPDATEHUB_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern void z_impl_updatehub_autohandler(void); + +__pinned_func +static inline void updatehub_autohandler(void) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + (void) arch_syscall_invoke0(K_SYSCALL_UPDATEHUB_AUTOHANDLER); + return; + } +#endif + compiler_barrier(); + z_impl_updatehub_autohandler(); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define updatehub_autohandler() do { sys_port_trace_syscall_enter(K_SYSCALL_UPDATEHUB_AUTOHANDLER, updatehub_autohandler); updatehub_autohandler(); sys_port_trace_syscall_exit(K_SYSCALL_UPDATEHUB_AUTOHANDLER, updatehub_autohandler); } while(false) +#endif +#endif + + +extern enum updatehub_response z_impl_updatehub_probe(void); + +__pinned_func +static inline enum updatehub_response updatehub_probe(void) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + return (enum updatehub_response) arch_syscall_invoke0(K_SYSCALL_UPDATEHUB_PROBE); + } +#endif + compiler_barrier(); + return z_impl_updatehub_probe(); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define updatehub_probe() ({ enum updatehub_response syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_UPDATEHUB_PROBE, updatehub_probe); syscall__retval = updatehub_probe(); sys_port_trace_syscall_exit(K_SYSCALL_UPDATEHUB_PROBE, updatehub_probe, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern enum updatehub_response z_impl_updatehub_update(void); + +__pinned_func +static inline enum updatehub_response updatehub_update(void) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + return (enum updatehub_response) arch_syscall_invoke0(K_SYSCALL_UPDATEHUB_UPDATE); + } +#endif + compiler_barrier(); + return z_impl_updatehub_update(); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define updatehub_update() ({ enum updatehub_response syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_UPDATEHUB_UPDATE, updatehub_update); syscall__retval = updatehub_update(); sys_port_trace_syscall_exit(K_SYSCALL_UPDATEHUB_UPDATE, updatehub_update, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_updatehub_confirm(void); + +__pinned_func +static inline int updatehub_confirm(void) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + return (int) arch_syscall_invoke0(K_SYSCALL_UPDATEHUB_CONFIRM); + } +#endif + compiler_barrier(); + return z_impl_updatehub_confirm(); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define updatehub_confirm() ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_UPDATEHUB_CONFIRM, updatehub_confirm); syscall__retval = updatehub_confirm(); sys_port_trace_syscall_exit(K_SYSCALL_UPDATEHUB_CONFIRM, updatehub_confirm, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_updatehub_reboot(void); + +__pinned_func +static inline int updatehub_reboot(void) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + return (int) arch_syscall_invoke0(K_SYSCALL_UPDATEHUB_REBOOT); + } +#endif + compiler_barrier(); + return z_impl_updatehub_reboot(); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define updatehub_reboot() ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_UPDATEHUB_REBOOT, updatehub_reboot); syscall__retval = updatehub_reboot(); sys_port_trace_syscall_exit(K_SYSCALL_UPDATEHUB_REBOOT, updatehub_reboot, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/usb_bc12.h b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/usb_bc12.h new file mode 100644 index 0000000..7a6ff29 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/usb_bc12.h @@ -0,0 +1,77 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_USB_BC12_H +#define Z_INCLUDE_SYSCALLS_USB_BC12_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_bc12_set_role(const struct device * dev, enum bc12_role role); + +__pinned_func +static inline int bc12_set_role(const struct device * dev, enum bc12_role role) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; enum bc12_role val; } parm1 = { .val = role }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_BC12_SET_ROLE); + } +#endif + compiler_barrier(); + return z_impl_bc12_set_role(dev, role); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define bc12_set_role(dev, role) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_BC12_SET_ROLE, bc12_set_role, dev, role); syscall__retval = bc12_set_role(dev, role); sys_port_trace_syscall_exit(K_SYSCALL_BC12_SET_ROLE, bc12_set_role, dev, role, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_bc12_set_result_cb(const struct device * dev, bc12_callback_t cb, void * user_data); + +__pinned_func +static inline int bc12_set_result_cb(const struct device * dev, bc12_callback_t cb, void * user_data) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; bc12_callback_t val; } parm1 = { .val = cb }; + union { uintptr_t x; void * val; } parm2 = { .val = user_data }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_BC12_SET_RESULT_CB); + } +#endif + compiler_barrier(); + return z_impl_bc12_set_result_cb(dev, cb, user_data); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define bc12_set_result_cb(dev, cb, user_data) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_BC12_SET_RESULT_CB, bc12_set_result_cb, dev, cb, user_data); syscall__retval = bc12_set_result_cb(dev, cb, user_data); sys_port_trace_syscall_exit(K_SYSCALL_BC12_SET_RESULT_CB, bc12_set_result_cb, dev, cb, user_data, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/w1.h b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/w1.h new file mode 100644 index 0000000..4fdd7a9 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/w1.h @@ -0,0 +1,294 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_W1_H +#define Z_INCLUDE_SYSCALLS_W1_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_w1_change_bus_lock(const struct device * dev, bool lock); + +__pinned_func +static inline int w1_change_bus_lock(const struct device * dev, bool lock) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; bool val; } parm1 = { .val = lock }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_W1_CHANGE_BUS_LOCK); + } +#endif + compiler_barrier(); + return z_impl_w1_change_bus_lock(dev, lock); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define w1_change_bus_lock(dev, lock) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_W1_CHANGE_BUS_LOCK, w1_change_bus_lock, dev, lock); syscall__retval = w1_change_bus_lock(dev, lock); sys_port_trace_syscall_exit(K_SYSCALL_W1_CHANGE_BUS_LOCK, w1_change_bus_lock, dev, lock, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_w1_reset_bus(const struct device * dev); + +__pinned_func +static inline int w1_reset_bus(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_W1_RESET_BUS); + } +#endif + compiler_barrier(); + return z_impl_w1_reset_bus(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define w1_reset_bus(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_W1_RESET_BUS, w1_reset_bus, dev); syscall__retval = w1_reset_bus(dev); sys_port_trace_syscall_exit(K_SYSCALL_W1_RESET_BUS, w1_reset_bus, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_w1_read_bit(const struct device * dev); + +__pinned_func +static inline int w1_read_bit(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_W1_READ_BIT); + } +#endif + compiler_barrier(); + return z_impl_w1_read_bit(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define w1_read_bit(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_W1_READ_BIT, w1_read_bit, dev); syscall__retval = w1_read_bit(dev); sys_port_trace_syscall_exit(K_SYSCALL_W1_READ_BIT, w1_read_bit, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_w1_write_bit(const struct device * dev, const bool bit); + +__pinned_func +static inline int w1_write_bit(const struct device * dev, const bool bit) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; const bool val; } parm1 = { .val = bit }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_W1_WRITE_BIT); + } +#endif + compiler_barrier(); + return z_impl_w1_write_bit(dev, bit); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define w1_write_bit(dev, bit) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_W1_WRITE_BIT, w1_write_bit, dev, bit); syscall__retval = w1_write_bit(dev, bit); sys_port_trace_syscall_exit(K_SYSCALL_W1_WRITE_BIT, w1_write_bit, dev, bit, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_w1_read_byte(const struct device * dev); + +__pinned_func +static inline int w1_read_byte(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_W1_READ_BYTE); + } +#endif + compiler_barrier(); + return z_impl_w1_read_byte(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define w1_read_byte(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_W1_READ_BYTE, w1_read_byte, dev); syscall__retval = w1_read_byte(dev); sys_port_trace_syscall_exit(K_SYSCALL_W1_READ_BYTE, w1_read_byte, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_w1_write_byte(const struct device * dev, uint8_t byte); + +__pinned_func +static inline int w1_write_byte(const struct device * dev, uint8_t byte) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint8_t val; } parm1 = { .val = byte }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_W1_WRITE_BYTE); + } +#endif + compiler_barrier(); + return z_impl_w1_write_byte(dev, byte); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define w1_write_byte(dev, byte) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_W1_WRITE_BYTE, w1_write_byte, dev, byte); syscall__retval = w1_write_byte(dev, byte); sys_port_trace_syscall_exit(K_SYSCALL_W1_WRITE_BYTE, w1_write_byte, dev, byte, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_w1_read_block(const struct device * dev, uint8_t * buffer, size_t len); + +__pinned_func +static inline int w1_read_block(const struct device * dev, uint8_t * buffer, size_t len) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint8_t * val; } parm1 = { .val = buffer }; + union { uintptr_t x; size_t val; } parm2 = { .val = len }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_W1_READ_BLOCK); + } +#endif + compiler_barrier(); + return z_impl_w1_read_block(dev, buffer, len); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define w1_read_block(dev, buffer, len) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_W1_READ_BLOCK, w1_read_block, dev, buffer, len); syscall__retval = w1_read_block(dev, buffer, len); sys_port_trace_syscall_exit(K_SYSCALL_W1_READ_BLOCK, w1_read_block, dev, buffer, len, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_w1_write_block(const struct device * dev, const uint8_t * buffer, size_t len); + +__pinned_func +static inline int w1_write_block(const struct device * dev, const uint8_t * buffer, size_t len) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; const uint8_t * val; } parm1 = { .val = buffer }; + union { uintptr_t x; size_t val; } parm2 = { .val = len }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_W1_WRITE_BLOCK); + } +#endif + compiler_barrier(); + return z_impl_w1_write_block(dev, buffer, len); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define w1_write_block(dev, buffer, len) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_W1_WRITE_BLOCK, w1_write_block, dev, buffer, len); syscall__retval = w1_write_block(dev, buffer, len); sys_port_trace_syscall_exit(K_SYSCALL_W1_WRITE_BLOCK, w1_write_block, dev, buffer, len, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern size_t z_impl_w1_get_slave_count(const struct device * dev); + +__pinned_func +static inline size_t w1_get_slave_count(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (size_t) arch_syscall_invoke1(parm0.x, K_SYSCALL_W1_GET_SLAVE_COUNT); + } +#endif + compiler_barrier(); + return z_impl_w1_get_slave_count(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define w1_get_slave_count(dev) ({ size_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_W1_GET_SLAVE_COUNT, w1_get_slave_count, dev); syscall__retval = w1_get_slave_count(dev); sys_port_trace_syscall_exit(K_SYSCALL_W1_GET_SLAVE_COUNT, w1_get_slave_count, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_w1_configure(const struct device * dev, enum w1_settings_type type, uint32_t value); + +__pinned_func +static inline int w1_configure(const struct device * dev, enum w1_settings_type type, uint32_t value) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; enum w1_settings_type val; } parm1 = { .val = type }; + union { uintptr_t x; uint32_t val; } parm2 = { .val = value }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_W1_CONFIGURE); + } +#endif + compiler_barrier(); + return z_impl_w1_configure(dev, type, value); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define w1_configure(dev, type, value) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_W1_CONFIGURE, w1_configure, dev, type, value); syscall__retval = w1_configure(dev, type, value); sys_port_trace_syscall_exit(K_SYSCALL_W1_CONFIGURE, w1_configure, dev, type, value, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_w1_search_bus(const struct device * dev, uint8_t command, uint8_t family, w1_search_callback_t callback, void * user_data); + +__pinned_func +static inline int w1_search_bus(const struct device * dev, uint8_t command, uint8_t family, w1_search_callback_t callback, void * user_data) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint8_t val; } parm1 = { .val = command }; + union { uintptr_t x; uint8_t val; } parm2 = { .val = family }; + union { uintptr_t x; w1_search_callback_t val; } parm3 = { .val = callback }; + union { uintptr_t x; void * val; } parm4 = { .val = user_data }; + return (int) arch_syscall_invoke5(parm0.x, parm1.x, parm2.x, parm3.x, parm4.x, K_SYSCALL_W1_SEARCH_BUS); + } +#endif + compiler_barrier(); + return z_impl_w1_search_bus(dev, command, family, callback, user_data); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define w1_search_bus(dev, command, family, callback, user_data) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_W1_SEARCH_BUS, w1_search_bus, dev, command, family, callback, user_data); syscall__retval = w1_search_bus(dev, command, family, callback, user_data); sys_port_trace_syscall_exit(K_SYSCALL_W1_SEARCH_BUS, w1_search_bus, dev, command, family, callback, user_data, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/watchdog.h b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/watchdog.h new file mode 100644 index 0000000..7bfc784 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/include/generated/zephyr/syscalls/watchdog.h @@ -0,0 +1,99 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_WATCHDOG_H +#define Z_INCLUDE_SYSCALLS_WATCHDOG_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_wdt_setup(const struct device * dev, uint8_t options); + +__pinned_func +static inline int wdt_setup(const struct device * dev, uint8_t options) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint8_t val; } parm1 = { .val = options }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_WDT_SETUP); + } +#endif + compiler_barrier(); + return z_impl_wdt_setup(dev, options); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define wdt_setup(dev, options) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_WDT_SETUP, wdt_setup, dev, options); syscall__retval = wdt_setup(dev, options); sys_port_trace_syscall_exit(K_SYSCALL_WDT_SETUP, wdt_setup, dev, options, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_wdt_disable(const struct device * dev); + +__pinned_func +static inline int wdt_disable(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_WDT_DISABLE); + } +#endif + compiler_barrier(); + return z_impl_wdt_disable(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define wdt_disable(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_WDT_DISABLE, wdt_disable, dev); syscall__retval = wdt_disable(dev); sys_port_trace_syscall_exit(K_SYSCALL_WDT_DISABLE, wdt_disable, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_wdt_feed(const struct device * dev, int channel_id); + +__pinned_func +static inline int wdt_feed(const struct device * dev, int channel_id) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; int val; } parm1 = { .val = channel_id }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_WDT_FEED); + } +#endif + compiler_barrier(); + return z_impl_wdt_feed(dev, channel_id); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define wdt_feed(dev, channel_id) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_WDT_FEED, wdt_feed, dev, channel_id); syscall__retval = wdt_feed(dev, channel_id); sys_port_trace_syscall_exit(K_SYSCALL_WDT_FEED, wdt_feed, dev, channel_id, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/PHF000-Firmware/zephyr/include/generated/zephyr/version.h b/build/PHF000-Firmware/zephyr/include/generated/zephyr/version.h new file mode 100644 index 0000000..61e6cef --- /dev/null +++ b/build/PHF000-Firmware/zephyr/include/generated/zephyr/version.h @@ -0,0 +1,25 @@ +#ifndef _KERNEL_VERSION_H_ +#define _KERNEL_VERSION_H_ + +/* The template values come from cmake/version.cmake + * BUILD_VERSION related template values will be 'git describe', + * alternatively user defined BUILD_VERSION. + */ + +#define ZEPHYR_VERSION_CODE 262243 +#define ZEPHYR_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c)) + +#define KERNELVERSION 0x4006300 +#define KERNEL_VERSION_NUMBER 0x40063 +#define KERNEL_VERSION_MAJOR 4 +#define KERNEL_VERSION_MINOR 0 +#define KERNEL_PATCHLEVEL 99 +#define KERNEL_TWEAK 0 +#define KERNEL_VERSION_STRING "4.0.99" +#define KERNEL_VERSION_EXTENDED_STRING "4.0.99+0" +#define KERNEL_VERSION_TWEAK_STRING "4.0.99+0" + +#define BUILD_VERSION v4.0.99-ncs1-2 + + +#endif /* _KERNEL_VERSION_H_ */ diff --git a/build/PHF000-Firmware/zephyr/include/generated/zephyr_commit.h b/build/PHF000-Firmware/zephyr/include/generated/zephyr_commit.h new file mode 100644 index 0000000..c17412e --- /dev/null +++ b/build/PHF000-Firmware/zephyr/include/generated/zephyr_commit.h @@ -0,0 +1,12 @@ +#ifndef _ZEPHYR_COMMIT_H_ +#define _ZEPHYR_COMMIT_H_ + +/* values come from cmake/version.cmake + * BUILD_COMMIT related values will be 'git rev-parse', + * alternatively user defined BUILD_VERSION. + */ + +#define ZEPHYR_COMMIT f791c49f492c +#define ZEPHYR_COMMIT_STRING "f791c49f492c" + +#endif /* _ZEPHYR_COMMIT_H_ */ diff --git a/build/PHF000-Firmware/zephyr/isr_tables.c b/build/PHF000-Firmware/zephyr/isr_tables.c new file mode 100644 index 0000000..2745764 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/isr_tables.c @@ -0,0 +1,109 @@ + +/* AUTO-GENERATED by gen_isr_tables.py, do not edit! */ + +#include +#include +#include +#include + +typedef void (* ISR)(const void *); +uintptr_t __irq_vector_table _irq_vector_table[48] = { + ((uintptr_t)&_isr_wrapper), + ((uintptr_t)&_isr_wrapper), + ((uintptr_t)&_isr_wrapper), + ((uintptr_t)&_isr_wrapper), + ((uintptr_t)&_isr_wrapper), + ((uintptr_t)&_isr_wrapper), + ((uintptr_t)&_isr_wrapper), + ((uintptr_t)&_isr_wrapper), + ((uintptr_t)&_isr_wrapper), + ((uintptr_t)&_isr_wrapper), + ((uintptr_t)&_isr_wrapper), + ((uintptr_t)&_isr_wrapper), + ((uintptr_t)&_isr_wrapper), + ((uintptr_t)&_isr_wrapper), + ((uintptr_t)&_isr_wrapper), + ((uintptr_t)&_isr_wrapper), + ((uintptr_t)&_isr_wrapper), + ((uintptr_t)&_isr_wrapper), + ((uintptr_t)&_isr_wrapper), + ((uintptr_t)&_isr_wrapper), + ((uintptr_t)&_isr_wrapper), + ((uintptr_t)&_isr_wrapper), + ((uintptr_t)&_isr_wrapper), + ((uintptr_t)&_isr_wrapper), + ((uintptr_t)&_isr_wrapper), + ((uintptr_t)&_isr_wrapper), + ((uintptr_t)&_isr_wrapper), + ((uintptr_t)&_isr_wrapper), + ((uintptr_t)&_isr_wrapper), + ((uintptr_t)&_isr_wrapper), + ((uintptr_t)&_isr_wrapper), + ((uintptr_t)&_isr_wrapper), + ((uintptr_t)&_isr_wrapper), + ((uintptr_t)&_isr_wrapper), + ((uintptr_t)&_isr_wrapper), + ((uintptr_t)&_isr_wrapper), + ((uintptr_t)&_isr_wrapper), + ((uintptr_t)&_isr_wrapper), + ((uintptr_t)&_isr_wrapper), + ((uintptr_t)&_isr_wrapper), + ((uintptr_t)&_isr_wrapper), + ((uintptr_t)&_isr_wrapper), + ((uintptr_t)&_isr_wrapper), + ((uintptr_t)&_isr_wrapper), + ((uintptr_t)&_isr_wrapper), + ((uintptr_t)&_isr_wrapper), + ((uintptr_t)&_isr_wrapper), + ((uintptr_t)&_isr_wrapper), +}; +struct _isr_table_entry __sw_isr_table _sw_isr_table[48] = { + {(const void *)0x9fa9, (ISR)0x8e7d}, /* 0 */ + {(const void *)0x0, (ISR)z_irq_spurious}, /* 1 */ + {(const void *)0x0, (ISR)z_irq_spurious}, /* 2 */ + {(const void *)0x0, (ISR)z_irq_spurious}, /* 3 */ + {(const void *)0x0, (ISR)z_irq_spurious}, /* 4 */ + {(const void *)0x0, (ISR)z_irq_spurious}, /* 5 */ + {(const void *)0x9a2d, (ISR)0x8e7d}, /* 6 */ + {(const void *)0xe2bc, (ISR)0x79c1}, /* 7 */ + {(const void *)0x0, (ISR)z_irq_spurious}, /* 8 */ + {(const void *)0x0, (ISR)0x1185}, /* 9 */ + {(const void *)0x0, (ISR)z_irq_spurious}, /* 10 */ + {(const void *)0x0, (ISR)z_irq_spurious}, /* 11 */ + {(const void *)0xe2d0, (ISR)0x8721}, /* 12 */ + {(const void *)0x0, (ISR)z_irq_spurious}, /* 13 */ + {(const void *)0x0, (ISR)z_irq_spurious}, /* 14 */ + {(const void *)0x0, (ISR)z_irq_spurious}, /* 15 */ + {(const void *)0x0, (ISR)z_irq_spurious}, /* 16 */ + {(const void *)0x0, (ISR)0x8a5d}, /* 17 */ + {(const void *)0x0, (ISR)z_irq_spurious}, /* 18 */ + {(const void *)0x0, (ISR)z_irq_spurious}, /* 19 */ + {(const void *)0x0, (ISR)z_irq_spurious}, /* 20 */ + {(const void *)0x0, (ISR)z_irq_spurious}, /* 21 */ + {(const void *)0x0, (ISR)z_irq_spurious}, /* 22 */ + {(const void *)0x0, (ISR)z_irq_spurious}, /* 23 */ + {(const void *)0x0, (ISR)z_irq_spurious}, /* 24 */ + {(const void *)0x0, (ISR)z_irq_spurious}, /* 25 */ + {(const void *)0x0, (ISR)z_irq_spurious}, /* 26 */ + {(const void *)0x0, (ISR)z_irq_spurious}, /* 27 */ + {(const void *)0x0, (ISR)z_irq_spurious}, /* 28 */ + {(const void *)0x0, (ISR)z_irq_spurious}, /* 29 */ + {(const void *)0x0, (ISR)z_irq_spurious}, /* 30 */ + {(const void *)0x0, (ISR)z_irq_spurious}, /* 31 */ + {(const void *)0x0, (ISR)z_irq_spurious}, /* 32 */ + {(const void *)0x0, (ISR)z_irq_spurious}, /* 33 */ + {(const void *)0x0, (ISR)z_irq_spurious}, /* 34 */ + {(const void *)0x0, (ISR)z_irq_spurious}, /* 35 */ + {(const void *)0x0, (ISR)z_irq_spurious}, /* 36 */ + {(const void *)0x0, (ISR)z_irq_spurious}, /* 37 */ + {(const void *)0x0, (ISR)z_irq_spurious}, /* 38 */ + {(const void *)0x643d, (ISR)0x8e7d}, /* 39 */ + {(const void *)0x0, (ISR)z_irq_spurious}, /* 40 */ + {(const void *)0x0, (ISR)z_irq_spurious}, /* 41 */ + {(const void *)0x0, (ISR)z_irq_spurious}, /* 42 */ + {(const void *)0x0, (ISR)z_irq_spurious}, /* 43 */ + {(const void *)0x0, (ISR)z_irq_spurious}, /* 44 */ + {(const void *)0x0, (ISR)z_irq_spurious}, /* 45 */ + {(const void *)0x0, (ISR)z_irq_spurious}, /* 46 */ + {(const void *)0x0, (ISR)z_irq_spurious}, /* 47 */ +}; diff --git a/build/PHF000-Firmware/zephyr/isr_tables_swi.ld b/build/PHF000-Firmware/zephyr/isr_tables_swi.ld new file mode 100644 index 0000000..710cecc --- /dev/null +++ b/build/PHF000-Firmware/zephyr/isr_tables_swi.ld @@ -0,0 +1 @@ +/* Empty */ diff --git a/build/PHF000-Firmware/zephyr/isr_tables_vt.ld b/build/PHF000-Firmware/zephyr/isr_tables_vt.ld new file mode 100644 index 0000000..710cecc --- /dev/null +++ b/build/PHF000-Firmware/zephyr/isr_tables_vt.ld @@ -0,0 +1 @@ +/* Empty */ diff --git a/build/PHF000-Firmware/zephyr/kconfig/sources.txt b/build/PHF000-Firmware/zephyr/kconfig/sources.txt new file mode 100644 index 0000000..fa4ab68 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/kconfig/sources.txt @@ -0,0 +1,3661 @@ +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/boards/Mi_labs/phf000_board/Kconfig.phf000_board +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/Kconfig/Kconfig.dts +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/Kconfig/Kconfig.modules +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/Kconfig/Kconfig.shield +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/Kconfig/Kconfig.shield.defconfig +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/Kconfig/arch/Kconfig +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/Kconfig/boards/Kconfig +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/Kconfig/boards/Kconfig.defconfig +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/Kconfig/boards/Kconfig.phf000_board +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/Kconfig/soc/Kconfig +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/Kconfig/soc/Kconfig.defconfig +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/Kconfig/soc/Kconfig.soc +/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/cmake/zephyr/Kconfig +/home/miguel/ncs/v3.0.2/modules/crypto/oberon-psa-crypto/Kconfig.oberon_psa_crypto +/home/miguel/ncs/v3.0.2/modules/debug/percepio/DFM/kernelports/Zephyr/Kconfig +/home/miguel/ncs/v3.0.2/modules/debug/percepio/DFM/kernelports/Zephyr/storageports/Filesystem/Kconfig +/home/miguel/ncs/v3.0.2/modules/debug/percepio/DFM/kernelports/Zephyr/storageports/Flash/Kconfig +/home/miguel/ncs/v3.0.2/modules/debug/percepio/TraceRecorder/config/Kconfig +/home/miguel/ncs/v3.0.2/modules/debug/percepio/TraceRecorder/kernelports/Zephyr/Kconfig +/home/miguel/ncs/v3.0.2/modules/debug/percepio/TraceRecorder/kernelports/Zephyr/streamports/Semihost/Kconfig +/home/miguel/ncs/v3.0.2/modules/debug/percepio/TraceRecorder/streamports/ARM_ITM/Kconfig +/home/miguel/ncs/v3.0.2/modules/debug/percepio/TraceRecorder/streamports/File/Kconfig +/home/miguel/ncs/v3.0.2/modules/debug/percepio/TraceRecorder/streamports/Jlink_RTT/Kconfig +/home/miguel/ncs/v3.0.2/modules/debug/percepio/TraceRecorder/streamports/RingBuffer/Kconfig +/home/miguel/ncs/v3.0.2/modules/debug/percepio/zephyr/Kconfig +/home/miguel/ncs/v3.0.2/modules/hal/cirrus-logic/Kconfig +/home/miguel/ncs/v3.0.2/modules/lib/chre/platform/zephyr/Kconfig +/home/miguel/ncs/v3.0.2/modules/lib/gui/lvgl/Kconfig +/home/miguel/ncs/v3.0.2/modules/lib/gui/lvgl/zephyr/Kconfig +/home/miguel/ncs/v3.0.2/modules/lib/matter/config/nrfconnect/chip-module/Kconfig +/home/miguel/ncs/v3.0.2/modules/lib/matter/config/zephyr/Kconfig +/home/miguel/ncs/v3.0.2/modules/lib/memfault-firmware-sdk/ports/zephyr/Kconfig +/home/miguel/ncs/v3.0.2/modules/lib/memfault-firmware-sdk/ports/zephyr/ncs/Kconfig +/home/miguel/ncs/v3.0.2/modules/lib/picolibc/zephyr/Kconfig +/home/miguel/ncs/v3.0.2/modules/lib/suit-generator/ncs/Kconfig +/home/miguel/ncs/v3.0.2/modules/lib/suit-processor/Kconfig +/home/miguel/ncs/v3.0.2/modules/lib/zscilib/Kconfig.zscilib +/home/miguel/ncs/v3.0.2/nrf/Kconfig.nrf +/home/miguel/ncs/v3.0.2/nrf/boards/shields/coverage_support/Kconfig.shield +/home/miguel/ncs/v3.0.2/nrf/boards/shields/nrf21540ek/Kconfig.shield +/home/miguel/ncs/v3.0.2/nrf/boards/shields/nrf2220ek/Kconfig.shield +/home/miguel/ncs/v3.0.2/nrf/boards/shields/nrf2240ek/Kconfig.shield +/home/miguel/ncs/v3.0.2/nrf/boards/shields/nrf7002eb2/Kconfig.shield +/home/miguel/ncs/v3.0.2/nrf/boards/shields/nrf7002eb_interposer_p1/Kconfig.shield +/home/miguel/ncs/v3.0.2/nrf/boards/shields/pca63565/Kconfig.shield +/home/miguel/ncs/v3.0.2/nrf/boards/shields/pca63566/Kconfig.shield +/home/miguel/ncs/v3.0.2/nrf/drivers/Kconfig +/home/miguel/ncs/v3.0.2/nrf/drivers/bluetooth/Kconfig +/home/miguel/ncs/v3.0.2/nrf/drivers/bluetooth/hci/Kconfig +/home/miguel/ncs/v3.0.2/nrf/drivers/entropy/Kconfig +/home/miguel/ncs/v3.0.2/nrf/drivers/flash/Kconfig +/home/miguel/ncs/v3.0.2/nrf/drivers/gpio/Kconfig +/home/miguel/ncs/v3.0.2/nrf/drivers/hw_cc3xx/Kconfig +/home/miguel/ncs/v3.0.2/nrf/drivers/mpsl/Kconfig +/home/miguel/ncs/v3.0.2/nrf/drivers/mpsl/clock_control/Kconfig +/home/miguel/ncs/v3.0.2/nrf/drivers/mpsl/flash_sync/Kconfig +/home/miguel/ncs/v3.0.2/nrf/drivers/mpsl/temp_nrf5/Kconfig +/home/miguel/ncs/v3.0.2/nrf/drivers/mspi/Kconfig +/home/miguel/ncs/v3.0.2/nrf/drivers/mspi/Kconfig.hpf +/home/miguel/ncs/v3.0.2/nrf/drivers/mspi/Kconfig.sqspi +/home/miguel/ncs/v3.0.2/nrf/drivers/net/Kconfig +/home/miguel/ncs/v3.0.2/nrf/drivers/sensor/Kconfig +/home/miguel/ncs/v3.0.2/nrf/drivers/sensor/bh1749/Kconfig +/home/miguel/ncs/v3.0.2/nrf/drivers/sensor/bme68x_iaq/Kconfig +/home/miguel/ncs/v3.0.2/nrf/drivers/sensor/paw3212/Kconfig +/home/miguel/ncs/v3.0.2/nrf/drivers/sensor/pmw3360/Kconfig +/home/miguel/ncs/v3.0.2/nrf/drivers/sensor/sensor_sim/Kconfig +/home/miguel/ncs/v3.0.2/nrf/drivers/sensor/sensor_stub/Kconfig +/home/miguel/ncs/v3.0.2/nrf/drivers/serial/Kconfig +/home/miguel/ncs/v3.0.2/nrf/drivers/serial/Kconfig.ipc +/home/miguel/ncs/v3.0.2/nrf/drivers/serial/Kconfig.nrf_sw_lpuart +/home/miguel/ncs/v3.0.2/nrf/ext/Kconfig +/home/miguel/ncs/v3.0.2/nrf/ext/curl/Kconfig +/home/miguel/ncs/v3.0.2/nrf/ext/freebsd-getopt/Kconfig +/home/miguel/ncs/v3.0.2/nrf/ext/iperf3/Kconfig +/home/miguel/ncs/v3.0.2/nrf/lib/Kconfig +/home/miguel/ncs/v3.0.2/nrf/lib/adp536x/Kconfig +/home/miguel/ncs/v3.0.2/nrf/lib/app_jwt/Kconfig +/home/miguel/ncs/v3.0.2/nrf/lib/at_cmd_custom/Kconfig +/home/miguel/ncs/v3.0.2/nrf/lib/at_cmd_parser/Kconfig +/home/miguel/ncs/v3.0.2/nrf/lib/at_host/Kconfig +/home/miguel/ncs/v3.0.2/nrf/lib/at_monitor/Kconfig +/home/miguel/ncs/v3.0.2/nrf/lib/at_parser/Kconfig +/home/miguel/ncs/v3.0.2/nrf/lib/at_shell/Kconfig +/home/miguel/ncs/v3.0.2/nrf/lib/bin/Kconfig +/home/miguel/ncs/v3.0.2/nrf/lib/bin/lwm2m_carrier/Kconfig +/home/miguel/ncs/v3.0.2/nrf/lib/boot_banner/Kconfig +/home/miguel/ncs/v3.0.2/nrf/lib/contin_array/Kconfig +/home/miguel/ncs/v3.0.2/nrf/lib/data_fifo/Kconfig +/home/miguel/ncs/v3.0.2/nrf/lib/date_time/Kconfig +/home/miguel/ncs/v3.0.2/nrf/lib/dk_buttons_and_leds/Kconfig +/home/miguel/ncs/v3.0.2/nrf/lib/edge_impulse/Kconfig +/home/miguel/ncs/v3.0.2/nrf/lib/fatal_error/Kconfig +/home/miguel/ncs/v3.0.2/nrf/lib/fem_al/Kconfig +/home/miguel/ncs/v3.0.2/nrf/lib/flash_patch/Kconfig +/home/miguel/ncs/v3.0.2/nrf/lib/fprotect/Kconfig +/home/miguel/ncs/v3.0.2/nrf/lib/gcf_sms/Kconfig +/home/miguel/ncs/v3.0.2/nrf/lib/hw_id/Kconfig +/home/miguel/ncs/v3.0.2/nrf/lib/hw_unique_key/Kconfig +/home/miguel/ncs/v3.0.2/nrf/lib/identity_key/Kconfig +/home/miguel/ncs/v3.0.2/nrf/lib/location/Kconfig +/home/miguel/ncs/v3.0.2/nrf/lib/lte_link_control/Kconfig +/home/miguel/ncs/v3.0.2/nrf/lib/modem_antenna/Kconfig +/home/miguel/ncs/v3.0.2/nrf/lib/modem_attest_token/Kconfig +/home/miguel/ncs/v3.0.2/nrf/lib/modem_battery/Kconfig +/home/miguel/ncs/v3.0.2/nrf/lib/modem_info/Kconfig +/home/miguel/ncs/v3.0.2/nrf/lib/modem_jwt/Kconfig +/home/miguel/ncs/v3.0.2/nrf/lib/modem_key_mgmt/Kconfig +/home/miguel/ncs/v3.0.2/nrf/lib/modem_slm/Kconfig +/home/miguel/ncs/v3.0.2/nrf/lib/multithreading_lock/Kconfig +/home/miguel/ncs/v3.0.2/nrf/lib/nrf_modem_lib/Kconfig +/home/miguel/ncs/v3.0.2/nrf/lib/nrf_modem_lib/Kconfig.modemlib +/home/miguel/ncs/v3.0.2/nrf/lib/nrf_modem_lib/lte_net_if/Kconfig +/home/miguel/ncs/v3.0.2/nrf/lib/nrf_modem_lib/shell/Kconfig +/home/miguel/ncs/v3.0.2/nrf/lib/nrf_modem_lib/trace_backends/Kconfig +/home/miguel/ncs/v3.0.2/nrf/lib/nrf_modem_lib/trace_backends/flash/Kconfig +/home/miguel/ncs/v3.0.2/nrf/lib/nrf_modem_lib/trace_backends/ram/Kconfig +/home/miguel/ncs/v3.0.2/nrf/lib/nrf_modem_lib/trace_backends/rtt/Kconfig +/home/miguel/ncs/v3.0.2/nrf/lib/nrf_modem_lib/trace_backends/uart/Kconfig +/home/miguel/ncs/v3.0.2/nrf/lib/pcm_mix/Kconfig +/home/miguel/ncs/v3.0.2/nrf/lib/pcm_stream_channel_modifier/Kconfig +/home/miguel/ncs/v3.0.2/nrf/lib/pdn/Kconfig +/home/miguel/ncs/v3.0.2/nrf/lib/qos/Kconfig +/home/miguel/ncs/v3.0.2/nrf/lib/ram_pwrdn/Kconfig +/home/miguel/ncs/v3.0.2/nrf/lib/sample_rate_converter/Kconfig +/home/miguel/ncs/v3.0.2/nrf/lib/sfloat/Kconfig +/home/miguel/ncs/v3.0.2/nrf/lib/sms/Kconfig +/home/miguel/ncs/v3.0.2/nrf/lib/st25r3911b/Kconfig +/home/miguel/ncs/v3.0.2/nrf/lib/supl/Kconfig +/home/miguel/ncs/v3.0.2/nrf/lib/tone/Kconfig +/home/miguel/ncs/v3.0.2/nrf/lib/uicc_lwm2m/Kconfig +/home/miguel/ncs/v3.0.2/nrf/lib/wave_gen/Kconfig +/home/miguel/ncs/v3.0.2/nrf/modules/Kconfig +/home/miguel/ncs/v3.0.2/nrf/modules/azure-sdk-for-c/Kconfig +/home/miguel/ncs/v3.0.2/nrf/modules/cjson/Kconfig +/home/miguel/ncs/v3.0.2/nrf/modules/coremark/Kconfig +/home/miguel/ncs/v3.0.2/nrf/modules/mcuboot/Kconfig +/home/miguel/ncs/v3.0.2/nrf/modules/memfault-firmware-sdk/Kconfig +/home/miguel/ncs/v3.0.2/nrf/modules/openthread/Kconfig +/home/miguel/ncs/v3.0.2/nrf/modules/openthread/Kconfig.features +/home/miguel/ncs/v3.0.2/nrf/modules/openthread/Kconfig.thread +/home/miguel/ncs/v3.0.2/nrf/modules/trusted-firmware-m/Kconfig +/home/miguel/ncs/v3.0.2/nrf/modules/trusted-firmware-m/Kconfig.mbedtls.defconfig +/home/miguel/ncs/v3.0.2/nrf/modules/trusted-firmware-m/Kconfig.mbedtls_minimal.defconfig +/home/miguel/ncs/v3.0.2/nrf/modules/trusted-firmware-m/Kconfig.peripheral_secure +/home/miguel/ncs/v3.0.2/nrf/modules/trusted-firmware-m/Kconfig.psa.defconfig +/home/miguel/ncs/v3.0.2/nrf/modules/trusted-firmware-m/Kconfig.template.peripheral_secure +/home/miguel/ncs/v3.0.2/nrf/modules/trusted-firmware-m/Kconfig.tfm.defconfig +/home/miguel/ncs/v3.0.2/nrf/modules/trusted-firmware-m/Kconfig.tfm.pm +/home/miguel/ncs/v3.0.2/nrf/modules/trusted-firmware-m/Kconfig.tfm_minimal.defconfig +/home/miguel/ncs/v3.0.2/nrf/modules/wfa-qt/Kconfig +/home/miguel/ncs/v3.0.2/nrf/samples/Kconfig +/home/miguel/ncs/v3.0.2/nrf/samples/common/Kconfig +/home/miguel/ncs/v3.0.2/nrf/samples/common/mcumgr_bt_ota_dfu/Kconfig +/home/miguel/ncs/v3.0.2/nrf/soc/nordic/Kconfig +/home/miguel/ncs/v3.0.2/nrf/soc/nordic/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/nrf/soc/nordic/Kconfig.soc +/home/miguel/ncs/v3.0.2/nrf/soc/nordic/nrf54l/Kconfig +/home/miguel/ncs/v3.0.2/nrf/soc/nordic/nrf54l/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/nrf/soc/nordic/nrf54l/Kconfig.defconfig.nrf54lm20a_enga_cpuapp +/home/miguel/ncs/v3.0.2/nrf/soc/nordic/nrf54l/Kconfig.defconfig.nrf54lv10a_enga_cpuapp +/home/miguel/ncs/v3.0.2/nrf/soc/nordic/nrf54l/Kconfig.soc +/home/miguel/ncs/v3.0.2/nrf/soc/nordic/nrf71/Kconfig +/home/miguel/ncs/v3.0.2/nrf/soc/nordic/nrf71/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/nrf/soc/nordic/nrf71/Kconfig.defconfig.nrf7120_enga_cpuapp +/home/miguel/ncs/v3.0.2/nrf/soc/nordic/nrf71/Kconfig.defconfig.nrf7120_enga_cpuflpr +/home/miguel/ncs/v3.0.2/nrf/soc/nordic/nrf71/Kconfig.soc +/home/miguel/ncs/v3.0.2/nrf/subsys/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/app_event_manager/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/app_event_manager_profiler_tracer/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/audio/audio_module_template/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/audio_module/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/Kconfig.discovery +/home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/Kconfig.enocean +/home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/Kconfig.link +/home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/Kconfig.pool +/home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/Kconfig.scan +/home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/adv_prov/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/adv_prov/providers/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/adv_prov/providers/Kconfig.device_name +/home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/adv_prov/providers/Kconfig.fast_pair +/home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/adv_prov/providers/Kconfig.flags +/home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/adv_prov/providers/Kconfig.gap_appearance +/home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/adv_prov/providers/Kconfig.swift_pair +/home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/adv_prov/providers/Kconfig.tx_power +/home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/controller/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/cs_de/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/host_extensions/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/mesh/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/mesh/Kconfig.dk_prov +/home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/mesh/Kconfig.models +/home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/mesh/Kconfig.rpl +/home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/mesh/Kconfig.sensor +/home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/mesh/shell/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/mesh/vnd/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/rpc/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/services/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/services/Kconfig.ams_client +/home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/services/Kconfig.ancs_client +/home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/services/Kconfig.bas_client +/home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/services/Kconfig.bms +/home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/services/Kconfig.cts_client +/home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/services/Kconfig.ddfs +/home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/services/Kconfig.dfu_smp +/home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/services/Kconfig.gattp +/home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/services/Kconfig.hids +/home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/services/Kconfig.hogp +/home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/services/Kconfig.hrs_client +/home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/services/Kconfig.latency +/home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/services/Kconfig.latency_c +/home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/services/Kconfig.lbs +/home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/services/Kconfig.mds +/home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/services/Kconfig.nsms +/home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/services/Kconfig.nus +/home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/services/Kconfig.nus_client +/home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/services/Kconfig.rscs +/home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/services/Kconfig.throughput +/home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/services/cgms/Kconfig.cgms +/home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/services/fast_pair/Kconfig.fast_pair +/home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/services/fast_pair/fmdn/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/services/fast_pair/fp_crypto/Kconfig.fp_crypto +/home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/services/fast_pair/fp_storage/Kconfig.fp_storage +/home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/services/fast_pair/use_case/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/services/ras/Kconfig.ras +/home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/services/ras/rreq/Kconfig.ras_rreq +/home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/services/ras/rrsp/Kconfig.ras_rrsp +/home/miguel/ncs/v3.0.2/nrf/subsys/bluetooth/services/wifi_prov/Kconfig.wifi_prov +/home/miguel/ncs/v3.0.2/nrf/subsys/bootloader/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/bootloader/bl_crypto/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/bootloader/bl_storage/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/bootloader/bl_validation/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/caf/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/caf/events/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/caf/events/Kconfig.factory_reset_event +/home/miguel/ncs/v3.0.2/nrf/subsys/caf/events/Kconfig.force_power_down_event +/home/miguel/ncs/v3.0.2/nrf/subsys/caf/events/Kconfig.keep_alive_event +/home/miguel/ncs/v3.0.2/nrf/subsys/caf/events/Kconfig.module_state_event +/home/miguel/ncs/v3.0.2/nrf/subsys/caf/events/Kconfig.power_manager_event +/home/miguel/ncs/v3.0.2/nrf/subsys/caf/events/Kconfig.sensor_event +/home/miguel/ncs/v3.0.2/nrf/subsys/caf/modules/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/caf/modules/Kconfig.ble_adv +/home/miguel/ncs/v3.0.2/nrf/subsys/caf/modules/Kconfig.ble_bond +/home/miguel/ncs/v3.0.2/nrf/subsys/caf/modules/Kconfig.ble_smp +/home/miguel/ncs/v3.0.2/nrf/subsys/caf/modules/Kconfig.ble_state +/home/miguel/ncs/v3.0.2/nrf/subsys/caf/modules/Kconfig.buttons +/home/miguel/ncs/v3.0.2/nrf/subsys/caf/modules/Kconfig.caf_shell +/home/miguel/ncs/v3.0.2/nrf/subsys/caf/modules/Kconfig.click_detector +/home/miguel/ncs/v3.0.2/nrf/subsys/caf/modules/Kconfig.factory_reset_request +/home/miguel/ncs/v3.0.2/nrf/subsys/caf/modules/Kconfig.leds +/home/miguel/ncs/v3.0.2/nrf/subsys/caf/modules/Kconfig.net_state +/home/miguel/ncs/v3.0.2/nrf/subsys/caf/modules/Kconfig.power_manager +/home/miguel/ncs/v3.0.2/nrf/subsys/caf/modules/Kconfig.sensor_data_aggregator +/home/miguel/ncs/v3.0.2/nrf/subsys/caf/modules/Kconfig.sensor_manager +/home/miguel/ncs/v3.0.2/nrf/subsys/caf/modules/Kconfig.settings_loader +/home/miguel/ncs/v3.0.2/nrf/subsys/debug/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/debug/cpu_load/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/debug/etb_trace/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/debug/ppi_trace/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/dfu/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/dfu/dfu_multi_image/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/dfu/dfu_target/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/dfu/fmfu_fdev/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/dm/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/dm/rpc/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/dult/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/emds/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/esb/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/event_manager_proxy/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/fw_info/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/fw_info/Kconfig.template.fw_info_ext_api +/home/miguel/ncs/v3.0.2/nrf/subsys/gazell/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/ieee802154/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/logging/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/mcuboot_ids/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/mgmt/fmfu/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/mgmt/mcumgr/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/mgmt/mcumgr/grp/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/mgmt/mcumgr/grp/os_mgmt/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/mgmt/suitfu/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/mpsl/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/mpsl/clock_ctrl/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/mpsl/cx/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/mpsl/fem/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/mpsl/init/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/mpsl/pin_debug/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/mpsl/pm/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/net/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/net/l2_wifi_if_conn/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/aws_fota/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/aws_iot/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/aws_jobs/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/azure_fota/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/azure_iot_hub/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/coap_utils/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/download_client/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/downloader/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/fota_download/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/ftp_client/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/hostap_crypto/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/icalendar_parser/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/lwm2m_client_utils/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/mcumgr_smp_client/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/mqtt_helper/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/nrf70_fw_ext/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/nrf_cloud/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/nrf_cloud/Kconfig.nrf_cloud_agnss +/home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/nrf_cloud/Kconfig.nrf_cloud_alert +/home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/nrf_cloud/Kconfig.nrf_cloud_client_id +/home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/nrf_cloud/Kconfig.nrf_cloud_coap +/home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/nrf_cloud/Kconfig.nrf_cloud_fota +/home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/nrf_cloud/Kconfig.nrf_cloud_location +/home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/nrf_cloud/Kconfig.nrf_cloud_log +/home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/nrf_cloud/Kconfig.nrf_cloud_mqtt +/home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/nrf_cloud/Kconfig.nrf_cloud_pgps +/home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/nrf_cloud/Kconfig.nrf_cloud_rest +/home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/nrf_cloud/Kconfig.nrf_cloud_shadow_info +/home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/nrf_provisioning/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/nrf_provisioning/Kconfig.nrf_provisioning_cbor +/home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/nrf_provisioning/Kconfig.nrf_provisioning_coap +/home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/nrf_provisioning/Kconfig.nrf_provisioning_codec +/home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/nrf_provisioning/Kconfig.nrf_provisioning_http +/home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/rest_client/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/softap_wifi_provision/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/tls_credentials/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/wifi_ready/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/net/lib/zzhc/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/net/openthread/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/net/openthread/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/net/openthread/report/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/net/openthread/rpc/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/net_core_monitor/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/nfc/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/nfc/lib/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/nfc/ndef/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/nfc/rpc/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/nfc/t2t/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/nfc/t4t/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/nfc/tnep/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/nfc/tnep/ch/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/nrf_compress/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/nrf_profiler/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/nrf_rpc/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/nrf_rpc/dev_info/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/nrf_security/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/nrf_security/Kconfig.legacy +/home/miguel/ncs/v3.0.2/nrf/subsys/nrf_security/Kconfig.psa +/home/miguel/ncs/v3.0.2/nrf/subsys/nrf_security/Kconfig.psa.nordic +/home/miguel/ncs/v3.0.2/nrf/subsys/nrf_security/Kconfig.tls +/home/miguel/ncs/v3.0.2/nrf/subsys/nrf_security/src/core/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/nrf_security/src/drivers/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/nrf_security/src/drivers/Kconfig.psa_accel +/home/miguel/ncs/v3.0.2/nrf/subsys/nrf_security/src/drivers/cracen/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/nrf_security/src/drivers/cracen/psa_driver.Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/nrf_security/src/drivers/nrf_cc3xx/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/nrf_security/src/drivers/nrf_oberon/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/nrf_security/src/drivers/zephyr/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/nrf_security/src/ssf_secdom/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/partition_manager/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/partition_manager/Kconfig.template.partition_config +/home/miguel/ncs/v3.0.2/nrf/subsys/partition_manager/Kconfig.template.partition_region +/home/miguel/ncs/v3.0.2/nrf/subsys/pcd/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/sdfw_services/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/sdfw_services/services/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/sdfw_services/services/Kconfig.template.service +/home/miguel/ncs/v3.0.2/nrf/subsys/sdfw_services/services/device_info/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/sdfw_services/services/enc_fw/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/sdfw_services/services/extmem/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/sdfw_services/services/psa_crypto/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/sdfw_services/services/suit_service/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/sdfw_services/transport/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/sdfw_services/transport/nrf_rpc/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/settings/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/shell/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/suit/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/suit/app_tools/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/suit/app_tools/recovery_button/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/suit/cache/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/suit/envelope_info/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/suit/events/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/suit/execution_mode/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/suit/ipuc/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/suit/manifest_variables/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/suit/mci/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/suit/memory_layout/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/suit/memptr_storage/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/suit/metadata/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/suit/orchestrator/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/suit/orchestrator_app/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/suit/platform/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/suit/platform/sdfw/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/suit/platform/sink_selector/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/suit/storage/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/suit/stream/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/suit/utils/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/suit/validator/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/trusted_storage/Kconfig +/home/miguel/ncs/v3.0.2/nrf/subsys/uart_async_adapter/Kconfig +/home/miguel/ncs/v3.0.2/nrf/tests/Kconfig +/home/miguel/ncs/v3.0.2/nrf/tests/mocks/Kconfig +/home/miguel/ncs/v3.0.2/nrf/tests/mocks/nrf_modem_at/Kconfig +/home/miguel/ncs/v3.0.2/nrf/tests/mocks/nrf_rpc/Kconfig +/home/miguel/ncs/v3.0.2/nrf/tests/unity/Kconfig +/home/miguel/ncs/v3.0.2/nrfxlib/Kconfig.nrfxlib +/home/miguel/ncs/v3.0.2/nrfxlib/crypto/Kconfig +/home/miguel/ncs/v3.0.2/nrfxlib/gzll/Kconfig +/home/miguel/ncs/v3.0.2/nrfxlib/lc3/Kconfig +/home/miguel/ncs/v3.0.2/nrfxlib/mpsl/Kconfig +/home/miguel/ncs/v3.0.2/nrfxlib/nfc/Kconfig +/home/miguel/ncs/v3.0.2/nrfxlib/nrf_802154/zephyr/Kconfig.nrfxlib +/home/miguel/ncs/v3.0.2/nrfxlib/nrf_dm/Kconfig +/home/miguel/ncs/v3.0.2/nrfxlib/nrf_fuel_gauge/Kconfig +/home/miguel/ncs/v3.0.2/nrfxlib/nrf_modem/Kconfig +/home/miguel/ncs/v3.0.2/nrfxlib/nrf_rpc/Kconfig +/home/miguel/ncs/v3.0.2/nrfxlib/openthread/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/Kconfig.constants +/home/miguel/ncs/v3.0.2/zephyr/Kconfig.zephyr +/home/miguel/ncs/v3.0.2/zephyr/arch/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/arch/Kconfig.v2 +/home/miguel/ncs/v3.0.2/zephyr/arch/arc/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/arch/arc/core/dsp/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/arch/arc/core/mpu/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/arch/arm/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/arch/arm/core/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/arch/arm/core/Kconfig.vfp +/home/miguel/ncs/v3.0.2/zephyr/arch/arm/core/cortex_a_r/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/arch/arm/core/cortex_m/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/arch/arm/core/cortex_m/tz/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/arch/arm/core/mmu/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/arch/arm/core/mpu/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/arch/arm64/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/arch/arm64/core/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/arch/arm64/core/cortex_r/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/arch/arm64/core/xen/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/arch/common/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/arch/mips/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/arch/nios2/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/arch/posix/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/arch/riscv/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/arch/riscv/Kconfig.isa +/home/miguel/ncs/v3.0.2/zephyr/arch/sparc/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/arch/x86/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/arch/x86/core/Kconfig.ia32 +/home/miguel/ncs/v3.0.2/zephyr/arch/x86/core/Kconfig.intel64 +/home/miguel/ncs/v3.0.2/zephyr/arch/xtensa/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/boards/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/boards/Kconfig.v2 +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/adafruit_2_8_tft_touch_v2/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/adafruit_2_8_tft_touch_v2/Kconfig.shield +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/adafruit_adalogger_featherwing/Kconfig.shield +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/adafruit_aw9523/Kconfig.shield +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/adafruit_data_logger/Kconfig.shield +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/adafruit_neopixel_grid_bff/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/adafruit_neopixel_grid_bff/Kconfig.shield +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/adafruit_pca9685/Kconfig.shield +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/adafruit_winc1500/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/adafruit_winc1500/Kconfig.shield +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/amg88xx/Kconfig.shield +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/arceli_eth_w5500/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/arceli_eth_w5500/Kconfig.shield +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/arduino_uno_click/Kconfig.shield +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/atmel_rf2xx/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/atmel_rf2xx/Kconfig.shield +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/boostxl_ulpsense/Kconfig.shield +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/buydisplay_2_8_tft_touch_arduino/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/buydisplay_2_8_tft_touch_arduino/Kconfig.shield +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/buydisplay_3_5_tft_touch_arduino/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/buydisplay_3_5_tft_touch_arduino/Kconfig.shield +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/dac80508_evm/Kconfig.shield +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/dvp_fpc24_mt9m114/Kconfig.shield +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/esp_8266/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/esp_8266/Kconfig.shield +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/esp_8266/boards/disco_l475_iot1.defconfig +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/esp_8266/boards/sam4e_xpro.defconfig +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/eval_adxl362_ardz/Kconfig.shield +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/eval_adxl372_ardz/Kconfig.shield +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/frdm_cr20a/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/frdm_cr20a/Kconfig.shield +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/frdm_cr20a/boards/frdm_k64f.defconfig +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/frdm_kw41z/Kconfig.shield +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/frdm_stbc_agm01/Kconfig.shield +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/ftdi_vm800c/Kconfig.shield +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/g1120b0mipi/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/g1120b0mipi/Kconfig.shield +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/inventek_eswifi/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/inventek_eswifi/Kconfig.shield +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/inventek_eswifi/boards/frdm_k64f.defconfig +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/inventek_eswifi/boards/nucleo_f767zi.defconfig +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/lcd_par_s035/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/lcd_par_s035/Kconfig.shield +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/link_board_eth/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/link_board_eth/Kconfig.shield +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/lmp90100_evb/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/lmp90100_evb/Kconfig.shield +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/ls0xx_generic/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/ls0xx_generic/Kconfig.shield +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/m5stack_core2_ext/Kconfig.shield +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/max3421e/Kconfig.shield +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/max7219/Kconfig.shield +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/mcp2515/Kconfig.shield +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/mikroe_accel13_click/Kconfig.shield +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/mikroe_adc_click/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/mikroe_adc_click/Kconfig.shield +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/mikroe_ble_tiny_click/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/mikroe_ble_tiny_click/Kconfig.shield +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/mikroe_eth3_click/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/mikroe_eth3_click/Kconfig.shield +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/mikroe_eth_click/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/mikroe_eth_click/Kconfig.shield +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/mikroe_mcp2518fd_click/Kconfig.shield +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/mikroe_weather_click/Kconfig.shield +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/mikroe_wifi_bt_click/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/mikroe_wifi_bt_click/Kconfig.shield +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/npm1100_ek/Kconfig.shield +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/npm1300_ek/Kconfig.shield +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/npm6001_ek/Kconfig.shield +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/nrf7002eb/Kconfig.shield +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/nrf7002ek/Kconfig.shield +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/nxp_btb44_ov5640/Kconfig.shield +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/p3t1755dp_ard_i2c/Kconfig.shield +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/p3t1755dp_ard_i3c/Kconfig.shield +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/pmod_acl/Kconfig.shield +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/pmod_sd/Kconfig.shield +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/renesas_us159_da14531evz/Kconfig.shield +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/reyax_lora/Kconfig.shield +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/rk043fn02h_ct/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/rk043fn02h_ct/Kconfig.shield +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/rk043fn66hs_ctg/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/rk043fn66hs_ctg/Kconfig.shield +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/rk055hdmipi4m/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/rk055hdmipi4m/Kconfig.shield +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/rk055hdmipi4ma0/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/rk055hdmipi4ma0/Kconfig.shield +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/rpi_pico_uno_flexypin/Kconfig.shield +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/rtkmipilcdb00000be/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/rtkmipilcdb00000be/Kconfig.shield +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/seeed_w5500/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/seeed_w5500/Kconfig.shield +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/seeed_xiao_expansion_board/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/seeed_xiao_expansion_board/Kconfig.shield +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/seeed_xiao_round_display/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/seeed_xiao_round_display/Kconfig.shield +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/semtech_sx1262mb2das/Kconfig.shield +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/semtech_sx1272mb2das/Kconfig.shield +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/semtech_sx1276mb1mas/Kconfig.shield +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/sparkfun_carrier_asset_tracker/Kconfig.shield +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/sparkfun_sara_r4/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/sparkfun_sara_r4/Kconfig.shield +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/ssd1306/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/ssd1306/Kconfig.shield +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/st7735r/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/st7735r/Kconfig.shield +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/st7789v_generic/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/st7789v_generic/Kconfig.shield +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/st_b_lcd40_dsi1_mb1166/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/st_b_lcd40_dsi1_mb1166/Kconfig.shield +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/st_b_lcd40_dsi1_mb1166/boards/stm32h747i_disco_stm32h747xx_m7.defconfig +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/tcan4550evm/Kconfig.shield +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/ti_bp_bassensorsmkii/Kconfig.shield +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/v2c_daplink/Kconfig.shield +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/waveshare_epaper/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/waveshare_epaper/Kconfig.shield +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/waveshare_ups/Kconfig.shield +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/weact_ov2640_cam_module/Kconfig.shield +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/wnc_m14a2a/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/wnc_m14a2a/Kconfig.shield +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/x_nucleo_53l0a1/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/x_nucleo_53l0a1/Kconfig.shield +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/x_nucleo_bnrg2a1/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/x_nucleo_bnrg2a1/Kconfig.shield +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/x_nucleo_eeprma2/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/x_nucleo_eeprma2/Kconfig.shield +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/x_nucleo_idb05a1/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/x_nucleo_idb05a1/Kconfig.shield +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/x_nucleo_iks01a1/Kconfig.shield +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/x_nucleo_iks01a2/Kconfig.shield +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/x_nucleo_iks01a3/Kconfig.shield +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/x_nucleo_iks02a1/Kconfig.shield +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/x_nucleo_iks4a1/Kconfig.shield +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/x_nucleo_wb05kn1/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/boards/shields/x_nucleo_wb05kn1/Kconfig.shield +/home/miguel/ncs/v3.0.2/zephyr/drivers/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.ad559x +/home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.adc_emul +/home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.ads1112 +/home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.ads1119 +/home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.ads114s0x +/home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.ads131m02 +/home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.ads1x1x +/home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.ads7052 +/home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.ambiq +/home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.b91 +/home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.cc13xx_cc26xx +/home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.cc32xx +/home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.ene +/home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.esp32 +/home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.gd32 +/home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.gecko +/home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.ifx_cat1 +/home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.it8xxx2 +/home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.lmp90xxx +/home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.ltc2451 +/home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.max11102_17 +/home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.max1125x +/home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.max32 +/home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.mcp320x +/home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.mcux +/home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.npcx +/home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.nrfx +/home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.numaker +/home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.nxp_s32 +/home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.renesas_ra +/home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.rpi_pico +/home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.sam +/home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.sam0 +/home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.sam_afec +/home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.smartbond +/home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.stm32 +/home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.test +/home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.tla202x +/home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.vf610 +/home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.xec +/home/miguel/ncs/v3.0.2/zephyr/drivers/adc/Kconfig.xmc4xxx +/home/miguel/ncs/v3.0.2/zephyr/drivers/audio/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/audio/Kconfig.dmic_mcux +/home/miguel/ncs/v3.0.2/zephyr/drivers/audio/Kconfig.dmic_pdm_nrfx +/home/miguel/ncs/v3.0.2/zephyr/drivers/audio/Kconfig.mpxxdtyy +/home/miguel/ncs/v3.0.2/zephyr/drivers/audio/Kconfig.tas6422dac +/home/miguel/ncs/v3.0.2/zephyr/drivers/audio/Kconfig.tlv320dac +/home/miguel/ncs/v3.0.2/zephyr/drivers/audio/Kconfig.wm8904 +/home/miguel/ncs/v3.0.2/zephyr/drivers/auxdisplay/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/auxdisplay/Kconfig.hd44780 +/home/miguel/ncs/v3.0.2/zephyr/drivers/auxdisplay/Kconfig.itron +/home/miguel/ncs/v3.0.2/zephyr/drivers/auxdisplay/Kconfig.jhd1313 +/home/miguel/ncs/v3.0.2/zephyr/drivers/auxdisplay/Kconfig.pt6314 +/home/miguel/ncs/v3.0.2/zephyr/drivers/auxdisplay/Kconfig.serlcd +/home/miguel/ncs/v3.0.2/zephyr/drivers/bbram/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/bbram/Kconfig.bbram_emul +/home/miguel/ncs/v3.0.2/zephyr/drivers/bbram/Kconfig.it8xxx2 +/home/miguel/ncs/v3.0.2/zephyr/drivers/bbram/Kconfig.microchip +/home/miguel/ncs/v3.0.2/zephyr/drivers/bbram/Kconfig.npcx +/home/miguel/ncs/v3.0.2/zephyr/drivers/bbram/Kconfig.stm32 +/home/miguel/ncs/v3.0.2/zephyr/drivers/bbram/Kconfig.xec +/home/miguel/ncs/v3.0.2/zephyr/drivers/bluetooth/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/bluetooth/hci/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/bluetooth/hci/Kconfig.esp32 +/home/miguel/ncs/v3.0.2/zephyr/drivers/bluetooth/hci/Kconfig.infineon +/home/miguel/ncs/v3.0.2/zephyr/drivers/bluetooth/hci/Kconfig.nxp +/home/miguel/ncs/v3.0.2/zephyr/drivers/cache/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/cache/Kconfig.andes +/home/miguel/ncs/v3.0.2/zephyr/drivers/cache/Kconfig.aspeed +/home/miguel/ncs/v3.0.2/zephyr/drivers/cache/Kconfig.nrf +/home/miguel/ncs/v3.0.2/zephyr/drivers/can/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/can/Kconfig.esp32 +/home/miguel/ncs/v3.0.2/zephyr/drivers/can/Kconfig.fake +/home/miguel/ncs/v3.0.2/zephyr/drivers/can/Kconfig.kvaser +/home/miguel/ncs/v3.0.2/zephyr/drivers/can/Kconfig.loopback +/home/miguel/ncs/v3.0.2/zephyr/drivers/can/Kconfig.mcan +/home/miguel/ncs/v3.0.2/zephyr/drivers/can/Kconfig.mcp2515 +/home/miguel/ncs/v3.0.2/zephyr/drivers/can/Kconfig.mcp251xfd +/home/miguel/ncs/v3.0.2/zephyr/drivers/can/Kconfig.mcux +/home/miguel/ncs/v3.0.2/zephyr/drivers/can/Kconfig.native_linux +/home/miguel/ncs/v3.0.2/zephyr/drivers/can/Kconfig.nrf +/home/miguel/ncs/v3.0.2/zephyr/drivers/can/Kconfig.numaker +/home/miguel/ncs/v3.0.2/zephyr/drivers/can/Kconfig.nxp_s32 +/home/miguel/ncs/v3.0.2/zephyr/drivers/can/Kconfig.rcar +/home/miguel/ncs/v3.0.2/zephyr/drivers/can/Kconfig.renesas_ra +/home/miguel/ncs/v3.0.2/zephyr/drivers/can/Kconfig.sam +/home/miguel/ncs/v3.0.2/zephyr/drivers/can/Kconfig.sam0 +/home/miguel/ncs/v3.0.2/zephyr/drivers/can/Kconfig.sja1000 +/home/miguel/ncs/v3.0.2/zephyr/drivers/can/Kconfig.stm32 +/home/miguel/ncs/v3.0.2/zephyr/drivers/can/Kconfig.tcan4x5x +/home/miguel/ncs/v3.0.2/zephyr/drivers/can/Kconfig.xmc4xxx +/home/miguel/ncs/v3.0.2/zephyr/drivers/can/transceiver/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/charger/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/charger/Kconfig.bq24190 +/home/miguel/ncs/v3.0.2/zephyr/drivers/charger/Kconfig.bq25180 +/home/miguel/ncs/v3.0.2/zephyr/drivers/charger/Kconfig.max20335 +/home/miguel/ncs/v3.0.2/zephyr/drivers/charger/Kconfig.sbs_charger +/home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.agilex5 +/home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.ambiq +/home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.arm_scmi +/home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.aspeed +/home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.beetle +/home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.cavs +/home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.esp32 +/home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.fixed +/home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.gd32 +/home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.ifx_cat1 +/home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.litex +/home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.lpc11u6x +/home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.max32 +/home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.mcux_ccm +/home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.mcux_ccm_rev2 +/home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.mcux_mcg +/home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.mcux_pcc +/home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.mcux_scg +/home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.mcux_sim +/home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.mcux_syscon +/home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.npcm +/home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.npcx +/home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.nrf +/home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.nrf_auxpll +/home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.numaker +/home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.nxp_s32 +/home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.pwm +/home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.rcar +/home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.renesas_ra_cgc +/home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.rpi_pico +/home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.rts5912 +/home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.rv32m1 +/home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.sam +/home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.si32 +/home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.silabs +/home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.smartbond +/home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.stm32 +/home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.wch_rcc +/home/miguel/ncs/v3.0.2/zephyr/drivers/clock_control/Kconfig.xec +/home/miguel/ncs/v3.0.2/zephyr/drivers/comparator/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/comparator/Kconfig.fake_comp +/home/miguel/ncs/v3.0.2/zephyr/drivers/comparator/Kconfig.mcux_acmp +/home/miguel/ncs/v3.0.2/zephyr/drivers/comparator/Kconfig.nrf_comp +/home/miguel/ncs/v3.0.2/zephyr/drivers/comparator/Kconfig.nrf_lpcomp +/home/miguel/ncs/v3.0.2/zephyr/drivers/comparator/Kconfig.shell +/home/miguel/ncs/v3.0.2/zephyr/drivers/console/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/coredump/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.ace +/home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.ambiq +/home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.andes_atcpit100 +/home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.cmos +/home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.dtmr_cmsdk_apb +/home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.dw +/home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.esp32_rtc +/home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.esp32_tmr +/home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.gd32 +/home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.gecko +/home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.ifx_cat1 +/home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.imx_epit +/home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.max32_rtc +/home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.max32_timer +/home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.maxim_ds3231 +/home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.mcp7940n +/home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.mcux_ctimer +/home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.mcux_gpt +/home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.mcux_lpc_rtc +/home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.mcux_lptmr +/home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.mcux_qtmr +/home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.mcux_rtc +/home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.mcux_snvs +/home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.mcux_tpm +/home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.native_posix +/home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.nrfx +/home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.nxp_mrt +/home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.nxp_pit +/home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.nxp_s32 +/home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.renesas_ra +/home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.rpi_pico +/home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.sam +/home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.sam0 +/home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.smartbond_timer +/home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.stm32_rtc +/home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.stm32_timer +/home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.tmr_cmsdk_apb +/home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.xec +/home/miguel/ncs/v3.0.2/zephyr/drivers/counter/Kconfig.xlnx +/home/miguel/ncs/v3.0.2/zephyr/drivers/crypto/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/crypto/Kconfig.ataes132a +/home/miguel/ncs/v3.0.2/zephyr/drivers/crypto/Kconfig.intel +/home/miguel/ncs/v3.0.2/zephyr/drivers/crypto/Kconfig.it8xxx2 +/home/miguel/ncs/v3.0.2/zephyr/drivers/crypto/Kconfig.mcux_dcp +/home/miguel/ncs/v3.0.2/zephyr/drivers/crypto/Kconfig.npcx +/home/miguel/ncs/v3.0.2/zephyr/drivers/crypto/Kconfig.nrf_ecb +/home/miguel/ncs/v3.0.2/zephyr/drivers/crypto/Kconfig.si32 +/home/miguel/ncs/v3.0.2/zephyr/drivers/crypto/Kconfig.smartbond +/home/miguel/ncs/v3.0.2/zephyr/drivers/crypto/Kconfig.stm32 +/home/miguel/ncs/v3.0.2/zephyr/drivers/crypto/Kconfig.xec +/home/miguel/ncs/v3.0.2/zephyr/drivers/dac/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/dac/Kconfig.ad559x +/home/miguel/ncs/v3.0.2/zephyr/drivers/dac/Kconfig.ad569x +/home/miguel/ncs/v3.0.2/zephyr/drivers/dac/Kconfig.ad56xx +/home/miguel/ncs/v3.0.2/zephyr/drivers/dac/Kconfig.dacx0501 +/home/miguel/ncs/v3.0.2/zephyr/drivers/dac/Kconfig.dacx0508 +/home/miguel/ncs/v3.0.2/zephyr/drivers/dac/Kconfig.dacx3608 +/home/miguel/ncs/v3.0.2/zephyr/drivers/dac/Kconfig.esp32 +/home/miguel/ncs/v3.0.2/zephyr/drivers/dac/Kconfig.gd32 +/home/miguel/ncs/v3.0.2/zephyr/drivers/dac/Kconfig.ltc166x +/home/miguel/ncs/v3.0.2/zephyr/drivers/dac/Kconfig.mcp4725 +/home/miguel/ncs/v3.0.2/zephyr/drivers/dac/Kconfig.mcp4728 +/home/miguel/ncs/v3.0.2/zephyr/drivers/dac/Kconfig.mcux +/home/miguel/ncs/v3.0.2/zephyr/drivers/dac/Kconfig.sam +/home/miguel/ncs/v3.0.2/zephyr/drivers/dac/Kconfig.sam0 +/home/miguel/ncs/v3.0.2/zephyr/drivers/dac/Kconfig.stm32 +/home/miguel/ncs/v3.0.2/zephyr/drivers/dac/Kconfig.test +/home/miguel/ncs/v3.0.2/zephyr/drivers/dai/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/dai/intel/alh/Kconfig.alh +/home/miguel/ncs/v3.0.2/zephyr/drivers/dai/intel/dmic/Kconfig.dmic +/home/miguel/ncs/v3.0.2/zephyr/drivers/dai/intel/hda/Kconfig.hda +/home/miguel/ncs/v3.0.2/zephyr/drivers/dai/intel/ssp/Kconfig.ssp +/home/miguel/ncs/v3.0.2/zephyr/drivers/dai/nxp/esai/Kconfig.esai +/home/miguel/ncs/v3.0.2/zephyr/drivers/dai/nxp/sai/Kconfig.sai +/home/miguel/ncs/v3.0.2/zephyr/drivers/disk/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/disk/Kconfig.flash +/home/miguel/ncs/v3.0.2/zephyr/drivers/disk/Kconfig.loopback +/home/miguel/ncs/v3.0.2/zephyr/drivers/disk/Kconfig.mmc +/home/miguel/ncs/v3.0.2/zephyr/drivers/disk/Kconfig.ram +/home/miguel/ncs/v3.0.2/zephyr/drivers/disk/Kconfig.sdmmc +/home/miguel/ncs/v3.0.2/zephyr/drivers/disk/nvme/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/display/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/display/Kconfig.dummy +/home/miguel/ncs/v3.0.2/zephyr/drivers/display/Kconfig.gc9x01x +/home/miguel/ncs/v3.0.2/zephyr/drivers/display/Kconfig.hx8394 +/home/miguel/ncs/v3.0.2/zephyr/drivers/display/Kconfig.ili9806e_dsi +/home/miguel/ncs/v3.0.2/zephyr/drivers/display/Kconfig.ili9xxx +/home/miguel/ncs/v3.0.2/zephyr/drivers/display/Kconfig.intel_multibootfb +/home/miguel/ncs/v3.0.2/zephyr/drivers/display/Kconfig.ist3931 +/home/miguel/ncs/v3.0.2/zephyr/drivers/display/Kconfig.led_strip_matrix +/home/miguel/ncs/v3.0.2/zephyr/drivers/display/Kconfig.ls0xx +/home/miguel/ncs/v3.0.2/zephyr/drivers/display/Kconfig.max7219 +/home/miguel/ncs/v3.0.2/zephyr/drivers/display/Kconfig.mcux_dcnano_lcdif +/home/miguel/ncs/v3.0.2/zephyr/drivers/display/Kconfig.mcux_elcdif +/home/miguel/ncs/v3.0.2/zephyr/drivers/display/Kconfig.microbit +/home/miguel/ncs/v3.0.2/zephyr/drivers/display/Kconfig.nrf_led_matrix +/home/miguel/ncs/v3.0.2/zephyr/drivers/display/Kconfig.nt35510 +/home/miguel/ncs/v3.0.2/zephyr/drivers/display/Kconfig.otm8009a +/home/miguel/ncs/v3.0.2/zephyr/drivers/display/Kconfig.renesas_lcdc +/home/miguel/ncs/v3.0.2/zephyr/drivers/display/Kconfig.renesas_ra +/home/miguel/ncs/v3.0.2/zephyr/drivers/display/Kconfig.rm67162 +/home/miguel/ncs/v3.0.2/zephyr/drivers/display/Kconfig.rm68200 +/home/miguel/ncs/v3.0.2/zephyr/drivers/display/Kconfig.sdl +/home/miguel/ncs/v3.0.2/zephyr/drivers/display/Kconfig.ssd1306 +/home/miguel/ncs/v3.0.2/zephyr/drivers/display/Kconfig.ssd1322 +/home/miguel/ncs/v3.0.2/zephyr/drivers/display/Kconfig.ssd1327 +/home/miguel/ncs/v3.0.2/zephyr/drivers/display/Kconfig.ssd16xx +/home/miguel/ncs/v3.0.2/zephyr/drivers/display/Kconfig.st7735r +/home/miguel/ncs/v3.0.2/zephyr/drivers/display/Kconfig.st7789v +/home/miguel/ncs/v3.0.2/zephyr/drivers/display/Kconfig.st7796s +/home/miguel/ncs/v3.0.2/zephyr/drivers/display/Kconfig.stm32_ltdc +/home/miguel/ncs/v3.0.2/zephyr/drivers/display/Kconfig.uc81xx +/home/miguel/ncs/v3.0.2/zephyr/drivers/dma/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/dma/Kconfig.andes_atcdmac300 +/home/miguel/ncs/v3.0.2/zephyr/drivers/dma/Kconfig.dma_pl330 +/home/miguel/ncs/v3.0.2/zephyr/drivers/dma/Kconfig.dw +/home/miguel/ncs/v3.0.2/zephyr/drivers/dma/Kconfig.dw_axi_dmac +/home/miguel/ncs/v3.0.2/zephyr/drivers/dma/Kconfig.dw_common +/home/miguel/ncs/v3.0.2/zephyr/drivers/dma/Kconfig.emul +/home/miguel/ncs/v3.0.2/zephyr/drivers/dma/Kconfig.esp32 +/home/miguel/ncs/v3.0.2/zephyr/drivers/dma/Kconfig.gd32 +/home/miguel/ncs/v3.0.2/zephyr/drivers/dma/Kconfig.intel_adsp_gpdma +/home/miguel/ncs/v3.0.2/zephyr/drivers/dma/Kconfig.intel_adsp_hda +/home/miguel/ncs/v3.0.2/zephyr/drivers/dma/Kconfig.intel_lpss +/home/miguel/ncs/v3.0.2/zephyr/drivers/dma/Kconfig.iproc_pax +/home/miguel/ncs/v3.0.2/zephyr/drivers/dma/Kconfig.max32 +/home/miguel/ncs/v3.0.2/zephyr/drivers/dma/Kconfig.mcux_edma +/home/miguel/ncs/v3.0.2/zephyr/drivers/dma/Kconfig.mcux_lpc +/home/miguel/ncs/v3.0.2/zephyr/drivers/dma/Kconfig.mcux_pxp +/home/miguel/ncs/v3.0.2/zephyr/drivers/dma/Kconfig.mcux_smartdma +/home/miguel/ncs/v3.0.2/zephyr/drivers/dma/Kconfig.nios2_msgdma +/home/miguel/ncs/v3.0.2/zephyr/drivers/dma/Kconfig.nxp_edma +/home/miguel/ncs/v3.0.2/zephyr/drivers/dma/Kconfig.nxp_sdma +/home/miguel/ncs/v3.0.2/zephyr/drivers/dma/Kconfig.nxp_sof_host_dma +/home/miguel/ncs/v3.0.2/zephyr/drivers/dma/Kconfig.rpi_pico +/home/miguel/ncs/v3.0.2/zephyr/drivers/dma/Kconfig.sam0 +/home/miguel/ncs/v3.0.2/zephyr/drivers/dma/Kconfig.sam_xdmac +/home/miguel/ncs/v3.0.2/zephyr/drivers/dma/Kconfig.sedi +/home/miguel/ncs/v3.0.2/zephyr/drivers/dma/Kconfig.si32 +/home/miguel/ncs/v3.0.2/zephyr/drivers/dma/Kconfig.silabs +/home/miguel/ncs/v3.0.2/zephyr/drivers/dma/Kconfig.smartbond +/home/miguel/ncs/v3.0.2/zephyr/drivers/dma/Kconfig.stm32 +/home/miguel/ncs/v3.0.2/zephyr/drivers/dma/Kconfig.xec +/home/miguel/ncs/v3.0.2/zephyr/drivers/dma/Kconfig.xilinx_axi_dma +/home/miguel/ncs/v3.0.2/zephyr/drivers/dma/Kconfig.xmc4xxx +/home/miguel/ncs/v3.0.2/zephyr/drivers/dp/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/edac/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/eeprom/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/eeprom/Kconfig.eeprom_emu +/home/miguel/ncs/v3.0.2/zephyr/drivers/eeprom/Kconfig.lpc11u6x +/home/miguel/ncs/v3.0.2/zephyr/drivers/eeprom/Kconfig.mb85rcxx +/home/miguel/ncs/v3.0.2/zephyr/drivers/eeprom/Kconfig.mb85rsxx +/home/miguel/ncs/v3.0.2/zephyr/drivers/eeprom/Kconfig.stm32 +/home/miguel/ncs/v3.0.2/zephyr/drivers/eeprom/Kconfig.tmp116 +/home/miguel/ncs/v3.0.2/zephyr/drivers/eeprom/Kconfig.xec +/home/miguel/ncs/v3.0.2/zephyr/drivers/entropy/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/entropy/Kconfig.b91 +/home/miguel/ncs/v3.0.2/zephyr/drivers/entropy/Kconfig.bt_hci +/home/miguel/ncs/v3.0.2/zephyr/drivers/entropy/Kconfig.cc13xx_cc26xx +/home/miguel/ncs/v3.0.2/zephyr/drivers/entropy/Kconfig.esp32 +/home/miguel/ncs/v3.0.2/zephyr/drivers/entropy/Kconfig.gecko +/home/miguel/ncs/v3.0.2/zephyr/drivers/entropy/Kconfig.litex +/home/miguel/ncs/v3.0.2/zephyr/drivers/entropy/Kconfig.max32 +/home/miguel/ncs/v3.0.2/zephyr/drivers/entropy/Kconfig.mcux +/home/miguel/ncs/v3.0.2/zephyr/drivers/entropy/Kconfig.native_posix +/home/miguel/ncs/v3.0.2/zephyr/drivers/entropy/Kconfig.neorv32 +/home/miguel/ncs/v3.0.2/zephyr/drivers/entropy/Kconfig.npcx +/home/miguel/ncs/v3.0.2/zephyr/drivers/entropy/Kconfig.nrf5 +/home/miguel/ncs/v3.0.2/zephyr/drivers/entropy/Kconfig.nrf_prng +/home/miguel/ncs/v3.0.2/zephyr/drivers/entropy/Kconfig.psa_crypto +/home/miguel/ncs/v3.0.2/zephyr/drivers/entropy/Kconfig.renesas_ra +/home/miguel/ncs/v3.0.2/zephyr/drivers/entropy/Kconfig.rv32m1 +/home/miguel/ncs/v3.0.2/zephyr/drivers/entropy/Kconfig.sam +/home/miguel/ncs/v3.0.2/zephyr/drivers/entropy/Kconfig.smartbond +/home/miguel/ncs/v3.0.2/zephyr/drivers/entropy/Kconfig.stm32 +/home/miguel/ncs/v3.0.2/zephyr/drivers/espi/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/espi/Kconfig.espi_emul +/home/miguel/ncs/v3.0.2/zephyr/drivers/espi/Kconfig.it8xxx2 +/home/miguel/ncs/v3.0.2/zephyr/drivers/espi/Kconfig.npcx +/home/miguel/ncs/v3.0.2/zephyr/drivers/espi/Kconfig.xec +/home/miguel/ncs/v3.0.2/zephyr/drivers/ethernet/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/ethernet/Kconfig.adin2111 +/home/miguel/ncs/v3.0.2/zephyr/drivers/ethernet/Kconfig.cyclonev +/home/miguel/ncs/v3.0.2/zephyr/drivers/ethernet/Kconfig.dsa +/home/miguel/ncs/v3.0.2/zephyr/drivers/ethernet/Kconfig.dwmac +/home/miguel/ncs/v3.0.2/zephyr/drivers/ethernet/Kconfig.e1000 +/home/miguel/ncs/v3.0.2/zephyr/drivers/ethernet/Kconfig.enc28j60 +/home/miguel/ncs/v3.0.2/zephyr/drivers/ethernet/Kconfig.enc424j600 +/home/miguel/ncs/v3.0.2/zephyr/drivers/ethernet/Kconfig.esp32 +/home/miguel/ncs/v3.0.2/zephyr/drivers/ethernet/Kconfig.gecko +/home/miguel/ncs/v3.0.2/zephyr/drivers/ethernet/Kconfig.ivshmem +/home/miguel/ncs/v3.0.2/zephyr/drivers/ethernet/Kconfig.lan865x +/home/miguel/ncs/v3.0.2/zephyr/drivers/ethernet/Kconfig.lan9250 +/home/miguel/ncs/v3.0.2/zephyr/drivers/ethernet/Kconfig.litex +/home/miguel/ncs/v3.0.2/zephyr/drivers/ethernet/Kconfig.native_posix +/home/miguel/ncs/v3.0.2/zephyr/drivers/ethernet/Kconfig.numaker +/home/miguel/ncs/v3.0.2/zephyr/drivers/ethernet/Kconfig.nxp_imx_netc +/home/miguel/ncs/v3.0.2/zephyr/drivers/ethernet/Kconfig.nxp_s32_gmac +/home/miguel/ncs/v3.0.2/zephyr/drivers/ethernet/Kconfig.nxp_s32_netc +/home/miguel/ncs/v3.0.2/zephyr/drivers/ethernet/Kconfig.renesas_ra +/home/miguel/ncs/v3.0.2/zephyr/drivers/ethernet/Kconfig.sam_gmac +/home/miguel/ncs/v3.0.2/zephyr/drivers/ethernet/Kconfig.smsc911x +/home/miguel/ncs/v3.0.2/zephyr/drivers/ethernet/Kconfig.smsc91x +/home/miguel/ncs/v3.0.2/zephyr/drivers/ethernet/Kconfig.stellaris +/home/miguel/ncs/v3.0.2/zephyr/drivers/ethernet/Kconfig.stm32_hal +/home/miguel/ncs/v3.0.2/zephyr/drivers/ethernet/Kconfig.test +/home/miguel/ncs/v3.0.2/zephyr/drivers/ethernet/Kconfig.w5500 +/home/miguel/ncs/v3.0.2/zephyr/drivers/ethernet/Kconfig.xlnx_gem +/home/miguel/ncs/v3.0.2/zephyr/drivers/ethernet/Kconfig.xmc4xxx +/home/miguel/ncs/v3.0.2/zephyr/drivers/ethernet/dwc_xgmac/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/ethernet/eth_nxp_enet_qos/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/ethernet/nxp_enet/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/ethernet/phy/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/ethernet/phy/Kconfig.dm8806 +/home/miguel/ncs/v3.0.2/zephyr/drivers/ethernet/phy/Kconfig.tja1103 +/home/miguel/ncs/v3.0.2/zephyr/drivers/firmware/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/firmware/scmi/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.ambiq +/home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.andes +/home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.at45 +/home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.b91 +/home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.cadence_nand +/home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.cadence_qspi_nor +/home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.cc13xx_cc26xx +/home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.esp32 +/home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.gd32 +/home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.gecko +/home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.ifx_cat1 +/home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.it8xxx2 +/home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.lpc +/home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.max32 +/home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.mcux +/home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.mspi +/home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.nios2_qspi +/home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.nor +/home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.nordic_qspi_nor +/home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.npcx_fiu +/home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.nrf +/home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.nrf_mram +/home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.nrf_rram +/home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.numaker +/home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.numaker_rmc +/home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.nxp_s32 +/home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.renesas_ra +/home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.rpi_pico +/home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.rv32m1 +/home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.sam +/home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.sam0 +/home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.si32 +/home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.simulator +/home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.smartbond +/home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.stm32 +/home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.stm32_ospi +/home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.stm32_qspi +/home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.stm32_xspi +/home/miguel/ncs/v3.0.2/zephyr/drivers/flash/Kconfig.xmc4xxx +/home/miguel/ncs/v3.0.2/zephyr/drivers/fpga/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/fpga/Kconfig.altera_agilex_bridge +/home/miguel/ncs/v3.0.2/zephyr/drivers/fpga/Kconfig.eos_s3 +/home/miguel/ncs/v3.0.2/zephyr/drivers/fpga/Kconfig.ice40 +/home/miguel/ncs/v3.0.2/zephyr/drivers/fpga/Kconfig.mpfs +/home/miguel/ncs/v3.0.2/zephyr/drivers/fpga/Kconfig.slg471x5 +/home/miguel/ncs/v3.0.2/zephyr/drivers/fpga/Kconfig.zynqmp +/home/miguel/ncs/v3.0.2/zephyr/drivers/fuel_gauge/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/fuel_gauge/bq27z746/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/fuel_gauge/composite/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/fuel_gauge/max17048/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/fuel_gauge/sbs_gauge/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/fuel_gauge/sbs_gauge/Kconfig.emul_sbs_gauge +/home/miguel/ncs/v3.0.2/zephyr/drivers/gnss/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/gnss/Kconfig.emul +/home/miguel/ncs/v3.0.2/zephyr/drivers/gnss/Kconfig.generic +/home/miguel/ncs/v3.0.2/zephyr/drivers/gnss/Kconfig.luatos_air530z +/home/miguel/ncs/v3.0.2/zephyr/drivers/gnss/Kconfig.quectel_lcx6g +/home/miguel/ncs/v3.0.2/zephyr/drivers/gnss/Kconfig.u_blox_m8 +/home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.ad559x +/home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.adp5585 +/home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.ads114s0x +/home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.altera +/home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.ambiq +/home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.andes_atcgpio100 +/home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.aw9523b +/home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.axp192 +/home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.b91 +/home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.bcm2711 +/home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.bd8lb600fs +/home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.brcmstb +/home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.cc13xx_cc26xx +/home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.cc32xx +/home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.cmsdk_ahb +/home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.creg_gpio +/home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.cy8c95xx +/home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.davinci +/home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.dw +/home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.efinix_sapphire +/home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.emul +/home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.emul_sdl +/home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.ene +/home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.eos_s3 +/home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.esp32 +/home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.fxl6408 +/home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.gd32 +/home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.gecko +/home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.grgpio +/home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.ifx_cat1 +/home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.imx +/home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.intel +/home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.iproc +/home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.it8801 +/home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.it8xxx2 +/home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.litex +/home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.lmp90xxx +/home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.lpc11u6x +/home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.max14906 +/home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.max14916 +/home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.max22190 +/home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.max32 +/home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.mchp_mss +/home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.mcp23xxx +/home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.mcux +/home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.mcux_igpio +/home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.mcux_lpc +/home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.mcux_rgpio +/home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.mec5 +/home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.mmio32 +/home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.nct38xx +/home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.neorv32 +/home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.npcx +/home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.npm1300 +/home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.npm2100 +/home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.npm6001 +/home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.nrfx +/home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.numaker +/home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.numicro +/home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.nxp_s32 +/home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.pca953x +/home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.pca95xx +/home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.pca_series +/home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.pcal64xxa +/home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.pcf857x +/home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.psoc6 +/home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.rcar +/home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.renesas_ra +/home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.renesas_ra_ioport +/home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.renesas_rz +/home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.rp1 +/home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.rpi_pico +/home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.rt1718s +/home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.rts5912 +/home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.rv32m1 +/home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.rzt2m +/home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.sam +/home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.sam0 +/home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.sc18im704 +/home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.sedi +/home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.si32 +/home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.sifive +/home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.smartbond +/home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.sn74hc595 +/home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.stellaris +/home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.stm32 +/home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.stmpe1600 +/home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.sx1509b +/home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.tca6424a +/home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.test +/home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.tle9104 +/home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.wch_ch32v00x +/home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.xec +/home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.xlnx +/home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.xlnx_ps +/home/miguel/ncs/v3.0.2/zephyr/drivers/gpio/Kconfig.xmc4xxx +/home/miguel/ncs/v3.0.2/zephyr/drivers/haptics/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/haptics/Kconfig.drv2605 +/home/miguel/ncs/v3.0.2/zephyr/drivers/hdlc_rcp_if/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/hdlc_rcp_if/Kconfig.nxp +/home/miguel/ncs/v3.0.2/zephyr/drivers/hdlc_rcp_if/Kconfig.uart +/home/miguel/ncs/v3.0.2/zephyr/drivers/hwinfo/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/hwspinlock/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/hwspinlock/Kconfig.sqn +/home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/Kconfig.ambiq +/home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/Kconfig.andes_atciic100 +/home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/Kconfig.b91 +/home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/Kconfig.bcm_iproc +/home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/Kconfig.cc13xx_cc26xx +/home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/Kconfig.dw +/home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/Kconfig.ene +/home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/Kconfig.esp32 +/home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/Kconfig.gd32 +/home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/Kconfig.gpio +/home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/Kconfig.i2c_emul +/home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/Kconfig.ifx_cat1 +/home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/Kconfig.ifx_xmc4 +/home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/Kconfig.it8xxx2 +/home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/Kconfig.litex +/home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/Kconfig.lpc11u6x +/home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/Kconfig.max32 +/home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/Kconfig.mchp_mss +/home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/Kconfig.mcux +/home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/Kconfig.npcx +/home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/Kconfig.nrfx +/home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/Kconfig.numaker +/home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/Kconfig.rcar +/home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/Kconfig.renesas_ra +/home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/Kconfig.sam0 +/home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/Kconfig.sam_twihs +/home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/Kconfig.sbcon +/home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/Kconfig.sc18im704 +/home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/Kconfig.sedi +/home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/Kconfig.sifive +/home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/Kconfig.smartbond +/home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/Kconfig.stm32 +/home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/Kconfig.tca954x +/home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/Kconfig.test +/home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/Kconfig.xec +/home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/Kconfig.xilinx_axi +/home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/target/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/i2c/target/Kconfig.eeprom +/home/miguel/ncs/v3.0.2/zephyr/drivers/i2s/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/i2s/Kconfig.esp32 +/home/miguel/ncs/v3.0.2/zephyr/drivers/i2s/Kconfig.litex +/home/miguel/ncs/v3.0.2/zephyr/drivers/i2s/Kconfig.mcux +/home/miguel/ncs/v3.0.2/zephyr/drivers/i2s/Kconfig.mcux_flexcomm +/home/miguel/ncs/v3.0.2/zephyr/drivers/i2s/Kconfig.nrfx +/home/miguel/ncs/v3.0.2/zephyr/drivers/i2s/Kconfig.sam_ssc +/home/miguel/ncs/v3.0.2/zephyr/drivers/i2s/Kconfig.stm32 +/home/miguel/ncs/v3.0.2/zephyr/drivers/i2s/Kconfig.test +/home/miguel/ncs/v3.0.2/zephyr/drivers/i3c/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/i3c/Kconfig.cdns +/home/miguel/ncs/v3.0.2/zephyr/drivers/i3c/Kconfig.npcx +/home/miguel/ncs/v3.0.2/zephyr/drivers/i3c/Kconfig.nxp +/home/miguel/ncs/v3.0.2/zephyr/drivers/i3c/Kconfig.stm32 +/home/miguel/ncs/v3.0.2/zephyr/drivers/i3c/Kconfig.test +/home/miguel/ncs/v3.0.2/zephyr/drivers/ieee802154/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/ieee802154/Kconfig.b91 +/home/miguel/ncs/v3.0.2/zephyr/drivers/ieee802154/Kconfig.cc1200 +/home/miguel/ncs/v3.0.2/zephyr/drivers/ieee802154/Kconfig.cc13xx_cc26xx +/home/miguel/ncs/v3.0.2/zephyr/drivers/ieee802154/Kconfig.cc2520 +/home/miguel/ncs/v3.0.2/zephyr/drivers/ieee802154/Kconfig.dw1000 +/home/miguel/ncs/v3.0.2/zephyr/drivers/ieee802154/Kconfig.kw41z +/home/miguel/ncs/v3.0.2/zephyr/drivers/ieee802154/Kconfig.mcr20a +/home/miguel/ncs/v3.0.2/zephyr/drivers/ieee802154/Kconfig.nrf5 +/home/miguel/ncs/v3.0.2/zephyr/drivers/ieee802154/Kconfig.rf2xx +/home/miguel/ncs/v3.0.2/zephyr/drivers/ieee802154/Kconfig.uart_pipe +/home/miguel/ncs/v3.0.2/zephyr/drivers/input/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/input/Kconfig.adc_keys +/home/miguel/ncs/v3.0.2/zephyr/drivers/input/Kconfig.analog_axis +/home/miguel/ncs/v3.0.2/zephyr/drivers/input/Kconfig.cap12xx +/home/miguel/ncs/v3.0.2/zephyr/drivers/input/Kconfig.cf1133 +/home/miguel/ncs/v3.0.2/zephyr/drivers/input/Kconfig.chsc6x +/home/miguel/ncs/v3.0.2/zephyr/drivers/input/Kconfig.cst816s +/home/miguel/ncs/v3.0.2/zephyr/drivers/input/Kconfig.esp32 +/home/miguel/ncs/v3.0.2/zephyr/drivers/input/Kconfig.evdev +/home/miguel/ncs/v3.0.2/zephyr/drivers/input/Kconfig.ft5336 +/home/miguel/ncs/v3.0.2/zephyr/drivers/input/Kconfig.gpio_kbd_matrix +/home/miguel/ncs/v3.0.2/zephyr/drivers/input/Kconfig.gpio_keys +/home/miguel/ncs/v3.0.2/zephyr/drivers/input/Kconfig.gpio_qdec +/home/miguel/ncs/v3.0.2/zephyr/drivers/input/Kconfig.gt911 +/home/miguel/ncs/v3.0.2/zephyr/drivers/input/Kconfig.ili2132a +/home/miguel/ncs/v3.0.2/zephyr/drivers/input/Kconfig.it8801 +/home/miguel/ncs/v3.0.2/zephyr/drivers/input/Kconfig.it8xxx2 +/home/miguel/ncs/v3.0.2/zephyr/drivers/input/Kconfig.kbd_matrix +/home/miguel/ncs/v3.0.2/zephyr/drivers/input/Kconfig.npcx +/home/miguel/ncs/v3.0.2/zephyr/drivers/input/Kconfig.nunchuk +/home/miguel/ncs/v3.0.2/zephyr/drivers/input/Kconfig.pat912x +/home/miguel/ncs/v3.0.2/zephyr/drivers/input/Kconfig.paw32xx +/home/miguel/ncs/v3.0.2/zephyr/drivers/input/Kconfig.pinnacle +/home/miguel/ncs/v3.0.2/zephyr/drivers/input/Kconfig.pmw3610 +/home/miguel/ncs/v3.0.2/zephyr/drivers/input/Kconfig.sbus +/home/miguel/ncs/v3.0.2/zephyr/drivers/input/Kconfig.sdl +/home/miguel/ncs/v3.0.2/zephyr/drivers/input/Kconfig.stmpe811 +/home/miguel/ncs/v3.0.2/zephyr/drivers/input/Kconfig.touch +/home/miguel/ncs/v3.0.2/zephyr/drivers/input/Kconfig.xec +/home/miguel/ncs/v3.0.2/zephyr/drivers/input/Kconfig.xpt2046 +/home/miguel/ncs/v3.0.2/zephyr/drivers/interrupt_controller/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/interrupt_controller/Kconfig.cavs +/home/miguel/ncs/v3.0.2/zephyr/drivers/interrupt_controller/Kconfig.clic +/home/miguel/ncs/v3.0.2/zephyr/drivers/interrupt_controller/Kconfig.dw +/home/miguel/ncs/v3.0.2/zephyr/drivers/interrupt_controller/Kconfig.esp32 +/home/miguel/ncs/v3.0.2/zephyr/drivers/interrupt_controller/Kconfig.esp32c3 +/home/miguel/ncs/v3.0.2/zephyr/drivers/interrupt_controller/Kconfig.gd32_exti +/home/miguel/ncs/v3.0.2/zephyr/drivers/interrupt_controller/Kconfig.gic +/home/miguel/ncs/v3.0.2/zephyr/drivers/interrupt_controller/Kconfig.intel_vtd +/home/miguel/ncs/v3.0.2/zephyr/drivers/interrupt_controller/Kconfig.it8xxx2 +/home/miguel/ncs/v3.0.2/zephyr/drivers/interrupt_controller/Kconfig.loapic +/home/miguel/ncs/v3.0.2/zephyr/drivers/interrupt_controller/Kconfig.mtk_adsp +/home/miguel/ncs/v3.0.2/zephyr/drivers/interrupt_controller/Kconfig.multilevel +/home/miguel/ncs/v3.0.2/zephyr/drivers/interrupt_controller/Kconfig.multilevel.aggregator_template +/home/miguel/ncs/v3.0.2/zephyr/drivers/interrupt_controller/Kconfig.npcx +/home/miguel/ncs/v3.0.2/zephyr/drivers/interrupt_controller/Kconfig.nxp_irqsteer +/home/miguel/ncs/v3.0.2/zephyr/drivers/interrupt_controller/Kconfig.nxp_pint +/home/miguel/ncs/v3.0.2/zephyr/drivers/interrupt_controller/Kconfig.nxp_s32 +/home/miguel/ncs/v3.0.2/zephyr/drivers/interrupt_controller/Kconfig.plic +/home/miguel/ncs/v3.0.2/zephyr/drivers/interrupt_controller/Kconfig.renesas_ra +/home/miguel/ncs/v3.0.2/zephyr/drivers/interrupt_controller/Kconfig.rv32m1 +/home/miguel/ncs/v3.0.2/zephyr/drivers/interrupt_controller/Kconfig.sam0 +/home/miguel/ncs/v3.0.2/zephyr/drivers/interrupt_controller/Kconfig.shared_irq +/home/miguel/ncs/v3.0.2/zephyr/drivers/interrupt_controller/Kconfig.stm32 +/home/miguel/ncs/v3.0.2/zephyr/drivers/interrupt_controller/Kconfig.vim +/home/miguel/ncs/v3.0.2/zephyr/drivers/interrupt_controller/Kconfig.wch_pfic +/home/miguel/ncs/v3.0.2/zephyr/drivers/interrupt_controller/Kconfig.xec +/home/miguel/ncs/v3.0.2/zephyr/drivers/interrupt_controller/Kconfig.xmc4xxx +/home/miguel/ncs/v3.0.2/zephyr/drivers/ipm/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/ipm/Kconfig.imx +/home/miguel/ncs/v3.0.2/zephyr/drivers/ipm/Kconfig.intel_adsp +/home/miguel/ncs/v3.0.2/zephyr/drivers/ipm/Kconfig.ivshmem +/home/miguel/ncs/v3.0.2/zephyr/drivers/ipm/Kconfig.nrfx +/home/miguel/ncs/v3.0.2/zephyr/drivers/ipm/Kconfig.nrfx_ipc_channel +/home/miguel/ncs/v3.0.2/zephyr/drivers/ipm/Kconfig.sedi +/home/miguel/ncs/v3.0.2/zephyr/drivers/ipm/Kconfig.stm32 +/home/miguel/ncs/v3.0.2/zephyr/drivers/kscan/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/kscan/Kconfig.input +/home/miguel/ncs/v3.0.2/zephyr/drivers/led/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/led/Kconfig.gpio +/home/miguel/ncs/v3.0.2/zephyr/drivers/led/Kconfig.ht16k33 +/home/miguel/ncs/v3.0.2/zephyr/drivers/led/Kconfig.is31fl3194 +/home/miguel/ncs/v3.0.2/zephyr/drivers/led/Kconfig.is31fl3216a +/home/miguel/ncs/v3.0.2/zephyr/drivers/led/Kconfig.is31fl3733 +/home/miguel/ncs/v3.0.2/zephyr/drivers/led/Kconfig.lp3943 +/home/miguel/ncs/v3.0.2/zephyr/drivers/led/Kconfig.lp50xx +/home/miguel/ncs/v3.0.2/zephyr/drivers/led/Kconfig.lp5562 +/home/miguel/ncs/v3.0.2/zephyr/drivers/led/Kconfig.lp5569 +/home/miguel/ncs/v3.0.2/zephyr/drivers/led/Kconfig.ncp5623 +/home/miguel/ncs/v3.0.2/zephyr/drivers/led/Kconfig.npm1300 +/home/miguel/ncs/v3.0.2/zephyr/drivers/led/Kconfig.pca9633 +/home/miguel/ncs/v3.0.2/zephyr/drivers/led/Kconfig.pwm +/home/miguel/ncs/v3.0.2/zephyr/drivers/led/Kconfig.tlc59108 +/home/miguel/ncs/v3.0.2/zephyr/drivers/led/Kconfig.xec +/home/miguel/ncs/v3.0.2/zephyr/drivers/led_strip/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/led_strip/Kconfig.apa102 +/home/miguel/ncs/v3.0.2/zephyr/drivers/led_strip/Kconfig.lpd880x +/home/miguel/ncs/v3.0.2/zephyr/drivers/led_strip/Kconfig.tlc5971 +/home/miguel/ncs/v3.0.2/zephyr/drivers/led_strip/Kconfig.tlc59731 +/home/miguel/ncs/v3.0.2/zephyr/drivers/led_strip/Kconfig.ws2812 +/home/miguel/ncs/v3.0.2/zephyr/drivers/lora/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/lora/Kconfig.rylrxxx +/home/miguel/ncs/v3.0.2/zephyr/drivers/lora/Kconfig.sx12xx +/home/miguel/ncs/v3.0.2/zephyr/drivers/mbox/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/mbox/Kconfig.andes +/home/miguel/ncs/v3.0.2/zephyr/drivers/mbox/Kconfig.esp32 +/home/miguel/ncs/v3.0.2/zephyr/drivers/mbox/Kconfig.ivshmem +/home/miguel/ncs/v3.0.2/zephyr/drivers/mbox/Kconfig.nrf_bellboard +/home/miguel/ncs/v3.0.2/zephyr/drivers/mbox/Kconfig.nrf_vevif_event +/home/miguel/ncs/v3.0.2/zephyr/drivers/mbox/Kconfig.nrf_vevif_task +/home/miguel/ncs/v3.0.2/zephyr/drivers/mbox/Kconfig.nrfx +/home/miguel/ncs/v3.0.2/zephyr/drivers/mbox/Kconfig.nxp_imx +/home/miguel/ncs/v3.0.2/zephyr/drivers/mbox/Kconfig.nxp_mailbox +/home/miguel/ncs/v3.0.2/zephyr/drivers/mbox/Kconfig.nxp_s32 +/home/miguel/ncs/v3.0.2/zephyr/drivers/mbox/Kconfig.stm32_hsem +/home/miguel/ncs/v3.0.2/zephyr/drivers/mdio/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/mdio/Kconfig.adin2111 +/home/miguel/ncs/v3.0.2/zephyr/drivers/mdio/Kconfig.dwcxgmac +/home/miguel/ncs/v3.0.2/zephyr/drivers/mdio/Kconfig.esp32 +/home/miguel/ncs/v3.0.2/zephyr/drivers/mdio/Kconfig.gpio +/home/miguel/ncs/v3.0.2/zephyr/drivers/mdio/Kconfig.litex +/home/miguel/ncs/v3.0.2/zephyr/drivers/mdio/Kconfig.nxp_enet +/home/miguel/ncs/v3.0.2/zephyr/drivers/mdio/Kconfig.nxp_enet_qos +/home/miguel/ncs/v3.0.2/zephyr/drivers/mdio/Kconfig.nxp_imx_netc +/home/miguel/ncs/v3.0.2/zephyr/drivers/mdio/Kconfig.nxp_s32_gmac +/home/miguel/ncs/v3.0.2/zephyr/drivers/mdio/Kconfig.nxp_s32_netc +/home/miguel/ncs/v3.0.2/zephyr/drivers/mdio/Kconfig.renesas_ra +/home/miguel/ncs/v3.0.2/zephyr/drivers/mdio/Kconfig.sam +/home/miguel/ncs/v3.0.2/zephyr/drivers/mdio/Kconfig.stm32_hal +/home/miguel/ncs/v3.0.2/zephyr/drivers/mdio/Kconfig.xmc4xxx +/home/miguel/ncs/v3.0.2/zephyr/drivers/memc/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/memc/Kconfig.mcux +/home/miguel/ncs/v3.0.2/zephyr/drivers/memc/Kconfig.mspi +/home/miguel/ncs/v3.0.2/zephyr/drivers/memc/Kconfig.nxp_s32 +/home/miguel/ncs/v3.0.2/zephyr/drivers/memc/Kconfig.renesas_ra +/home/miguel/ncs/v3.0.2/zephyr/drivers/memc/Kconfig.sam +/home/miguel/ncs/v3.0.2/zephyr/drivers/memc/Kconfig.sifive +/home/miguel/ncs/v3.0.2/zephyr/drivers/memc/Kconfig.smartbond +/home/miguel/ncs/v3.0.2/zephyr/drivers/memc/Kconfig.stm32 +/home/miguel/ncs/v3.0.2/zephyr/drivers/mfd/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/mfd/Kconfig.ad559x +/home/miguel/ncs/v3.0.2/zephyr/drivers/mfd/Kconfig.adp5585 +/home/miguel/ncs/v3.0.2/zephyr/drivers/mfd/Kconfig.aw9523b +/home/miguel/ncs/v3.0.2/zephyr/drivers/mfd/Kconfig.axp192 +/home/miguel/ncs/v3.0.2/zephyr/drivers/mfd/Kconfig.bd8lb600fs +/home/miguel/ncs/v3.0.2/zephyr/drivers/mfd/Kconfig.ds3231 +/home/miguel/ncs/v3.0.2/zephyr/drivers/mfd/Kconfig.it8801 +/home/miguel/ncs/v3.0.2/zephyr/drivers/mfd/Kconfig.lpflexcomm +/home/miguel/ncs/v3.0.2/zephyr/drivers/mfd/Kconfig.max20335 +/home/miguel/ncs/v3.0.2/zephyr/drivers/mfd/Kconfig.max31790 +/home/miguel/ncs/v3.0.2/zephyr/drivers/mfd/Kconfig.nct38xx +/home/miguel/ncs/v3.0.2/zephyr/drivers/mfd/Kconfig.npm1300 +/home/miguel/ncs/v3.0.2/zephyr/drivers/mfd/Kconfig.npm2100 +/home/miguel/ncs/v3.0.2/zephyr/drivers/mfd/Kconfig.npm6001 +/home/miguel/ncs/v3.0.2/zephyr/drivers/mfd/Kconfig.tle9104 +/home/miguel/ncs/v3.0.2/zephyr/drivers/mipi_dbi/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/mipi_dbi/Kconfig.bitbang +/home/miguel/ncs/v3.0.2/zephyr/drivers/mipi_dbi/Kconfig.nxp_flexio_lcdif +/home/miguel/ncs/v3.0.2/zephyr/drivers/mipi_dbi/Kconfig.nxp_lcdic +/home/miguel/ncs/v3.0.2/zephyr/drivers/mipi_dbi/Kconfig.smartbond +/home/miguel/ncs/v3.0.2/zephyr/drivers/mipi_dbi/Kconfig.spi +/home/miguel/ncs/v3.0.2/zephyr/drivers/mipi_dbi/Kconfig.stm32_fmc +/home/miguel/ncs/v3.0.2/zephyr/drivers/mipi_dsi/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/mipi_dsi/Kconfig.mcux +/home/miguel/ncs/v3.0.2/zephyr/drivers/mipi_dsi/Kconfig.renesas_ra +/home/miguel/ncs/v3.0.2/zephyr/drivers/mipi_dsi/Kconfig.stm32 +/home/miguel/ncs/v3.0.2/zephyr/drivers/mipi_dsi/Kconfig.test +/home/miguel/ncs/v3.0.2/zephyr/drivers/misc/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/misc/coresight/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/misc/devmux/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/misc/ft8xx/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/misc/grove_lcd_rgb/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/misc/mcux_flexio/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/misc/nordic_vpr_launcher/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/misc/nxp_s32_emios/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/misc/pio_rpi_pico/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/misc/renesas_ra_external_interrupt/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/misc/timeaware_gpio/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/misc/timeaware_gpio/Kconfig.timeaware_gpio_intel +/home/miguel/ncs/v3.0.2/zephyr/drivers/mm/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/modem/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/modem/Kconfig.at_shell +/home/miguel/ncs/v3.0.2/zephyr/drivers/modem/Kconfig.cellular +/home/miguel/ncs/v3.0.2/zephyr/drivers/modem/Kconfig.hl7800 +/home/miguel/ncs/v3.0.2/zephyr/drivers/modem/Kconfig.quectel-bg9x +/home/miguel/ncs/v3.0.2/zephyr/drivers/modem/Kconfig.simcom-sim7080 +/home/miguel/ncs/v3.0.2/zephyr/drivers/modem/Kconfig.ublox-sara-r4 +/home/miguel/ncs/v3.0.2/zephyr/drivers/modem/Kconfig.wncm14a2a +/home/miguel/ncs/v3.0.2/zephyr/drivers/mspi/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/mspi/Kconfig.ambiq +/home/miguel/ncs/v3.0.2/zephyr/drivers/mspi/Kconfig.dw +/home/miguel/ncs/v3.0.2/zephyr/drivers/mspi/Kconfig.mspi_emul +/home/miguel/ncs/v3.0.2/zephyr/drivers/net/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/pcie/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/pcie/endpoint/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/pcie/endpoint/Kconfig.iproc +/home/miguel/ncs/v3.0.2/zephyr/drivers/pcie/host/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/peci/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/peci/Kconfig.it8xxx2 +/home/miguel/ncs/v3.0.2/zephyr/drivers/peci/Kconfig.npcx +/home/miguel/ncs/v3.0.2/zephyr/drivers/peci/Kconfig.xec +/home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig.ambiq +/home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig.b91 +/home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig.cc13xx_cc26xx +/home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig.emsdp +/home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig.ene +/home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig.eos_s3 +/home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig.esp32 +/home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig.gd32 +/home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig.gecko +/home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig.ifx_cat1 +/home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig.imx +/home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig.it8xxx2 +/home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig.lpc_iocon +/home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig.max32 +/home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig.mci_io_mux +/home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig.mec5 +/home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig.npcx +/home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig.nrf +/home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig.numaker +/home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig.numicro +/home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig.nxp_port +/home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig.nxp_s32 +/home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig.realtek_rts5912 +/home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig.rpi_pico +/home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig.rv32m1 +/home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig.sam +/home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig.sam0 +/home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig.sifive +/home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig.silabs_dbus +/home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig.stm32 +/home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig.sy1xx +/home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig.ti_cc32xx +/home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig.ti_k3 +/home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig.wch_afio +/home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig.xec +/home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig.xlnx +/home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig.xmc4xxx +/home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/Kconfig.zynqmp +/home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/renesas/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/renesas/ra/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/renesas/rcar/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/renesas/rz/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/pinctrl/renesas/smartbond/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/pm_cpu_ops/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/power_domain/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/ps2/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/ps2/Kconfig.npcx +/home/miguel/ncs/v3.0.2/zephyr/drivers/ps2/Kconfig.xec +/home/miguel/ncs/v3.0.2/zephyr/drivers/ptp_clock/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/ptp_clock/Kconfig.nxp_enet +/home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.b91 +/home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.cc13xx_cc26xx_timer +/home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.ene +/home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.esp32 +/home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.fake +/home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.gd32 +/home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.gecko +/home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.ifx_cat1 +/home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.imx +/home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.intel_blinky +/home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.it8801 +/home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.it8xxx2 +/home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.litex +/home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.max31790 +/home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.max32 +/home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.mcux +/home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.mcux_ctimer +/home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.mcux_ftm +/home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.mcux_pwt +/home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.mcux_qtmr +/home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.mcux_sctimer +/home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.mcux_tpm +/home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.npcx +/home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.nrf_sw +/home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.nrfx +/home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.numaker +/home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.nxp_flexio +/home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.nxp_s32_emios +/home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.pca9685 +/home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.rcar +/home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.renesas_ra +/home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.rpi_pico +/home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.rv32m1_tpm +/home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.sam +/home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.sam0 +/home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.sam0_tc +/home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.sifive +/home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.stm32 +/home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.test +/home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.xec +/home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.xlnx +/home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.xmc4xxx_ccu4 +/home/miguel/ncs/v3.0.2/zephyr/drivers/pwm/Kconfig.xmc4xxx_ccu8 +/home/miguel/ncs/v3.0.2/zephyr/drivers/regulator/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/regulator/Kconfig.adp5360 +/home/miguel/ncs/v3.0.2/zephyr/drivers/regulator/Kconfig.axp192 +/home/miguel/ncs/v3.0.2/zephyr/drivers/regulator/Kconfig.cp9314 +/home/miguel/ncs/v3.0.2/zephyr/drivers/regulator/Kconfig.da1469x +/home/miguel/ncs/v3.0.2/zephyr/drivers/regulator/Kconfig.fake +/home/miguel/ncs/v3.0.2/zephyr/drivers/regulator/Kconfig.fixed +/home/miguel/ncs/v3.0.2/zephyr/drivers/regulator/Kconfig.gpio +/home/miguel/ncs/v3.0.2/zephyr/drivers/regulator/Kconfig.max20335 +/home/miguel/ncs/v3.0.2/zephyr/drivers/regulator/Kconfig.mpm54304 +/home/miguel/ncs/v3.0.2/zephyr/drivers/regulator/Kconfig.npm1100 +/home/miguel/ncs/v3.0.2/zephyr/drivers/regulator/Kconfig.npm1300 +/home/miguel/ncs/v3.0.2/zephyr/drivers/regulator/Kconfig.npm2100 +/home/miguel/ncs/v3.0.2/zephyr/drivers/regulator/Kconfig.npm6001 +/home/miguel/ncs/v3.0.2/zephyr/drivers/regulator/Kconfig.nxp_vref +/home/miguel/ncs/v3.0.2/zephyr/drivers/regulator/Kconfig.pca9420 +/home/miguel/ncs/v3.0.2/zephyr/drivers/regulator/Kconfig.rpi_pico +/home/miguel/ncs/v3.0.2/zephyr/drivers/reset/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/reset/Kconfig.aspeed +/home/miguel/ncs/v3.0.2/zephyr/drivers/reset/Kconfig.gd32 +/home/miguel/ncs/v3.0.2/zephyr/drivers/reset/Kconfig.intel_socfpga +/home/miguel/ncs/v3.0.2/zephyr/drivers/reset/Kconfig.lpc_syscon +/home/miguel/ncs/v3.0.2/zephyr/drivers/reset/Kconfig.npcx +/home/miguel/ncs/v3.0.2/zephyr/drivers/reset/Kconfig.numaker +/home/miguel/ncs/v3.0.2/zephyr/drivers/reset/Kconfig.nxp_rstctl +/home/miguel/ncs/v3.0.2/zephyr/drivers/reset/Kconfig.rpi_pico +/home/miguel/ncs/v3.0.2/zephyr/drivers/reset/Kconfig.stm32 +/home/miguel/ncs/v3.0.2/zephyr/drivers/retained_mem/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/retained_mem/Kconfig.nrf +/home/miguel/ncs/v3.0.2/zephyr/drivers/retained_mem/Kconfig.zephyr +/home/miguel/ncs/v3.0.2/zephyr/drivers/rtc/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/rtc/Kconfig.am1805 +/home/miguel/ncs/v3.0.2/zephyr/drivers/rtc/Kconfig.ambiq +/home/miguel/ncs/v3.0.2/zephyr/drivers/rtc/Kconfig.ds1307 +/home/miguel/ncs/v3.0.2/zephyr/drivers/rtc/Kconfig.ds3231 +/home/miguel/ncs/v3.0.2/zephyr/drivers/rtc/Kconfig.emul +/home/miguel/ncs/v3.0.2/zephyr/drivers/rtc/Kconfig.fake +/home/miguel/ncs/v3.0.2/zephyr/drivers/rtc/Kconfig.ifx_cat1 +/home/miguel/ncs/v3.0.2/zephyr/drivers/rtc/Kconfig.mc146818 +/home/miguel/ncs/v3.0.2/zephyr/drivers/rtc/Kconfig.numaker +/home/miguel/ncs/v3.0.2/zephyr/drivers/rtc/Kconfig.nxp_irtc +/home/miguel/ncs/v3.0.2/zephyr/drivers/rtc/Kconfig.pcf8523 +/home/miguel/ncs/v3.0.2/zephyr/drivers/rtc/Kconfig.pcf8563 +/home/miguel/ncs/v3.0.2/zephyr/drivers/rtc/Kconfig.rpi_pico +/home/miguel/ncs/v3.0.2/zephyr/drivers/rtc/Kconfig.rv3028 +/home/miguel/ncs/v3.0.2/zephyr/drivers/rtc/Kconfig.rv8263 +/home/miguel/ncs/v3.0.2/zephyr/drivers/rtc/Kconfig.sam +/home/miguel/ncs/v3.0.2/zephyr/drivers/rtc/Kconfig.smartbond +/home/miguel/ncs/v3.0.2/zephyr/drivers/rtc/Kconfig.stm32 +/home/miguel/ncs/v3.0.2/zephyr/drivers/rtc/Kconfig.xmc4xxx +/home/miguel/ncs/v3.0.2/zephyr/drivers/sdhc/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sdhc/Kconfig.esp32 +/home/miguel/ncs/v3.0.2/zephyr/drivers/sdhc/Kconfig.ifx_cat1 +/home/miguel/ncs/v3.0.2/zephyr/drivers/sdhc/Kconfig.imx +/home/miguel/ncs/v3.0.2/zephyr/drivers/sdhc/Kconfig.intel +/home/miguel/ncs/v3.0.2/zephyr/drivers/sdhc/Kconfig.mcux_sdif +/home/miguel/ncs/v3.0.2/zephyr/drivers/sdhc/Kconfig.rcar +/home/miguel/ncs/v3.0.2/zephyr/drivers/sdhc/Kconfig.renesas_ra +/home/miguel/ncs/v3.0.2/zephyr/drivers/sdhc/Kconfig.sam_hsmci +/home/miguel/ncs/v3.0.2/zephyr/drivers/sdhc/Kconfig.sdhc_cdns +/home/miguel/ncs/v3.0.2/zephyr/drivers/sdhc/Kconfig.spi +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/Kconfig.trigger_template +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/a01nyub/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/adi/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/adi/adltc2990/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/adi/adt7310/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/adi/adt7420/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/adi/adxl345/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/adi/adxl362/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/adi/adxl367/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/adi/adxl372/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/amd_sb_tsi/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/amg88xx/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ams/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ams/ams_as5600/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ams/ams_iAQcore/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ams/ccs811/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ams/ens210/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ams/tcs3400/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ams/tmd2620/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ams/tsl2540/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ams/tsl2561/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ams/tsl2591/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/aosong/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/aosong/ags10/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/aosong/dht/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/aosong/dht20/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/apds9253/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/apds9306/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/apds9960/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/asahi_kasei/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/asahi_kasei/ak8975/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/asahi_kasei/akm09918c/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/bosch/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/bosch/bma280/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/bosch/bma4xx/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/bosch/bmc150_magn/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/bosch/bme280/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/bosch/bme680/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/bosch/bmg160/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/bosch/bmi08x/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/bosch/bmi160/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/bosch/bmi270/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/bosch/bmi323/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/bosch/bmm150/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/bosch/bmm350/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/bosch/bmp180/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/bosch/bmp388/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/bosch/bmp581/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/current_amp/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ene_tach_kb1200/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ens160/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/espressif/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/espressif/esp32_temp/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/espressif/pcnt_esp32/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/explorir_m/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/f75303/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/fcx_mldx5/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/grow_r502a/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/hc_sr04/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/honeywell/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/honeywell/hmc5883l/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/honeywell/mpr/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/honeywell/sm351lt/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/hp206c/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/infineon/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/infineon/dps310/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/infineon/tle9104/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/infineon/xmc4xxx_temp/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ist8310/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ite/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ite/ite_tach_it8xxx2/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ite/ite_vcmp_it8xxx2/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/jedec/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/jedec/jc42/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/lm35/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/lm75/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/lm77/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ltrf216a/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/maxim/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/maxim/ds18b20/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/maxim/ds3231/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/maxim/max17055/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/maxim/max17262/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/maxim/max30101/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/maxim/max31790/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/maxim/max31855/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/maxim/max31865/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/maxim/max31875/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/maxim/max44009/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/maxim/max6675/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/meas/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/meas/ms5607/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/meas/ms5837/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/memsic/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/memsic/mc3419/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/memsic/mmc56x3/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/mhz19b/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/microchip/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/microchip/mchp_tach_xec/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/microchip/mcp9600/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/microchip/mcp970x/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/microchip/tcn75a/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/nct75/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/nordic/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/nordic/npm1300_charger/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/nordic/npm2100_vbat/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/nordic/qdec_nrfx/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/nordic/temp/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ntc_thermistor/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/nuvoton/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/nuvoton/nuvoton_adc_cmp_npcx/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/nuvoton/nuvoton_tach_npcx/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/nxp/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/nxp/fxas21002/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/nxp/fxls8974/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/nxp/fxos8700/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/nxp/mcux_acmp/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/nxp/mcux_lpcmp/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/nxp/nxp_kinetis_temp/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/nxp/nxp_tempmon/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/nxp/p3t1755/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/nxp/qdec_mcux/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/nxp/qdec_nxp_s32/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/pms7003/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/qdec_sam/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/renesas/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/renesas/hs300x/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/renesas/hs400x/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/renesas/isl29035/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/rohm/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/rohm/bd8lb600fs/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/rohm/bh1750/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/rpi_pico_temp/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/s11059/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/sbs_gauge/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/seeed/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/seeed/grove/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/seeed/hm330x/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/sensirion/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/sensirion/scd4x/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/sensirion/sgp40/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/sensirion/sht3xd/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/sensirion/sht4x/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/sensirion/shtcx/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/sensirion/sts4x/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/silabs/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/silabs/si7006/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/silabs/si7055/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/silabs/si7060/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/silabs/si7210/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/hts221/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/i3g4250d/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/iis2dh/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/iis2dlpc/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/iis2iclx/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/iis2mdc/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/iis328dq/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/iis3dhhc/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/ism330dhcx/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/lis2de12/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/lis2dh/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/lis2ds12/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/lis2du12/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/lis2dux12/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/lis2dw12/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/lis2mdl/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/lis3mdl/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/lps22hb/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/lps22hh/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/lps25hb/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/lps2xdf/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/lsm303dlhc_magn/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/lsm6ds0/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/lsm6dsl/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/lsm6dso/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/lsm6dso16is/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/lsm6dsv16x/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/lsm9ds0_gyro/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/lsm9ds0_mfd/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/lsm9ds1/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/qdec_stm32/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/stm32_digi_temp/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/stm32_temp/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/stm32_vbat/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/stm32_vref/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/stts22h/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/stts751/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/vl53l0x/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/st/vl53l1x/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/sx9500/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/tdk/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/tdk/icm42605/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/tdk/icm42670/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/tdk/icm42688/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/tdk/icp10125/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/tdk/mpu6050/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/tdk/mpu9250/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/th02/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ti/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ti/bq274xx/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ti/fdc2x1x/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ti/ina219/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ti/ina226/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ti/ina23x/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ti/ina3221/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ti/lm95234/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ti/opt3001/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ti/ti_hdc/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ti/ti_hdc20xx/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ti/tmag5170/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ti/tmag5273/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ti/tmp007/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ti/tmp1075/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ti/tmp108/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ti/tmp112/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ti/tmp114/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ti/tmp116/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/ti/tmp435/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/tsic_xx6/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/veaa_x_3/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/vishay/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/vishay/vcnl36825t/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/vishay/vcnl4040/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/vishay/veml6031/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/vishay/veml7700/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/voltage_divider/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/wsen/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/wsen/wsen_hids_2525020210002/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sensor/xbr818/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.altera +/home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.altera_jtag +/home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.apbuart +/home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.b91 +/home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.bcm2711 +/home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.bt +/home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.cc13xx_cc26xx +/home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.cc32xx +/home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.cdns +/home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.cmsdk_apb +/home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.efinix_sapphire +/home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.emul +/home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.ene +/home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.esp32 +/home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.gd32 +/home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.gecko +/home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.hostlink +/home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.ifx_cat1 +/home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.imx +/home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.intel_lw +/home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.it8xxx2 +/home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.leuart_gecko +/home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.litex +/home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.lpc11u6x +/home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.max32 +/home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.mcux +/home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.mcux_flexcomm +/home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.mcux_iuart +/home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.mcux_lpsci +/home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.mcux_lpuart +/home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.miv +/home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.msp432p4xx +/home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.native_posix +/home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.native_tty +/home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.neorv32 +/home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.npcx +/home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.nrfx +/home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.nrfx_uart_instance +/home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.ns16550 +/home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.numaker +/home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.numicro +/home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.nxp_s32 +/home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.opentitan +/home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.pl011 +/home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.psoc6 +/home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.ql_usbserialport_s3b +/home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.rcar +/home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.realtek_rts5912 +/home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.renesas_ra +/home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.renesas_ra8 +/home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.renesas_rz +/home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.rpi_pico +/home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.rtt +/home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.rv32m1_lpuart +/home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.rzt2m +/home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.sam0 +/home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.sedi +/home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.si32 +/home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.sifive +/home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.smartbond +/home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.stellaris +/home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.stm32 +/home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.sy1xx +/home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.test +/home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.uart_sam +/home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.usart_sam +/home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.wch_usart +/home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.xec +/home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.xen +/home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.xlnx +/home/miguel/ncs/v3.0.2/zephyr/drivers/serial/Kconfig.xmc4xxx +/home/miguel/ncs/v3.0.2/zephyr/drivers/sip_svc/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/sip_svc/Kconfig.sip_smc_agilex +/home/miguel/ncs/v3.0.2/zephyr/drivers/smbus/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.ambiq +/home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.andes_atcspi200 +/home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.b91 +/home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.bitbang +/home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.cc13xx_cc26xx +/home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.dw +/home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.esp32 +/home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.gd32 +/home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.gecko_eusart +/home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.gecko_usart +/home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.grlib_spimctrl +/home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.ifx_cat1 +/home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.it8xxx2 +/home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.litex +/home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.max32 +/home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.mchp_mss +/home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.mchp_mss_qspi +/home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.mcux_dspi +/home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.mcux_ecspi +/home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.mcux_flexcomm +/home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.mcux_flexio +/home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.mcux_lpspi +/home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.npcx +/home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.nrfx +/home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.numaker +/home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.nxp_s32 +/home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.oc_simple +/home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.opentitan +/home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.pl022 +/home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.psoc6 +/home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.pw +/home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.renesas_ra +/home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.renesas_ra8 +/home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.rpi_pico +/home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.rv32m1_lpspi +/home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.sam +/home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.sam0 +/home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.sedi +/home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.sifive +/home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.smartbond +/home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.spi_emul +/home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.stm32 +/home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.test +/home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.xec_qmspi +/home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.xlnx +/home/miguel/ncs/v3.0.2/zephyr/drivers/spi/Kconfig.xmc4xxx +/home/miguel/ncs/v3.0.2/zephyr/drivers/stepper/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/stepper/Kconfig.fake +/home/miguel/ncs/v3.0.2/zephyr/drivers/stepper/Kconfig.gpio +/home/miguel/ncs/v3.0.2/zephyr/drivers/stepper/Kconfig.stepper_event_template +/home/miguel/ncs/v3.0.2/zephyr/drivers/stepper/adi_tmc/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/stepper/adi_tmc/Kconfig.tmc22xx +/home/miguel/ncs/v3.0.2/zephyr/drivers/stepper/adi_tmc/Kconfig.tmc5041 +/home/miguel/ncs/v3.0.2/zephyr/drivers/stepper/adi_tmc/Kconfig.tmc_rampgen_template +/home/miguel/ncs/v3.0.2/zephyr/drivers/stepper/step_dir/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/stepper/ti/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/stepper/ti/Kconfig.drv8424 +/home/miguel/ncs/v3.0.2/zephyr/drivers/syscon/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/tee/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/tee/optee/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig.altera_avalon +/home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig.ambiq +/home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig.arcv2 +/home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig.arm_arch +/home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig.cavs +/home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig.cc13xx_cc26xx_rtc +/home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig.cortex_m_systick +/home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig.esp32 +/home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig.gecko +/home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig.ite_it8xxx2 +/home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig.leon_gptimer +/home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig.litex +/home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig.mchp_xec_rtos +/home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig.mcux_gpt +/home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig.mcux_lptmr +/home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig.mcux_os +/home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig.mec5 +/home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig.mips_cp0 +/home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig.mtk_adsp +/home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig.native_posix +/home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig.npcx_itim +/home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig.nrf_grtc +/home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig.nrf_rtc +/home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig.nrf_xrtc +/home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig.rcar_cmt +/home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig.realtek_rts5912_rtmr +/home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig.riscv_machine +/home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig.rv32m1_lptmr +/home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig.sam0_rtc +/home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig.silabs +/home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig.smartbond +/home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig.stm32_lptim +/home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig.sy1xx_sys_timer +/home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig.ti_dm_timer +/home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig.wch_ch32v00x +/home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig.x86 +/home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig.xlnx_psttc +/home/miguel/ncs/v3.0.2/zephyr/drivers/timer/Kconfig.xtensa +/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/bc12/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/bc12/Kconfig.pi3usb9201 +/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/common/nrf_usbd_common/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/device/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/udc/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/udc/Kconfig.ambiq +/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/udc/Kconfig.dwc2 +/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/udc/Kconfig.it82xx2 +/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/udc/Kconfig.kinetis +/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/udc/Kconfig.mcux +/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/udc/Kconfig.nrf +/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/udc/Kconfig.numaker +/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/udc/Kconfig.renesas_ra +/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/udc/Kconfig.rpi_pico +/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/udc/Kconfig.skeleton +/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/udc/Kconfig.smartbond +/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/udc/Kconfig.stm32 +/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/udc/Kconfig.virtual +/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/uhc/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/uhc/Kconfig.max3421e +/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/uhc/Kconfig.virtual +/home/miguel/ncs/v3.0.2/zephyr/drivers/usb/uvb/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/usb_c/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/usb_c/ppc/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/usb_c/ppc/Kconfig.numaker +/home/miguel/ncs/v3.0.2/zephyr/drivers/usb_c/ppc/Kconfig.nxp +/home/miguel/ncs/v3.0.2/zephyr/drivers/usb_c/tcpc/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/usb_c/tcpc/Kconfig.tcpc_numaker +/home/miguel/ncs/v3.0.2/zephyr/drivers/usb_c/tcpc/Kconfig.tcpc_ps8xxx +/home/miguel/ncs/v3.0.2/zephyr/drivers/usb_c/tcpc/Kconfig.tcpc_stm32 +/home/miguel/ncs/v3.0.2/zephyr/drivers/usb_c/tcpc/Kconfig.tcpc_tcpci +/home/miguel/ncs/v3.0.2/zephyr/drivers/usb_c/vbus/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/usb_c/vbus/Kconfig.numaker +/home/miguel/ncs/v3.0.2/zephyr/drivers/usb_c/vbus/Kconfig.usbc_vbus_adc +/home/miguel/ncs/v3.0.2/zephyr/drivers/usb_c/vbus/Kconfig.usbc_vbus_tcpci +/home/miguel/ncs/v3.0.2/zephyr/drivers/video/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/video/Kconfig.emul_imager +/home/miguel/ncs/v3.0.2/zephyr/drivers/video/Kconfig.emul_rx +/home/miguel/ncs/v3.0.2/zephyr/drivers/video/Kconfig.esp32_dvp +/home/miguel/ncs/v3.0.2/zephyr/drivers/video/Kconfig.gc2145 +/home/miguel/ncs/v3.0.2/zephyr/drivers/video/Kconfig.mcux_csi +/home/miguel/ncs/v3.0.2/zephyr/drivers/video/Kconfig.mcux_mipi_csi2rx +/home/miguel/ncs/v3.0.2/zephyr/drivers/video/Kconfig.mcux_sdma +/home/miguel/ncs/v3.0.2/zephyr/drivers/video/Kconfig.mt9m114 +/home/miguel/ncs/v3.0.2/zephyr/drivers/video/Kconfig.ov2640 +/home/miguel/ncs/v3.0.2/zephyr/drivers/video/Kconfig.ov5640 +/home/miguel/ncs/v3.0.2/zephyr/drivers/video/Kconfig.ov7670 +/home/miguel/ncs/v3.0.2/zephyr/drivers/video/Kconfig.ov7725 +/home/miguel/ncs/v3.0.2/zephyr/drivers/video/Kconfig.stm32_dcmi +/home/miguel/ncs/v3.0.2/zephyr/drivers/video/Kconfig.sw_generator +/home/miguel/ncs/v3.0.2/zephyr/drivers/virtualization/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/w1/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/w1/Kconfig.ds2477_85 +/home/miguel/ncs/v3.0.2/zephyr/drivers/w1/Kconfig.ds2482-800 +/home/miguel/ncs/v3.0.2/zephyr/drivers/w1/Kconfig.ds2484 +/home/miguel/ncs/v3.0.2/zephyr/drivers/w1/Kconfig.ds2485 +/home/miguel/ncs/v3.0.2/zephyr/drivers/w1/Kconfig.max32 +/home/miguel/ncs/v3.0.2/zephyr/drivers/w1/Kconfig.test +/home/miguel/ncs/v3.0.2/zephyr/drivers/w1/Kconfig.zephyr_gpio +/home/miguel/ncs/v3.0.2/zephyr/drivers/w1/Kconfig.zephyr_serial +/home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig.ambiq +/home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig.andes_atcwdt200 +/home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig.cc13xx_cc26xx +/home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig.cc32xx +/home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig.cmsdk_apb +/home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig.dw +/home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig.ene +/home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig.esp32 +/home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig.gd32 +/home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig.gecko +/home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig.ifx_cat1 +/home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig.intel_adsp +/home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig.it8xxx2 +/home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig.litex +/home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig.max32 +/home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig.mcux +/home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig.mcux_imx +/home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig.npcx +/home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig.npm1300 +/home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig.npm2100 +/home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig.npm6001 +/home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig.nrfx +/home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig.numaker +/home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig.nxp_fs26 +/home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig.nxp_s32 +/home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig.opentitan +/home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig.rpi_pico +/home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig.sam +/home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig.sam0 +/home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig.shell +/home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig.sifive +/home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig.smartbond +/home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig.stm32 +/home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig.tco +/home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig.ti_tps382x +/home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig.xec +/home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig.xlnx +/home/miguel/ncs/v3.0.2/zephyr/drivers/watchdog/Kconfig.xmc4xxx +/home/miguel/ncs/v3.0.2/zephyr/drivers/wifi/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/drivers/wifi/esp32/Kconfig.esp32 +/home/miguel/ncs/v3.0.2/zephyr/drivers/wifi/esp_at/Kconfig.esp_at +/home/miguel/ncs/v3.0.2/zephyr/drivers/wifi/eswifi/Kconfig.eswifi +/home/miguel/ncs/v3.0.2/zephyr/drivers/wifi/infineon/Kconfig.airoc +/home/miguel/ncs/v3.0.2/zephyr/drivers/wifi/nrf_wifi/Kconfig.nrfwifi +/home/miguel/ncs/v3.0.2/zephyr/drivers/wifi/nxp/Kconfig.nxp +/home/miguel/ncs/v3.0.2/zephyr/drivers/wifi/simplelink/Kconfig.simplelink +/home/miguel/ncs/v3.0.2/zephyr/drivers/wifi/winc1500/Kconfig.winc1500 +/home/miguel/ncs/v3.0.2/zephyr/drivers/xen/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/dts/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/kernel/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/kernel/Kconfig.device +/home/miguel/ncs/v3.0.2/zephyr/kernel/Kconfig.init +/home/miguel/ncs/v3.0.2/zephyr/kernel/Kconfig.mem_domain +/home/miguel/ncs/v3.0.2/zephyr/kernel/Kconfig.obj_core +/home/miguel/ncs/v3.0.2/zephyr/kernel/Kconfig.smp +/home/miguel/ncs/v3.0.2/zephyr/kernel/Kconfig.vm +/home/miguel/ncs/v3.0.2/zephyr/lib/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/lib/acpi/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/lib/cpp/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/lib/crc/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/lib/hash/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/lib/hash/Kconfig.hash_func +/home/miguel/ncs/v3.0.2/zephyr/lib/hash/Kconfig.hash_map +/home/miguel/ncs/v3.0.2/zephyr/lib/heap/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/lib/libc/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/lib/libc/common/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/lib/libc/minimal/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/lib/libc/newlib/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/lib/libc/picolibc/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/lib/mem_blocks/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/lib/net_buf/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/lib/open-amp/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/lib/os/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/lib/os/Kconfig.cbprintf +/home/miguel/ncs/v3.0.2/zephyr/lib/os/zvfs/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/lib/posix/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/lib/posix/options/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/lib/posix/options/Kconfig.aio +/home/miguel/ncs/v3.0.2/zephyr/lib/posix/options/Kconfig.barrier +/home/miguel/ncs/v3.0.2/zephyr/lib/posix/options/Kconfig.c_lang_r +/home/miguel/ncs/v3.0.2/zephyr/lib/posix/options/Kconfig.c_lib_ext +/home/miguel/ncs/v3.0.2/zephyr/lib/posix/options/Kconfig.compat +/home/miguel/ncs/v3.0.2/zephyr/lib/posix/options/Kconfig.deprecated +/home/miguel/ncs/v3.0.2/zephyr/lib/posix/options/Kconfig.device_io +/home/miguel/ncs/v3.0.2/zephyr/lib/posix/options/Kconfig.fd_mgmt +/home/miguel/ncs/v3.0.2/zephyr/lib/posix/options/Kconfig.file_system_r +/home/miguel/ncs/v3.0.2/zephyr/lib/posix/options/Kconfig.fs +/home/miguel/ncs/v3.0.2/zephyr/lib/posix/options/Kconfig.mem +/home/miguel/ncs/v3.0.2/zephyr/lib/posix/options/Kconfig.mqueue +/home/miguel/ncs/v3.0.2/zephyr/lib/posix/options/Kconfig.net +/home/miguel/ncs/v3.0.2/zephyr/lib/posix/options/Kconfig.proc1 +/home/miguel/ncs/v3.0.2/zephyr/lib/posix/options/Kconfig.procN +/home/miguel/ncs/v3.0.2/zephyr/lib/posix/options/Kconfig.profile +/home/miguel/ncs/v3.0.2/zephyr/lib/posix/options/Kconfig.pthread +/home/miguel/ncs/v3.0.2/zephyr/lib/posix/options/Kconfig.rwlock +/home/miguel/ncs/v3.0.2/zephyr/lib/posix/options/Kconfig.sched +/home/miguel/ncs/v3.0.2/zephyr/lib/posix/options/Kconfig.semaphore +/home/miguel/ncs/v3.0.2/zephyr/lib/posix/options/Kconfig.signal +/home/miguel/ncs/v3.0.2/zephyr/lib/posix/options/Kconfig.spinlock +/home/miguel/ncs/v3.0.2/zephyr/lib/posix/options/Kconfig.sync_io +/home/miguel/ncs/v3.0.2/zephyr/lib/posix/options/Kconfig.timer +/home/miguel/ncs/v3.0.2/zephyr/lib/posix/options/Kconfig.toolchain +/home/miguel/ncs/v3.0.2/zephyr/lib/posix/options/Kconfig.xsi +/home/miguel/ncs/v3.0.2/zephyr/lib/posix/shell/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/lib/posix/shell/Kconfig.env +/home/miguel/ncs/v3.0.2/zephyr/lib/posix/shell/Kconfig.uname +/home/miguel/ncs/v3.0.2/zephyr/lib/runtime/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/lib/smf/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/lib/utils/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/modules/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/modules/Kconfig.altera +/home/miguel/ncs/v3.0.2/zephyr/modules/Kconfig.atmel +/home/miguel/ncs/v3.0.2/zephyr/modules/Kconfig.chre +/home/miguel/ncs/v3.0.2/zephyr/modules/Kconfig.cypress +/home/miguel/ncs/v3.0.2/zephyr/modules/Kconfig.eos_s3 +/home/miguel/ncs/v3.0.2/zephyr/modules/Kconfig.esp32 +/home/miguel/ncs/v3.0.2/zephyr/modules/Kconfig.imx +/home/miguel/ncs/v3.0.2/zephyr/modules/Kconfig.infineon +/home/miguel/ncs/v3.0.2/zephyr/modules/Kconfig.intel +/home/miguel/ncs/v3.0.2/zephyr/modules/Kconfig.libmetal +/home/miguel/ncs/v3.0.2/zephyr/modules/Kconfig.mcuboot +/home/miguel/ncs/v3.0.2/zephyr/modules/Kconfig.mcux +/home/miguel/ncs/v3.0.2/zephyr/modules/Kconfig.microchip +/home/miguel/ncs/v3.0.2/zephyr/modules/Kconfig.nuvoton +/home/miguel/ncs/v3.0.2/zephyr/modules/Kconfig.nxp_s32 +/home/miguel/ncs/v3.0.2/zephyr/modules/Kconfig.open-amp +/home/miguel/ncs/v3.0.2/zephyr/modules/Kconfig.picolibc +/home/miguel/ncs/v3.0.2/zephyr/modules/Kconfig.renesas_fsp +/home/miguel/ncs/v3.0.2/zephyr/modules/Kconfig.rust +/home/miguel/ncs/v3.0.2/zephyr/modules/Kconfig.simplelink +/home/miguel/ncs/v3.0.2/zephyr/modules/Kconfig.sof +/home/miguel/ncs/v3.0.2/zephyr/modules/Kconfig.stm32 +/home/miguel/ncs/v3.0.2/zephyr/modules/Kconfig.syst +/home/miguel/ncs/v3.0.2/zephyr/modules/Kconfig.telink +/home/miguel/ncs/v3.0.2/zephyr/modules/Kconfig.tinycrypt +/home/miguel/ncs/v3.0.2/zephyr/modules/Kconfig.vega +/home/miguel/ncs/v3.0.2/zephyr/modules/Kconfig.wurthelektronik +/home/miguel/ncs/v3.0.2/zephyr/modules/Kconfig.xtensa +/home/miguel/ncs/v3.0.2/zephyr/modules/acpica/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/modules/canopennode/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis-dsp/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis-nn/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/modules/fatfs/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/modules/hal_ambiq/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/modules/hal_ethos_u/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/modules/hal_gigadevice/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/modules/hal_infineon/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/Kconfig.nrf_regtool +/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfs/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfs/backends/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfs/dvfs/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/nrfx/Kconfig.logging +/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nxp/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/modules/hal_rpi_pico/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/modules/hal_silabs/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/modules/hal_st/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/modules/hal_tdk/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/modules/hal_wch/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/modules/hostap/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/modules/liblc3/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/modules/littlefs/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/modules/loramac-node/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/modules/lvgl/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/modules/lvgl/Kconfig.input +/home/miguel/ncs/v3.0.2/zephyr/modules/lvgl/Kconfig.memory +/home/miguel/ncs/v3.0.2/zephyr/modules/lvgl/Kconfig.shell +/home/miguel/ncs/v3.0.2/zephyr/modules/lz4/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/modules/mbedtls/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/modules/mbedtls/Kconfig.psa.auto +/home/miguel/ncs/v3.0.2/zephyr/modules/mbedtls/Kconfig.psa.logic +/home/miguel/ncs/v3.0.2/zephyr/modules/mbedtls/Kconfig.tls-generic +/home/miguel/ncs/v3.0.2/zephyr/modules/nanopb/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/modules/nrf_wifi/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/modules/nrf_wifi/bus/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/modules/openthread/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/modules/openthread/Kconfig.features +/home/miguel/ncs/v3.0.2/zephyr/modules/openthread/Kconfig.thread +/home/miguel/ncs/v3.0.2/zephyr/modules/percepio/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/modules/segger/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/modules/tflite-micro/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/modules/thrift/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/modules/trusted-firmware-a/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/modules/trusted-firmware-m/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/modules/trusted-firmware-m/Kconfig.tfm +/home/miguel/ncs/v3.0.2/zephyr/modules/trusted-firmware-m/Kconfig.tfm.crypto_modules +/home/miguel/ncs/v3.0.2/zephyr/modules/trusted-firmware-m/Kconfig.tfm.partitions +/home/miguel/ncs/v3.0.2/zephyr/modules/uoscore-uedhoc/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/modules/zcbor/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/Kconfig.v2 +/home/miguel/ncs/v3.0.2/zephyr/soc/adi/max32/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/adi/max32/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/adi/max32/Kconfig.defconfig.max32655 +/home/miguel/ncs/v3.0.2/zephyr/soc/adi/max32/Kconfig.defconfig.max32662 +/home/miguel/ncs/v3.0.2/zephyr/soc/adi/max32/Kconfig.defconfig.max32666 +/home/miguel/ncs/v3.0.2/zephyr/soc/adi/max32/Kconfig.defconfig.max32670 +/home/miguel/ncs/v3.0.2/zephyr/soc/adi/max32/Kconfig.defconfig.max32672 +/home/miguel/ncs/v3.0.2/zephyr/soc/adi/max32/Kconfig.defconfig.max32675 +/home/miguel/ncs/v3.0.2/zephyr/soc/adi/max32/Kconfig.defconfig.max32680 +/home/miguel/ncs/v3.0.2/zephyr/soc/adi/max32/Kconfig.defconfig.max32690 +/home/miguel/ncs/v3.0.2/zephyr/soc/adi/max32/Kconfig.defconfig.max78002 +/home/miguel/ncs/v3.0.2/zephyr/soc/adi/max32/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/altr/qemu_nios2/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/altr/qemu_nios2/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/altr/qemu_nios2/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/altr/zephyr_nios2f/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/altr/zephyr_nios2f/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/altr/zephyr_nios2f/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/ambiq/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/ambiq/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/ambiq/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/ambiq/apollo3x/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/ambiq/apollo3x/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/ambiq/apollo3x/Kconfig.defconfig.apollo3_blue +/home/miguel/ncs/v3.0.2/zephyr/soc/ambiq/apollo3x/Kconfig.defconfig.apollo3p_blue +/home/miguel/ncs/v3.0.2/zephyr/soc/ambiq/apollo3x/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/ambiq/apollo4x/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/ambiq/apollo4x/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/ambiq/apollo4x/Kconfig.defconfig.apollo4p +/home/miguel/ncs/v3.0.2/zephyr/soc/ambiq/apollo4x/Kconfig.defconfig.apollo4p_blue +/home/miguel/ncs/v3.0.2/zephyr/soc/ambiq/apollo4x/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/amd/acp_6_0/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/amd/acp_6_0/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/amd/acp_6_0/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/andestech/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/andestech/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/andestech/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/andestech/ae350/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/andestech/ae350/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/andestech/ae350/Kconfig.defconfig.ae350 +/home/miguel/ncs/v3.0.2/zephyr/soc/andestech/ae350/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/arm/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/arm/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/arm/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/arm/beetle/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/arm/beetle/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/arm/beetle/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/arm/designstart/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/arm/designstart/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/arm/fvp_aemv8a/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/arm/fvp_aemv8a/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/arm/fvp_aemv8a/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/arm/fvp_aemv8r/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/arm/fvp_aemv8r/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/arm/fvp_aemv8r/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/arm/mps2/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/arm/mps2/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/arm/mps2/Kconfig.defconfig.an385 +/home/miguel/ncs/v3.0.2/zephyr/soc/arm/mps2/Kconfig.defconfig.an521 +/home/miguel/ncs/v3.0.2/zephyr/soc/arm/mps2/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/arm/mps3/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/arm/mps3/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/arm/mps3/Kconfig.defconfig.mps3_corstone300 +/home/miguel/ncs/v3.0.2/zephyr/soc/arm/mps3/Kconfig.defconfig.mps3_corstone310 +/home/miguel/ncs/v3.0.2/zephyr/soc/arm/mps3/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/arm/musca/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/arm/musca/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/arm/musca/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/arm/qemu_cortex_a53/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/arm/qemu_cortex_a53/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/arm/qemu_cortex_a53/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/arm/qemu_virt_arm64/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/arm/qemu_virt_arm64/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/arm/qemu_virt_arm64/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/aspeed/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/aspeed/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/aspeed/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/aspeed/ast10x0/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/aspeed/ast10x0/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/aspeed/ast10x0/Kconfig.defconfig.ast1030 +/home/miguel/ncs/v3.0.2/zephyr/soc/aspeed/ast10x0/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam/common/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam/sam3x/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam/sam3x/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam/sam3x/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam/sam4e/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam/sam4e/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam/sam4e/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam/sam4l/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam/sam4l/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam/sam4l/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam/sam4s/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam/sam4s/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam/sam4s/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam/same70/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam/same70/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam/same70/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam/samv71/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam/samv71/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam/samv71/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/common/Kconfig.samd2x +/home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/common/Kconfig.samd5x +/home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/common/Kconfig.saml2x +/home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/samc20/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/samc20/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/samc20/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/samc21/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/samc21/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/samc21/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/samd20/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/samd20/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/samd20/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/samd21/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/samd21/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/samd21/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/samd51/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/samd51/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/samd51/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/same51/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/same51/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/same51/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/same53/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/same53/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/same53/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/same54/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/same54/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/same54/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/saml21/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/saml21/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/saml21/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/samr21/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/samr21/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/samr21/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/samr34/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/samr34/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/samr34/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/samr35/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/samr35/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/samr35/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/brcm/bcm2711/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/brcm/bcm2711/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/brcm/bcm2711/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/brcm/bcm2712/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/brcm/bcm2712/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/brcm/bcm2712/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/brcm/bcmvk/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/brcm/bcmvk/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/brcm/bcmvk/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/brcm/bcmvk/valkyrie/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/brcm/bcmvk/valkyrie/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/brcm/bcmvk/valkyrie/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/brcm/bcmvk/viper/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/brcm/bcmvk/viper/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/brcm/bcmvk/viper/Kconfig.defconfig.viper_bcm58402_a72 +/home/miguel/ncs/v3.0.2/zephyr/soc/brcm/bcmvk/viper/Kconfig.defconfig.viper_bcm58402_m7 +/home/miguel/ncs/v3.0.2/zephyr/soc/brcm/bcmvk/viper/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/cdns/dc233c/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/cdns/dc233c/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/cdns/dc233c/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/cdns/sample_controller32/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/cdns/sample_controller32/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/cdns/xtensa_sample_controller/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/cdns/xtensa_sample_controller/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/common/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/common/riscv-privileged/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/efinix/sapphire/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/efinix/sapphire/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/efinix/sapphire/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/ene/kb1200/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/ene/kb1200/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/ene/kb1200/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/espressif/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/espressif/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/espressif/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/espressif/common/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/espressif/common/Kconfig.amp +/home/miguel/ncs/v3.0.2/zephyr/soc/espressif/common/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/espressif/common/Kconfig.esptool +/home/miguel/ncs/v3.0.2/zephyr/soc/espressif/common/Kconfig.flash +/home/miguel/ncs/v3.0.2/zephyr/soc/espressif/common/Kconfig.spiram +/home/miguel/ncs/v3.0.2/zephyr/soc/espressif/esp32/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/espressif/esp32/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/espressif/esp32/Kconfig.mac +/home/miguel/ncs/v3.0.2/zephyr/soc/espressif/esp32/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/espressif/esp32c2/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/espressif/esp32c2/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/espressif/esp32c2/Kconfig.mac +/home/miguel/ncs/v3.0.2/zephyr/soc/espressif/esp32c2/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/espressif/esp32c3/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/espressif/esp32c3/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/espressif/esp32c3/Kconfig.mac +/home/miguel/ncs/v3.0.2/zephyr/soc/espressif/esp32c3/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/espressif/esp32c6/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/espressif/esp32c6/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/espressif/esp32c6/Kconfig.mac +/home/miguel/ncs/v3.0.2/zephyr/soc/espressif/esp32c6/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/espressif/esp32s2/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/espressif/esp32s2/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/espressif/esp32s2/Kconfig.mac +/home/miguel/ncs/v3.0.2/zephyr/soc/espressif/esp32s2/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/espressif/esp32s3/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/espressif/esp32s3/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/espressif/esp32s3/Kconfig.mac +/home/miguel/ncs/v3.0.2/zephyr/soc/espressif/esp32s3/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/gaisler/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/gaisler/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/gaisler/gr716a/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/gaisler/gr716a/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/gaisler/gr716a/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/gaisler/leon3/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/gaisler/leon3/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/gaisler/leon3/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32a50x/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32a50x/Kconfig.defconfig.gd32a503 +/home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32a50x/Kconfig.defconfig.series +/home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32a50x/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32e10x/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32e10x/Kconfig.defconfig.gd32e103 +/home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32e10x/Kconfig.defconfig.series +/home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32e10x/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32e50x/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32e50x/Kconfig.defconfig.gd32e507 +/home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32e50x/Kconfig.defconfig.series +/home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32e50x/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32f3x0/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32f3x0/Kconfig.defconfig.gd32f350 +/home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32f3x0/Kconfig.defconfig.series +/home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32f3x0/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32f403/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32f403/Kconfig.defconfig.gd32f403 +/home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32f403/Kconfig.defconfig.series +/home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32f403/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32f4xx/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32f4xx/Kconfig.defconfig.gd32f405 +/home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32f4xx/Kconfig.defconfig.gd32f407 +/home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32f4xx/Kconfig.defconfig.gd32f450 +/home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32f4xx/Kconfig.defconfig.gd32f470 +/home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32f4xx/Kconfig.defconfig.series +/home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32f4xx/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32l23x/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32l23x/Kconfig.defconfig.gd32l233 +/home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32l23x/Kconfig.defconfig.series +/home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32l23x/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32vf103/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32vf103/Kconfig.defconfig.gd32vf103 +/home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32vf103/Kconfig.defconfig.series +/home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32vf103/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat1a/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat1a/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat1a/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat1a/psoc6_01/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat1a/psoc6_01/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat1a/psoc6_02/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat1a/psoc6_02/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat1a/psoc6_03/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat1a/psoc6_03/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat1a/psoc6_04/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat1a/psoc6_04/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat1a/psoc6_legacy/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat1a/psoc6_legacy/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat1b/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat1b/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat1b/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat1b/cyw20829/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat1b/cyw20829/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat1b/cyw20829/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat3/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat3/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat3/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat3/xmc4xxx/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat3/xmc4xxx/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat3/xmc4xxx/Kconfig.defconfig.xmc4500 +/home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat3/xmc4xxx/Kconfig.defconfig.xmc4700 +/home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat3/xmc4xxx/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/intel/alder_lake/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/intel/alder_lake/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/intel/alder_lake/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/intel/apollo_lake/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/intel/apollo_lake/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/intel/apollo_lake/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/intel/atom/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/intel/atom/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/intel/atom/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/intel/elkhart_lake/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/intel/elkhart_lake/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/intel/elkhart_lake/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_adsp/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_adsp/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_adsp/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_adsp/ace/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_adsp/ace/Kconfig.defconfig.ace15_mtpm +/home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_adsp/ace/Kconfig.defconfig.ace20_lnl +/home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_adsp/ace/Kconfig.defconfig.ace30 +/home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_adsp/ace/Kconfig.defconfig.series +/home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_adsp/ace/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_adsp/cavs/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_adsp/cavs/Kconfig.defconfig.cavs_v25 +/home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_adsp/cavs/Kconfig.defconfig.series +/home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_adsp/cavs/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_ish/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_ish/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_ish/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_ish/intel_ish5/Kconfig.defconfig.series +/home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_ish/intel_ish5/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_ish/intel_ish5/pm/Kconfig.pm +/home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_niosv/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_niosv/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_niosv/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_niosv/niosv/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_niosv/niosv/Kconfig.defconfig.series +/home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_niosv/niosv/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_socfpga/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_socfpga/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_socfpga/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_socfpga/agilex/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_socfpga/agilex/Kconfig.defconfig.agilex +/home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_socfpga/agilex/Kconfig.defconfig.series +/home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_socfpga/agilex/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_socfpga/agilex5/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_socfpga/agilex5/Kconfig.defconfig.agilex5 +/home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_socfpga/agilex5/Kconfig.defconfig.series +/home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_socfpga/agilex5/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_socfpga_std/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_socfpga_std/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_socfpga_std/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_socfpga_std/cyclonev/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_socfpga_std/cyclonev/Kconfig.defconfig.cyclonev +/home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_socfpga_std/cyclonev/Kconfig.defconfig.series +/home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_socfpga_std/cyclonev/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/intel/lakemont/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/intel/lakemont/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/intel/lakemont/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/intel/raptor_lake/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/intel/raptor_lake/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/intel/raptor_lake/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/ite/ec/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/ite/ec/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/ite/ec/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/ite/ec/it8xxx2/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/ite/ec/it8xxx2/Kconfig.defconfig.it81202bx +/home/miguel/ncs/v3.0.2/zephyr/soc/ite/ec/it8xxx2/Kconfig.defconfig.it81202cx +/home/miguel/ncs/v3.0.2/zephyr/soc/ite/ec/it8xxx2/Kconfig.defconfig.it81202dx +/home/miguel/ncs/v3.0.2/zephyr/soc/ite/ec/it8xxx2/Kconfig.defconfig.it81302bx +/home/miguel/ncs/v3.0.2/zephyr/soc/ite/ec/it8xxx2/Kconfig.defconfig.it81302cx +/home/miguel/ncs/v3.0.2/zephyr/soc/ite/ec/it8xxx2/Kconfig.defconfig.it81302dx +/home/miguel/ncs/v3.0.2/zephyr/soc/ite/ec/it8xxx2/Kconfig.defconfig.it82002aw +/home/miguel/ncs/v3.0.2/zephyr/soc/ite/ec/it8xxx2/Kconfig.defconfig.it82002bw +/home/miguel/ncs/v3.0.2/zephyr/soc/ite/ec/it8xxx2/Kconfig.defconfig.it82202ax +/home/miguel/ncs/v3.0.2/zephyr/soc/ite/ec/it8xxx2/Kconfig.defconfig.it82202bw +/home/miguel/ncs/v3.0.2/zephyr/soc/ite/ec/it8xxx2/Kconfig.defconfig.it82302ax +/home/miguel/ncs/v3.0.2/zephyr/soc/ite/ec/it8xxx2/Kconfig.defconfig.it82302bw +/home/miguel/ncs/v3.0.2/zephyr/soc/ite/ec/it8xxx2/Kconfig.defconfig.series +/home/miguel/ncs/v3.0.2/zephyr/soc/ite/ec/it8xxx2/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/litex/litex_vexriscv/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/litex/litex_vexriscv/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/litex/litex_vexriscv/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/lowrisc/opentitan/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/lowrisc/opentitan/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/lowrisc/opentitan/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/mediatek/mt8xxx/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/mediatek/mt8xxx/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/mediatek/mt8xxx/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/mediatek/mt8xxx/mt8186/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/mediatek/mt8xxx/mt8188/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/mediatek/mt8xxx/mt8195/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/mediatek/mt8xxx/mt8196/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/microchip/mec/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/microchip/mec/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/microchip/mec/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/microchip/mec/mec15xx/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/microchip/mec/mec15xx/Kconfig.defconfig.mec1501hsz +/home/miguel/ncs/v3.0.2/zephyr/soc/microchip/mec/mec15xx/Kconfig.defconfig.series +/home/miguel/ncs/v3.0.2/zephyr/soc/microchip/mec/mec15xx/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/microchip/mec/mec172x/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/microchip/mec/mec172x/Kconfig.defconfig.mec172xnlj +/home/miguel/ncs/v3.0.2/zephyr/soc/microchip/mec/mec172x/Kconfig.defconfig.mec172xnsz +/home/miguel/ncs/v3.0.2/zephyr/soc/microchip/mec/mec172x/Kconfig.defconfig.series +/home/miguel/ncs/v3.0.2/zephyr/soc/microchip/mec/mec172x/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/microchip/mec/mec174x/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/microchip/mec/mec174x/Kconfig.defconfig.series +/home/miguel/ncs/v3.0.2/zephyr/soc/microchip/mec/mec174x/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/microchip/mec/mec175x/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/microchip/mec/mec175x/Kconfig.defconfig.series +/home/miguel/ncs/v3.0.2/zephyr/soc/microchip/mec/mec175x/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/microchip/mec/mech172x/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/microchip/mec/mech172x/Kconfig.defconfig.series +/home/miguel/ncs/v3.0.2/zephyr/soc/microchip/mec/mech172x/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/microchip/miv/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/microchip/miv/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/microchip/miv/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/microchip/miv/miv/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/microchip/miv/miv/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/microchip/miv/miv/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/microchip/miv/polarfire/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/microchip/miv/polarfire/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/microchip/miv/polarfire/Kconfig.defconfig.polarfire_u54 +/home/miguel/ncs/v3.0.2/zephyr/soc/microchip/miv/polarfire/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/native/inf_clock/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/native/inf_clock/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/neorv32/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/neorv32/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/neorv32/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/Kconfig.peripherals +/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/vpr/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/vpr/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf51/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf51/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf51/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/Kconfig.defconfig.nrf52805_CAAA +/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/Kconfig.defconfig.nrf52810_QFAA +/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/Kconfig.defconfig.nrf52811_QFAA +/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/Kconfig.defconfig.nrf52820_QDAA +/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/Kconfig.defconfig.nrf52832_CIAA +/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/Kconfig.defconfig.nrf52832_QFAA +/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/Kconfig.defconfig.nrf52832_QFAB +/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/Kconfig.defconfig.nrf52833_QDAA +/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/Kconfig.defconfig.nrf52833_QIAA +/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/Kconfig.defconfig.nrf52840_QFAA +/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/Kconfig.defconfig.nrf52840_QIAA +/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf53/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf53/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf53/Kconfig.defconfig.nrf5340_CPUAPP_QKAA +/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf53/Kconfig.defconfig.nrf5340_CPUNET_QKAA +/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf53/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf53/Kconfig.sync_rtc +/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf53/Kconfig.sync_rtc_ipm +/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf54h/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf54h/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf54h/Kconfig.defconfig.nrf54h20_cpuapp +/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf54h/Kconfig.defconfig.nrf54h20_cpuflpr +/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf54h/Kconfig.defconfig.nrf54h20_cpuppr +/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf54h/Kconfig.defconfig.nrf54h20_cpurad +/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf54h/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf54h/bicr/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf54h/gpd/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf54l/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf54l/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf54l/Kconfig.defconfig.nrf54l09_enga_cpuapp +/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf54l/Kconfig.defconfig.nrf54l09_enga_cpuflpr +/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf54l/Kconfig.defconfig.nrf54l20_enga_cpuapp +/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf54l/Kconfig.defconfig.nrf54l20_enga_cpuflpr +/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf54l/Kconfig.defconfig.nrf54l_05_10_15_cpuapp +/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf54l/Kconfig.defconfig.nrf54l_05_10_15_cpuflpr +/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf54l/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf91/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf91/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf91/Kconfig.defconfig.nrf9131_LACA +/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf91/Kconfig.defconfig.nrf9151_LACA +/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf91/Kconfig.defconfig.nrf9160_SICA +/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf91/Kconfig.defconfig.nrf9161_LACA +/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf91/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf92/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf92/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf92/Kconfig.defconfig.nrf9280_cpuapp +/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf92/Kconfig.defconfig.nrf9280_cpuppr +/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf92/Kconfig.defconfig.nrf9280_cpurad +/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf92/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/npcm/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/npcm/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/npcm/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/npcm/npcm4/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/npcm/npcm4/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/npcm/npcm4/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/npcx/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/npcx/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/npcx/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/npcx/npcx4/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/npcx/npcx4/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/npcx/npcx4/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/npcx/npcx7/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/npcx/npcx7/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/npcx/npcx7/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/npcx/npcx9/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/npcx/npcx9/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/npcx/npcx9/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/numaker/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/numaker/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/numaker/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/numaker/m2l31x/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/numaker/m2l31x/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/numaker/m2l31x/Kconfig.defconfig.m2l31xxx +/home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/numaker/m2l31x/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/numaker/m46x/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/numaker/m46x/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/numaker/m46x/Kconfig.defconfig.m467 +/home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/numaker/m46x/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/numicro/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/numicro/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/numicro/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/numicro/m48x/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/numicro/m48x/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/numicro/m48x/Kconfig.defconfig.m487 +/home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/numicro/m48x/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/common/Kconfig.flexspi_xip +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/common/Kconfig.nbu +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/common/Kconfig.rom_loader +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx6sx/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx6sx/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx6sx/Kconfig.defconfig.mcimx6x_m4 +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx6sx/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx7d/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx7d/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx7d/Kconfig.defconfig.mcimx7d_m4 +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx7d/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx8/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx8/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx8/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx8m/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx8m/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx8m/Kconfig.defconfig.mimx8ml8_a53 +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx8m/Kconfig.defconfig.mimx8ml8_adsp +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx8m/Kconfig.defconfig.mimx8ml8_m7 +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx8m/Kconfig.defconfig.mimx8mm6_a53 +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx8m/Kconfig.defconfig.mimx8mm6_m4 +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx8m/Kconfig.defconfig.mimx8mn6_a53 +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx8m/Kconfig.defconfig.mimx8mq6_m4 +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx8m/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx8ulp/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx8ulp/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx8ulp/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx8x/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx8x/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx8x/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx9/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx9/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx9/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx9/imx93/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx9/imx93/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx9/imx93/Kconfig.defconfig.mimx93.a55 +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx9/imx93/Kconfig.defconfig.mimx93.m33 +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx9/imx93/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx9/imx95/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx9/imx95/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx9/imx95/Kconfig.defconfig.mimx95.a55 +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx9/imx95/Kconfig.defconfig.mimx95.m7 +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx9/imx95/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imxrt/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imxrt/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imxrt/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imxrt/imxrt10xx/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imxrt/imxrt10xx/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imxrt/imxrt10xx/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imxrt/imxrt118x/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imxrt/imxrt118x/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imxrt/imxrt118x/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imxrt/imxrt11xx/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imxrt/imxrt11xx/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imxrt/imxrt11xx/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imxrt/imxrt5xx/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imxrt/imxrt5xx/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imxrt/imxrt5xx/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imxrt/imxrt6xx/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imxrt/imxrt6xx/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imxrt/imxrt6xx/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/k2x/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/k2x/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/k2x/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/k6x/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/k6x/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/k6x/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/k8x/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/k8x/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/k8x/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/ke1xf/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/ke1xf/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/ke1xf/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/ke1xz/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/ke1xz/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/ke1xz/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/kl2x/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/kl2x/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/kl2x/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/kv5x/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/kv5x/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/kv5x/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/kwx/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/kwx/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/kwx/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/layerscape/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/layerscape/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/layerscape/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/layerscape/ls1046a/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/layerscape/ls1046a/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/layerscape/ls1046a/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/lpc/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/lpc/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/lpc/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/lpc/lpc11u6x/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/lpc/lpc11u6x/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/lpc/lpc11u6x/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/lpc/lpc51u68/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/lpc/lpc51u68/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/lpc/lpc51u68/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/lpc/lpc54xxx/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/lpc/lpc54xxx/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/lpc/lpc54xxx/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/lpc/lpc55xxx/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/lpc/lpc55xxx/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/lpc/lpc55xxx/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/mcx/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/mcx/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/mcx/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/mcx/mcxa/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/mcx/mcxa/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/mcx/mcxa/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/mcx/mcxc/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/mcx/mcxc/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/mcx/mcxc/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/mcx/mcxn/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/mcx/mcxn/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/mcx/mcxn/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/mcx/mcxw/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/mcx/mcxw/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/mcx/mcxw/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/rw/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/rw/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/rw/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/s32/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/s32/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/s32/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/s32/s32k1/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/s32/s32k1/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/s32/s32k1/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/s32/s32k3/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/s32/s32k3/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/s32/s32k3/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/s32/s32ze/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/s32/s32ze/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/s32/s32ze/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/openisa/rv32m1/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/openisa/rv32m1/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/openisa/rv32m1/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/qemu/malta/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/qemu/malta/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/qemu/malta/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/qemu/virt_riscv/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/qemu/virt_riscv/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/qemu/virt_riscv/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/qemu/virt_riscv/qemu_virt_riscv32/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/qemu/virt_riscv/qemu_virt_riscv32/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/qemu/virt_riscv/qemu_virt_riscv32e/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/qemu/virt_riscv/qemu_virt_riscv32e/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/qemu/virt_riscv/qemu_virt_riscv64/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/qemu/virt_riscv/qemu_virt_riscv64/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/quicklogic/eos_s3/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/quicklogic/eos_s3/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/quicklogic/eos_s3/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/raspberrypi/rpi_pico/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/raspberrypi/rpi_pico/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/raspberrypi/rpi_pico/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/raspberrypi/rpi_pico/rp2040/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/raspberrypi/rpi_pico/rp2040/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/raspberrypi/rpi_pico/rp2040/Kconfig.defconfig.rp2040 +/home/miguel/ncs/v3.0.2/zephyr/soc/raspberrypi/rpi_pico/rp2040/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/raspberrypi/rpi_pico/rp2350/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/raspberrypi/rpi_pico/rp2350/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/raspberrypi/rpi_pico/rp2350/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/realtek/ec/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/realtek/ec/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/realtek/ec/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/realtek/ec/rts5912/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/realtek/ec/rts5912/Kconfig.defconfig.rts5912 +/home/miguel/ncs/v3.0.2/zephyr/soc/realtek/ec/rts5912/Kconfig.defconfig.series +/home/miguel/ncs/v3.0.2/zephyr/soc/realtek/ec/rts5912/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra2a1/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra2a1/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra2a1/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra4e2/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra4e2/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra4e2/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra4m1/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra4m1/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra4m1/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra4m2/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra4m2/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra4m2/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra4m3/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra4m3/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra4m3/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra4w1/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra4w1/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra4w1/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra6e1/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra6e1/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra6e1/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra6e2/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra6e2/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra6e2/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra6m1/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra6m1/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra6m1/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra6m2/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra6m2/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra6m2/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra6m3/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra6m3/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra6m3/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra6m4/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra6m4/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra6m4/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra6m5/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra6m5/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra6m5/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra8d1/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra8d1/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra8d1/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra8m1/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra8m1/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra8m1/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra8t1/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra8t1/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra8t1/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/rcar/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/rcar/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/rcar/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/rcar/rcar_gen3/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/rcar/rcar_gen3/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/rcar/rcar_gen3/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/rcar/rcar_gen4/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/rcar/rcar_gen4/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/rcar/rcar_gen4/Kconfig.defconfig.r8a779f0 +/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/rcar/rcar_gen4/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/rz/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/rz/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/rz/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/rz/rzg3s/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/rz/rzg3s/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/rz/rzg3s/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/rzt2m/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/rzt2m/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/rzt2m/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/smartbond/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/smartbond/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/smartbond/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/smartbond/da1469x/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/smartbond/da1469x/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/smartbond/da1469x/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/renode/cortex_r8_virtual/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/renode/cortex_r8_virtual/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/renode/cortex_r8_virtual/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/renode/riscv_virtual/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/renode/riscv_virtual/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/renode/riscv_virtual/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/rockchip/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/rockchip/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/rockchip/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/rockchip/rk3399/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/rockchip/rk3399/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/rockchip/rk3399/Kconfig.defconfig.rk3399 +/home/miguel/ncs/v3.0.2/zephyr/soc/rockchip/rk3399/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/rockchip/rk3568/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/rockchip/rk3568/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/rockchip/rk3568/Kconfig.defconfig.rk3568 +/home/miguel/ncs/v3.0.2/zephyr/soc/rockchip/rk3568/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/sensry/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/sensry/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/sensry/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/sensry/ganymed/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/sensry/ganymed/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/sensry/ganymed/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/sensry/ganymed/sy1xx/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/sensry/ganymed/sy1xx/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/sensry/ganymed/sy1xx/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/sifive/sifive_freedom/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/sifive/sifive_freedom/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/sifive/sifive_freedom/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/sifive/sifive_freedom/fe300/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/sifive/sifive_freedom/fe300/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/sifive/sifive_freedom/fe300/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/sifive/sifive_freedom/fu500/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/sifive/sifive_freedom/fu500/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/sifive/sifive_freedom/fu500/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/sifive/sifive_freedom/fu700/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/sifive/sifive_freedom/fu700/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/sifive/sifive_freedom/fu700/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/silabs/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/silabs/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/silabs/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s0/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s0/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s0/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s0/efm32hg/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s0/efm32hg/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s0/efm32hg/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s0/efm32wg/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s0/efm32wg/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s0/efm32wg/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/efm32gg11b/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/efm32gg11b/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/efm32gg11b/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/efm32gg12b/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/efm32gg12b/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/efm32gg12b/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/efm32jg12b/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/efm32jg12b/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/efm32jg12b/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/efm32pg12b/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/efm32pg12b/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/efm32pg12b/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/efm32pg1b/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/efm32pg1b/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/efm32pg1b/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/efr32bg13p/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/efr32bg13p/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/efr32bg13p/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/efr32fg13p/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/efr32fg13p/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/efr32fg13p/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/efr32fg1p/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/efr32fg1p/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/efr32fg1p/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/efr32mg12p/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/efr32mg12p/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/efr32mg12p/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s2/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s2/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s2/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s2/efr32bg22/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s2/efr32bg22/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s2/efr32bg22/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s2/efr32bg27/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s2/efr32bg27/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s2/efr32bg27/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s2/efr32mg21/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s2/efr32mg21/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s2/efr32mg21/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s2/efr32mg24/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s2/efr32mg24/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s2/efr32mg24/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s2/efr32zg23/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s2/efr32zg23/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s2/efr32zg23/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_sim3/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_sim3/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_sim3/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_sim3/sim3u/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_sim3/sim3u/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_sim3/sim3u/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/snps/arc_iot/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/snps/arc_iot/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/snps/arc_iot/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/snps/emsdp/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/snps/emsdp/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/snps/emsdp/Kconfig.defconfig.em11d +/home/miguel/ncs/v3.0.2/zephyr/soc/snps/emsdp/Kconfig.defconfig.em4 +/home/miguel/ncs/v3.0.2/zephyr/soc/snps/emsdp/Kconfig.defconfig.em5d +/home/miguel/ncs/v3.0.2/zephyr/soc/snps/emsdp/Kconfig.defconfig.em6 +/home/miguel/ncs/v3.0.2/zephyr/soc/snps/emsdp/Kconfig.defconfig.em7d +/home/miguel/ncs/v3.0.2/zephyr/soc/snps/emsdp/Kconfig.defconfig.em7d_esp +/home/miguel/ncs/v3.0.2/zephyr/soc/snps/emsdp/Kconfig.defconfig.em9d +/home/miguel/ncs/v3.0.2/zephyr/soc/snps/emsdp/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/snps/emsk/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/snps/emsk/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/snps/emsk/Kconfig.defconfig.em11d +/home/miguel/ncs/v3.0.2/zephyr/soc/snps/emsk/Kconfig.defconfig.em7d +/home/miguel/ncs/v3.0.2/zephyr/soc/snps/emsk/Kconfig.defconfig.em9d +/home/miguel/ncs/v3.0.2/zephyr/soc/snps/emsk/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/snps/hsdk/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/snps/hsdk/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/snps/hsdk/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/snps/hsdk4xd/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/snps/hsdk4xd/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/snps/hsdk4xd/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_classic/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_classic/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_classic/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_classic/em/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_classic/em/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_classic/em/Kconfig.defconfig.em +/home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_classic/em/Kconfig.defconfig.em11d +/home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_classic/em/Kconfig.defconfig.em7d_v22 +/home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_classic/em/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_classic/hs/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_classic/hs/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_classic/hs/Kconfig.defconfig.hs +/home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_classic/hs/Kconfig.defconfig.hs5x +/home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_classic/hs/Kconfig.defconfig.hs5x_smp +/home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_classic/hs/Kconfig.defconfig.hs6x +/home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_classic/hs/Kconfig.defconfig.hs6x_smp +/home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_classic/hs/Kconfig.defconfig.hs_mpuv6 +/home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_classic/hs/Kconfig.defconfig.hs_smp +/home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_classic/hs/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_classic/sem/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_classic/sem/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_classic/sem/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_classic/vpx5/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_classic/vpx5/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_classic/vpx5/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_v/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_v/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_v/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_v/rmx/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_v/rmx/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_v/rmx/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/snps/qemu_arc/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/snps/qemu_arc/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/snps/qemu_arc/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32c0x/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32c0x/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32c0x/Kconfig.defconfig.stm32c011xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32c0x/Kconfig.defconfig.stm32c031xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32c0x/Kconfig.defconfig.stm32c071xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32c0x/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f0x/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f0x/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f0x/Kconfig.defconfig.stm32f030x4 +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f0x/Kconfig.defconfig.stm32f030x6 +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f0x/Kconfig.defconfig.stm32f030x8 +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f0x/Kconfig.defconfig.stm32f030xc +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f0x/Kconfig.defconfig.stm32f031x6 +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f0x/Kconfig.defconfig.stm32f042x6 +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f0x/Kconfig.defconfig.stm32f051x8 +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f0x/Kconfig.defconfig.stm32f070xb +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f0x/Kconfig.defconfig.stm32f072xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f0x/Kconfig.defconfig.stm32f091xc +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f0x/Kconfig.defconfig.stm32f098xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f0x/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f1x/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f1x/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f1x/Kconfig.defconfig.stm32f100xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f1x/Kconfig.defconfig.stm32f103xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f1x/Kconfig.defconfig.stm32f105xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f1x/Kconfig.defconfig.stm32f107xc +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f1x/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f2x/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f2x/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f2x/Kconfig.defconfig.stm32f205xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f2x/Kconfig.defconfig.stm32f207xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f2x/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f3x/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f3x/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f3x/Kconfig.defconfig.stm32f302x8 +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f3x/Kconfig.defconfig.stm32f302xc +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f3x/Kconfig.defconfig.stm32f303x(b-c) +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f3x/Kconfig.defconfig.stm32f303x8 +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f3x/Kconfig.defconfig.stm32f303xe +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f3x/Kconfig.defconfig.stm32f334x8 +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f3x/Kconfig.defconfig.stm32f373xc +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f3x/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f4x/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f4x/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f4x/Kconfig.defconfig.stm32f401xc +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f4x/Kconfig.defconfig.stm32f401xe +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f4x/Kconfig.defconfig.stm32f405xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f4x/Kconfig.defconfig.stm32f407xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f4x/Kconfig.defconfig.stm32f410xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f4x/Kconfig.defconfig.stm32f411xe +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f4x/Kconfig.defconfig.stm32f412rx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f4x/Kconfig.defconfig.stm32f412xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f4x/Kconfig.defconfig.stm32f413xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f4x/Kconfig.defconfig.stm32f415xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f4x/Kconfig.defconfig.stm32f417xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f4x/Kconfig.defconfig.stm32f423xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f4x/Kconfig.defconfig.stm32f427xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f4x/Kconfig.defconfig.stm32f429xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f4x/Kconfig.defconfig.stm32f437xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f4x/Kconfig.defconfig.stm32f446xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f4x/Kconfig.defconfig.stm32f469xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f4x/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f7x/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f7x/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f7x/Kconfig.defconfig.stm32f722xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f7x/Kconfig.defconfig.stm32f723xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f7x/Kconfig.defconfig.stm32f745xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f7x/Kconfig.defconfig.stm32f746xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f7x/Kconfig.defconfig.stm32f750xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f7x/Kconfig.defconfig.stm32f756xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f7x/Kconfig.defconfig.stm32f765xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f7x/Kconfig.defconfig.stm32f767xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f7x/Kconfig.defconfig.stm32f769xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f7x/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32g0x/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32g0x/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32g0x/Kconfig.defconfig.stm32g030xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32g0x/Kconfig.defconfig.stm32g031xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32g0x/Kconfig.defconfig.stm32g041xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32g0x/Kconfig.defconfig.stm32g050xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32g0x/Kconfig.defconfig.stm32g051xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32g0x/Kconfig.defconfig.stm32g061xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32g0x/Kconfig.defconfig.stm32g070xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32g0x/Kconfig.defconfig.stm32g071xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32g0x/Kconfig.defconfig.stm32g081xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32g0x/Kconfig.defconfig.stm32g0b0xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32g0x/Kconfig.defconfig.stm32g0b1xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32g0x/Kconfig.defconfig.stm32g0c1xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32g0x/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32g4x/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32g4x/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32g4x/Kconfig.defconfig.stm32g431xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32g4x/Kconfig.defconfig.stm32g441xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32g4x/Kconfig.defconfig.stm32g473xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32g4x/Kconfig.defconfig.stm32g474xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32g4x/Kconfig.defconfig.stm32g483xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32g4x/Kconfig.defconfig.stm32g484xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32g4x/Kconfig.defconfig.stm32g491xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32g4x/Kconfig.defconfig.stm32g4a1xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32g4x/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32h5x/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32h5x/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32h5x/Kconfig.defconfig.stm32h503xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32h5x/Kconfig.defconfig.stm32h533xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32h5x/Kconfig.defconfig.stm32h562xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32h5x/Kconfig.defconfig.stm32h563xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32h5x/Kconfig.defconfig.stm32h573xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32h5x/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32h7rsx/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32h7rsx/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32h7rsx/Kconfig.defconfig.stm32h7r3xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32h7rsx/Kconfig.defconfig.stm32h7r7xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32h7rsx/Kconfig.defconfig.stm32h7s3xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32h7rsx/Kconfig.defconfig.stm32h7s7xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32h7rsx/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32h7x/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32h7x/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32h7x/Kconfig.defconfig.stm32h723xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32h7x/Kconfig.defconfig.stm32h725xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32h7x/Kconfig.defconfig.stm32h730xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32h7x/Kconfig.defconfig.stm32h735xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32h7x/Kconfig.defconfig.stm32h743xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32h7x/Kconfig.defconfig.stm32h745xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32h7x/Kconfig.defconfig.stm32h747xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32h7x/Kconfig.defconfig.stm32h750xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32h7x/Kconfig.defconfig.stm32h753xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32h7x/Kconfig.defconfig.stm32h755xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32h7x/Kconfig.defconfig.stm32h757xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32h7x/Kconfig.defconfig.stm32h7a3xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32h7x/Kconfig.defconfig.stm32h7b0xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32h7x/Kconfig.defconfig.stm32h7b3xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32h7x/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l0x/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l0x/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l0x/Kconfig.defconfig.stm32l010x4 +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l0x/Kconfig.defconfig.stm32l010x6 +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l0x/Kconfig.defconfig.stm32l010x8 +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l0x/Kconfig.defconfig.stm32l010xb +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l0x/Kconfig.defconfig.stm32l011xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l0x/Kconfig.defconfig.stm32l031xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l0x/Kconfig.defconfig.stm32l051xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l0x/Kconfig.defconfig.stm32l053xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l0x/Kconfig.defconfig.stm32l071xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l0x/Kconfig.defconfig.stm32l072xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l0x/Kconfig.defconfig.stm32l073xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l0x/Kconfig.defconfig.stm32l081xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l0x/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l1x/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l1x/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l1x/Kconfig.defconfig.stm32l151xb +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l1x/Kconfig.defconfig.stm32l151xba +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l1x/Kconfig.defconfig.stm32l151xc +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l1x/Kconfig.defconfig.stm32l152xc +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l1x/Kconfig.defconfig.stm32l152xe +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l1x/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l4x/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l4x/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l4x/Kconfig.defconfig.stm32l412xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l4x/Kconfig.defconfig.stm32l422xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l4x/Kconfig.defconfig.stm32l431xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l4x/Kconfig.defconfig.stm32l432xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l4x/Kconfig.defconfig.stm32l433xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l4x/Kconfig.defconfig.stm32l451xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l4x/Kconfig.defconfig.stm32l452xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l4x/Kconfig.defconfig.stm32l462xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l4x/Kconfig.defconfig.stm32l471xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l4x/Kconfig.defconfig.stm32l475xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l4x/Kconfig.defconfig.stm32l476xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l4x/Kconfig.defconfig.stm32l486xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l4x/Kconfig.defconfig.stm32l496xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l4x/Kconfig.defconfig.stm32l4a6xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l4x/Kconfig.defconfig.stm32l4p5xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l4x/Kconfig.defconfig.stm32l4q5xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l4x/Kconfig.defconfig.stm32l4r5xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l4x/Kconfig.defconfig.stm32l4r9xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l4x/Kconfig.defconfig.stm32l4s5xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l4x/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l5x/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l5x/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l5x/Kconfig.defconfig.stm32l552xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l5x/Kconfig.defconfig.stm32l562xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l5x/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32mp1x/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32mp1x/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32mp1x/Kconfig.defconfig.stm32mp15_m4 +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32mp1x/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32u0x/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32u0x/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32u0x/Kconfig.defconfig.stm32u031xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32u0x/Kconfig.defconfig.stm32u073xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32u0x/Kconfig.defconfig.stm32u083xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32u0x/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32u5x/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32u5x/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32u5x/Kconfig.defconfig.stm32u545xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32u5x/Kconfig.defconfig.stm32u575xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32u5x/Kconfig.defconfig.stm32u585xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32u5x/Kconfig.defconfig.stm32u595xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32u5x/Kconfig.defconfig.stm32u599xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32u5x/Kconfig.defconfig.stm32u5a5xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32u5x/Kconfig.defconfig.stm32u5a9xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32u5x/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32wb0x/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32wb0x/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32wb0x/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32wbax/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32wbax/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32wbax/Kconfig.defconfig.stm32wba52xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32wbax/Kconfig.defconfig.stm32wba55xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32wbax/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32wbx/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32wbx/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32wbx/Kconfig.defconfig.stm32wb55xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32wbx/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32wlx/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32wlx/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32wlx/Kconfig.defconfig.stm32wl54xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32wlx/Kconfig.defconfig.stm32wl55xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32wlx/Kconfig.defconfig.stm32wle4xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32wlx/Kconfig.defconfig.stm32wle5xx +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32wlx/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/starfive/jh71xx/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/starfive/jh71xx/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/starfive/jh71xx/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/telink/tlsr/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/telink/tlsr/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/telink/tlsr/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/telink/tlsr/tlsr951x/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/telink/tlsr/tlsr951x/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/telink/tlsr/tlsr951x/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/ti/k3/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/ti/k3/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/ti/k3/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/ti/k3/am6x/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/ti/k3/am6x/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/ti/k3/am6x/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/ti/lm3s6965/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/ti/lm3s6965/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/ti/lm3s6965/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/ti/simplelink/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/ti/simplelink/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/ti/simplelink/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/ti/simplelink/cc13x2_cc26x2/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/ti/simplelink/cc13x2_cc26x2/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/ti/simplelink/cc13x2_cc26x2/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/ti/simplelink/cc13x2x7_cc26x2x7/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/ti/simplelink/cc13x2x7_cc26x2x7/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/ti/simplelink/cc13x2x7_cc26x2x7/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/ti/simplelink/cc32xx/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/ti/simplelink/cc32xx/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/ti/simplelink/cc32xx/Kconfig.defconfig.cc3220sf +/home/miguel/ncs/v3.0.2/zephyr/soc/ti/simplelink/cc32xx/Kconfig.defconfig.cc3235sf +/home/miguel/ncs/v3.0.2/zephyr/soc/ti/simplelink/cc32xx/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/ti/simplelink/msp432p4xx/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/ti/simplelink/msp432p4xx/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/ti/simplelink/msp432p4xx/Kconfig.defconfig.msp432p401r +/home/miguel/ncs/v3.0.2/zephyr/soc/ti/simplelink/msp432p4xx/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/wch/ch32v00x/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/wch/ch32v00x/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/wch/ch32v00x/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/xen/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/xen/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/xen/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/xlnx/zynq7000/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/xlnx/zynq7000/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/xlnx/zynq7000/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/xlnx/zynq7000/xc7zxxx/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/xlnx/zynq7000/xc7zxxx/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/xlnx/zynq7000/xc7zxxx/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/xlnx/zynq7000/xc7zxxxs/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/xlnx/zynq7000/xc7zxxxs/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/xlnx/zynq7000/xc7zxxxs/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/xlnx/zynqmp/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/xlnx/zynqmp/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/xlnx/zynqmp/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/subsys/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/bindesc/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/bindesc/Kconfig.build_time +/home/miguel/ncs/v3.0.2/zephyr/subsys/bindesc/Kconfig.host_info +/home/miguel/ncs/v3.0.2/zephyr/subsys/bindesc/Kconfig.version +/home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/Kconfig.adv +/home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/Kconfig.iso +/home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/Kconfig.logging +/home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/audio/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/audio/Kconfig.aics +/home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/audio/Kconfig.ascs +/home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/audio/Kconfig.bap +/home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/audio/Kconfig.cap +/home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/audio/Kconfig.ccp +/home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/audio/Kconfig.csip +/home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/audio/Kconfig.gmap +/home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/audio/Kconfig.has +/home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/audio/Kconfig.mcs +/home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/audio/Kconfig.mctl +/home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/audio/Kconfig.micp +/home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/audio/Kconfig.mpl +/home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/audio/Kconfig.pacs +/home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/audio/Kconfig.pbp +/home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/audio/Kconfig.tbs +/home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/audio/Kconfig.tmap +/home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/audio/Kconfig.vcp +/home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/audio/Kconfig.vocs +/home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/common/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/controller/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/controller/Kconfig.df +/home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/controller/Kconfig.dtm +/home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/controller/Kconfig.ll_sw_split +/home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/controller/coex/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/crypto/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/host/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/host/Kconfig.gatt +/home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/host/Kconfig.l2cap +/home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/host/classic/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/lib/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/mesh/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/mesh/shell/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/services/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/services/Kconfig.cts +/home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/services/Kconfig.dis +/home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/services/Kconfig.hrs +/home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/services/Kconfig.tps +/home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/services/bas/Kconfig.bas +/home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/services/ias/Kconfig.ias +/home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/services/nus/Kconfig.nus +/home/miguel/ncs/v3.0.2/zephyr/subsys/bluetooth/services/ots/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/canbus/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/canbus/Kconfig.canopen +/home/miguel/ncs/v3.0.2/zephyr/subsys/canbus/isotp/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/console/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/dap/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/debug/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/debug/coredump/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/debug/gdbstub/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/debug/symtab/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/demand_paging/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/demand_paging/backing_store/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/demand_paging/eviction/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/dfu/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/disk/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/dsp/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/emul/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/emul/espi/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/fb/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/fs/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/fs/Kconfig.fatfs +/home/miguel/ncs/v3.0.2/zephyr/subsys/fs/Kconfig.littlefs +/home/miguel/ncs/v3.0.2/zephyr/subsys/fs/ext2/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/fs/fcb/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/fs/nvs/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/fs/zms/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/input/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/ipc/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/ipc/ipc_service/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/ipc/ipc_service/backends/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/ipc/ipc_service/backends/Kconfig.icbmsg +/home/miguel/ncs/v3.0.2/zephyr/subsys/ipc/ipc_service/backends/Kconfig.icmsg_me +/home/miguel/ncs/v3.0.2/zephyr/subsys/ipc/ipc_service/backends/Kconfig.rpmsg +/home/miguel/ncs/v3.0.2/zephyr/subsys/ipc/ipc_service/lib/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/ipc/ipc_service/lib/Kconfig.icmsg +/home/miguel/ncs/v3.0.2/zephyr/subsys/ipc/rpmsg_service/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/jwt/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/llext/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/logging/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/logging/Kconfig.filtering +/home/miguel/ncs/v3.0.2/zephyr/subsys/logging/Kconfig.formatting +/home/miguel/ncs/v3.0.2/zephyr/subsys/logging/Kconfig.links +/home/miguel/ncs/v3.0.2/zephyr/subsys/logging/Kconfig.misc +/home/miguel/ncs/v3.0.2/zephyr/subsys/logging/Kconfig.mode +/home/miguel/ncs/v3.0.2/zephyr/subsys/logging/Kconfig.processing +/home/miguel/ncs/v3.0.2/zephyr/subsys/logging/Kconfig.template.log_config +/home/miguel/ncs/v3.0.2/zephyr/subsys/logging/Kconfig.template.log_config_inherit +/home/miguel/ncs/v3.0.2/zephyr/subsys/logging/Kconfig.template.log_format_config +/home/miguel/ncs/v3.0.2/zephyr/subsys/logging/backends/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/logging/backends/Kconfig.adsp +/home/miguel/ncs/v3.0.2/zephyr/subsys/logging/backends/Kconfig.adsp_mtrace +/home/miguel/ncs/v3.0.2/zephyr/subsys/logging/backends/Kconfig.ble +/home/miguel/ncs/v3.0.2/zephyr/subsys/logging/backends/Kconfig.efi_console +/home/miguel/ncs/v3.0.2/zephyr/subsys/logging/backends/Kconfig.fs +/home/miguel/ncs/v3.0.2/zephyr/subsys/logging/backends/Kconfig.multidomain +/home/miguel/ncs/v3.0.2/zephyr/subsys/logging/backends/Kconfig.native_posix +/home/miguel/ncs/v3.0.2/zephyr/subsys/logging/backends/Kconfig.net +/home/miguel/ncs/v3.0.2/zephyr/subsys/logging/backends/Kconfig.rtt +/home/miguel/ncs/v3.0.2/zephyr/subsys/logging/backends/Kconfig.semihost +/home/miguel/ncs/v3.0.2/zephyr/subsys/logging/backends/Kconfig.spinel +/home/miguel/ncs/v3.0.2/zephyr/subsys/logging/backends/Kconfig.swo +/home/miguel/ncs/v3.0.2/zephyr/subsys/logging/backends/Kconfig.uart +/home/miguel/ncs/v3.0.2/zephyr/subsys/logging/backends/Kconfig.ws +/home/miguel/ncs/v3.0.2/zephyr/subsys/logging/backends/Kconfig.xtensa_sim +/home/miguel/ncs/v3.0.2/zephyr/subsys/logging/frontends/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/lorawan/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/lorawan/nvm/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/lorawan/services/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/mem_mgmt/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/mgmt/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/mgmt/ec_host_cmd/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/mgmt/ec_host_cmd/Kconfig.logging +/home/miguel/ncs/v3.0.2/zephyr/subsys/mgmt/ec_host_cmd/backends/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/mgmt/hawkbit/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/mgmt/mcumgr/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/mgmt/mcumgr/grp/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/mgmt/mcumgr/grp/enum_mgmt/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/mgmt/mcumgr/grp/fs_mgmt/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/mgmt/mcumgr/grp/img_mgmt/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/mgmt/mcumgr/grp/img_mgmt_client/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/mgmt/mcumgr/grp/os_mgmt/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/mgmt/mcumgr/grp/os_mgmt_client/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/mgmt/mcumgr/grp/settings_mgmt/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/mgmt/mcumgr/grp/shell_mgmt/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/mgmt/mcumgr/grp/stat_mgmt/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/mgmt/mcumgr/grp/zephyr_basic/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/mgmt/mcumgr/mgmt/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/mgmt/mcumgr/smp/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/mgmt/mcumgr/smp_client/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/mgmt/mcumgr/transport/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/mgmt/mcumgr/transport/Kconfig.bluetooth +/home/miguel/ncs/v3.0.2/zephyr/subsys/mgmt/mcumgr/transport/Kconfig.dummy +/home/miguel/ncs/v3.0.2/zephyr/subsys/mgmt/mcumgr/transport/Kconfig.lorawan +/home/miguel/ncs/v3.0.2/zephyr/subsys/mgmt/mcumgr/transport/Kconfig.shell +/home/miguel/ncs/v3.0.2/zephyr/subsys/mgmt/mcumgr/transport/Kconfig.uart +/home/miguel/ncs/v3.0.2/zephyr/subsys/mgmt/mcumgr/transport/Kconfig.udp +/home/miguel/ncs/v3.0.2/zephyr/subsys/mgmt/osdp/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/mgmt/osdp/Kconfig.cp +/home/miguel/ncs/v3.0.2/zephyr/subsys/mgmt/osdp/Kconfig.pd +/home/miguel/ncs/v3.0.2/zephyr/subsys/mgmt/updatehub/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/modbus/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/modem/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/modem/backends/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/net/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/net/Kconfig.hostname +/home/miguel/ncs/v3.0.2/zephyr/subsys/net/Kconfig.template.log_config.net +/home/miguel/ncs/v3.0.2/zephyr/subsys/net/conn_mgr/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/net/ip/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/net/ip/Kconfig.debug +/home/miguel/ncs/v3.0.2/zephyr/subsys/net/ip/Kconfig.ipv4 +/home/miguel/ncs/v3.0.2/zephyr/subsys/net/ip/Kconfig.ipv6 +/home/miguel/ncs/v3.0.2/zephyr/subsys/net/ip/Kconfig.mgmt +/home/miguel/ncs/v3.0.2/zephyr/subsys/net/ip/Kconfig.stack +/home/miguel/ncs/v3.0.2/zephyr/subsys/net/ip/Kconfig.stats +/home/miguel/ncs/v3.0.2/zephyr/subsys/net/ip/Kconfig.tcp +/home/miguel/ncs/v3.0.2/zephyr/subsys/net/l2/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/net/l2/canbus/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/net/l2/dummy/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/net/l2/dummy/any/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/net/l2/ethernet/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/net/l2/ethernet/gptp/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/net/l2/ethernet/lldp/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/net/l2/ieee802154/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/net/l2/ieee802154/Kconfig.radio +/home/miguel/ncs/v3.0.2/zephyr/subsys/net/l2/openthread/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/net/l2/ppp/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/net/l2/virtual/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/net/l2/virtual/ipip/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/net/l2/wifi/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/net/lib/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/net/lib/capture/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/net/lib/coap/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/net/lib/config/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/net/lib/dhcpv4/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/net/lib/dhcpv6/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/net/lib/dns/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/net/lib/http/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/net/lib/lwm2m/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/net/lib/lwm2m/Kconfig.ipso +/home/miguel/ncs/v3.0.2/zephyr/subsys/net/lib/lwm2m/Kconfig.ucifi +/home/miguel/ncs/v3.0.2/zephyr/subsys/net/lib/mqtt/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/net/lib/mqtt_sn/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/net/lib/prometheus/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/net/lib/ptp/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/net/lib/sntp/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/net/lib/sockets/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/net/lib/socks/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/net/lib/tftp/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/net/lib/tls_credentials/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/net/lib/tls_credentials/Kconfig.shell +/home/miguel/ncs/v3.0.2/zephyr/subsys/net/lib/trickle/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/net/lib/websocket/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/net/lib/wifi_credentials/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/net/lib/zperf/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/net/pkt_filter/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/pm/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/pm/policy/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/portability/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/portability/cmsis_rtos_v1/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/portability/cmsis_rtos_v2/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/profiling/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/profiling/perf/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/profiling/perf/backends/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/random/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/retention/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/retention/Kconfig.blinfo +/home/miguel/ncs/v3.0.2/zephyr/subsys/rtio/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/rtio/Kconfig.workq +/home/miguel/ncs/v3.0.2/zephyr/subsys/sd/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/secure_storage/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/secure_storage/Kconfig.its_store +/home/miguel/ncs/v3.0.2/zephyr/subsys/secure_storage/Kconfig.its_transform +/home/miguel/ncs/v3.0.2/zephyr/subsys/sensing/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/sensing/sensor/hinge_angle/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/sensing/sensor/phy_3d_sensor/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/settings/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/shell/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/shell/Kconfig.template.shell_log_queue_size +/home/miguel/ncs/v3.0.2/zephyr/subsys/shell/Kconfig.template.shell_log_queue_timeout +/home/miguel/ncs/v3.0.2/zephyr/subsys/shell/backends/Kconfig.backends +/home/miguel/ncs/v3.0.2/zephyr/subsys/shell/modules/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/shell/modules/kernel_service/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/shell/modules/kernel_service/thread/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/sip_svc/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/stats/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/storage/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/storage/flash_map/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/storage/stream/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/task_wdt/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/testsuite/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/testsuite/Kconfig.defconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/testsuite/ztest/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/timing/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/tracing/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/tracing/sysview/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device/class/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device/class/Kconfig.bt +/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device/class/Kconfig.cdc +/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device/class/Kconfig.msc +/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device/class/Kconfig.template.composite_device_number +/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device/class/Kconfig.test +/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device/class/audio/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device/class/dfu/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device/class/hid/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device/class/netusb/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device_next/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device_next/app/Kconfig.cdc_acm_serial +/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device_next/class/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device_next/class/Kconfig.bt +/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device_next/class/Kconfig.cdc_acm +/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device_next/class/Kconfig.cdc_ecm +/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device_next/class/Kconfig.cdc_ncm +/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device_next/class/Kconfig.hid +/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device_next/class/Kconfig.loopback +/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device_next/class/Kconfig.msc +/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device_next/class/Kconfig.template.instances_count +/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device_next/class/Kconfig.uac2 +/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/host/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/usb/usb_c/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/subsys/zbus/Kconfig diff --git a/build/PHF000-Firmware/zephyr/kernel/CMakeFiles/kernel.dir/banner.c.obj b/build/PHF000-Firmware/zephyr/kernel/CMakeFiles/kernel.dir/banner.c.obj new file mode 100644 index 0000000..4ce83d0 Binary files /dev/null and b/build/PHF000-Firmware/zephyr/kernel/CMakeFiles/kernel.dir/banner.c.obj differ diff --git a/build/PHF000-Firmware/zephyr/kernel/CMakeFiles/kernel.dir/busy_wait.c.obj b/build/PHF000-Firmware/zephyr/kernel/CMakeFiles/kernel.dir/busy_wait.c.obj new file mode 100644 index 0000000..88975d1 Binary files /dev/null and b/build/PHF000-Firmware/zephyr/kernel/CMakeFiles/kernel.dir/busy_wait.c.obj differ diff --git a/build/PHF000-Firmware/zephyr/kernel/CMakeFiles/kernel.dir/condvar.c.obj b/build/PHF000-Firmware/zephyr/kernel/CMakeFiles/kernel.dir/condvar.c.obj new file mode 100644 index 0000000..8be74c0 Binary files /dev/null and b/build/PHF000-Firmware/zephyr/kernel/CMakeFiles/kernel.dir/condvar.c.obj differ diff --git a/build/PHF000-Firmware/zephyr/kernel/CMakeFiles/kernel.dir/device.c.obj b/build/PHF000-Firmware/zephyr/kernel/CMakeFiles/kernel.dir/device.c.obj new file mode 100644 index 0000000..93cb46d Binary files /dev/null and b/build/PHF000-Firmware/zephyr/kernel/CMakeFiles/kernel.dir/device.c.obj differ diff --git a/build/PHF000-Firmware/zephyr/kernel/CMakeFiles/kernel.dir/dynamic_disabled.c.obj b/build/PHF000-Firmware/zephyr/kernel/CMakeFiles/kernel.dir/dynamic_disabled.c.obj new file mode 100644 index 0000000..65fc5c7 Binary files /dev/null and b/build/PHF000-Firmware/zephyr/kernel/CMakeFiles/kernel.dir/dynamic_disabled.c.obj differ diff --git a/build/PHF000-Firmware/zephyr/kernel/CMakeFiles/kernel.dir/errno.c.obj b/build/PHF000-Firmware/zephyr/kernel/CMakeFiles/kernel.dir/errno.c.obj new file mode 100644 index 0000000..3bf1131 Binary files /dev/null and b/build/PHF000-Firmware/zephyr/kernel/CMakeFiles/kernel.dir/errno.c.obj differ diff --git a/build/PHF000-Firmware/zephyr/kernel/CMakeFiles/kernel.dir/fatal.c.obj b/build/PHF000-Firmware/zephyr/kernel/CMakeFiles/kernel.dir/fatal.c.obj new file mode 100644 index 0000000..bbf84c1 Binary files /dev/null and b/build/PHF000-Firmware/zephyr/kernel/CMakeFiles/kernel.dir/fatal.c.obj differ diff --git a/build/PHF000-Firmware/zephyr/kernel/CMakeFiles/kernel.dir/float.c.obj b/build/PHF000-Firmware/zephyr/kernel/CMakeFiles/kernel.dir/float.c.obj new file mode 100644 index 0000000..21d34c9 Binary files /dev/null and b/build/PHF000-Firmware/zephyr/kernel/CMakeFiles/kernel.dir/float.c.obj differ diff --git a/build/PHF000-Firmware/zephyr/kernel/CMakeFiles/kernel.dir/idle.c.obj b/build/PHF000-Firmware/zephyr/kernel/CMakeFiles/kernel.dir/idle.c.obj new file mode 100644 index 0000000..37cc18b Binary files /dev/null and b/build/PHF000-Firmware/zephyr/kernel/CMakeFiles/kernel.dir/idle.c.obj differ diff --git a/build/PHF000-Firmware/zephyr/kernel/CMakeFiles/kernel.dir/init.c.obj b/build/PHF000-Firmware/zephyr/kernel/CMakeFiles/kernel.dir/init.c.obj new file mode 100644 index 0000000..32b628a Binary files /dev/null and b/build/PHF000-Firmware/zephyr/kernel/CMakeFiles/kernel.dir/init.c.obj differ diff --git a/build/PHF000-Firmware/zephyr/kernel/CMakeFiles/kernel.dir/init_static.c.obj b/build/PHF000-Firmware/zephyr/kernel/CMakeFiles/kernel.dir/init_static.c.obj new file mode 100644 index 0000000..b436984 Binary files /dev/null and b/build/PHF000-Firmware/zephyr/kernel/CMakeFiles/kernel.dir/init_static.c.obj differ diff --git a/build/PHF000-Firmware/zephyr/kernel/CMakeFiles/kernel.dir/kheap.c.obj b/build/PHF000-Firmware/zephyr/kernel/CMakeFiles/kernel.dir/kheap.c.obj new file mode 100644 index 0000000..a10aabb Binary files /dev/null and b/build/PHF000-Firmware/zephyr/kernel/CMakeFiles/kernel.dir/kheap.c.obj differ diff --git a/build/PHF000-Firmware/zephyr/kernel/CMakeFiles/kernel.dir/mailbox.c.obj b/build/PHF000-Firmware/zephyr/kernel/CMakeFiles/kernel.dir/mailbox.c.obj new file mode 100644 index 0000000..578eca9 Binary files /dev/null and b/build/PHF000-Firmware/zephyr/kernel/CMakeFiles/kernel.dir/mailbox.c.obj differ diff --git a/build/PHF000-Firmware/zephyr/kernel/CMakeFiles/kernel.dir/main_weak.c.obj b/build/PHF000-Firmware/zephyr/kernel/CMakeFiles/kernel.dir/main_weak.c.obj new file mode 100644 index 0000000..99d7c32 Binary files /dev/null and b/build/PHF000-Firmware/zephyr/kernel/CMakeFiles/kernel.dir/main_weak.c.obj differ diff --git a/build/PHF000-Firmware/zephyr/kernel/CMakeFiles/kernel.dir/mem_slab.c.obj b/build/PHF000-Firmware/zephyr/kernel/CMakeFiles/kernel.dir/mem_slab.c.obj new file mode 100644 index 0000000..083c36e Binary files /dev/null and b/build/PHF000-Firmware/zephyr/kernel/CMakeFiles/kernel.dir/mem_slab.c.obj differ diff --git a/build/PHF000-Firmware/zephyr/kernel/CMakeFiles/kernel.dir/mempool.c.obj b/build/PHF000-Firmware/zephyr/kernel/CMakeFiles/kernel.dir/mempool.c.obj new file mode 100644 index 0000000..3f4d297 Binary files /dev/null and b/build/PHF000-Firmware/zephyr/kernel/CMakeFiles/kernel.dir/mempool.c.obj differ diff --git a/build/PHF000-Firmware/zephyr/kernel/CMakeFiles/kernel.dir/msg_q.c.obj b/build/PHF000-Firmware/zephyr/kernel/CMakeFiles/kernel.dir/msg_q.c.obj new file mode 100644 index 0000000..846d0af Binary files /dev/null and b/build/PHF000-Firmware/zephyr/kernel/CMakeFiles/kernel.dir/msg_q.c.obj differ diff --git a/build/PHF000-Firmware/zephyr/kernel/CMakeFiles/kernel.dir/mutex.c.obj b/build/PHF000-Firmware/zephyr/kernel/CMakeFiles/kernel.dir/mutex.c.obj new file mode 100644 index 0000000..90fe6f5 Binary files /dev/null and b/build/PHF000-Firmware/zephyr/kernel/CMakeFiles/kernel.dir/mutex.c.obj differ diff --git a/build/PHF000-Firmware/zephyr/kernel/CMakeFiles/kernel.dir/priority_queues.c.obj b/build/PHF000-Firmware/zephyr/kernel/CMakeFiles/kernel.dir/priority_queues.c.obj new file mode 100644 index 0000000..fee22dd Binary files /dev/null and b/build/PHF000-Firmware/zephyr/kernel/CMakeFiles/kernel.dir/priority_queues.c.obj differ diff --git a/build/PHF000-Firmware/zephyr/kernel/CMakeFiles/kernel.dir/queue.c.obj b/build/PHF000-Firmware/zephyr/kernel/CMakeFiles/kernel.dir/queue.c.obj new file mode 100644 index 0000000..36af68d Binary files /dev/null and b/build/PHF000-Firmware/zephyr/kernel/CMakeFiles/kernel.dir/queue.c.obj differ diff --git a/build/PHF000-Firmware/zephyr/kernel/CMakeFiles/kernel.dir/sched.c.obj b/build/PHF000-Firmware/zephyr/kernel/CMakeFiles/kernel.dir/sched.c.obj new file mode 100644 index 0000000..aff3be3 Binary files /dev/null and b/build/PHF000-Firmware/zephyr/kernel/CMakeFiles/kernel.dir/sched.c.obj differ diff --git a/build/PHF000-Firmware/zephyr/kernel/CMakeFiles/kernel.dir/sem.c.obj b/build/PHF000-Firmware/zephyr/kernel/CMakeFiles/kernel.dir/sem.c.obj new file mode 100644 index 0000000..10930da Binary files /dev/null and b/build/PHF000-Firmware/zephyr/kernel/CMakeFiles/kernel.dir/sem.c.obj differ diff --git a/build/PHF000-Firmware/zephyr/kernel/CMakeFiles/kernel.dir/spinlock_validate.c.obj b/build/PHF000-Firmware/zephyr/kernel/CMakeFiles/kernel.dir/spinlock_validate.c.obj new file mode 100644 index 0000000..1193f06 Binary files /dev/null and b/build/PHF000-Firmware/zephyr/kernel/CMakeFiles/kernel.dir/spinlock_validate.c.obj differ diff --git a/build/PHF000-Firmware/zephyr/kernel/CMakeFiles/kernel.dir/stack.c.obj b/build/PHF000-Firmware/zephyr/kernel/CMakeFiles/kernel.dir/stack.c.obj new file mode 100644 index 0000000..b4965c4 Binary files /dev/null and b/build/PHF000-Firmware/zephyr/kernel/CMakeFiles/kernel.dir/stack.c.obj differ diff --git a/build/PHF000-Firmware/zephyr/kernel/CMakeFiles/kernel.dir/system_work_q.c.obj b/build/PHF000-Firmware/zephyr/kernel/CMakeFiles/kernel.dir/system_work_q.c.obj new file mode 100644 index 0000000..64afc01 Binary files /dev/null and b/build/PHF000-Firmware/zephyr/kernel/CMakeFiles/kernel.dir/system_work_q.c.obj differ diff --git a/build/PHF000-Firmware/zephyr/kernel/CMakeFiles/kernel.dir/thread.c.obj b/build/PHF000-Firmware/zephyr/kernel/CMakeFiles/kernel.dir/thread.c.obj new file mode 100644 index 0000000..2b9f4e9 Binary files /dev/null and b/build/PHF000-Firmware/zephyr/kernel/CMakeFiles/kernel.dir/thread.c.obj differ diff --git a/build/PHF000-Firmware/zephyr/kernel/CMakeFiles/kernel.dir/timeout.c.obj b/build/PHF000-Firmware/zephyr/kernel/CMakeFiles/kernel.dir/timeout.c.obj new file mode 100644 index 0000000..9c100c9 Binary files /dev/null and b/build/PHF000-Firmware/zephyr/kernel/CMakeFiles/kernel.dir/timeout.c.obj differ diff --git a/build/PHF000-Firmware/zephyr/kernel/CMakeFiles/kernel.dir/timer.c.obj b/build/PHF000-Firmware/zephyr/kernel/CMakeFiles/kernel.dir/timer.c.obj new file mode 100644 index 0000000..c832616 Binary files /dev/null and b/build/PHF000-Firmware/zephyr/kernel/CMakeFiles/kernel.dir/timer.c.obj differ diff --git a/build/PHF000-Firmware/zephyr/kernel/CMakeFiles/kernel.dir/timeslicing.c.obj b/build/PHF000-Firmware/zephyr/kernel/CMakeFiles/kernel.dir/timeslicing.c.obj new file mode 100644 index 0000000..bea64c4 Binary files /dev/null and b/build/PHF000-Firmware/zephyr/kernel/CMakeFiles/kernel.dir/timeslicing.c.obj differ diff --git a/build/PHF000-Firmware/zephyr/kernel/CMakeFiles/kernel.dir/version.c.obj b/build/PHF000-Firmware/zephyr/kernel/CMakeFiles/kernel.dir/version.c.obj new file mode 100644 index 0000000..86a6ee5 Binary files /dev/null and b/build/PHF000-Firmware/zephyr/kernel/CMakeFiles/kernel.dir/version.c.obj differ diff --git a/build/PHF000-Firmware/zephyr/kernel/CMakeFiles/kernel.dir/work.c.obj b/build/PHF000-Firmware/zephyr/kernel/CMakeFiles/kernel.dir/work.c.obj new file mode 100644 index 0000000..82c7bbf Binary files /dev/null and b/build/PHF000-Firmware/zephyr/kernel/CMakeFiles/kernel.dir/work.c.obj differ diff --git a/build/PHF000-Firmware/zephyr/kernel/CMakeFiles/kernel.dir/xip.c.obj b/build/PHF000-Firmware/zephyr/kernel/CMakeFiles/kernel.dir/xip.c.obj new file mode 100644 index 0000000..d047d6d Binary files /dev/null and b/build/PHF000-Firmware/zephyr/kernel/CMakeFiles/kernel.dir/xip.c.obj differ diff --git a/build/PHF000-Firmware/zephyr/kernel/cmake_install.cmake b/build/PHF000-Firmware/zephyr/kernel/cmake_install.cmake new file mode 100644 index 0000000..d844a31 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/kernel/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/kernel + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/zephyr/kernel/libkernel.a b/build/PHF000-Firmware/zephyr/kernel/libkernel.a new file mode 100644 index 0000000..f93d376 Binary files /dev/null and b/build/PHF000-Firmware/zephyr/kernel/libkernel.a differ diff --git a/build/PHF000-Firmware/zephyr/lib/cmake_install.cmake b/build/PHF000-Firmware/zephyr/lib/cmake_install.cmake new file mode 100644 index 0000000..4e98dac --- /dev/null +++ b/build/PHF000-Firmware/zephyr/lib/cmake_install.cmake @@ -0,0 +1,79 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/lib + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/lib/crc/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/lib/libc/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/lib/posix/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/lib/hash/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/lib/heap/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/lib/mem_blocks/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/lib/os/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/lib/utils/cmake_install.cmake") +endif() + diff --git a/build/PHF000-Firmware/zephyr/lib/crc/cmake_install.cmake b/build/PHF000-Firmware/zephyr/lib/crc/cmake_install.cmake new file mode 100644 index 0000000..6df9ff5 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/lib/crc/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/lib/crc + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/zephyr/lib/hash/cmake_install.cmake b/build/PHF000-Firmware/zephyr/lib/hash/cmake_install.cmake new file mode 100644 index 0000000..39d2345 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/lib/hash/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/lib/hash + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/zephyr/lib/heap/cmake_install.cmake b/build/PHF000-Firmware/zephyr/lib/heap/cmake_install.cmake new file mode 100644 index 0000000..82df3db --- /dev/null +++ b/build/PHF000-Firmware/zephyr/lib/heap/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/lib/heap + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/zephyr/lib/libc/cmake_install.cmake b/build/PHF000-Firmware/zephyr/lib/libc/cmake_install.cmake new file mode 100644 index 0000000..a87f75f --- /dev/null +++ b/build/PHF000-Firmware/zephyr/lib/libc/cmake_install.cmake @@ -0,0 +1,49 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/lib/libc + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/lib/libc/picolibc/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/lib/libc/common/cmake_install.cmake") +endif() + diff --git a/build/PHF000-Firmware/zephyr/lib/libc/common/CMakeFiles/lib__libc__common.dir/source/stdlib/abort.c.obj b/build/PHF000-Firmware/zephyr/lib/libc/common/CMakeFiles/lib__libc__common.dir/source/stdlib/abort.c.obj new file mode 100644 index 0000000..12c692c Binary files /dev/null and b/build/PHF000-Firmware/zephyr/lib/libc/common/CMakeFiles/lib__libc__common.dir/source/stdlib/abort.c.obj differ diff --git a/build/PHF000-Firmware/zephyr/lib/libc/common/CMakeFiles/lib__libc__common.dir/source/stdlib/malloc.c.obj b/build/PHF000-Firmware/zephyr/lib/libc/common/CMakeFiles/lib__libc__common.dir/source/stdlib/malloc.c.obj new file mode 100644 index 0000000..7cbf9c2 Binary files /dev/null and b/build/PHF000-Firmware/zephyr/lib/libc/common/CMakeFiles/lib__libc__common.dir/source/stdlib/malloc.c.obj differ diff --git a/build/PHF000-Firmware/zephyr/lib/libc/common/cmake_install.cmake b/build/PHF000-Firmware/zephyr/lib/libc/common/cmake_install.cmake new file mode 100644 index 0000000..d3e5bb5 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/lib/libc/common/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/lib/libc/common + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/zephyr/lib/libc/common/liblib__libc__common.a b/build/PHF000-Firmware/zephyr/lib/libc/common/liblib__libc__common.a new file mode 100644 index 0000000..cf288e3 Binary files /dev/null and b/build/PHF000-Firmware/zephyr/lib/libc/common/liblib__libc__common.a differ diff --git a/build/PHF000-Firmware/zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/assert.c.obj b/build/PHF000-Firmware/zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/assert.c.obj new file mode 100644 index 0000000..f5052c7 Binary files /dev/null and b/build/PHF000-Firmware/zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/assert.c.obj differ diff --git a/build/PHF000-Firmware/zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/cbprintf.c.obj b/build/PHF000-Firmware/zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/cbprintf.c.obj new file mode 100644 index 0000000..60e1968 Binary files /dev/null and b/build/PHF000-Firmware/zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/cbprintf.c.obj differ diff --git a/build/PHF000-Firmware/zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/chk_fail.c.obj b/build/PHF000-Firmware/zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/chk_fail.c.obj new file mode 100644 index 0000000..3cd7b8b Binary files /dev/null and b/build/PHF000-Firmware/zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/chk_fail.c.obj differ diff --git a/build/PHF000-Firmware/zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/errno_wrap.c.obj b/build/PHF000-Firmware/zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/errno_wrap.c.obj new file mode 100644 index 0000000..5a6bc46 Binary files /dev/null and b/build/PHF000-Firmware/zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/errno_wrap.c.obj differ diff --git a/build/PHF000-Firmware/zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/exit.c.obj b/build/PHF000-Firmware/zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/exit.c.obj new file mode 100644 index 0000000..8165756 Binary files /dev/null and b/build/PHF000-Firmware/zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/exit.c.obj differ diff --git a/build/PHF000-Firmware/zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/locks.c.obj b/build/PHF000-Firmware/zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/locks.c.obj new file mode 100644 index 0000000..84f0e4f Binary files /dev/null and b/build/PHF000-Firmware/zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/locks.c.obj differ diff --git a/build/PHF000-Firmware/zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/stdio.c.obj b/build/PHF000-Firmware/zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/stdio.c.obj new file mode 100644 index 0000000..62c028c Binary files /dev/null and b/build/PHF000-Firmware/zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/stdio.c.obj differ diff --git a/build/PHF000-Firmware/zephyr/lib/libc/picolibc/cmake_install.cmake b/build/PHF000-Firmware/zephyr/lib/libc/picolibc/cmake_install.cmake new file mode 100644 index 0000000..d754237 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/lib/libc/picolibc/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/lib/libc/picolibc + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/zephyr/lib/libc/picolibc/liblib__libc__picolibc.a b/build/PHF000-Firmware/zephyr/lib/libc/picolibc/liblib__libc__picolibc.a new file mode 100644 index 0000000..83ade40 Binary files /dev/null and b/build/PHF000-Firmware/zephyr/lib/libc/picolibc/liblib__libc__picolibc.a differ diff --git a/build/PHF000-Firmware/zephyr/lib/mem_blocks/cmake_install.cmake b/build/PHF000-Firmware/zephyr/lib/mem_blocks/cmake_install.cmake new file mode 100644 index 0000000..5726d57 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/lib/mem_blocks/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/lib/mem_blocks + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/zephyr/lib/os/cmake_install.cmake b/build/PHF000-Firmware/zephyr/lib/os/cmake_install.cmake new file mode 100644 index 0000000..4e480d5 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/lib/os/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/lib/os + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/zephyr/lib/posix/cmake_install.cmake b/build/PHF000-Firmware/zephyr/lib/posix/cmake_install.cmake new file mode 100644 index 0000000..eb093e6 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/lib/posix/cmake_install.cmake @@ -0,0 +1,44 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/lib/posix + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/lib/posix/options/cmake_install.cmake") +endif() + diff --git a/build/PHF000-Firmware/zephyr/lib/posix/options/cmake_install.cmake b/build/PHF000-Firmware/zephyr/lib/posix/options/cmake_install.cmake new file mode 100644 index 0000000..c23d3ce --- /dev/null +++ b/build/PHF000-Firmware/zephyr/lib/posix/options/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/lib/posix/options + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/zephyr/lib/utils/cmake_install.cmake b/build/PHF000-Firmware/zephyr/lib/utils/cmake_install.cmake new file mode 100644 index 0000000..ef3abf3 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/lib/utils/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/lib/utils + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/zephyr/libzephyr.a b/build/PHF000-Firmware/zephyr/libzephyr.a new file mode 100644 index 0000000..54b21e0 Binary files /dev/null and b/build/PHF000-Firmware/zephyr/libzephyr.a differ diff --git a/build/PHF000-Firmware/zephyr/linker.cmd b/build/PHF000-Firmware/zephyr/linker.cmd new file mode 100644 index 0000000..57e7afd --- /dev/null +++ b/build/PHF000-Firmware/zephyr/linker.cmd @@ -0,0 +1,428 @@ + OUTPUT_FORMAT("elf32-littlearm") +_region_min_align = 32; +MEMORY + { + FLASH (rx) : ORIGIN = 0x0, LENGTH = 0x80000 + RAM (wx) : ORIGIN = 0x20000000, LENGTH = 0x20000 + + IDT_LIST (wx) : ORIGIN = 0xFFFF7FFF, LENGTH = 32K + } +ENTRY("__start") +SECTIONS + { + .rel.plt : + { + *(.rel.plt) + PROVIDE_HIDDEN (__rel_iplt_start = .); + *(.rel.iplt) + PROVIDE_HIDDEN (__rel_iplt_end = .); + } + .rela.plt : + { + *(.rela.plt) + PROVIDE_HIDDEN (__rela_iplt_start = .); + *(.rela.iplt) + PROVIDE_HIDDEN (__rela_iplt_end = .); + } + .rel.dyn : + { + *(.rel.*) + } + .rela.dyn : + { + *(.rela.*) + } + /DISCARD/ : + { + *(.plt) + } + /DISCARD/ : + { + *(.iplt) + } + + __rom_region_start = 0x0; + rom_start : + { +HIDDEN(__rom_start_address = .); +FILL(0x00); +. += 0x0 - (. - __rom_start_address); +. = ALIGN(4); +. = ALIGN( 1 << LOG2CEIL(4 * 32) ); +. = ALIGN( 1 << LOG2CEIL(4 * (16 + 48)) ); +_vector_start = .; +KEEP(*(.exc_vector_table)) +KEEP(*(".exc_vector_table.*")) +KEEP(*(.vectors)) +_vector_end = .; +. = ALIGN(4); +KEEP(*(.gnu.linkonce.irq_vector_table*)) + _vector_end = .; + } > FLASH + text : + { + __text_region_start = .; + *(.text) + *(".text.*") + *(".TEXT.*") + *(.gnu.linkonce.t.*) + *(.glue_7t) *(.glue_7) *(.vfp11_veneer) *(.v4_bx) + . = ALIGN(4); + } > FLASH + __text_region_end = .; + .ARM.exidx : + { + __exidx_start = .; + *(.ARM.exidx* gnu.linkonce.armexidx.*) + __exidx_end = .; + } > FLASH + __rodata_region_start = .; + initlevel : + { + __init_start = .; + __init_EARLY_start = .; KEEP(*(SORT(.z_init_EARLY?_*))); KEEP(*(SORT(.z_init_EARLY??_*))); + __init_PRE_KERNEL_1_start = .; KEEP(*(SORT(.z_init_PRE_KERNEL_1?_*))); KEEP(*(SORT(.z_init_PRE_KERNEL_1??_*))); + __init_PRE_KERNEL_2_start = .; KEEP(*(SORT(.z_init_PRE_KERNEL_2?_*))); KEEP(*(SORT(.z_init_PRE_KERNEL_2??_*))); + __init_POST_KERNEL_start = .; KEEP(*(SORT(.z_init_POST_KERNEL?_*))); KEEP(*(SORT(.z_init_POST_KERNEL??_*))); + __init_APPLICATION_start = .; KEEP(*(SORT(.z_init_APPLICATION?_*))); KEEP(*(SORT(.z_init_APPLICATION??_*))); + __init_SMP_start = .; KEEP(*(SORT(.z_init_SMP?_*))); KEEP(*(SORT(.z_init_SMP??_*))); + __init_end = .; + __deferred_init_list_start = .; + KEEP(*(.z_deferred_init*)) + __deferred_init_list_end = .; + } > FLASH + device_area : SUBALIGN(4) { _device_list_start = .; KEEP(*(SORT(._device.static.*_?_*))); KEEP(*(SORT(._device.static.*_??_*))); _device_list_end = .; } > FLASH + sw_isr_table : + { + . = ALIGN(4); + *(.gnu.linkonce.sw_isr_table*) + } > FLASH + initlevel_error : + { + KEEP(*(SORT(.z_init_[_A-Z0-9]*))) + } + ASSERT(SIZEOF(initlevel_error) == 0, "Undefined initialization levels used.") + app_shmem_regions : ALIGN_WITH_INPUT + { + __app_shmem_regions_start = .; + KEEP(*(SORT(.app_regions.*))); + __app_shmem_regions_end = .; + } > FLASH + k_p4wq_initparam_area : SUBALIGN(4) { _k_p4wq_initparam_list_start = .; KEEP(*(SORT_BY_NAME(._k_p4wq_initparam.static.*))); _k_p4wq_initparam_list_end = .; } > FLASH + _static_thread_data_area : SUBALIGN(4) { __static_thread_data_list_start = .; KEEP(*(SORT_BY_NAME(.__static_thread_data.static.*))); __static_thread_data_list_end = .; } > FLASH + device_deps : ALIGN_WITH_INPUT + { +__device_deps_start = .; +KEEP(*(SORT(.__device_deps_pass2*))); +__device_deps_end = .; + } > FLASH +adc_driver_api_area : SUBALIGN(4) { _adc_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._adc_driver_api.static.*))); _adc_driver_api_list_end = .; } > FLASH +gpio_driver_api_area : SUBALIGN(4) { _gpio_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._gpio_driver_api.static.*))); _gpio_driver_api_list_end = .; } > FLASH +sensor_driver_api_area : SUBALIGN(4) { _sensor_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._sensor_driver_api.static.*))); _sensor_driver_api_list_end = .; } > FLASH +shared_irq_driver_api_area : SUBALIGN(4) { _shared_irq_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._shared_irq_driver_api.static.*))); _shared_irq_driver_api_list_end = .; } > FLASH +crypto_driver_api_area : SUBALIGN(4) { _crypto_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._crypto_driver_api.static.*))); _crypto_driver_api_list_end = .; } > FLASH +auxdisplay_driver_api_area : SUBALIGN(4) { _auxdisplay_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._auxdisplay_driver_api.static.*))); _auxdisplay_driver_api_list_end = .; } > FLASH +bbram_driver_api_area : SUBALIGN(4) { _bbram_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._bbram_driver_api.static.*))); _bbram_driver_api_list_end = .; } > FLASH +bt_hci_driver_api_area : SUBALIGN(4) { _bt_hci_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._bt_hci_driver_api.static.*))); _bt_hci_driver_api_list_end = .; } > FLASH +can_driver_api_area : SUBALIGN(4) { _can_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._can_driver_api.static.*))); _can_driver_api_list_end = .; } > FLASH +cellular_driver_api_area : SUBALIGN(4) { _cellular_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._cellular_driver_api.static.*))); _cellular_driver_api_list_end = .; } > FLASH +charger_driver_api_area : SUBALIGN(4) { _charger_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._charger_driver_api.static.*))); _charger_driver_api_list_end = .; } > FLASH +clock_control_driver_api_area : SUBALIGN(4) { _clock_control_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._clock_control_driver_api.static.*))); _clock_control_driver_api_list_end = .; } > FLASH +comparator_driver_api_area : SUBALIGN(4) { _comparator_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._comparator_driver_api.static.*))); _comparator_driver_api_list_end = .; } > FLASH +coredump_driver_api_area : SUBALIGN(4) { _coredump_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._coredump_driver_api.static.*))); _coredump_driver_api_list_end = .; } > FLASH +counter_driver_api_area : SUBALIGN(4) { _counter_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._counter_driver_api.static.*))); _counter_driver_api_list_end = .; } > FLASH +dac_driver_api_area : SUBALIGN(4) { _dac_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._dac_driver_api.static.*))); _dac_driver_api_list_end = .; } > FLASH +dai_driver_api_area : SUBALIGN(4) { _dai_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._dai_driver_api.static.*))); _dai_driver_api_list_end = .; } > FLASH +display_driver_api_area : SUBALIGN(4) { _display_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._display_driver_api.static.*))); _display_driver_api_list_end = .; } > FLASH +dma_driver_api_area : SUBALIGN(4) { _dma_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._dma_driver_api.static.*))); _dma_driver_api_list_end = .; } > FLASH +edac_driver_api_area : SUBALIGN(4) { _edac_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._edac_driver_api.static.*))); _edac_driver_api_list_end = .; } > FLASH +eeprom_driver_api_area : SUBALIGN(4) { _eeprom_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._eeprom_driver_api.static.*))); _eeprom_driver_api_list_end = .; } > FLASH +emul_bbram_driver_api_area : SUBALIGN(4) { _emul_bbram_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._emul_bbram_driver_api.static.*))); _emul_bbram_driver_api_list_end = .; } > FLASH +fuel_gauge_emul_driver_api_area : SUBALIGN(4) { _fuel_gauge_emul_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._fuel_gauge_emul_driver_api.static.*))); _fuel_gauge_emul_driver_api_list_end = .; } > FLASH +emul_sensor_driver_api_area : SUBALIGN(4) { _emul_sensor_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._emul_sensor_driver_api.static.*))); _emul_sensor_driver_api_list_end = .; } > FLASH +entropy_driver_api_area : SUBALIGN(4) { _entropy_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._entropy_driver_api.static.*))); _entropy_driver_api_list_end = .; } > FLASH +espi_driver_api_area : SUBALIGN(4) { _espi_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._espi_driver_api.static.*))); _espi_driver_api_list_end = .; } > FLASH +espi_saf_driver_api_area : SUBALIGN(4) { _espi_saf_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._espi_saf_driver_api.static.*))); _espi_saf_driver_api_list_end = .; } > FLASH +flash_driver_api_area : SUBALIGN(4) { _flash_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._flash_driver_api.static.*))); _flash_driver_api_list_end = .; } > FLASH +fpga_driver_api_area : SUBALIGN(4) { _fpga_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._fpga_driver_api.static.*))); _fpga_driver_api_list_end = .; } > FLASH +fuel_gauge_driver_api_area : SUBALIGN(4) { _fuel_gauge_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._fuel_gauge_driver_api.static.*))); _fuel_gauge_driver_api_list_end = .; } > FLASH +gnss_driver_api_area : SUBALIGN(4) { _gnss_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._gnss_driver_api.static.*))); _gnss_driver_api_list_end = .; } > FLASH +haptics_driver_api_area : SUBALIGN(4) { _haptics_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._haptics_driver_api.static.*))); _haptics_driver_api_list_end = .; } > FLASH +hwspinlock_driver_api_area : SUBALIGN(4) { _hwspinlock_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._hwspinlock_driver_api.static.*))); _hwspinlock_driver_api_list_end = .; } > FLASH +i2c_driver_api_area : SUBALIGN(4) { _i2c_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._i2c_driver_api.static.*))); _i2c_driver_api_list_end = .; } > FLASH +i2c_target_driver_api_area : SUBALIGN(4) { _i2c_target_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._i2c_target_driver_api.static.*))); _i2c_target_driver_api_list_end = .; } > FLASH +i2s_driver_api_area : SUBALIGN(4) { _i2s_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._i2s_driver_api.static.*))); _i2s_driver_api_list_end = .; } > FLASH +i3c_driver_api_area : SUBALIGN(4) { _i3c_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._i3c_driver_api.static.*))); _i3c_driver_api_list_end = .; } > FLASH +ipm_driver_api_area : SUBALIGN(4) { _ipm_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._ipm_driver_api.static.*))); _ipm_driver_api_list_end = .; } > FLASH +kscan_driver_api_area : SUBALIGN(4) { _kscan_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._kscan_driver_api.static.*))); _kscan_driver_api_list_end = .; } > FLASH +led_driver_api_area : SUBALIGN(4) { _led_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._led_driver_api.static.*))); _led_driver_api_list_end = .; } > FLASH +led_strip_driver_api_area : SUBALIGN(4) { _led_strip_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._led_strip_driver_api.static.*))); _led_strip_driver_api_list_end = .; } > FLASH +lora_driver_api_area : SUBALIGN(4) { _lora_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._lora_driver_api.static.*))); _lora_driver_api_list_end = .; } > FLASH +mbox_driver_api_area : SUBALIGN(4) { _mbox_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._mbox_driver_api.static.*))); _mbox_driver_api_list_end = .; } > FLASH +mdio_driver_api_area : SUBALIGN(4) { _mdio_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._mdio_driver_api.static.*))); _mdio_driver_api_list_end = .; } > FLASH +mipi_dbi_driver_api_area : SUBALIGN(4) { _mipi_dbi_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._mipi_dbi_driver_api.static.*))); _mipi_dbi_driver_api_list_end = .; } > FLASH +mipi_dsi_driver_api_area : SUBALIGN(4) { _mipi_dsi_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._mipi_dsi_driver_api.static.*))); _mipi_dsi_driver_api_list_end = .; } > FLASH +mspi_driver_api_area : SUBALIGN(4) { _mspi_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._mspi_driver_api.static.*))); _mspi_driver_api_list_end = .; } > FLASH +peci_driver_api_area : SUBALIGN(4) { _peci_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._peci_driver_api.static.*))); _peci_driver_api_list_end = .; } > FLASH +ps2_driver_api_area : SUBALIGN(4) { _ps2_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._ps2_driver_api.static.*))); _ps2_driver_api_list_end = .; } > FLASH +ptp_clock_driver_api_area : SUBALIGN(4) { _ptp_clock_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._ptp_clock_driver_api.static.*))); _ptp_clock_driver_api_list_end = .; } > FLASH +pwm_driver_api_area : SUBALIGN(4) { _pwm_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._pwm_driver_api.static.*))); _pwm_driver_api_list_end = .; } > FLASH +regulator_parent_driver_api_area : SUBALIGN(4) { _regulator_parent_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._regulator_parent_driver_api.static.*))); _regulator_parent_driver_api_list_end = .; } > FLASH +regulator_driver_api_area : SUBALIGN(4) { _regulator_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._regulator_driver_api.static.*))); _regulator_driver_api_list_end = .; } > FLASH +reset_driver_api_area : SUBALIGN(4) { _reset_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._reset_driver_api.static.*))); _reset_driver_api_list_end = .; } > FLASH +retained_mem_driver_api_area : SUBALIGN(4) { _retained_mem_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._retained_mem_driver_api.static.*))); _retained_mem_driver_api_list_end = .; } > FLASH +rtc_driver_api_area : SUBALIGN(4) { _rtc_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._rtc_driver_api.static.*))); _rtc_driver_api_list_end = .; } > FLASH +sdhc_driver_api_area : SUBALIGN(4) { _sdhc_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._sdhc_driver_api.static.*))); _sdhc_driver_api_list_end = .; } > FLASH +smbus_driver_api_area : SUBALIGN(4) { _smbus_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._smbus_driver_api.static.*))); _smbus_driver_api_list_end = .; } > FLASH +spi_driver_api_area : SUBALIGN(4) { _spi_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._spi_driver_api.static.*))); _spi_driver_api_list_end = .; } > FLASH +stepper_driver_api_area : SUBALIGN(4) { _stepper_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._stepper_driver_api.static.*))); _stepper_driver_api_list_end = .; } > FLASH +syscon_driver_api_area : SUBALIGN(4) { _syscon_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._syscon_driver_api.static.*))); _syscon_driver_api_list_end = .; } > FLASH +tee_driver_api_area : SUBALIGN(4) { _tee_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._tee_driver_api.static.*))); _tee_driver_api_list_end = .; } > FLASH +video_driver_api_area : SUBALIGN(4) { _video_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._video_driver_api.static.*))); _video_driver_api_list_end = .; } > FLASH +w1_driver_api_area : SUBALIGN(4) { _w1_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._w1_driver_api.static.*))); _w1_driver_api_list_end = .; } > FLASH +wdt_driver_api_area : SUBALIGN(4) { _wdt_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._wdt_driver_api.static.*))); _wdt_driver_api_list_end = .; } > FLASH +can_transceiver_driver_api_area : SUBALIGN(4) { _can_transceiver_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._can_transceiver_driver_api.static.*))); _can_transceiver_driver_api_list_end = .; } > FLASH +nrf_clock_control_driver_api_area : SUBALIGN(4) { _nrf_clock_control_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._nrf_clock_control_driver_api.static.*))); _nrf_clock_control_driver_api_list_end = .; } > FLASH +i3c_target_driver_api_area : SUBALIGN(4) { _i3c_target_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._i3c_target_driver_api.static.*))); _i3c_target_driver_api_list_end = .; } > FLASH +its_driver_api_area : SUBALIGN(4) { _its_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._its_driver_api.static.*))); _its_driver_api_list_end = .; } > FLASH +vtd_driver_api_area : SUBALIGN(4) { _vtd_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._vtd_driver_api.static.*))); _vtd_driver_api_list_end = .; } > FLASH +tgpio_driver_api_area : SUBALIGN(4) { _tgpio_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._tgpio_driver_api.static.*))); _tgpio_driver_api_list_end = .; } > FLASH +pcie_ctrl_driver_api_area : SUBALIGN(4) { _pcie_ctrl_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._pcie_ctrl_driver_api.static.*))); _pcie_ctrl_driver_api_list_end = .; } > FLASH +pcie_ep_driver_api_area : SUBALIGN(4) { _pcie_ep_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._pcie_ep_driver_api.static.*))); _pcie_ep_driver_api_list_end = .; } > FLASH +svc_driver_api_area : SUBALIGN(4) { _svc_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._svc_driver_api.static.*))); _svc_driver_api_list_end = .; } > FLASH +uart_driver_api_area : SUBALIGN(4) { _uart_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._uart_driver_api.static.*))); _uart_driver_api_list_end = .; } > FLASH +bc12_emul_driver_api_area : SUBALIGN(4) { _bc12_emul_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._bc12_emul_driver_api.static.*))); _bc12_emul_driver_api_list_end = .; } > FLASH +bc12_driver_api_area : SUBALIGN(4) { _bc12_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._bc12_driver_api.static.*))); _bc12_driver_api_list_end = .; } > FLASH +usbc_ppc_driver_api_area : SUBALIGN(4) { _usbc_ppc_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._usbc_ppc_driver_api.static.*))); _usbc_ppc_driver_api_list_end = .; } > FLASH +tcpc_driver_api_area : SUBALIGN(4) { _tcpc_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._tcpc_driver_api.static.*))); _tcpc_driver_api_list_end = .; } > FLASH +usbc_vbus_driver_api_area : SUBALIGN(4) { _usbc_vbus_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._usbc_vbus_driver_api.static.*))); _usbc_vbus_driver_api_list_end = .; } > FLASH +ivshmem_driver_api_area : SUBALIGN(4) { _ivshmem_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._ivshmem_driver_api.static.*))); _ivshmem_driver_api_list_end = .; } > FLASH +ethphy_driver_api_area : SUBALIGN(4) { _ethphy_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._ethphy_driver_api.static.*))); _ethphy_driver_api_list_end = .; } > FLASH +ztest : +{ + _ztest_expected_result_entry_list_start = .; KEEP(*(SORT_BY_NAME(._ztest_expected_result_entry.static.*))); _ztest_expected_result_entry_list_end = .; + _ztest_suite_node_list_start = .; KEEP(*(SORT_BY_NAME(._ztest_suite_node.static.*))); _ztest_suite_node_list_end = .; + _ztest_unit_test_list_start = .; KEEP(*(SORT_BY_NAME(._ztest_unit_test.static.*))); _ztest_unit_test_list_end = .; + _ztest_test_rule_list_start = .; KEEP(*(SORT_BY_NAME(._ztest_test_rule.static.*))); _ztest_test_rule_list_end = .; +} > FLASH + init_array : + { + KEEP(*(SORT_BY_NAME(".ctors*"))) + KEEP(*(SORT_BY_NAME(".init_array*"))) + } > FLASH + ASSERT (SIZEOF(init_array) == 0, + "GNU-style constructors required but STATIC_INIT_GNU not enabled") + bt_l2cap_fixed_chan_area : SUBALIGN(4) { _bt_l2cap_fixed_chan_list_start = .; KEEP(*(SORT_BY_NAME(._bt_l2cap_fixed_chan.static.*))); _bt_l2cap_fixed_chan_list_end = .; } > FLASH + bt_gatt_service_static_area : SUBALIGN(4) { _bt_gatt_service_static_list_start = .; KEEP(*(SORT_BY_NAME(._bt_gatt_service_static.static.*))); _bt_gatt_service_static_list_end = .; } > FLASH + log_strings_area : SUBALIGN(4) { _log_strings_list_start = .; KEEP(*(SORT_BY_NAME(._log_strings.static.*))); _log_strings_list_end = .; } > FLASH + log_stmesp_ptr_area : SUBALIGN(4) { _log_stmesp_ptr_list_start = .; KEEP(*(SORT_BY_NAME(._log_stmesp_ptr.static.*))); _log_stmesp_ptr_list_end = .; } > FLASH + log_stmesp_str_area : SUBALIGN(4) { _log_stmesp_str_list_start = .; KEEP(*(SORT_BY_NAME(._log_stmesp_str.static.*))); _log_stmesp_str_list_end = .; } > FLASH + log_const_area : SUBALIGN(4) { _log_const_list_start = .; KEEP(*(SORT_BY_NAME(._log_const.static.*))); _log_const_list_end = .; } > FLASH + log_backend_area : SUBALIGN(4) { _log_backend_list_start = .; KEEP(*(SORT_BY_NAME(._log_backend.static.*))); _log_backend_list_end = .; } > FLASH + log_link_area : SUBALIGN(4) { _log_link_list_start = .; KEEP(*(SORT_BY_NAME(._log_link.static.*))); _log_link_list_end = .; } > FLASH + tracing_backend_area : SUBALIGN(4) { _tracing_backend_list_start = .; KEEP(*(SORT_BY_NAME(._tracing_backend.static.*))); _tracing_backend_list_end = .; } > FLASH + zephyr_dbg_info : ALIGN_WITH_INPUT + { + KEEP(*(".dbg_thread_info")); + } > FLASH + intc_table_area : SUBALIGN(4) { _intc_table_list_start = .; KEEP(*(SORT_BY_NAME(._intc_table.static.*))); _intc_table_list_end = .; } > FLASH + symbol_to_keep : ALIGN_WITH_INPUT + { + __symbol_to_keep_start = .; + KEEP(*(SORT(.symbol_to_keep*))); + __symbol_to_keep_end = .; + } > FLASH + shell_area : SUBALIGN(4) { _shell_list_start = .; KEEP(*(SORT_BY_NAME(._shell.static.*))); _shell_list_end = .; } > FLASH + shell_root_cmds_area : SUBALIGN(4) { _shell_root_cmds_list_start = .; KEEP(*(SORT_BY_NAME(._shell_root_cmds.static.*))); _shell_root_cmds_list_end = .; } > FLASH + shell_subcmds_area : SUBALIGN(4) { _shell_subcmds_list_start = .; KEEP(*(SORT_BY_NAME(._shell_subcmds.static.*))); _shell_subcmds_list_end = .; } > FLASH + shell_dynamic_subcmds_area : SUBALIGN(4) { _shell_dynamic_subcmds_list_start = .; KEEP(*(SORT_BY_NAME(._shell_dynamic_subcmds.static.*))); _shell_dynamic_subcmds_list_end = .; } > FLASH + cfb_font_area : SUBALIGN(4) { _cfb_font_list_start = .; KEEP(*(SORT_BY_NAME(._cfb_font.static.*))); _cfb_font_list_end = .; } > FLASH + tdata : ALIGN_WITH_INPUT + { + *(.tdata .tdata.* .gnu.linkonce.td.*); + } > FLASH + tbss : ALIGN_WITH_INPUT + { + *(.tbss .tbss.* .gnu.linkonce.tb.* .tcommon); + } > FLASH + PROVIDE(__tdata_start = LOADADDR(tdata)); + PROVIDE(__tdata_align = ALIGNOF(tdata)); + PROVIDE(__tdata_size = (SIZEOF(tdata) + __tdata_align - 1) & ~(__tdata_align - 1)); + PROVIDE(__tdata_end = __tdata_start + __tdata_size); + PROVIDE(__tbss_align = ALIGNOF(tbss)); + PROVIDE(__tbss_start = ADDR(tbss)); + PROVIDE(__tbss_size = (SIZEOF(tbss) + __tbss_align - 1) & ~(__tbss_align - 1)); + PROVIDE(__tbss_end = __tbss_start + __tbss_size); + PROVIDE(__tls_start = __tdata_start); + PROVIDE(__tls_end = __tbss_end); + PROVIDE(__tls_size = __tbss_end - __tdata_start); + rodata : + { + *(.rodata) + *(".rodata.*") + *(.gnu.linkonce.r.*) + . = ALIGN(4); + } > FLASH + /DISCARD/ : { *(.eh_frame) } + __rodata_region_end = .; + . = ALIGN(_region_min_align); . = ALIGN( 1 << LOG2CEIL(__rodata_region_end - ADDR(rom_start))); + __rom_region_end = __rom_region_start + . - ADDR(rom_start); + + /DISCARD/ : { + *(.got.plt) + *(.igot.plt) + *(.got) + *(.igot) + } + + . = 0x20000000; + . = ALIGN(_region_min_align); + _image_ram_start = .; +_RTT_SECTION_NAME (NOLOAD) : ALIGN_WITH_INPUT +{ +__rtt_buff_data_start = .; +*(".rtt_buff_data") +__rtt_buff_data_end = ALIGN(4); +} > RAM AT > RAM +__rtt_buff_data_size = __rtt_buff_data_end - __rtt_buff_data_start; +.ramfunc : ALIGN_WITH_INPUT +{ + __ramfunc_region_start = .; + . = ALIGN(_region_min_align); . = ALIGN( 1 << LOG2CEIL(__ramfunc_size)); + __ramfunc_start = .; + *(.ramfunc) + *(".ramfunc.*") + . = ALIGN(_region_min_align); . = ALIGN( 1 << LOG2CEIL(__ramfunc_size)); + __ramfunc_end = .; +} > RAM AT > FLASH +__ramfunc_size = __ramfunc_end - __ramfunc_start; +__ramfunc_load_start = LOADADDR(.ramfunc); + + datas : ALIGN_WITH_INPUT + { + __data_region_start = .; + __data_start = .; + *(.data) + *(".data.*") + *(".kernel.*") + __data_end = .; + } > RAM AT > FLASH + __data_size = __data_end - __data_start; + __data_load_start = LOADADDR(datas); + __data_region_load_start = LOADADDR(datas); + device_states : ALIGN_WITH_INPUT + { + __device_states_start = .; + KEEP(*(".z_devstate")); + KEEP(*(".z_devstate.*")); + __device_states_end = .; + } > RAM AT > FLASH + log_mpsc_pbuf_area : ALIGN_WITH_INPUT { _log_mpsc_pbuf_list_start = .; *(SORT_BY_NAME(._log_mpsc_pbuf.static.*)); _log_mpsc_pbuf_list_end = .; } > RAM AT > FLASH + log_msg_ptr_area : ALIGN_WITH_INPUT { _log_msg_ptr_list_start = .; KEEP(*(SORT_BY_NAME(._log_msg_ptr.static.*))); _log_msg_ptr_list_end = .; } > RAM AT > FLASH + log_dynamic_area : ALIGN_WITH_INPUT { _log_dynamic_list_start = .; KEEP(*(SORT_BY_NAME(._log_dynamic.static.*))); _log_dynamic_list_end = .; } > RAM AT > FLASH + k_timer_area : ALIGN_WITH_INPUT { _k_timer_list_start = .; *(SORT_BY_NAME(._k_timer.static.*)); _k_timer_list_end = .; } > RAM AT > FLASH + k_mem_slab_area : ALIGN_WITH_INPUT { _k_mem_slab_list_start = .; *(SORT_BY_NAME(._k_mem_slab.static.*)); _k_mem_slab_list_end = .; } > RAM AT > FLASH + k_heap_area : ALIGN_WITH_INPUT { _k_heap_list_start = .; *(SORT_BY_NAME(._k_heap.static.*)); _k_heap_list_end = .; } > RAM AT > FLASH + k_mutex_area : ALIGN_WITH_INPUT { _k_mutex_list_start = .; *(SORT_BY_NAME(._k_mutex.static.*)); _k_mutex_list_end = .; } > RAM AT > FLASH + k_stack_area : ALIGN_WITH_INPUT { _k_stack_list_start = .; *(SORT_BY_NAME(._k_stack.static.*)); _k_stack_list_end = .; } > RAM AT > FLASH + k_msgq_area : ALIGN_WITH_INPUT { _k_msgq_list_start = .; *(SORT_BY_NAME(._k_msgq.static.*)); _k_msgq_list_end = .; } > RAM AT > FLASH + k_mbox_area : ALIGN_WITH_INPUT { _k_mbox_list_start = .; *(SORT_BY_NAME(._k_mbox.static.*)); _k_mbox_list_end = .; } > RAM AT > FLASH + k_pipe_area : ALIGN_WITH_INPUT { _k_pipe_list_start = .; *(SORT_BY_NAME(._k_pipe.static.*)); _k_pipe_list_end = .; } > RAM AT > FLASH + k_sem_area : ALIGN_WITH_INPUT { _k_sem_list_start = .; *(SORT_BY_NAME(._k_sem.static.*)); _k_sem_list_end = .; } > RAM AT > FLASH + k_event_area : ALIGN_WITH_INPUT { _k_event_list_start = .; *(SORT_BY_NAME(._k_event.static.*)); _k_event_list_end = .; } > RAM AT > FLASH + k_queue_area : ALIGN_WITH_INPUT { _k_queue_list_start = .; *(SORT_BY_NAME(._k_queue.static.*)); _k_queue_list_end = .; } > RAM AT > FLASH + k_fifo_area : ALIGN_WITH_INPUT { _k_fifo_list_start = .; *(SORT_BY_NAME(._k_fifo.static.*)); _k_fifo_list_end = .; } > RAM AT > FLASH + k_lifo_area : ALIGN_WITH_INPUT { _k_lifo_list_start = .; *(SORT_BY_NAME(._k_lifo.static.*)); _k_lifo_list_end = .; } > RAM AT > FLASH + k_condvar_area : ALIGN_WITH_INPUT { _k_condvar_list_start = .; *(SORT_BY_NAME(._k_condvar.static.*)); _k_condvar_list_end = .; } > RAM AT > FLASH + sys_mem_blocks_ptr_area : ALIGN_WITH_INPUT { _sys_mem_blocks_ptr_list_start = .; *(SORT_BY_NAME(._sys_mem_blocks_ptr.static.*)); _sys_mem_blocks_ptr_list_end = .; } > RAM AT > FLASH + net_buf_pool_area : ALIGN_WITH_INPUT { _net_buf_pool_list_start = .; KEEP(*(SORT_BY_NAME(._net_buf_pool.static.*))); _net_buf_pool_list_end = .; } > RAM AT > FLASH + usb_descriptor : ALIGN_WITH_INPUT + { + __usb_descriptor_start = .; + *(".usb.descriptor") + KEEP(*(SORT_BY_NAME(".usb.descriptor*"))) + __usb_descriptor_end = .; + } > RAM AT > FLASH + usb_cfg_data_area : ALIGN_WITH_INPUT { _usb_cfg_data_list_start = .; KEEP(*(SORT_BY_NAME(._usb_cfg_data.static.*))); _usb_cfg_data_list_end = .; } > RAM AT > FLASH + __data_region_end = .; +PROVIDE(soc_reset_hook = SystemInit); +/DISCARD/ : +{ + KEEP(*(.irq_info*)) + KEEP(*(.intList*)) +} + .stab 0 : { *(.stab) } + .stabstr 0 : { *(.stabstr) } + .stab.excl 0 : { *(.stab.excl) } + .stab.exclstr 0 : { *(.stab.exclstr) } + .stab.index 0 : { *(.stab.index) } + .stab.indexstr 0 : { *(.stab.indexstr) } + .gnu.build.attributes 0 : { *(.gnu.build.attributes .gnu.build.attributes.*) } + .comment 0 : { *(.comment) } + .debug 0 : { *(.debug) } + .line 0 : { *(.line) } + .debug_srcinfo 0 : { *(.debug_srcinfo) } + .debug_sfnames 0 : { *(.debug_sfnames) } + .debug_aranges 0 : { *(.debug_aranges) } + .debug_pubnames 0 : { *(.debug_pubnames) } + .debug_info 0 : { *(.debug_info .gnu.linkonce.wi.*) } + .debug_abbrev 0 : { *(.debug_abbrev) } + .debug_line 0 : { *(.debug_line .debug_line.* .debug_line_end ) } + .debug_frame 0 : { *(.debug_frame) } + .debug_str 0 : { *(.debug_str) } + .debug_loc 0 : { *(.debug_loc) } + .debug_macinfo 0 : { *(.debug_macinfo) } + .debug_weaknames 0 : { *(.debug_weaknames) } + .debug_funcnames 0 : { *(.debug_funcnames) } + .debug_typenames 0 : { *(.debug_typenames) } + .debug_varnames 0 : { *(.debug_varnames) } + .debug_pubtypes 0 : { *(.debug_pubtypes) } + .debug_ranges 0 : { *(.debug_ranges) } + .debug_addr 0 : { *(.debug_addr) } + .debug_line_str 0 : { *(.debug_line_str) } + .debug_loclists 0 : { *(.debug_loclists) } + .debug_macro 0 : { *(.debug_macro) } + .debug_names 0 : { *(.debug_names) } + .debug_rnglists 0 : { *(.debug_rnglists) } + .debug_str_offsets 0 : { *(.debug_str_offsets) } + .debug_sup 0 : { *(.debug_sup) } + /DISCARD/ : { *(.note.GNU-stack) } + .ARM.attributes 0 : + { + KEEP(*(.ARM.attributes)) + KEEP(*(.gnu.attributes)) + } + +.last_section : +{ + KEEP(*(.last_section)) +} > FLASH +_flash_used = LOADADDR(.last_section) + SIZEOF(.last_section) - __rom_region_start; + bss (NOLOAD) : ALIGN_WITH_INPUT + { + . = ALIGN(4); + __bss_start = .; + __kernel_ram_start = .; + *(.bss) + *(".bss.*") + *(COMMON) + *(".kernel_bss.*") + __bss_end = ALIGN(4); + } > RAM AT > RAM + noinit (NOLOAD) : + { + *(.noinit) + *(".noinit.*") + *(".kernel_noinit.*") + } > RAM AT > RAM + __kernel_ram_end = 0x20000000 + 0x20000; + __kernel_ram_size = __kernel_ram_end - __kernel_ram_start; + .last_ram_section (NOLOAD) : + { + _image_ram_end = .; + _image_ram_size = _image_ram_end - _image_ram_start; + _end = .; + z_mapped_end = .; + } > RAM AT > RAM + + } diff --git a/build/PHF000-Firmware/zephyr/linker.cmd.dep b/build/PHF000-Firmware/zephyr/linker.cmd.dep new file mode 100644 index 0000000..098dd70 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/linker.cmd.dep @@ -0,0 +1,86 @@ +linker.cmd: \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/arch/arm/cortex_m/scripts/linker.ld \ + /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/sections.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/section_tags.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/gcc.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/devicetree.h \ + /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/devicetree_generated.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/irq_multilevel.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/sys/util.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/sys/util_macro.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/sys/util_internal.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/sys/util_loops.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/sys/util_listify.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/sys/util_internal_is_eq.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/sys/util_internal_util_inc.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/sys/util_internal_util_dec.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/sys/util_internal_util_x2.h \ + /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/lib/gcc/arm-zephyr-eabi/12.2.0/include/stdbool.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/devicetree/io-channels.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/devicetree/clocks.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/devicetree/gpio.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/devicetree/spi.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/devicetree/dma.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/devicetree/pwms.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/devicetree/fixed-partitions.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/devicetree/ordinals.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/devicetree/pinctrl.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/devicetree/can.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/devicetree/reset.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/devicetree/mbox.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/devicetree/port-endpoint.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/devicetree_regions.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/linker-defs.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/common.h \ + /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/offsets.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/linker-tool.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/linker-tool-gcc.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/kernel/mm.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/kernel/internal/mm.h \ + /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/pm_config.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/linker-devnull.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/rel-sections.ld \ + /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/snippets-rom-start.ld \ + /home/miguel/ncs/v3.0.2/zephyr/include/../arch/common/rom_start_address.ld \ + /home/miguel/ncs/v3.0.2/zephyr/include/../arch/common/fill_with_zeros.ld \ + /home/miguel/ncs/v3.0.2/zephyr/include/../arch/common/rom_start_offset.ld \ + /home/miguel/ncs/v3.0.2/zephyr/include/../arch/arm/core/vector_table.ld \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/irq-vector-table-section.ld \ + /home/miguel/ncs/v3.0.2/zephyr/include/../arch/arm/core/cortex_m/vector_table_pad.ld \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/kobject-text.ld \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/common-rom.ld \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/common-rom/common-rom-kernel-devices.ld \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/iterable_sections.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/device-deps.ld \ + /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/device-api-sections.ld \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/common-rom/common-rom-ztest.ld \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/common-rom/common-rom-init.ld \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/common-rom/common-rom-net.ld \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/common-rom/common-rom-bt.ld \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/common-rom/common-rom-logging.ld \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/common-rom/common-rom-debug.ld \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/common-rom/common-rom-interrupt-controllers.ld \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/common-rom/common-rom-misc.ld \ + /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/snippets-rom-sections.ld \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/thread-local-storage.ld \ + /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/snippets-rodata.ld \ + /home/miguel/ncs/v3.0.2/zephyr/include/../arch/arm/core/swi_tables.ld \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/kobject-rom.ld \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/cplusplus-rom.ld \ + /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/snippets-ram-sections.ld \ + /home/miguel/ncs/v3.0.2/zephyr/include/../modules/segger/segger_rtt.ld \ + /home/miguel/ncs/v3.0.2/zephyr/include/../arch/common/ramfunc.ld \ + /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/snippets-ramfunc-section.ld \ + /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/snippets-rwdata.ld \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/common-ram.ld \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/kobject-data.ld \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/cplusplus-ram.ld \ + /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/snippets-data-sections.ld \ + /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/snippets-sections.ld \ + /home/miguel/ncs/v3.0.2/zephyr/include/../soc/nordic/common/arm_platform_init.ld \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/intlist.ld \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/debug-sections.ld \ + /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/snippets-noinit.ld \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/ram-end.ld diff --git a/build/PHF000-Firmware/zephyr/linker_zephyr_pre0.cmd b/build/PHF000-Firmware/zephyr/linker_zephyr_pre0.cmd new file mode 100644 index 0000000..56299d5 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/linker_zephyr_pre0.cmd @@ -0,0 +1,428 @@ + OUTPUT_FORMAT("elf32-littlearm") +_region_min_align = 32; +MEMORY + { + FLASH (rx) : ORIGIN = 0x0, LENGTH = 0x80000 + RAM (wx) : ORIGIN = 0x20000000, LENGTH = 0x20000 + + IDT_LIST (wx) : ORIGIN = 0xFFFF7FFF, LENGTH = 32K + } +ENTRY("__start") +SECTIONS + { + .rel.plt : + { + *(.rel.plt) + PROVIDE_HIDDEN (__rel_iplt_start = .); + *(.rel.iplt) + PROVIDE_HIDDEN (__rel_iplt_end = .); + } + .rela.plt : + { + *(.rela.plt) + PROVIDE_HIDDEN (__rela_iplt_start = .); + *(.rela.iplt) + PROVIDE_HIDDEN (__rela_iplt_end = .); + } + .rel.dyn : + { + *(.rel.*) + } + .rela.dyn : + { + *(.rela.*) + } + /DISCARD/ : + { + *(.plt) + } + /DISCARD/ : + { + *(.iplt) + } + + __rom_region_start = 0x0; + rom_start : + { +HIDDEN(__rom_start_address = .); +FILL(0x00); +. += 0x0 - (. - __rom_start_address); +. = ALIGN(4); +. = ALIGN( 1 << LOG2CEIL(4 * 32) ); +. = ALIGN( 1 << LOG2CEIL(4 * (16 + 48)) ); +_vector_start = .; +KEEP(*(.exc_vector_table)) +KEEP(*(".exc_vector_table.*")) +KEEP(*(.vectors)) +_vector_end = .; +. = ALIGN(4); +KEEP(*(.gnu.linkonce.irq_vector_table*)) + _vector_end = .; + } > FLASH + text : + { + __text_region_start = .; + *(.text) + *(".text.*") + *(".TEXT.*") + *(.gnu.linkonce.t.*) + *(.glue_7t) *(.glue_7) *(.vfp11_veneer) *(.v4_bx) + . = ALIGN(4); + } > FLASH + __text_region_end = .; + .ARM.exidx : + { + __exidx_start = .; + *(.ARM.exidx* gnu.linkonce.armexidx.*) + __exidx_end = .; + } > FLASH + __rodata_region_start = .; + initlevel : + { + __init_start = .; + __init_EARLY_start = .; KEEP(*(SORT(.z_init_EARLY?_*))); KEEP(*(SORT(.z_init_EARLY??_*))); + __init_PRE_KERNEL_1_start = .; KEEP(*(SORT(.z_init_PRE_KERNEL_1?_*))); KEEP(*(SORT(.z_init_PRE_KERNEL_1??_*))); + __init_PRE_KERNEL_2_start = .; KEEP(*(SORT(.z_init_PRE_KERNEL_2?_*))); KEEP(*(SORT(.z_init_PRE_KERNEL_2??_*))); + __init_POST_KERNEL_start = .; KEEP(*(SORT(.z_init_POST_KERNEL?_*))); KEEP(*(SORT(.z_init_POST_KERNEL??_*))); + __init_APPLICATION_start = .; KEEP(*(SORT(.z_init_APPLICATION?_*))); KEEP(*(SORT(.z_init_APPLICATION??_*))); + __init_SMP_start = .; KEEP(*(SORT(.z_init_SMP?_*))); KEEP(*(SORT(.z_init_SMP??_*))); + __init_end = .; + __deferred_init_list_start = .; + KEEP(*(.z_deferred_init*)) + __deferred_init_list_end = .; + } > FLASH + device_area : SUBALIGN(4) { _device_list_start = .; KEEP(*(SORT(._device.static.*_?_*))); KEEP(*(SORT(._device.static.*_??_*))); _device_list_end = .; } > FLASH + sw_isr_table : + { + . = ALIGN(4); + *(.gnu.linkonce.sw_isr_table*) + } > FLASH + initlevel_error : + { + KEEP(*(SORT(.z_init_[_A-Z0-9]*))) + } + ASSERT(SIZEOF(initlevel_error) == 0, "Undefined initialization levels used.") + app_shmem_regions : ALIGN_WITH_INPUT + { + __app_shmem_regions_start = .; + KEEP(*(SORT(.app_regions.*))); + __app_shmem_regions_end = .; + } > FLASH + k_p4wq_initparam_area : SUBALIGN(4) { _k_p4wq_initparam_list_start = .; KEEP(*(SORT_BY_NAME(._k_p4wq_initparam.static.*))); _k_p4wq_initparam_list_end = .; } > FLASH + _static_thread_data_area : SUBALIGN(4) { __static_thread_data_list_start = .; KEEP(*(SORT_BY_NAME(.__static_thread_data.static.*))); __static_thread_data_list_end = .; } > FLASH + device_deps : ALIGN_WITH_INPUT + { +__device_deps_start = .; +KEEP(*(SORT(.__device_deps_pass2*))); +__device_deps_end = .; + } > FLASH +adc_driver_api_area : SUBALIGN(4) { _adc_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._adc_driver_api.static.*))); _adc_driver_api_list_end = .; } > FLASH +gpio_driver_api_area : SUBALIGN(4) { _gpio_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._gpio_driver_api.static.*))); _gpio_driver_api_list_end = .; } > FLASH +sensor_driver_api_area : SUBALIGN(4) { _sensor_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._sensor_driver_api.static.*))); _sensor_driver_api_list_end = .; } > FLASH +shared_irq_driver_api_area : SUBALIGN(4) { _shared_irq_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._shared_irq_driver_api.static.*))); _shared_irq_driver_api_list_end = .; } > FLASH +crypto_driver_api_area : SUBALIGN(4) { _crypto_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._crypto_driver_api.static.*))); _crypto_driver_api_list_end = .; } > FLASH +auxdisplay_driver_api_area : SUBALIGN(4) { _auxdisplay_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._auxdisplay_driver_api.static.*))); _auxdisplay_driver_api_list_end = .; } > FLASH +bbram_driver_api_area : SUBALIGN(4) { _bbram_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._bbram_driver_api.static.*))); _bbram_driver_api_list_end = .; } > FLASH +bt_hci_driver_api_area : SUBALIGN(4) { _bt_hci_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._bt_hci_driver_api.static.*))); _bt_hci_driver_api_list_end = .; } > FLASH +can_driver_api_area : SUBALIGN(4) { _can_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._can_driver_api.static.*))); _can_driver_api_list_end = .; } > FLASH +cellular_driver_api_area : SUBALIGN(4) { _cellular_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._cellular_driver_api.static.*))); _cellular_driver_api_list_end = .; } > FLASH +charger_driver_api_area : SUBALIGN(4) { _charger_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._charger_driver_api.static.*))); _charger_driver_api_list_end = .; } > FLASH +clock_control_driver_api_area : SUBALIGN(4) { _clock_control_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._clock_control_driver_api.static.*))); _clock_control_driver_api_list_end = .; } > FLASH +comparator_driver_api_area : SUBALIGN(4) { _comparator_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._comparator_driver_api.static.*))); _comparator_driver_api_list_end = .; } > FLASH +coredump_driver_api_area : SUBALIGN(4) { _coredump_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._coredump_driver_api.static.*))); _coredump_driver_api_list_end = .; } > FLASH +counter_driver_api_area : SUBALIGN(4) { _counter_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._counter_driver_api.static.*))); _counter_driver_api_list_end = .; } > FLASH +dac_driver_api_area : SUBALIGN(4) { _dac_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._dac_driver_api.static.*))); _dac_driver_api_list_end = .; } > FLASH +dai_driver_api_area : SUBALIGN(4) { _dai_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._dai_driver_api.static.*))); _dai_driver_api_list_end = .; } > FLASH +display_driver_api_area : SUBALIGN(4) { _display_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._display_driver_api.static.*))); _display_driver_api_list_end = .; } > FLASH +dma_driver_api_area : SUBALIGN(4) { _dma_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._dma_driver_api.static.*))); _dma_driver_api_list_end = .; } > FLASH +edac_driver_api_area : SUBALIGN(4) { _edac_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._edac_driver_api.static.*))); _edac_driver_api_list_end = .; } > FLASH +eeprom_driver_api_area : SUBALIGN(4) { _eeprom_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._eeprom_driver_api.static.*))); _eeprom_driver_api_list_end = .; } > FLASH +emul_bbram_driver_api_area : SUBALIGN(4) { _emul_bbram_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._emul_bbram_driver_api.static.*))); _emul_bbram_driver_api_list_end = .; } > FLASH +fuel_gauge_emul_driver_api_area : SUBALIGN(4) { _fuel_gauge_emul_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._fuel_gauge_emul_driver_api.static.*))); _fuel_gauge_emul_driver_api_list_end = .; } > FLASH +emul_sensor_driver_api_area : SUBALIGN(4) { _emul_sensor_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._emul_sensor_driver_api.static.*))); _emul_sensor_driver_api_list_end = .; } > FLASH +entropy_driver_api_area : SUBALIGN(4) { _entropy_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._entropy_driver_api.static.*))); _entropy_driver_api_list_end = .; } > FLASH +espi_driver_api_area : SUBALIGN(4) { _espi_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._espi_driver_api.static.*))); _espi_driver_api_list_end = .; } > FLASH +espi_saf_driver_api_area : SUBALIGN(4) { _espi_saf_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._espi_saf_driver_api.static.*))); _espi_saf_driver_api_list_end = .; } > FLASH +flash_driver_api_area : SUBALIGN(4) { _flash_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._flash_driver_api.static.*))); _flash_driver_api_list_end = .; } > FLASH +fpga_driver_api_area : SUBALIGN(4) { _fpga_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._fpga_driver_api.static.*))); _fpga_driver_api_list_end = .; } > FLASH +fuel_gauge_driver_api_area : SUBALIGN(4) { _fuel_gauge_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._fuel_gauge_driver_api.static.*))); _fuel_gauge_driver_api_list_end = .; } > FLASH +gnss_driver_api_area : SUBALIGN(4) { _gnss_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._gnss_driver_api.static.*))); _gnss_driver_api_list_end = .; } > FLASH +haptics_driver_api_area : SUBALIGN(4) { _haptics_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._haptics_driver_api.static.*))); _haptics_driver_api_list_end = .; } > FLASH +hwspinlock_driver_api_area : SUBALIGN(4) { _hwspinlock_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._hwspinlock_driver_api.static.*))); _hwspinlock_driver_api_list_end = .; } > FLASH +i2c_driver_api_area : SUBALIGN(4) { _i2c_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._i2c_driver_api.static.*))); _i2c_driver_api_list_end = .; } > FLASH +i2c_target_driver_api_area : SUBALIGN(4) { _i2c_target_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._i2c_target_driver_api.static.*))); _i2c_target_driver_api_list_end = .; } > FLASH +i2s_driver_api_area : SUBALIGN(4) { _i2s_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._i2s_driver_api.static.*))); _i2s_driver_api_list_end = .; } > FLASH +i3c_driver_api_area : SUBALIGN(4) { _i3c_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._i3c_driver_api.static.*))); _i3c_driver_api_list_end = .; } > FLASH +ipm_driver_api_area : SUBALIGN(4) { _ipm_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._ipm_driver_api.static.*))); _ipm_driver_api_list_end = .; } > FLASH +kscan_driver_api_area : SUBALIGN(4) { _kscan_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._kscan_driver_api.static.*))); _kscan_driver_api_list_end = .; } > FLASH +led_driver_api_area : SUBALIGN(4) { _led_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._led_driver_api.static.*))); _led_driver_api_list_end = .; } > FLASH +led_strip_driver_api_area : SUBALIGN(4) { _led_strip_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._led_strip_driver_api.static.*))); _led_strip_driver_api_list_end = .; } > FLASH +lora_driver_api_area : SUBALIGN(4) { _lora_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._lora_driver_api.static.*))); _lora_driver_api_list_end = .; } > FLASH +mbox_driver_api_area : SUBALIGN(4) { _mbox_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._mbox_driver_api.static.*))); _mbox_driver_api_list_end = .; } > FLASH +mdio_driver_api_area : SUBALIGN(4) { _mdio_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._mdio_driver_api.static.*))); _mdio_driver_api_list_end = .; } > FLASH +mipi_dbi_driver_api_area : SUBALIGN(4) { _mipi_dbi_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._mipi_dbi_driver_api.static.*))); _mipi_dbi_driver_api_list_end = .; } > FLASH +mipi_dsi_driver_api_area : SUBALIGN(4) { _mipi_dsi_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._mipi_dsi_driver_api.static.*))); _mipi_dsi_driver_api_list_end = .; } > FLASH +mspi_driver_api_area : SUBALIGN(4) { _mspi_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._mspi_driver_api.static.*))); _mspi_driver_api_list_end = .; } > FLASH +peci_driver_api_area : SUBALIGN(4) { _peci_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._peci_driver_api.static.*))); _peci_driver_api_list_end = .; } > FLASH +ps2_driver_api_area : SUBALIGN(4) { _ps2_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._ps2_driver_api.static.*))); _ps2_driver_api_list_end = .; } > FLASH +ptp_clock_driver_api_area : SUBALIGN(4) { _ptp_clock_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._ptp_clock_driver_api.static.*))); _ptp_clock_driver_api_list_end = .; } > FLASH +pwm_driver_api_area : SUBALIGN(4) { _pwm_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._pwm_driver_api.static.*))); _pwm_driver_api_list_end = .; } > FLASH +regulator_parent_driver_api_area : SUBALIGN(4) { _regulator_parent_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._regulator_parent_driver_api.static.*))); _regulator_parent_driver_api_list_end = .; } > FLASH +regulator_driver_api_area : SUBALIGN(4) { _regulator_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._regulator_driver_api.static.*))); _regulator_driver_api_list_end = .; } > FLASH +reset_driver_api_area : SUBALIGN(4) { _reset_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._reset_driver_api.static.*))); _reset_driver_api_list_end = .; } > FLASH +retained_mem_driver_api_area : SUBALIGN(4) { _retained_mem_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._retained_mem_driver_api.static.*))); _retained_mem_driver_api_list_end = .; } > FLASH +rtc_driver_api_area : SUBALIGN(4) { _rtc_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._rtc_driver_api.static.*))); _rtc_driver_api_list_end = .; } > FLASH +sdhc_driver_api_area : SUBALIGN(4) { _sdhc_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._sdhc_driver_api.static.*))); _sdhc_driver_api_list_end = .; } > FLASH +smbus_driver_api_area : SUBALIGN(4) { _smbus_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._smbus_driver_api.static.*))); _smbus_driver_api_list_end = .; } > FLASH +spi_driver_api_area : SUBALIGN(4) { _spi_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._spi_driver_api.static.*))); _spi_driver_api_list_end = .; } > FLASH +stepper_driver_api_area : SUBALIGN(4) { _stepper_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._stepper_driver_api.static.*))); _stepper_driver_api_list_end = .; } > FLASH +syscon_driver_api_area : SUBALIGN(4) { _syscon_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._syscon_driver_api.static.*))); _syscon_driver_api_list_end = .; } > FLASH +tee_driver_api_area : SUBALIGN(4) { _tee_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._tee_driver_api.static.*))); _tee_driver_api_list_end = .; } > FLASH +video_driver_api_area : SUBALIGN(4) { _video_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._video_driver_api.static.*))); _video_driver_api_list_end = .; } > FLASH +w1_driver_api_area : SUBALIGN(4) { _w1_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._w1_driver_api.static.*))); _w1_driver_api_list_end = .; } > FLASH +wdt_driver_api_area : SUBALIGN(4) { _wdt_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._wdt_driver_api.static.*))); _wdt_driver_api_list_end = .; } > FLASH +can_transceiver_driver_api_area : SUBALIGN(4) { _can_transceiver_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._can_transceiver_driver_api.static.*))); _can_transceiver_driver_api_list_end = .; } > FLASH +nrf_clock_control_driver_api_area : SUBALIGN(4) { _nrf_clock_control_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._nrf_clock_control_driver_api.static.*))); _nrf_clock_control_driver_api_list_end = .; } > FLASH +i3c_target_driver_api_area : SUBALIGN(4) { _i3c_target_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._i3c_target_driver_api.static.*))); _i3c_target_driver_api_list_end = .; } > FLASH +its_driver_api_area : SUBALIGN(4) { _its_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._its_driver_api.static.*))); _its_driver_api_list_end = .; } > FLASH +vtd_driver_api_area : SUBALIGN(4) { _vtd_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._vtd_driver_api.static.*))); _vtd_driver_api_list_end = .; } > FLASH +tgpio_driver_api_area : SUBALIGN(4) { _tgpio_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._tgpio_driver_api.static.*))); _tgpio_driver_api_list_end = .; } > FLASH +pcie_ctrl_driver_api_area : SUBALIGN(4) { _pcie_ctrl_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._pcie_ctrl_driver_api.static.*))); _pcie_ctrl_driver_api_list_end = .; } > FLASH +pcie_ep_driver_api_area : SUBALIGN(4) { _pcie_ep_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._pcie_ep_driver_api.static.*))); _pcie_ep_driver_api_list_end = .; } > FLASH +svc_driver_api_area : SUBALIGN(4) { _svc_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._svc_driver_api.static.*))); _svc_driver_api_list_end = .; } > FLASH +uart_driver_api_area : SUBALIGN(4) { _uart_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._uart_driver_api.static.*))); _uart_driver_api_list_end = .; } > FLASH +bc12_emul_driver_api_area : SUBALIGN(4) { _bc12_emul_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._bc12_emul_driver_api.static.*))); _bc12_emul_driver_api_list_end = .; } > FLASH +bc12_driver_api_area : SUBALIGN(4) { _bc12_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._bc12_driver_api.static.*))); _bc12_driver_api_list_end = .; } > FLASH +usbc_ppc_driver_api_area : SUBALIGN(4) { _usbc_ppc_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._usbc_ppc_driver_api.static.*))); _usbc_ppc_driver_api_list_end = .; } > FLASH +tcpc_driver_api_area : SUBALIGN(4) { _tcpc_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._tcpc_driver_api.static.*))); _tcpc_driver_api_list_end = .; } > FLASH +usbc_vbus_driver_api_area : SUBALIGN(4) { _usbc_vbus_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._usbc_vbus_driver_api.static.*))); _usbc_vbus_driver_api_list_end = .; } > FLASH +ivshmem_driver_api_area : SUBALIGN(4) { _ivshmem_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._ivshmem_driver_api.static.*))); _ivshmem_driver_api_list_end = .; } > FLASH +ethphy_driver_api_area : SUBALIGN(4) { _ethphy_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._ethphy_driver_api.static.*))); _ethphy_driver_api_list_end = .; } > FLASH +ztest : +{ + _ztest_expected_result_entry_list_start = .; KEEP(*(SORT_BY_NAME(._ztest_expected_result_entry.static.*))); _ztest_expected_result_entry_list_end = .; + _ztest_suite_node_list_start = .; KEEP(*(SORT_BY_NAME(._ztest_suite_node.static.*))); _ztest_suite_node_list_end = .; + _ztest_unit_test_list_start = .; KEEP(*(SORT_BY_NAME(._ztest_unit_test.static.*))); _ztest_unit_test_list_end = .; + _ztest_test_rule_list_start = .; KEEP(*(SORT_BY_NAME(._ztest_test_rule.static.*))); _ztest_test_rule_list_end = .; +} > FLASH + init_array : + { + KEEP(*(SORT_BY_NAME(".ctors*"))) + KEEP(*(SORT_BY_NAME(".init_array*"))) + } > FLASH + ASSERT (SIZEOF(init_array) == 0, + "GNU-style constructors required but STATIC_INIT_GNU not enabled") + bt_l2cap_fixed_chan_area : SUBALIGN(4) { _bt_l2cap_fixed_chan_list_start = .; KEEP(*(SORT_BY_NAME(._bt_l2cap_fixed_chan.static.*))); _bt_l2cap_fixed_chan_list_end = .; } > FLASH + bt_gatt_service_static_area : SUBALIGN(4) { _bt_gatt_service_static_list_start = .; KEEP(*(SORT_BY_NAME(._bt_gatt_service_static.static.*))); _bt_gatt_service_static_list_end = .; } > FLASH + log_strings_area : SUBALIGN(4) { _log_strings_list_start = .; KEEP(*(SORT_BY_NAME(._log_strings.static.*))); _log_strings_list_end = .; } > FLASH + log_stmesp_ptr_area : SUBALIGN(4) { _log_stmesp_ptr_list_start = .; KEEP(*(SORT_BY_NAME(._log_stmesp_ptr.static.*))); _log_stmesp_ptr_list_end = .; } > FLASH + log_stmesp_str_area : SUBALIGN(4) { _log_stmesp_str_list_start = .; KEEP(*(SORT_BY_NAME(._log_stmesp_str.static.*))); _log_stmesp_str_list_end = .; } > FLASH + log_const_area : SUBALIGN(4) { _log_const_list_start = .; KEEP(*(SORT_BY_NAME(._log_const.static.*))); _log_const_list_end = .; } > FLASH + log_backend_area : SUBALIGN(4) { _log_backend_list_start = .; KEEP(*(SORT_BY_NAME(._log_backend.static.*))); _log_backend_list_end = .; } > FLASH + log_link_area : SUBALIGN(4) { _log_link_list_start = .; KEEP(*(SORT_BY_NAME(._log_link.static.*))); _log_link_list_end = .; } > FLASH + tracing_backend_area : SUBALIGN(4) { _tracing_backend_list_start = .; KEEP(*(SORT_BY_NAME(._tracing_backend.static.*))); _tracing_backend_list_end = .; } > FLASH + zephyr_dbg_info : ALIGN_WITH_INPUT + { + KEEP(*(".dbg_thread_info")); + } > FLASH + intc_table_area : SUBALIGN(4) { _intc_table_list_start = .; KEEP(*(SORT_BY_NAME(._intc_table.static.*))); _intc_table_list_end = .; } > FLASH + symbol_to_keep : ALIGN_WITH_INPUT + { + __symbol_to_keep_start = .; + KEEP(*(SORT(.symbol_to_keep*))); + __symbol_to_keep_end = .; + } > FLASH + shell_area : SUBALIGN(4) { _shell_list_start = .; KEEP(*(SORT_BY_NAME(._shell.static.*))); _shell_list_end = .; } > FLASH + shell_root_cmds_area : SUBALIGN(4) { _shell_root_cmds_list_start = .; KEEP(*(SORT_BY_NAME(._shell_root_cmds.static.*))); _shell_root_cmds_list_end = .; } > FLASH + shell_subcmds_area : SUBALIGN(4) { _shell_subcmds_list_start = .; KEEP(*(SORT_BY_NAME(._shell_subcmds.static.*))); _shell_subcmds_list_end = .; } > FLASH + shell_dynamic_subcmds_area : SUBALIGN(4) { _shell_dynamic_subcmds_list_start = .; KEEP(*(SORT_BY_NAME(._shell_dynamic_subcmds.static.*))); _shell_dynamic_subcmds_list_end = .; } > FLASH + cfb_font_area : SUBALIGN(4) { _cfb_font_list_start = .; KEEP(*(SORT_BY_NAME(._cfb_font.static.*))); _cfb_font_list_end = .; } > FLASH + tdata : ALIGN_WITH_INPUT + { + *(.tdata .tdata.* .gnu.linkonce.td.*); + } > FLASH + tbss : ALIGN_WITH_INPUT + { + *(.tbss .tbss.* .gnu.linkonce.tb.* .tcommon); + } > FLASH + PROVIDE(__tdata_start = LOADADDR(tdata)); + PROVIDE(__tdata_align = ALIGNOF(tdata)); + PROVIDE(__tdata_size = (SIZEOF(tdata) + __tdata_align - 1) & ~(__tdata_align - 1)); + PROVIDE(__tdata_end = __tdata_start + __tdata_size); + PROVIDE(__tbss_align = ALIGNOF(tbss)); + PROVIDE(__tbss_start = ADDR(tbss)); + PROVIDE(__tbss_size = (SIZEOF(tbss) + __tbss_align - 1) & ~(__tbss_align - 1)); + PROVIDE(__tbss_end = __tbss_start + __tbss_size); + PROVIDE(__tls_start = __tdata_start); + PROVIDE(__tls_end = __tbss_end); + PROVIDE(__tls_size = __tbss_end - __tdata_start); + rodata : + { + *(.rodata) + *(".rodata.*") + *(.gnu.linkonce.r.*) + . = ALIGN(4); + } > FLASH + /DISCARD/ : { *(.eh_frame) } + __rodata_region_end = .; + . = ALIGN(_region_min_align); . = ALIGN( 1 << LOG2CEIL(__rodata_region_end - ADDR(rom_start))); + __rom_region_end = __rom_region_start + . - ADDR(rom_start); + + /DISCARD/ : { + *(.got.plt) + *(.igot.plt) + *(.got) + *(.igot) + } + + . = 0x20000000; + . = ALIGN(_region_min_align); + _image_ram_start = .; +_RTT_SECTION_NAME (NOLOAD) : ALIGN_WITH_INPUT +{ +__rtt_buff_data_start = .; +*(".rtt_buff_data") +__rtt_buff_data_end = ALIGN(4); +} > RAM AT > RAM +__rtt_buff_data_size = __rtt_buff_data_end - __rtt_buff_data_start; +.ramfunc : ALIGN_WITH_INPUT +{ + __ramfunc_region_start = .; + . = ALIGN(_region_min_align); . = ALIGN( 1 << LOG2CEIL(__ramfunc_size)); + __ramfunc_start = .; + *(.ramfunc) + *(".ramfunc.*") + . = ALIGN(_region_min_align); . = ALIGN( 1 << LOG2CEIL(__ramfunc_size)); + __ramfunc_end = .; +} > RAM AT > FLASH +__ramfunc_size = __ramfunc_end - __ramfunc_start; +__ramfunc_load_start = LOADADDR(.ramfunc); + + datas : ALIGN_WITH_INPUT + { + __data_region_start = .; + __data_start = .; + *(.data) + *(".data.*") + *(".kernel.*") + __data_end = .; + } > RAM AT > FLASH + __data_size = __data_end - __data_start; + __data_load_start = LOADADDR(datas); + __data_region_load_start = LOADADDR(datas); + device_states : ALIGN_WITH_INPUT + { + __device_states_start = .; + KEEP(*(".z_devstate")); + KEEP(*(".z_devstate.*")); + __device_states_end = .; + } > RAM AT > FLASH + log_mpsc_pbuf_area : ALIGN_WITH_INPUT { _log_mpsc_pbuf_list_start = .; *(SORT_BY_NAME(._log_mpsc_pbuf.static.*)); _log_mpsc_pbuf_list_end = .; } > RAM AT > FLASH + log_msg_ptr_area : ALIGN_WITH_INPUT { _log_msg_ptr_list_start = .; KEEP(*(SORT_BY_NAME(._log_msg_ptr.static.*))); _log_msg_ptr_list_end = .; } > RAM AT > FLASH + log_dynamic_area : ALIGN_WITH_INPUT { _log_dynamic_list_start = .; KEEP(*(SORT_BY_NAME(._log_dynamic.static.*))); _log_dynamic_list_end = .; } > RAM AT > FLASH + k_timer_area : ALIGN_WITH_INPUT { _k_timer_list_start = .; *(SORT_BY_NAME(._k_timer.static.*)); _k_timer_list_end = .; } > RAM AT > FLASH + k_mem_slab_area : ALIGN_WITH_INPUT { _k_mem_slab_list_start = .; *(SORT_BY_NAME(._k_mem_slab.static.*)); _k_mem_slab_list_end = .; } > RAM AT > FLASH + k_heap_area : ALIGN_WITH_INPUT { _k_heap_list_start = .; *(SORT_BY_NAME(._k_heap.static.*)); _k_heap_list_end = .; } > RAM AT > FLASH + k_mutex_area : ALIGN_WITH_INPUT { _k_mutex_list_start = .; *(SORT_BY_NAME(._k_mutex.static.*)); _k_mutex_list_end = .; } > RAM AT > FLASH + k_stack_area : ALIGN_WITH_INPUT { _k_stack_list_start = .; *(SORT_BY_NAME(._k_stack.static.*)); _k_stack_list_end = .; } > RAM AT > FLASH + k_msgq_area : ALIGN_WITH_INPUT { _k_msgq_list_start = .; *(SORT_BY_NAME(._k_msgq.static.*)); _k_msgq_list_end = .; } > RAM AT > FLASH + k_mbox_area : ALIGN_WITH_INPUT { _k_mbox_list_start = .; *(SORT_BY_NAME(._k_mbox.static.*)); _k_mbox_list_end = .; } > RAM AT > FLASH + k_pipe_area : ALIGN_WITH_INPUT { _k_pipe_list_start = .; *(SORT_BY_NAME(._k_pipe.static.*)); _k_pipe_list_end = .; } > RAM AT > FLASH + k_sem_area : ALIGN_WITH_INPUT { _k_sem_list_start = .; *(SORT_BY_NAME(._k_sem.static.*)); _k_sem_list_end = .; } > RAM AT > FLASH + k_event_area : ALIGN_WITH_INPUT { _k_event_list_start = .; *(SORT_BY_NAME(._k_event.static.*)); _k_event_list_end = .; } > RAM AT > FLASH + k_queue_area : ALIGN_WITH_INPUT { _k_queue_list_start = .; *(SORT_BY_NAME(._k_queue.static.*)); _k_queue_list_end = .; } > RAM AT > FLASH + k_fifo_area : ALIGN_WITH_INPUT { _k_fifo_list_start = .; *(SORT_BY_NAME(._k_fifo.static.*)); _k_fifo_list_end = .; } > RAM AT > FLASH + k_lifo_area : ALIGN_WITH_INPUT { _k_lifo_list_start = .; *(SORT_BY_NAME(._k_lifo.static.*)); _k_lifo_list_end = .; } > RAM AT > FLASH + k_condvar_area : ALIGN_WITH_INPUT { _k_condvar_list_start = .; *(SORT_BY_NAME(._k_condvar.static.*)); _k_condvar_list_end = .; } > RAM AT > FLASH + sys_mem_blocks_ptr_area : ALIGN_WITH_INPUT { _sys_mem_blocks_ptr_list_start = .; *(SORT_BY_NAME(._sys_mem_blocks_ptr.static.*)); _sys_mem_blocks_ptr_list_end = .; } > RAM AT > FLASH + net_buf_pool_area : ALIGN_WITH_INPUT { _net_buf_pool_list_start = .; KEEP(*(SORT_BY_NAME(._net_buf_pool.static.*))); _net_buf_pool_list_end = .; } > RAM AT > FLASH + usb_descriptor : ALIGN_WITH_INPUT + { + __usb_descriptor_start = .; + *(".usb.descriptor") + KEEP(*(SORT_BY_NAME(".usb.descriptor*"))) + __usb_descriptor_end = .; + } > RAM AT > FLASH + usb_cfg_data_area : ALIGN_WITH_INPUT { _usb_cfg_data_list_start = .; KEEP(*(SORT_BY_NAME(._usb_cfg_data.static.*))); _usb_cfg_data_list_end = .; } > RAM AT > FLASH + __data_region_end = .; +PROVIDE(soc_reset_hook = SystemInit); +.intList : +{ + KEEP(*(.irq_info*)) + KEEP(*(.intList*)) +} > IDT_LIST + .stab 0 : { *(.stab) } + .stabstr 0 : { *(.stabstr) } + .stab.excl 0 : { *(.stab.excl) } + .stab.exclstr 0 : { *(.stab.exclstr) } + .stab.index 0 : { *(.stab.index) } + .stab.indexstr 0 : { *(.stab.indexstr) } + .gnu.build.attributes 0 : { *(.gnu.build.attributes .gnu.build.attributes.*) } + .comment 0 : { *(.comment) } + .debug 0 : { *(.debug) } + .line 0 : { *(.line) } + .debug_srcinfo 0 : { *(.debug_srcinfo) } + .debug_sfnames 0 : { *(.debug_sfnames) } + .debug_aranges 0 : { *(.debug_aranges) } + .debug_pubnames 0 : { *(.debug_pubnames) } + .debug_info 0 : { *(.debug_info .gnu.linkonce.wi.*) } + .debug_abbrev 0 : { *(.debug_abbrev) } + .debug_line 0 : { *(.debug_line .debug_line.* .debug_line_end ) } + .debug_frame 0 : { *(.debug_frame) } + .debug_str 0 : { *(.debug_str) } + .debug_loc 0 : { *(.debug_loc) } + .debug_macinfo 0 : { *(.debug_macinfo) } + .debug_weaknames 0 : { *(.debug_weaknames) } + .debug_funcnames 0 : { *(.debug_funcnames) } + .debug_typenames 0 : { *(.debug_typenames) } + .debug_varnames 0 : { *(.debug_varnames) } + .debug_pubtypes 0 : { *(.debug_pubtypes) } + .debug_ranges 0 : { *(.debug_ranges) } + .debug_addr 0 : { *(.debug_addr) } + .debug_line_str 0 : { *(.debug_line_str) } + .debug_loclists 0 : { *(.debug_loclists) } + .debug_macro 0 : { *(.debug_macro) } + .debug_names 0 : { *(.debug_names) } + .debug_rnglists 0 : { *(.debug_rnglists) } + .debug_str_offsets 0 : { *(.debug_str_offsets) } + .debug_sup 0 : { *(.debug_sup) } + /DISCARD/ : { *(.note.GNU-stack) } + .ARM.attributes 0 : + { + KEEP(*(.ARM.attributes)) + KEEP(*(.gnu.attributes)) + } + +.last_section : +{ + KEEP(*(.last_section)) +} > FLASH +_flash_used = LOADADDR(.last_section) + SIZEOF(.last_section) - __rom_region_start; + bss (NOLOAD) : ALIGN_WITH_INPUT + { + . = ALIGN(4); + __bss_start = .; + __kernel_ram_start = .; + *(.bss) + *(".bss.*") + *(COMMON) + *(".kernel_bss.*") + __bss_end = ALIGN(4); + } > RAM AT > RAM + noinit (NOLOAD) : + { + *(.noinit) + *(".noinit.*") + *(".kernel_noinit.*") + } > RAM AT > RAM + __kernel_ram_end = 0x20000000 + 0x20000; + __kernel_ram_size = __kernel_ram_end - __kernel_ram_start; + .last_ram_section (NOLOAD) : + { + _image_ram_end = .; + _image_ram_size = _image_ram_end - _image_ram_start; + _end = .; + z_mapped_end = .; + } > RAM AT > RAM + + } diff --git a/build/PHF000-Firmware/zephyr/linker_zephyr_pre0.cmd.dep b/build/PHF000-Firmware/zephyr/linker_zephyr_pre0.cmd.dep new file mode 100644 index 0000000..f464171 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/linker_zephyr_pre0.cmd.dep @@ -0,0 +1,86 @@ +linker_zephyr_pre0.cmd: \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/arch/arm/cortex_m/scripts/linker.ld \ + /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/autoconf.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/sections.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/section_tags.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/gcc.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/devicetree.h \ + /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/devicetree_generated.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/irq_multilevel.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/sys/util.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/sys/util_macro.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/sys/util_internal.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/sys/util_loops.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/sys/util_listify.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/sys/util_internal_is_eq.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/sys/util_internal_util_inc.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/sys/util_internal_util_dec.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/sys/util_internal_util_x2.h \ + /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/lib/gcc/arm-zephyr-eabi/12.2.0/include/stdbool.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/devicetree/io-channels.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/devicetree/clocks.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/devicetree/gpio.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/devicetree/spi.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/devicetree/dma.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/devicetree/pwms.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/devicetree/fixed-partitions.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/devicetree/ordinals.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/devicetree/pinctrl.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/devicetree/can.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/devicetree/reset.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/devicetree/mbox.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/devicetree/port-endpoint.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/devicetree_regions.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/linker-defs.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain/common.h \ + /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/zephyr/offsets.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/linker-tool.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/linker-tool-gcc.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/kernel/mm.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/kernel/internal/mm.h \ + /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/pm_config.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/linker-devnull.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/rel-sections.ld \ + /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/snippets-rom-start.ld \ + /home/miguel/ncs/v3.0.2/zephyr/include/../arch/common/rom_start_address.ld \ + /home/miguel/ncs/v3.0.2/zephyr/include/../arch/common/fill_with_zeros.ld \ + /home/miguel/ncs/v3.0.2/zephyr/include/../arch/common/rom_start_offset.ld \ + /home/miguel/ncs/v3.0.2/zephyr/include/../arch/arm/core/vector_table.ld \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/irq-vector-table-section.ld \ + /home/miguel/ncs/v3.0.2/zephyr/include/../arch/arm/core/cortex_m/vector_table_pad.ld \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/kobject-text.ld \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/common-rom.ld \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/common-rom/common-rom-kernel-devices.ld \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/iterable_sections.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/device-deps.ld \ + /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/device-api-sections.ld \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/common-rom/common-rom-ztest.ld \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/common-rom/common-rom-init.ld \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/common-rom/common-rom-net.ld \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/common-rom/common-rom-bt.ld \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/common-rom/common-rom-logging.ld \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/common-rom/common-rom-debug.ld \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/common-rom/common-rom-interrupt-controllers.ld \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/common-rom/common-rom-misc.ld \ + /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/snippets-rom-sections.ld \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/thread-local-storage.ld \ + /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/snippets-rodata.ld \ + /home/miguel/ncs/v3.0.2/zephyr/include/../arch/arm/core/swi_tables.ld \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/kobject-rom.ld \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/cplusplus-rom.ld \ + /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/snippets-ram-sections.ld \ + /home/miguel/ncs/v3.0.2/zephyr/include/../modules/segger/segger_rtt.ld \ + /home/miguel/ncs/v3.0.2/zephyr/include/../arch/common/ramfunc.ld \ + /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/snippets-ramfunc-section.ld \ + /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/snippets-rwdata.ld \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/common-ram.ld \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/kobject-data.ld \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/cplusplus-ram.ld \ + /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/snippets-data-sections.ld \ + /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/snippets-sections.ld \ + /home/miguel/ncs/v3.0.2/zephyr/include/../soc/nordic/common/arm_platform_init.ld \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/intlist.ld \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/debug-sections.ld \ + /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/include/generated/snippets-noinit.ld \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/ram-end.ld diff --git a/build/PHF000-Firmware/zephyr/misc/generated/configs.c b/build/PHF000-Firmware/zephyr/misc/generated/configs.c new file mode 100644 index 0000000..af6233d --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/configs.c @@ -0,0 +1,521 @@ +/* + * SPDX-License-Identifier: Apache-2.0 + */ + +/* file is auto-generated, do not modify ! */ + +#include + +GEN_ABS_SYM_BEGIN (_ConfigAbsSyms) + +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ADC_INIT_PRIORITY, 50); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_UART_INTERRUPT_DRIVEN, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_NUM_IRQS, 48); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SYS_CLOCK_HW_CYCLES_PER_SEC, 32768); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_FLASH_SIZE, 512); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_FLASH_BASE_ADDRESS, 0x0); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_MP_MAX_NUM_CPUS, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_RESET_HOOK, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_MAIN_STACK_SIZE, 1024); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_IDLE_STACK_SIZE, 320); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ISR_STACK_SIZE, 2048); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_CLOCK_CONTROL, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SYS_CLOCK_TICKS_PER_SEC, 32768); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ROM_START_OFFSET, 0x0); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_KERNEL_ENTRY, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_BUILD_OUTPUT_BIN, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_XIP, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_HAS_FLASH_LOAD_OFFSET, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_CPU_HAS_ARM_MPU, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_TICKLESS_KERNEL, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SYSTEM_WORKQUEUE_STACK_SIZE, 1024); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_CLOCK_CONTROL_INIT_PRIORITY, 30); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_GEN_IRQ_VECTOR_TABLE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_GEN_ISR_TABLES, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_TIMESLICE_SIZE, 0); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_FLASH_LOAD_OFFSET, 0x0); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SYS_CLOCK_EXISTS, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_INIT_ARCH_HW_AT_BOOT, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ARCH_HAS_CUSTOM_BUSY_WAIT, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_HW_STACK_PROTECTION, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_GPIO, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SERIAL, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_CMSIS_CORE_HAS_SYSTEM_CORE_CLOCK, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_DCACHE_LINE_SIZE, 32); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ARCH_SW_ISR_TABLE_ALIGN, 4); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_NRF_RTC_TIMER, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ASSERT, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_BUILD_OUTPUT_HEX, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_HAS_TIMING_FUNCTIONS, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SERIAL_INIT_PRIORITY, 50); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_CONSOLE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_COMMON_LIBC_MALLOC_ARENA_SIZE, -1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_TOOLCHAIN_NAME, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_GEN_SW_ISR_TABLE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_GEN_IRQ_START_VECTOR, 0); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SRAM_OFFSET, 0x0); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ARCH_IRQ_VECTOR_TABLE_ALIGN, 4); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ICACHE_LINE_SIZE, 32); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_PRIVILEGED_STACK_SIZE, 1024); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_DT_HAS_ARM_ARMV7M_ITM_ENABLED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_DT_HAS_ARM_CORTEX_M4F_ENABLED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_DT_HAS_ARM_V7M_NVIC_ENABLED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_DT_HAS_FIXED_PARTITIONS_ENABLED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_DT_HAS_GPIO_KEYS_ENABLED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_DT_HAS_GPIO_LEDS_ENABLED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_DT_HAS_MMIO_SRAM_ENABLED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_DT_HAS_NORDIC_BT_HCI_SDC_ENABLED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_DT_HAS_NORDIC_NRF_ACL_ENABLED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_DT_HAS_NORDIC_NRF_CCM_ENABLED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_DT_HAS_NORDIC_NRF_CLOCK_ENABLED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_DT_HAS_NORDIC_NRF_ECB_ENABLED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_DT_HAS_NORDIC_NRF_EGU_ENABLED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_DT_HAS_NORDIC_NRF_FICR_ENABLED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_DT_HAS_NORDIC_NRF_GPIO_ENABLED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_DT_HAS_NORDIC_NRF_GPIOTE_ENABLED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_DT_HAS_NORDIC_NRF_GPREGRET_ENABLED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_DT_HAS_NORDIC_NRF_MWU_ENABLED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_DT_HAS_NORDIC_NRF_PINCTRL_ENABLED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_DT_HAS_NORDIC_NRF_POWER_ENABLED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_DT_HAS_NORDIC_NRF_PPI_ENABLED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_DT_HAS_NORDIC_NRF_RADIO_ENABLED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_DT_HAS_NORDIC_NRF_RNG_ENABLED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_DT_HAS_NORDIC_NRF_SAADC_ENABLED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_DT_HAS_NORDIC_NRF_SWI_ENABLED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_DT_HAS_NORDIC_NRF_TEMP_ENABLED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_DT_HAS_NORDIC_NRF_UICR_ENABLED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_DT_HAS_NORDIC_NRF_USBD_ENABLED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_DT_HAS_NORDIC_NRF_WDT_ENABLED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_DT_HAS_NORDIC_NRF52_FLASH_CONTROLLER_ENABLED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_DT_HAS_NORDIC_NRF52X_REGULATOR_HV_ENABLED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_DT_HAS_NORDIC_NRF5X_REGULATOR_ENABLED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_DT_HAS_SOC_NV_FLASH_ENABLED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_DT_HAS_ZEPHYR_BT_HCI_ENTROPY_ENABLED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_DT_HAS_ZEPHYR_CDC_ACM_UART_ENABLED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_NUM_METAIRQ_PRIORITIES, 0); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_MPSL_WORK_STACK_SIZE, 1024); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_WARN_EXPERIMENTAL, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_NORDIC_QSPI_NOR_FLASH_LAYOUT_PAGE_SIZE, 4096); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_NRF_SECURITY_ENABLER, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_PM_PARTITION_SIZE_PROVISION, 0x1000); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_PM_PARTITION_SIZE_B0_IMAGE, 0x7000); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SB_VALIDATION_INFO_MAGIC, 0x86518483); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SB_VALIDATION_POINTER_MAGIC, 0x6919b47e); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SB_VALIDATION_INFO_CRYPTO_ID, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SB_VALIDATION_INFO_VERSION, 2); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SB_VALIDATION_METADATA_OFFSET, 0); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SB_VALIDATION_STRUCT_HAS_HASH, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SB_VALIDATION_STRUCT_HAS_PUBLIC_KEY, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SB_VALIDATE_FW_SIGNATURE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SYSTEM_WORKQUEUE_PRIORITY, -1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_HEAP_MEM_POOL_SIZE, 0); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_PCD_VERSION_PAGE_BUF_SIZE, 2046); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_MPSL_THREAD_COOP_PRIO, 8); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_MPSL_TIMESLOT_SESSION_COUNT, 0); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_MPSL_LOW_PRIO_IRQN, 25); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_MPSL_HFCLK_LATENCY, 1400); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_MPSL_INIT_PRIORITY, 40); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_PARTITION_MANAGER_ENABLED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_FLASH_MAP_CUSTOM, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SRAM_SIZE, 128); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SRAM_BASE_ADDRESS, 0x20000000); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_NRF_TRUSTZONE_FLASH_REGION_SIZE, 0x0); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_NRF_TRUSTZONE_RAM_REGION_SIZE, 0x0); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_PM_EXTERNAL_FLASH_BASE, 0x0); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_PM_EXTERNAL_FLASH_PATH, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_PM_EXTERNAL_FLASH_SIZE_BITS, 0); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_PM_SRAM_BASE, 0x20000000); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_PM_SRAM_SIZE, 0x20000); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_MCUBOOT_APPLICATION_IMAGE_NUMBER, -1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_MCUBOOT_NETWORK_CORE_IMAGE_NUMBER, -1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_MCUBOOT_WIFI_PATCHES_IMAGE_NUMBER, -1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_MCUBOOT_QSPI_XIP_IMAGE_NUMBER, -1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_MCUBOOT_MCUBOOT_IMAGE_NUMBER, -1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_WFA_QT_THREAD_STACK_SIZE, 5200); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_WFA_QT_REBOOT_TIMEOUT_MS, 1000); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_WFA_QT_DEFAULT_INTERFACE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_WPAS_READY_TIMEOUT_MS, 10000); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_NRF_ACL_FLASH_REGION_SIZE, 0x1000); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_FPROTECT_BLOCK_SIZE, 0x1000); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_HW_UNIQUE_KEY_PARTITION_SIZE, 0x1000); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_NCS_BOOT_BANNER, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_NCS_NCS_BOOT_BANNER_STRING, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_NCS_ZEPHYR_BOOT_BANNER_STRING, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_FLASH_NRF_RADIO_SYNC_MPSL_TIMESLOT_SESSION_COUNT, 0); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SENSOR, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_NRFX_GPIOTE_NUM_OF_EVT_HANDLERS, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_NRF_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_HOSTAP_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_DT_FLASH_WRITE_BLOCK_SIZE, 4); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_MCUBOOT_USB_SUPPORT, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_MCUBOOT_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_MBEDTLS_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_OBERON_PSA_CRYPTO_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_TRUSTED_FIRMWARE_M_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_PSA_ARCH_TESTS_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_CJSON_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_AZURE_SDK_FOR_C_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_CIRRUS_LOGIC_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_OPENTHREAD_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SUIT_ENVELOPE_TEMPLATE_FILENAME, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SUIT_ENVELOPE_TARGET, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SUIT_ENVELOPE_OUTPUT_ARTIFACT, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_SUIT_GENERATOR_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SUIT_PLATFORM_DRY_RUN_SUPPORT, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_SUIT_PROCESSOR_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_MEMFAULT_FIRMWARE_SDK_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_COREMARK_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_CANOPENNODE_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_CHRE_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_LZ4_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_NANOPB_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_TF_M_TESTS_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_ZSCILIB_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_CMSIS_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_HAS_CMSIS_CORE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_HAS_CMSIS_CORE_M, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_CMSIS_DSP_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_CMSIS_NN_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_FATFS_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_HAL_NORDIC_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_HAS_NORDIC_DRIVERS, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_HAS_NRFX, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_NRFX_CLOCK, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_NRFX_CLOCK_LFXO_TWO_STAGE_ENABLED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_NRFX_GPIOTE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_NRFX_GPIOTE0, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_NRFX_POWER, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_NRFX_TEMP, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_NRFX_RESERVED_RESOURCES_HEADER, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_HAL_ST_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_HAL_TDK_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_HAL_WURTHELEKTRONIK_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_LIBLC3_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_LIBMETAL_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_LITTLEFS_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_LORAMAC_NODE_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_LVGL_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_MIPI_SYS_T_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_NRF_WIFI_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_OPEN_AMP_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_PERCEPIO_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_PICOLIBC_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_SEGGER_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_HAS_SEGGER_RTT, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_USE_SEGGER_RTT, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SEGGER_RTT_MAX_NUM_UP_BUFFERS, 3); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SEGGER_RTT_MAX_NUM_DOWN_BUFFERS, 3); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SEGGER_RTT_BUFFER_SIZE_UP, 1024); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SEGGER_RTT_BUFFER_SIZE_DOWN, 16); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SEGGER_RTT_PRINTF_BUFFER_SIZE, 64); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SEGGER_RTT_MODE_NO_BLOCK_SKIP, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SEGGER_RTT_MODE, 0); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SEGGER_RTT_SECTION_CUSTOM, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SEGGER_RTT_SECTION_CUSTOM_NAME, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SEGGER_RTT_INIT_MODE_STRONG_CHECK, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_TINYCRYPT_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_UOSCORE_UEDHOC_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_ZCBOR_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_NRF_MODEM_SHMEM_CTRL_SIZE, 0x4e8); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_NRF_802154_SOURCE_NRFXLIB, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_NRFXLIB_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_NRF_HW_MODELS_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_CONNECTEDHOMEIP_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_BOARD, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_BOARD_REVISION, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_BOARD_TARGET, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_BOARD_PHF000_BOARD, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_BOARD_PHF000_BOARD_NRF52833, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_BOARD_QUALIFIERS, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_SERIES, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_FAMILY, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_FAMILY_NORDIC_NRF, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_SERIES_NRF52X, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_NRF52833, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_NRF52833_QDAA, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_HAS_HW_NRF_ACL, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_HAS_HW_NRF_CCM, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_HAS_HW_NRF_CCM_LFLEN_8BIT, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_HAS_HW_NRF_CCM_HEADERMASK, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_HAS_HW_NRF_CLOCK, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_HAS_HW_NRF_ECB, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_HAS_HW_NRF_EGU0, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_HAS_HW_NRF_EGU1, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_HAS_HW_NRF_EGU2, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_HAS_HW_NRF_EGU3, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_HAS_HW_NRF_EGU4, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_HAS_HW_NRF_EGU5, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_HAS_HW_NRF_GPIO0, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_HAS_HW_NRF_GPIO1, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_HAS_HW_NRF_GPIOTE0, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_HAS_HW_NRF_MWU, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_HAS_HW_NRF_NVMC_PE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_HAS_HW_NRF_POWER, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_HAS_HW_NRF_PPI, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_HAS_HW_NRF_RADIO_BLE_2M, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_HAS_HW_NRF_RADIO_BLE_CODED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_HAS_HW_NRF_RADIO_DFE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_HAS_HW_NRF_RADIO_IEEE802154, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_HAS_HW_NRF_RADIO_TX_PWR_HIGH, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_HAS_HW_NRF_RNG, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_HAS_HW_NRF_SAADC, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_HAS_HW_NRF_SWI0, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_HAS_HW_NRF_SWI1, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_HAS_HW_NRF_SWI2, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_HAS_HW_NRF_SWI3, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_HAS_HW_NRF_SWI4, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_HAS_HW_NRF_SWI5, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_HAS_HW_NRF_TEMP, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_HAS_HW_NRF_USBD, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_HAS_HW_NRF_WDT0, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_HAS_NORDIC_RAM_CTRL, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_NRF_ENABLE_ICACHE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_NRF_RTC_TIMER_USER_CHAN_COUNT, 0); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_NRF_SOC_SECURE_SUPPORTED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_NRF_APPROTECT_USE_UICR, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_DEPRECATED_UART_NRFX_UARTE_LEGACY_SHIM, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_GPIO_INIT_PRIORITY, 40); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_COMPATIBLE_NRF, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_COMPATIBLE_NRF52X, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_COMPATIBLE_NRF52833, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ARCH, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ARCH_HAS_SINGLE_THREAD_SUPPORT, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_CPU_CORTEX, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_KOBJECT_TEXT_AREA, 256); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ARM_MPU, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ARM_MPU_REGION_MIN_ALIGN_AND_SIZE, 32); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_CPU_CORTEX_M, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ISA_THUMB2, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ASSEMBLER_ISA_THUMB2, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_COMPILER_ISA_THUMB2, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_STACK_ALIGN_DOUBLE_WORD, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_FAULT_DUMP, 2); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ARM_STACK_PROTECTION, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_FP16, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_FP16_IEEE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_CPU_CORTEX_M4, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_CPU_CORTEX_M_HAS_SYSTICK, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_CPU_CORTEX_M_HAS_DWT, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_CPU_CORTEX_M_HAS_BASEPRI, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_CPU_CORTEX_M_HAS_VTOR, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_CPU_CORTEX_M_HAS_PROGRAMMABLE_FAULT_PRIOS, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ARMV7_M_ARMV8_M_MAINLINE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ARMV7_M_ARMV8_M_FP, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_NULL_POINTER_EXCEPTION_DETECTION_NONE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_MPU_STACK_GUARD, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_CUSTOM_SECTION_MIN_ALIGN_SIZE, 32); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_HAS_SWO, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ARM, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ARCH_IS_SET, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LITTLE_ENDIAN, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_KOBJECT_DATA_AREA_RESERVE_EXTRA_PERCENT, 100); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_KOBJECT_RODATA_AREA_EXTRA_BYTES, 16); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_GEN_PRIV_STACKS, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ISR_TABLES_LOCAL_DECLARATION_SUPPORTED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_IRQ_VECTOR_TABLE_JUMP_BY_ADDRESS, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_EXCEPTION_DEBUG, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ARCH_HAS_TIMING_FUNCTIONS, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ARCH_HAS_STACK_PROTECTION, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ARCH_HAS_USERSPACE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ARCH_HAS_EXECUTABLE_PAGE_BIT, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ARCH_HAS_RAMFUNC_SUPPORT, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ARCH_HAS_NESTED_EXCEPTION_DETECTION, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ARCH_SUPPORTS_COREDUMP, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ARCH_SUPPORTS_COREDUMP_THREADS, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ARCH_SUPPORTS_ARCH_HW_INIT, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ARCH_SUPPORTS_ROM_START, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ARCH_HAS_EXTRA_EXCEPTION_INFO, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ARCH_HAS_THREAD_LOCAL_STORAGE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ARCH_HAS_SUSPEND_TO_RAM, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ARCH_HAS_THREAD_ABORT, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ARCH_HAS_CODE_DATA_RELOCATION, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_CPU_HAS_FPU, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_CPU_HAS_MPU, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_MPU, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_MPU_REQUIRES_POWER_OF_TWO_ALIGNMENT, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SRAM_REGION_PERMISSIONS, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_TOOLCHAIN_HAS_BUILTIN_FFS, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ARCH_HAS_CUSTOM_SWAP_TO_MAIN, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_MULTITHREADING, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_NUM_COOP_PRIORITIES, 16); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_NUM_PREEMPT_PRIORITIES, 15); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_MAIN_THREAD_PRIORITY, 0); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_COOP_ENABLED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_PREEMPT_ENABLED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_PRIORITY_CEILING, -127); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_THREAD_STACK_INFO, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SCHED_SIMPLE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_WAITQ_SIMPLE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LIBC_ERRNO, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ERRNO, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_CURRENT_THREAD_USE_TLS, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_BOOT_DELAY, 0); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_BARRIER_OPERATIONS_ARCH, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ATOMIC_OPERATIONS_BUILTIN, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_TIMESLICING, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_TIMESLICE_PRIORITY, 0); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_MEM_SLAB_POINTER_VALIDATE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_NUM_MBOX_ASYNC_MSGS, 10); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_KERNEL_MEM_POOL, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SWAP_NONATOMIC, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_TIMEOUT_64BIT, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SYS_CLOCK_MAX_TIMEOUT_DAYS, 365); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ARCH_MEM_DOMAIN_SUPPORTS_ISOLATED_STACKS, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_MEM_DOMAIN_ISOLATED_STACKS, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_TOOLCHAIN_SUPPORTS_THREAD_LOCAL_STORAGE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_THREAD_LOCAL_STORAGE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_TOOLCHAIN_SUPPORTS_STATIC_INIT_GNU, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_KERNEL_INIT_PRIORITY_OBJECTS, 30); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_KERNEL_INIT_PRIORITY_LIBC, 35); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_KERNEL_INIT_PRIORITY_DEFAULT, 40); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_KERNEL_INIT_PRIORITY_DEVICE, 50); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_APPLICATION_INIT_PRIORITY, 90); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ADC, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ADC_CONFIGURABLE_INPUTS, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ADC_NRFX_SAADC, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_CLOCK_CONTROL_NRF, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_CLOCK_CONTROL_NRF_K32SRC_XTAL, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_CLOCK_CONTROL_NRF_K32SRC_50PPM, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_CLOCK_CONTROL_NRF_ACCURACY, 50); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_CONSOLE_INPUT_MAX_LINE_LEN, 128); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_CONSOLE_HAS_DRIVER, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_CONSOLE_INIT_PRIORITY, 60); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_UART_CONSOLE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_WINSTREAM_CONSOLE_STATIC, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_WINSTREAM_CONSOLE_STATIC_SIZE, 32768); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_GPIO_NRFX, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_GPIO_NRFX_INTERRUPT, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_HWINFO, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_HWINFO_HAS_DRIVER, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_HWINFO_NRF, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_INTC_INIT_PRIORITY, 40); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_PINCTRL, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_PINCTRL_STORE_REG, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_PINCTRL_NRF, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SENSOR_INIT_PRIORITY, 90); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ADXL345_TRIGGER_NONE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SENSOR_DS3231_INIT_PRIORITY, 86); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_TEMP_NRF5, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SERIAL_HAS_DRIVER, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SERIAL_SUPPORT_INTERRUPT, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_UART_LINE_CTRL, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SYSTEM_CLOCK_INIT_PRIORITY, 0); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_TICKLESS_CAPABLE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SYSTEM_TIMER_HAS_DISABLE_SUPPORT, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SYSTEM_CLOCK_WAIT_FOR_STABILITY, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_USB_DEVICE_DRIVER, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_USB_DEVICE_REMOTE_WAKEUP, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_USB_NRFX, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_USB_NRFX_EVT_QUEUE_SIZE, 32); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_USB_NRFX_WORK_QUEUE_STACK_SIZE, 1024); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_USB_NRFX_ATTACHED_EVENT_DELAY, 0); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_NRF_USBD_COMMON, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_NRF_USBD_ISO_IN_ZLP, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_FULL_LIBC_SUPPORTED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_MINIMAL_LIBC_SUPPORTED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_NEWLIB_LIBC_SUPPORTED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_PICOLIBC_SUPPORTED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_PICOLIBC, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_HAS_NEWLIB_LIBC_NANO, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_COMMON_LIBC_ABORT, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_COMMON_LIBC_MALLOC, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_COMMON_LIBC_CALLOC, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_COMMON_LIBC_REALLOCARRAY, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_PICOLIBC_USE_TOOLCHAIN, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_PICOLIBC_IO_LONG_LONG, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_STDOUT_CONSOLE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_NEED_LIBC_MEM_PARTITION, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SYS_HEAP_ALLOC_LOOPS, 3); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SYS_HEAP_AUTO, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZVFS_OPEN_MAX, 4); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_HAS_POWEROFF, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_CBPRINTF_COMPLETE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_CBPRINTF_FULL_INTEGRAL, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_CBPRINTF_CONVERT_CHECK_PTR, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_POSIX_AEP_CHOICE_NONE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_POSIX_OPEN_MAX, 4); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_POSIX_PAGE_SIZE, 0x40); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_EVENTFD_MAX, 0); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_MAX_PTHREAD_COUNT, 0); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_MAX_PTHREAD_KEY_COUNT, 0); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_MAX_TIMER_COUNT, 0); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_MSG_COUNT_MAX, 0); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_POSIX_LIMITS_RTSIG_MAX, 0); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_POSIX_MAX_FDS, 4); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_POSIX_MAX_OPEN_FILES, 4); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_TIMER_DELAYTIMER_MAX, 0); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SEM_NAMELEN_MAX, 0); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SEM_VALUE_MAX, 0); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_TC_PROVIDES_POSIX_C_LANG_SUPPORT_R, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LIBGCC_RTLIB, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_RING_BUFFER, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_NOTIFY, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ONOFF, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_DEBUG, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_PRINTK, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_EARLY_CONSOLE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ASSERT_LEVEL, 2); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SPIN_VALIDATE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ASSERT_VERBOSE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LLEXT_EDK_NAME, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_MEM_ATTR, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_TIMER_RANDOM_INITIAL_STATE, 123456789); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_CSPRNG_AVAILABLE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_USB_DEVICE_STACK, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_USB_DEVICE_VID, 0x2FE3); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_USB_DEVICE_PID, 0x0004); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_USB_DEVICE_MANUFACTURER, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_USB_DEVICE_PRODUCT, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_USB_DEVICE_SN, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_USB_COMPOSITE_DEVICE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_USB_MAX_NUM_TRANSFERS, 4); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_USB_REQUEST_BUFFER_SIZE, 128); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_USB_MAX_ALT_SETTING, 8); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_USB_NUMOF_EP_WRITE_RETRIES, 3); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_USB_SELF_POWERED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_USB_MAX_POWER, 50); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_USB_WORKQUEUE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_USB_WORKQUEUE_STACK_SIZE, 1024); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_USB_WORKQUEUE_PRIORITY, -1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_USB_CDC_ACM, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_USB_CDC_ACM_RINGBUF_SIZE, 1024); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_CDC_ACM_INTERRUPT_EP_MPS, 16); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_CDC_ACM_BULK_EP_MPS, 64); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_CDC_ACM_TX_DELAY_MS, 100); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_CDC_ACM_IAD, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_TOOLCHAIN_ZEPHYR_0_17, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_TOOLCHAIN_ZEPHYR_SUPPORTS_THREAD_LOCAL_STORAGE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_TOOLCHAIN_ZEPHYR_SUPPORTS_GNU_EXTENSIONS, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LINKER_ORPHAN_SECTION_WARN, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_FLASH_LOAD_SIZE, 0x0); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ROM_END_OFFSET, 0x0); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LD_LINKER_SCRIPT_SUPPORTED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LD_LINKER_TEMPLATE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LINKER_SORT_BY_ALIGNMENT, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LINKER_GENERIC_SECTIONS_PRESENT_AT_BOOT, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LINKER_LAST_SECTION_ID, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LINKER_LAST_SECTION_ID_PATTERN, 0xE015E015); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LINKER_USE_RELAX, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LINKER_ITERABLE_SUBALIGN, 4); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LINKER_DEVNULL_SUPPORT, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_STD_C99, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_TOOLCHAIN_SUPPORTS_GNU_EXTENSIONS, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SPEED_OPTIMIZATIONS, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_COMPILER_TRACK_MACRO_EXPANSION, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_COMPILER_COLOR_DIAGNOSTICS, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_FORTIFY_SOURCE_COMPILE_TIME, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_COMPILER_OPT, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_RUNTIME_ERROR_CHECKS, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_KERNEL_BIN_NAME, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_OUTPUT_STAT, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_OUTPUT_PRINT_MEMORY_USAGE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_BUILD_GAP_FILL_PATTERN, 0xFF); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_BUILD_OUTPUT_STRIP_PATHS, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_CHECK_INIT_PRIORITIES, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_DEPRECATED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_WARN_DEPRECATED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ENFORCE_ZEPHYR_STDINT, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LEGACY_GENERATED_INCLUDE_PATH, 1); + +GEN_ABS_SYM_END diff --git a/build/PHF000-Firmware/zephyr/misc/generated/extra_kconfig_options.conf b/build/PHF000-Firmware/zephyr/misc/generated/extra_kconfig_options.conf new file mode 100644 index 0000000..db68e8c --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/extra_kconfig_options.conf @@ -0,0 +1,2 @@ + +CONFIG_SPEED_OPTIMIZATIONS=y \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/struct_tags.json b/build/PHF000-Firmware/zephyr/misc/generated/struct_tags.json new file mode 100644 index 0000000..334e9bb --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/struct_tags.json @@ -0,0 +1,95 @@ +{ + "__net_socket": [ + "modem_socket", + "net_context", + "dispatcher_context", + "spair", + "net_mgmt_socket", + "tls_context", + "websocket_context" + ], + "__subsystem": [ + "adc_driver_api", + "gpio_driver_api", + "sensor_driver_api", + "shared_irq_driver_api", + "crypto_driver_api", + "auxdisplay_driver_api", + "bbram_driver_api", + "bt_hci_driver_api", + "can_driver_api", + "cellular_driver_api", + "charger_driver_api", + "clock_control_driver_api", + "comparator_driver_api", + "coredump_driver_api", + "counter_driver_api", + "dac_driver_api", + "dai_driver_api", + "display_driver_api", + "dma_driver_api", + "edac_driver_api", + "eeprom_driver_api", + "emul_bbram_driver_api", + "fuel_gauge_emul_driver_api", + "emul_sensor_driver_api", + "entropy_driver_api", + "espi_driver_api", + "espi_saf_driver_api", + "flash_driver_api", + "fpga_driver_api", + "fuel_gauge_driver_api", + "gnss_driver_api", + "haptics_driver_api", + "hwspinlock_driver_api", + "i2c_driver_api", + "i2c_target_driver_api", + "i2s_driver_api", + "i3c_driver_api", + "ipm_driver_api", + "kscan_driver_api", + "led_driver_api", + "led_strip_driver_api", + "lora_driver_api", + "mbox_driver_api", + "mdio_driver_api", + "mipi_dbi_driver_api", + "mipi_dsi_driver_api", + "mspi_driver_api", + "peci_driver_api", + "ps2_driver_api", + "ptp_clock_driver_api", + "pwm_driver_api", + "regulator_parent_driver_api", + "regulator_driver_api", + "reset_driver_api", + "retained_mem_driver_api", + "rtc_driver_api", + "sdhc_driver_api", + "smbus_driver_api", + "spi_driver_api", + "stepper_driver_api", + "syscon_driver_api", + "tee_driver_api", + "video_driver_api", + "w1_driver_api", + "wdt_driver_api", + "can_transceiver_driver_api", + "nrf_clock_control_driver_api", + "i3c_target_driver_api", + "its_driver_api", + "vtd_driver_api", + "tgpio_driver_api", + "pcie_ctrl_driver_api", + "pcie_ep_driver_api", + "svc_driver_api", + "uart_driver_api", + "bc12_emul_driver_api", + "bc12_driver_api", + "usbc_ppc_driver_api", + "tcpc_driver_api", + "usbc_vbus_driver_api", + "ivshmem_driver_api", + "ethphy_driver_api" + ] +} \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls.json b/build/PHF000-Firmware/zephyr/misc/generated/syscalls.json new file mode 100644 index 0000000..c51fe74 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls.json @@ -0,0 +1,4538 @@ +[ + [ + [ + "int zephyr_read_stdin", + "char *buf, int nbytes" + ], + "libc-hooks.h", + true + ], + [ + [ + "int zephyr_write_stdout", + "const void *buf, int nbytes" + ], + "libc-hooks.h", + true + ], + [ + [ + "int zephyr_fputc", + "int c, FILE * stream" + ], + "libc-hooks.h", + true + ], + [ + [ + "size_t zephyr_fwrite", + "const void *ZRESTRICT ptr, size_t size,\n\t\t\t\tsize_t nitems, FILE *ZRESTRICT stream" + ], + "libc-hooks.h", + true + ], + [ + [ + "int z_sys_mutex_kernel_lock", + "struct sys_mutex *mutex,\n\t\t\t\t k_timeout_t timeout" + ], + "mutex.h", + true + ], + [ + [ + "int z_sys_mutex_kernel_unlock", + "struct sys_mutex *mutex" + ], + "mutex.h", + true + ], + [ + [ + "void z_log_msg_simple_create_0", + "const void *source, uint32_t level,\n\t\t\t\t\t const char *fmt" + ], + "log_msg.h", + true + ], + [ + [ + "void z_log_msg_simple_create_1", + "const void *source, uint32_t level,\n\t\t\t\t\t const char *fmt, uint32_t arg" + ], + "log_msg.h", + true + ], + [ + [ + "void z_log_msg_simple_create_2", + "const void *source, uint32_t level,\n\t\t\t\t\t const char *fmt, uint32_t arg0, uint32_t arg1" + ], + "log_msg.h", + true + ], + [ + [ + "void z_log_msg_static_create", + "const void *source,\n\t\t\t\t\tconst struct log_msg_desc desc,\n\t\t\t\t\tuint8_t *package, const void *data" + ], + "log_msg.h", + true + ], + [ + [ + "void log_panic", + "void" + ], + "log_ctrl.h", + true + ], + [ + [ + "bool log_process", + "void" + ], + "log_ctrl.h", + true + ], + [ + [ + "uint32_t log_buffered_cnt", + "void" + ], + "log_ctrl.h", + true + ], + [ + [ + "uint32_t log_filter_set", + "struct log_backend const *const backend,\n\t\t\t\t uint32_t domain_id, int16_t source_id,\n\t\t\t\t uint32_t level" + ], + "log_ctrl.h", + true + ], + [ + [ + "uint32_t log_frontend_filter_set", + "int16_t source_id, uint32_t level" + ], + "log_ctrl.h", + true + ], + [ + [ + "int adc_channel_setup", + "const struct device *dev,\n\t\t\t\tconst struct adc_channel_cfg *channel_cfg" + ], + "adc.h", + true + ], + [ + [ + "int adc_read", + "const struct device *dev,\n\t\t const struct adc_sequence *sequence" + ], + "adc.h", + true + ], + [ + [ + "int adc_read_async", + "const struct device *dev,\n\t\t\t const struct adc_sequence *sequence,\n\t\t\t struct k_poll_signal *async" + ], + "adc.h", + true + ], + [ + [ + "int gpio_pin_interrupt_configure", + "const struct device *port,\n\t\t\t\t\t gpio_pin_t pin,\n\t\t\t\t\t gpio_flags_t flags" + ], + "gpio.h", + true + ], + [ + [ + "int gpio_pin_configure", + "const struct device *port,\n\t\t\t\t gpio_pin_t pin,\n\t\t\t\t gpio_flags_t flags" + ], + "gpio.h", + true + ], + [ + [ + "int gpio_port_get_direction", + "const struct device *port, gpio_port_pins_t map,\n\t\t\t\t gpio_port_pins_t *inputs, gpio_port_pins_t *outputs" + ], + "gpio.h", + true + ], + [ + [ + "int gpio_pin_get_config", + "const struct device *port, gpio_pin_t pin,\n\t\t\t\t gpio_flags_t *flags" + ], + "gpio.h", + true + ], + [ + [ + "int gpio_port_get_raw", + "const struct device *port,\n\t\t\t\tgpio_port_value_t *value" + ], + "gpio.h", + true + ], + [ + [ + "int gpio_port_set_masked_raw", + "const struct device *port,\n\t\t\t\t gpio_port_pins_t mask,\n\t\t\t\t gpio_port_value_t value" + ], + "gpio.h", + true + ], + [ + [ + "int gpio_port_set_bits_raw", + "const struct device *port,\n\t\t\t\t gpio_port_pins_t pins" + ], + "gpio.h", + true + ], + [ + [ + "int gpio_port_clear_bits_raw", + "const struct device *port,\n\t\t\t\t gpio_port_pins_t pins" + ], + "gpio.h", + true + ], + [ + [ + "int gpio_port_toggle_bits", + "const struct device *port,\n\t\t\t\t gpio_port_pins_t pins" + ], + "gpio.h", + true + ], + [ + [ + "int gpio_get_pending_int", + "const struct device *dev" + ], + "gpio.h", + true + ], + [ + [ + "ssize_t hwinfo_get_device_id", + "uint8_t *buffer, size_t length" + ], + "hwinfo.h", + true + ], + [ + [ + "int hwinfo_get_device_eui64", + "uint8_t *buffer" + ], + "hwinfo.h", + true + ], + [ + [ + "int hwinfo_get_reset_cause", + "uint32_t *cause" + ], + "hwinfo.h", + true + ], + [ + [ + "int hwinfo_clear_reset_cause", + "void" + ], + "hwinfo.h", + true + ], + [ + [ + "int hwinfo_get_supported_reset_cause", + "uint32_t *supported" + ], + "hwinfo.h", + true + ], + [ + [ + "int sensor_attr_set", + "const struct device *dev,\n\t\t\t enum sensor_channel chan,\n\t\t\t enum sensor_attribute attr,\n\t\t\t const struct sensor_value *val" + ], + "sensor.h", + true + ], + [ + [ + "int sensor_attr_get", + "const struct device *dev,\n\t\t\t enum sensor_channel chan,\n\t\t\t enum sensor_attribute attr,\n\t\t\t struct sensor_value *val" + ], + "sensor.h", + true + ], + [ + [ + "int sensor_sample_fetch", + "const struct device *dev" + ], + "sensor.h", + true + ], + [ + [ + "int sensor_sample_fetch_chan", + "const struct device *dev,\n\t\t\t\t enum sensor_channel type" + ], + "sensor.h", + true + ], + [ + [ + "int sensor_channel_get", + "const struct device *dev,\n\t\t\t\t enum sensor_channel chan,\n\t\t\t\t struct sensor_value *val" + ], + "sensor.h", + true + ], + [ + [ + "int sensor_get_decoder", + "const struct device *dev,\n\t\t\t\t const struct sensor_decoder_api **decoder" + ], + "sensor.h", + true + ], + [ + [ + "int sensor_reconfigure_read_iodev", + "struct rtio_iodev *iodev, const struct device *sensor,\n\t\t\t\t\t const struct sensor_chan_spec *channels,\n\t\t\t\t\t size_t num_channels" + ], + "sensor.h", + true + ], + [ + [ + "int uart_err_check", + "const struct device *dev" + ], + "uart.h", + true + ], + [ + [ + "int uart_poll_in", + "const struct device *dev, unsigned char *p_char" + ], + "uart.h", + true + ], + [ + [ + "int uart_poll_in_u16", + "const struct device *dev, uint16_t *p_u16" + ], + "uart.h", + true + ], + [ + [ + "void uart_poll_out", + "const struct device *dev,\n\t\t\t unsigned char out_char" + ], + "uart.h", + true + ], + [ + [ + "void uart_poll_out_u16", + "const struct device *dev, uint16_t out_u16" + ], + "uart.h", + true + ], + [ + [ + "int uart_configure", + "const struct device *dev,\n\t\t\t const struct uart_config *cfg" + ], + "uart.h", + true + ], + [ + [ + "int uart_config_get", + "const struct device *dev,\n\t\t\t struct uart_config *cfg" + ], + "uart.h", + true + ], + [ + [ + "void uart_irq_tx_enable", + "const struct device *dev" + ], + "uart.h", + true + ], + [ + [ + "void uart_irq_tx_disable", + "const struct device *dev" + ], + "uart.h", + true + ], + [ + [ + "void uart_irq_rx_enable", + "const struct device *dev" + ], + "uart.h", + true + ], + [ + [ + "void uart_irq_rx_disable", + "const struct device *dev" + ], + "uart.h", + true + ], + [ + [ + "void uart_irq_err_enable", + "const struct device *dev" + ], + "uart.h", + true + ], + [ + [ + "void uart_irq_err_disable", + "const struct device *dev" + ], + "uart.h", + true + ], + [ + [ + "int uart_irq_is_pending", + "const struct device *dev" + ], + "uart.h", + true + ], + [ + [ + "int uart_irq_update", + "const struct device *dev" + ], + "uart.h", + true + ], + [ + [ + "int uart_tx", + "const struct device *dev, const uint8_t *buf,\n\t\t size_t len,\n\t\t int32_t timeout" + ], + "uart.h", + true + ], + [ + [ + "int uart_tx_u16", + "const struct device *dev, const uint16_t *buf,\n\t\t\t size_t len, int32_t timeout" + ], + "uart.h", + true + ], + [ + [ + "int uart_tx_abort", + "const struct device *dev" + ], + "uart.h", + true + ], + [ + [ + "int uart_rx_enable", + "const struct device *dev, uint8_t *buf,\n\t\t\t size_t len,\n\t\t\t int32_t timeout" + ], + "uart.h", + true + ], + [ + [ + "int uart_rx_enable_u16", + "const struct device *dev, uint16_t *buf,\n\t\t\t\t size_t len, int32_t timeout" + ], + "uart.h", + true + ], + [ + [ + "int uart_rx_disable", + "const struct device *dev" + ], + "uart.h", + true + ], + [ + [ + "int uart_line_ctrl_set", + "const struct device *dev,\n\t\t\t\t uint32_t ctrl, uint32_t val" + ], + "uart.h", + true + ], + [ + [ + "int uart_line_ctrl_get", + "const struct device *dev, uint32_t ctrl,\n\t\t\t\t uint32_t *val" + ], + "uart.h", + true + ], + [ + [ + "int uart_drv_cmd", + "const struct device *dev, uint32_t cmd, uint32_t p" + ], + "uart.h", + true + ], + [ + [ + "const struct device *device_get_binding", + "const char *name" + ], + "device.h", + true + ], + [ + [ + "bool device_is_ready", + "const struct device *dev" + ], + "device.h", + true + ], + [ + [ + "int device_init", + "const struct device *dev" + ], + "device.h", + true + ], + [ + [ + "const struct device *device_get_by_dt_nodelabel", + "const char *nodelabel" + ], + "device.h", + true + ], + [ + [ + "k_thread_stack_t *k_thread_stack_alloc", + "size_t size, int flags" + ], + "kernel.h", + true + ], + [ + [ + "int k_thread_stack_free", + "k_thread_stack_t *stack" + ], + "kernel.h", + true + ], + [ + [ + "k_tid_t k_thread_create", + "struct k_thread *new_thread,\n\t\t\t\t k_thread_stack_t *stack,\n\t\t\t\t size_t stack_size,\n\t\t\t\t k_thread_entry_t entry,\n\t\t\t\t void *p1, void *p2, void *p3,\n\t\t\t\t int prio, uint32_t options, k_timeout_t delay" + ], + "kernel.h", + true + ], + [ + [ + "int k_thread_stack_space_get", + "const struct k_thread *thread,\n\t\t\t\t size_t *unused_ptr" + ], + "kernel.h", + true + ], + [ + [ + "int k_thread_join", + "struct k_thread *thread, k_timeout_t timeout" + ], + "kernel.h", + true + ], + [ + [ + "int32_t k_sleep", + "k_timeout_t timeout" + ], + "kernel.h", + true + ], + [ + [ + "int32_t k_usleep", + "int32_t us" + ], + "kernel.h", + true + ], + [ + [ + "void k_busy_wait", + "uint32_t usec_to_wait" + ], + "kernel.h", + true + ], + [ + [ + "void k_yield", + "void" + ], + "kernel.h", + true + ], + [ + [ + "void k_wakeup", + "k_tid_t thread" + ], + "kernel.h", + true + ], + [ + [ + "k_tid_t k_sched_current_thread_query", + "void" + ], + "kernel.h", + true + ], + [ + [ + "void k_thread_abort", + "k_tid_t thread" + ], + "kernel.h", + true + ], + [ + [ + "k_ticks_t k_thread_timeout_expires_ticks", + "const struct k_thread *thread" + ], + "kernel.h", + true + ], + [ + [ + "k_ticks_t k_thread_timeout_remaining_ticks", + "const struct k_thread *thread" + ], + "kernel.h", + true + ], + [ + [ + "int k_thread_priority_get", + "k_tid_t thread" + ], + "kernel.h", + true + ], + [ + [ + "void k_thread_priority_set", + "k_tid_t thread, int prio" + ], + "kernel.h", + true + ], + [ + [ + "void k_thread_deadline_set", + "k_tid_t thread, int deadline" + ], + "kernel.h", + true + ], + [ + [ + "void k_reschedule", + "void" + ], + "kernel.h", + true + ], + [ + [ + "void k_thread_suspend", + "k_tid_t thread" + ], + "kernel.h", + true + ], + [ + [ + "void k_thread_resume", + "k_tid_t thread" + ], + "kernel.h", + true + ], + [ + [ + "int k_is_preempt_thread", + "void" + ], + "kernel.h", + true + ], + [ + [ + "void k_thread_custom_data_set", + "void *value" + ], + "kernel.h", + true + ], + [ + [ + "void *k_thread_custom_data_get", + "void" + ], + "kernel.h", + true + ], + [ + [ + "int k_thread_name_set", + "k_tid_t thread, const char *str" + ], + "kernel.h", + true + ], + [ + [ + "int k_thread_name_copy", + "k_tid_t thread, char *buf,\n\t\t\t\t size_t size" + ], + "kernel.h", + true + ], + [ + [ + "void k_timer_start", + "struct k_timer *timer,\n\t\t\t k_timeout_t duration, k_timeout_t period" + ], + "kernel.h", + true + ], + [ + [ + "void k_timer_stop", + "struct k_timer *timer" + ], + "kernel.h", + true + ], + [ + [ + "uint32_t k_timer_status_get", + "struct k_timer *timer" + ], + "kernel.h", + true + ], + [ + [ + "uint32_t k_timer_status_sync", + "struct k_timer *timer" + ], + "kernel.h", + true + ], + [ + [ + "k_ticks_t k_timer_expires_ticks", + "const struct k_timer *timer" + ], + "kernel.h", + true + ], + [ + [ + "k_ticks_t k_timer_remaining_ticks", + "const struct k_timer *timer" + ], + "kernel.h", + true + ], + [ + [ + "void k_timer_user_data_set", + "struct k_timer *timer, void *user_data" + ], + "kernel.h", + true + ], + [ + [ + "void *k_timer_user_data_get", + "const struct k_timer *timer" + ], + "kernel.h", + true + ], + [ + [ + "int64_t k_uptime_ticks", + "void" + ], + "kernel.h", + true + ], + [ + [ + "void k_queue_init", + "struct k_queue *queue" + ], + "kernel.h", + true + ], + [ + [ + "void k_queue_cancel_wait", + "struct k_queue *queue" + ], + "kernel.h", + true + ], + [ + [ + "int32_t k_queue_alloc_append", + "struct k_queue *queue, void *data" + ], + "kernel.h", + true + ], + [ + [ + "int32_t k_queue_alloc_prepend", + "struct k_queue *queue, void *data" + ], + "kernel.h", + true + ], + [ + [ + "void *k_queue_get", + "struct k_queue *queue, k_timeout_t timeout" + ], + "kernel.h", + true + ], + [ + [ + "int k_queue_is_empty", + "struct k_queue *queue" + ], + "kernel.h", + true + ], + [ + [ + "void *k_queue_peek_head", + "struct k_queue *queue" + ], + "kernel.h", + true + ], + [ + [ + "void *k_queue_peek_tail", + "struct k_queue *queue" + ], + "kernel.h", + true + ], + [ + [ + "int k_futex_wait", + "struct k_futex *futex, int expected,\n\t\t\t k_timeout_t timeout" + ], + "kernel.h", + true + ], + [ + [ + "int k_futex_wake", + "struct k_futex *futex, bool wake_all" + ], + "kernel.h", + true + ], + [ + [ + "void k_event_init", + "struct k_event *event" + ], + "kernel.h", + true + ], + [ + [ + "uint32_t k_event_post", + "struct k_event *event, uint32_t events" + ], + "kernel.h", + true + ], + [ + [ + "uint32_t k_event_set", + "struct k_event *event, uint32_t events" + ], + "kernel.h", + true + ], + [ + [ + "uint32_t k_event_set_masked", + "struct k_event *event, uint32_t events,\n\t\t\t\t uint32_t events_mask" + ], + "kernel.h", + true + ], + [ + [ + "uint32_t k_event_clear", + "struct k_event *event, uint32_t events" + ], + "kernel.h", + true + ], + [ + [ + "uint32_t k_event_wait", + "struct k_event *event, uint32_t events,\n\t\t\t\tbool reset, k_timeout_t timeout" + ], + "kernel.h", + true + ], + [ + [ + "uint32_t k_event_wait_all", + "struct k_event *event, uint32_t events,\n\t\t\t\t bool reset, k_timeout_t timeout" + ], + "kernel.h", + true + ], + [ + [ + "int32_t k_stack_alloc_init", + "struct k_stack *stack,\n\t\t\t\t uint32_t num_entries" + ], + "kernel.h", + true + ], + [ + [ + "int k_stack_push", + "struct k_stack *stack, stack_data_t data" + ], + "kernel.h", + true + ], + [ + [ + "int k_stack_pop", + "struct k_stack *stack, stack_data_t *data,\n\t\t\t k_timeout_t timeout" + ], + "kernel.h", + true + ], + [ + [ + "int k_mutex_init", + "struct k_mutex *mutex" + ], + "kernel.h", + true + ], + [ + [ + "int k_mutex_lock", + "struct k_mutex *mutex, k_timeout_t timeout" + ], + "kernel.h", + true + ], + [ + [ + "int k_mutex_unlock", + "struct k_mutex *mutex" + ], + "kernel.h", + true + ], + [ + [ + "int k_condvar_init", + "struct k_condvar *condvar" + ], + "kernel.h", + true + ], + [ + [ + "int k_condvar_signal", + "struct k_condvar *condvar" + ], + "kernel.h", + true + ], + [ + [ + "int k_condvar_broadcast", + "struct k_condvar *condvar" + ], + "kernel.h", + true + ], + [ + [ + "int k_condvar_wait", + "struct k_condvar *condvar, struct k_mutex *mutex,\n\t\t\t k_timeout_t timeout" + ], + "kernel.h", + true + ], + [ + [ + "int k_sem_init", + "struct k_sem *sem, unsigned int initial_count,\n\t\t\t unsigned int limit" + ], + "kernel.h", + true + ], + [ + [ + "int k_sem_take", + "struct k_sem *sem, k_timeout_t timeout" + ], + "kernel.h", + true + ], + [ + [ + "void k_sem_give", + "struct k_sem *sem" + ], + "kernel.h", + true + ], + [ + [ + "void k_sem_reset", + "struct k_sem *sem" + ], + "kernel.h", + true + ], + [ + [ + "unsigned int k_sem_count_get", + "struct k_sem *sem" + ], + "kernel.h", + true + ], + [ + [ + "int k_msgq_alloc_init", + "struct k_msgq *msgq, size_t msg_size,\n\t\t\t\tuint32_t max_msgs" + ], + "kernel.h", + true + ], + [ + [ + "int k_msgq_put", + "struct k_msgq *msgq, const void *data, k_timeout_t timeout" + ], + "kernel.h", + true + ], + [ + [ + "int k_msgq_get", + "struct k_msgq *msgq, void *data, k_timeout_t timeout" + ], + "kernel.h", + true + ], + [ + [ + "int k_msgq_peek", + "struct k_msgq *msgq, void *data" + ], + "kernel.h", + true + ], + [ + [ + "int k_msgq_peek_at", + "struct k_msgq *msgq, void *data, uint32_t idx" + ], + "kernel.h", + true + ], + [ + [ + "void k_msgq_purge", + "struct k_msgq *msgq" + ], + "kernel.h", + true + ], + [ + [ + "uint32_t k_msgq_num_free_get", + "struct k_msgq *msgq" + ], + "kernel.h", + true + ], + [ + [ + "void k_msgq_get_attrs", + "struct k_msgq *msgq,\n\t\t\t\t struct k_msgq_attrs *attrs" + ], + "kernel.h", + true + ], + [ + [ + "uint32_t k_msgq_num_used_get", + "struct k_msgq *msgq" + ], + "kernel.h", + true + ], + [ + [ + "int k_pipe_alloc_init", + "struct k_pipe *pipe, size_t size" + ], + "kernel.h", + true + ], + [ + [ + "int k_pipe_put", + "struct k_pipe *pipe, const void *data,\n\t\t\t size_t bytes_to_write, size_t *bytes_written,\n\t\t\t size_t min_xfer, k_timeout_t timeout" + ], + "kernel.h", + true + ], + [ + [ + "int k_pipe_get", + "struct k_pipe *pipe, void *data,\n\t\t\t size_t bytes_to_read, size_t *bytes_read,\n\t\t\t size_t min_xfer, k_timeout_t timeout" + ], + "kernel.h", + true + ], + [ + [ + "size_t k_pipe_read_avail", + "struct k_pipe *pipe" + ], + "kernel.h", + true + ], + [ + [ + "size_t k_pipe_write_avail", + "struct k_pipe *pipe" + ], + "kernel.h", + true + ], + [ + [ + "void k_pipe_flush", + "struct k_pipe *pipe" + ], + "kernel.h", + true + ], + [ + [ + "void k_pipe_buffer_flush", + "struct k_pipe *pipe" + ], + "kernel.h", + true + ], + [ + [ + "int k_poll", + "struct k_poll_event *events, int num_events,\n\t\t k_timeout_t timeout" + ], + "kernel.h", + true + ], + [ + [ + "void k_poll_signal_init", + "struct k_poll_signal *sig" + ], + "kernel.h", + true + ], + [ + [ + "void k_poll_signal_reset", + "struct k_poll_signal *sig" + ], + "kernel.h", + true + ], + [ + [ + "void k_poll_signal_check", + "struct k_poll_signal *sig,\n\t\t\t\t unsigned int *signaled, int *result" + ], + "kernel.h", + true + ], + [ + [ + "int k_poll_signal_raise", + "struct k_poll_signal *sig, int result" + ], + "kernel.h", + true + ], + [ + [ + "void k_str_out", + "char *c, size_t n" + ], + "kernel.h", + true + ], + [ + [ + "int k_float_disable", + "struct k_thread *thread" + ], + "kernel.h", + true + ], + [ + [ + "int k_float_enable", + "struct k_thread *thread, unsigned int options" + ], + "kernel.h", + true + ], + [ + [ + "void k_object_access_grant", + "const void *object,\n\t\t\t\t struct k_thread *thread" + ], + "kobject.h", + true + ], + [ + [ + "void k_object_release", + "const void *object" + ], + "kobject.h", + true + ], + [ + [ + "void *k_object_alloc", + "enum k_objects otype" + ], + "kobject.h", + true + ], + [ + [ + "void *k_object_alloc_size", + "enum k_objects otype, size_t size" + ], + "kobject.h", + true + ], + [ + [ + "int sys_clock_hw_cycles_per_sec_runtime_get", + "void" + ], + "time_units.h", + true + ], + [ + [ + "int sys_cache_data_flush_range", + "void *addr, size_t size" + ], + "cache.h", + false + ], + [ + [ + "int sys_cache_data_invd_range", + "void *addr, size_t size" + ], + "cache.h", + false + ], + [ + [ + "int sys_cache_data_flush_and_invd_range", + "void *addr, size_t size" + ], + "cache.h", + false + ], + [ + [ + "void user_fault", + "unsigned int reason" + ], + "error.h", + false + ], + [ + [ + "void xtensa_user_fault", + "unsigned int reason" + ], + "arch.h", + false + ], + [ + [ + "int auxdisplay_display_on", + "const struct device *dev" + ], + "auxdisplay.h", + false + ], + [ + [ + "int auxdisplay_display_off", + "const struct device *dev" + ], + "auxdisplay.h", + false + ], + [ + [ + "int auxdisplay_cursor_set_enabled", + "const struct device *dev,\n\t\t\t\t\t bool enabled" + ], + "auxdisplay.h", + false + ], + [ + [ + "int auxdisplay_position_blinking_set_enabled", + "const struct device *dev,\n\t\t\t\t\t\t bool enabled" + ], + "auxdisplay.h", + false + ], + [ + [ + "int auxdisplay_cursor_shift_set", + "const struct device *dev,\n\t\t\t\t\t uint8_t direction, bool display_shift" + ], + "auxdisplay.h", + false + ], + [ + [ + "int auxdisplay_cursor_position_set", + "const struct device *dev,\n\t\t\t\t\t enum auxdisplay_position type,\n\t\t\t\t\t int16_t x, int16_t y" + ], + "auxdisplay.h", + false + ], + [ + [ + "int auxdisplay_cursor_position_get", + "const struct device *dev,\n\t\t\t\t\t int16_t *x, int16_t *y" + ], + "auxdisplay.h", + false + ], + [ + [ + "int auxdisplay_display_position_set", + "const struct device *dev,\n\t\t\t\t\t enum auxdisplay_position type,\n\t\t\t\t\t int16_t x, int16_t y" + ], + "auxdisplay.h", + false + ], + [ + [ + "int auxdisplay_display_position_get", + "const struct device *dev,\n\t\t\t\t\t int16_t *x, int16_t *y" + ], + "auxdisplay.h", + false + ], + [ + [ + "int auxdisplay_capabilities_get", + "const struct device *dev,\n\t\t\t\t\t struct auxdisplay_capabilities *capabilities" + ], + "auxdisplay.h", + false + ], + [ + [ + "int auxdisplay_clear", + "const struct device *dev" + ], + "auxdisplay.h", + false + ], + [ + [ + "int auxdisplay_brightness_get", + "const struct device *dev,\n\t\t\t\t\tuint8_t *brightness" + ], + "auxdisplay.h", + false + ], + [ + [ + "int auxdisplay_brightness_set", + "const struct device *dev,\n\t\t\t\t\tuint8_t brightness" + ], + "auxdisplay.h", + false + ], + [ + [ + "int auxdisplay_backlight_get", + "const struct device *dev,\n\t\t\t\t uint8_t *backlight" + ], + "auxdisplay.h", + false + ], + [ + [ + "int auxdisplay_backlight_set", + "const struct device *dev,\n\t\t\t\t uint8_t backlight" + ], + "auxdisplay.h", + false + ], + [ + [ + "int auxdisplay_is_busy", + "const struct device *dev" + ], + "auxdisplay.h", + false + ], + [ + [ + "int auxdisplay_custom_character_set", + "const struct device *dev,\n\t\t\t\t\t struct auxdisplay_character *character" + ], + "auxdisplay.h", + false + ], + [ + [ + "int auxdisplay_write", + "const struct device *dev, const uint8_t *data,\n\t\t\t uint16_t len" + ], + "auxdisplay.h", + false + ], + [ + [ + "int auxdisplay_custom_command", + "const struct device *dev,\n\t\t\t\t\tstruct auxdisplay_custom_data *data" + ], + "auxdisplay.h", + false + ], + [ + [ + "int bbram_check_invalid", + "const struct device *dev" + ], + "bbram.h", + false + ], + [ + [ + "int bbram_check_standby_power", + "const struct device *dev" + ], + "bbram.h", + false + ], + [ + [ + "int bbram_check_power", + "const struct device *dev" + ], + "bbram.h", + false + ], + [ + [ + "int bbram_get_size", + "const struct device *dev, size_t *size" + ], + "bbram.h", + false + ], + [ + [ + "int bbram_read", + "const struct device *dev, size_t offset, size_t size,\n\t\t\t uint8_t *data" + ], + "bbram.h", + false + ], + [ + [ + "int bbram_write", + "const struct device *dev, size_t offset, size_t size,\n\t\t\t const uint8_t *data" + ], + "bbram.h", + false + ], + [ + [ + "int can_get_core_clock", + "const struct device *dev, uint32_t *rate" + ], + "can.h", + false + ], + [ + [ + "uint32_t can_get_bitrate_min", + "const struct device *dev" + ], + "can.h", + false + ], + [ + [ + "uint32_t can_get_bitrate_max", + "const struct device *dev" + ], + "can.h", + false + ], + [ + [ + "const struct can_timing *can_get_timing_min", + "const struct device *dev" + ], + "can.h", + false + ], + [ + [ + "const struct can_timing *can_get_timing_max", + "const struct device *dev" + ], + "can.h", + false + ], + [ + [ + "int can_calc_timing", + "const struct device *dev, struct can_timing *res,\n\t\t\t uint32_t bitrate, uint16_t sample_pnt" + ], + "can.h", + false + ], + [ + [ + "const struct can_timing *can_get_timing_data_min", + "const struct device *dev" + ], + "can.h", + false + ], + [ + [ + "const struct can_timing *can_get_timing_data_max", + "const struct device *dev" + ], + "can.h", + false + ], + [ + [ + "int can_calc_timing_data", + "const struct device *dev, struct can_timing *res,\n\t\t\t\t uint32_t bitrate, uint16_t sample_pnt" + ], + "can.h", + false + ], + [ + [ + "int can_set_timing_data", + "const struct device *dev,\n\t\t\t\t const struct can_timing *timing_data" + ], + "can.h", + false + ], + [ + [ + "int can_set_bitrate_data", + "const struct device *dev, uint32_t bitrate_data" + ], + "can.h", + false + ], + [ + [ + "int can_set_timing", + "const struct device *dev,\n\t\t\t const struct can_timing *timing" + ], + "can.h", + false + ], + [ + [ + "int can_get_capabilities", + "const struct device *dev, can_mode_t *cap" + ], + "can.h", + false + ], + [ + [ + "const struct device *can_get_transceiver", + "const struct device *dev" + ], + "can.h", + false + ], + [ + [ + "int can_start", + "const struct device *dev" + ], + "can.h", + false + ], + [ + [ + "int can_stop", + "const struct device *dev" + ], + "can.h", + false + ], + [ + [ + "int can_set_mode", + "const struct device *dev, can_mode_t mode" + ], + "can.h", + false + ], + [ + [ + "can_mode_t can_get_mode", + "const struct device *dev" + ], + "can.h", + false + ], + [ + [ + "int can_set_bitrate", + "const struct device *dev, uint32_t bitrate" + ], + "can.h", + false + ], + [ + [ + "int can_send", + "const struct device *dev, const struct can_frame *frame,\n\t\t k_timeout_t timeout, can_tx_callback_t callback,\n\t\t void *user_data" + ], + "can.h", + false + ], + [ + [ + "int can_add_rx_filter_msgq", + "const struct device *dev, struct k_msgq *msgq,\n\t\t\t\t const struct can_filter *filter" + ], + "can.h", + false + ], + [ + [ + "void can_remove_rx_filter", + "const struct device *dev, int filter_id" + ], + "can.h", + false + ], + [ + [ + "int can_get_max_filters", + "const struct device *dev, bool ide" + ], + "can.h", + false + ], + [ + [ + "int can_get_state", + "const struct device *dev, enum can_state *state,\n\t\t\t struct can_bus_err_cnt *err_cnt" + ], + "can.h", + false + ], + [ + [ + "int can_recover", + "const struct device *dev, k_timeout_t timeout" + ], + "can.h", + false + ], + [ + [ + "uint32_t can_stats_get_bit_errors", + "const struct device *dev" + ], + "can.h", + false + ], + [ + [ + "uint32_t can_stats_get_bit0_errors", + "const struct device *dev" + ], + "can.h", + false + ], + [ + [ + "uint32_t can_stats_get_bit1_errors", + "const struct device *dev" + ], + "can.h", + false + ], + [ + [ + "uint32_t can_stats_get_stuff_errors", + "const struct device *dev" + ], + "can.h", + false + ], + [ + [ + "uint32_t can_stats_get_crc_errors", + "const struct device *dev" + ], + "can.h", + false + ], + [ + [ + "uint32_t can_stats_get_form_errors", + "const struct device *dev" + ], + "can.h", + false + ], + [ + [ + "uint32_t can_stats_get_ack_errors", + "const struct device *dev" + ], + "can.h", + false + ], + [ + [ + "uint32_t can_stats_get_rx_overruns", + "const struct device *dev" + ], + "can.h", + false + ], + [ + [ + "int charger_get_prop", + "const struct device *dev, const charger_prop_t prop,\n\t\t\t union charger_propval *val" + ], + "charger.h", + false + ], + [ + [ + "int charger_set_prop", + "const struct device *dev, const charger_prop_t prop,\n\t\t\t const union charger_propval *val" + ], + "charger.h", + false + ], + [ + [ + "int charger_charge_enable", + "const struct device *dev, const bool enable" + ], + "charger.h", + false + ], + [ + [ + "int comparator_get_output", + "const struct device *dev" + ], + "comparator.h", + false + ], + [ + [ + "int comparator_set_trigger", + "const struct device *dev,\n\t\t\t\t enum comparator_trigger trigger" + ], + "comparator.h", + false + ], + [ + [ + "int comparator_trigger_is_pending", + "const struct device *dev" + ], + "comparator.h", + false + ], + [ + [ + "bool counter_is_counting_up", + "const struct device *dev" + ], + "counter.h", + false + ], + [ + [ + "uint8_t counter_get_num_of_channels", + "const struct device *dev" + ], + "counter.h", + false + ], + [ + [ + "uint32_t counter_get_frequency", + "const struct device *dev" + ], + "counter.h", + false + ], + [ + [ + "uint32_t counter_us_to_ticks", + "const struct device *dev, uint64_t us" + ], + "counter.h", + false + ], + [ + [ + "uint64_t counter_ticks_to_us", + "const struct device *dev, uint32_t ticks" + ], + "counter.h", + false + ], + [ + [ + "uint32_t counter_get_max_top_value", + "const struct device *dev" + ], + "counter.h", + false + ], + [ + [ + "int counter_start", + "const struct device *dev" + ], + "counter.h", + false + ], + [ + [ + "int counter_stop", + "const struct device *dev" + ], + "counter.h", + false + ], + [ + [ + "int counter_get_value", + "const struct device *dev, uint32_t *ticks" + ], + "counter.h", + false + ], + [ + [ + "int counter_get_value_64", + "const struct device *dev, uint64_t *ticks" + ], + "counter.h", + false + ], + [ + [ + "int counter_set_channel_alarm", + "const struct device *dev,\n\t\t\t\t\tuint8_t chan_id,\n\t\t\t\t\tconst struct counter_alarm_cfg *alarm_cfg" + ], + "counter.h", + false + ], + [ + [ + "int counter_cancel_channel_alarm", + "const struct device *dev,\n\t\t\t\t\t uint8_t chan_id" + ], + "counter.h", + false + ], + [ + [ + "int counter_set_top_value", + "const struct device *dev,\n\t\t\t\t const struct counter_top_cfg *cfg" + ], + "counter.h", + false + ], + [ + [ + "int counter_get_pending_int", + "const struct device *dev" + ], + "counter.h", + false + ], + [ + [ + "uint32_t counter_get_top_value", + "const struct device *dev" + ], + "counter.h", + false + ], + [ + [ + "int counter_set_guard_period", + "const struct device *dev,\n\t\t\t\t\tuint32_t ticks,\n\t\t\t\t\tuint32_t flags" + ], + "counter.h", + false + ], + [ + [ + "uint32_t counter_get_guard_period", + "const struct device *dev,\n\t\t\t\t\t uint32_t flags" + ], + "counter.h", + false + ], + [ + [ + "int dac_channel_setup", + "const struct device *dev,\n\t\t\t\tconst struct dac_channel_cfg *channel_cfg" + ], + "dac.h", + false + ], + [ + [ + "int dac_write_value", + "const struct device *dev, uint8_t channel,\n\t\t\t uint32_t value" + ], + "dac.h", + false + ], + [ + [ + "int dma_start", + "const struct device *dev, uint32_t channel" + ], + "dma.h", + false + ], + [ + [ + "int dma_stop", + "const struct device *dev, uint32_t channel" + ], + "dma.h", + false + ], + [ + [ + "int dma_suspend", + "const struct device *dev, uint32_t channel" + ], + "dma.h", + false + ], + [ + [ + "int dma_resume", + "const struct device *dev, uint32_t channel" + ], + "dma.h", + false + ], + [ + [ + "int dma_request_channel", + "const struct device *dev,\n\t\t\t\t void *filter_param" + ], + "dma.h", + false + ], + [ + [ + "void dma_release_channel", + "const struct device *dev,\n\t\t\t\t uint32_t channel" + ], + "dma.h", + false + ], + [ + [ + "int dma_chan_filter", + "const struct device *dev,\n\t\t\t\t int channel, void *filter_param" + ], + "dma.h", + false + ], + [ + [ + "int eeprom_read", + "const struct device *dev, off_t offset, void *data,\n\t\t\t size_t len" + ], + "eeprom.h", + false + ], + [ + [ + "int eeprom_write", + "const struct device *dev, off_t offset,\n\t\t\t const void *data,\n\t\t\t size_t len" + ], + "eeprom.h", + false + ], + [ + [ + "size_t eeprom_get_size", + "const struct device *dev" + ], + "eeprom.h", + false + ], + [ + [ + "int emul_fuel_gauge_set_battery_charging", + "const struct emul *target, uint32_t uV, int uA" + ], + "emul_fuel_gauge.h", + false + ], + [ + [ + "int emul_fuel_gauge_is_battery_cutoff", + "const struct emul *target, bool *cutoff" + ], + "emul_fuel_gauge.h", + false + ], + [ + [ + "int entropy_get_entropy", + "const struct device *dev,\n\t\t\t\t uint8_t *buffer,\n\t\t\t\t uint16_t length" + ], + "entropy.h", + false + ], + [ + [ + "int espi_config", + "const struct device *dev, struct espi_cfg *cfg" + ], + "espi.h", + false + ], + [ + [ + "bool espi_get_channel_status", + "const struct device *dev,\n\t\t\t\t enum espi_channel ch" + ], + "espi.h", + false + ], + [ + [ + "int espi_read_request", + "const struct device *dev,\n\t\t\t\tstruct espi_request_packet *req" + ], + "espi.h", + false + ], + [ + [ + "int espi_write_request", + "const struct device *dev,\n\t\t\t\t struct espi_request_packet *req" + ], + "espi.h", + false + ], + [ + [ + "int espi_read_lpc_request", + "const struct device *dev,\n\t\t\t\t enum lpc_peripheral_opcode op,\n\t\t\t\t uint32_t *data" + ], + "espi.h", + false + ], + [ + [ + "int espi_write_lpc_request", + "const struct device *dev,\n\t\t\t\t enum lpc_peripheral_opcode op,\n\t\t\t\t uint32_t *data" + ], + "espi.h", + false + ], + [ + [ + "int espi_send_vwire", + "const struct device *dev,\n\t\t\t enum espi_vwire_signal signal,\n\t\t\t uint8_t level" + ], + "espi.h", + false + ], + [ + [ + "int espi_receive_vwire", + "const struct device *dev,\n\t\t\t\t enum espi_vwire_signal signal,\n\t\t\t\t uint8_t *level" + ], + "espi.h", + false + ], + [ + [ + "int espi_send_oob", + "const struct device *dev,\n\t\t\t struct espi_oob_packet *pckt" + ], + "espi.h", + false + ], + [ + [ + "int espi_receive_oob", + "const struct device *dev,\n\t\t\t struct espi_oob_packet *pckt" + ], + "espi.h", + false + ], + [ + [ + "int espi_read_flash", + "const struct device *dev,\n\t\t\t struct espi_flash_packet *pckt" + ], + "espi.h", + false + ], + [ + [ + "int espi_write_flash", + "const struct device *dev,\n\t\t\t struct espi_flash_packet *pckt" + ], + "espi.h", + false + ], + [ + [ + "int espi_flash_erase", + "const struct device *dev,\n\t\t\t struct espi_flash_packet *pckt" + ], + "espi.h", + false + ], + [ + [ + "int espi_saf_config", + "const struct device *dev,\n\t\t\t const struct espi_saf_cfg *cfg" + ], + "espi_saf.h", + false + ], + [ + [ + "int espi_saf_set_protection_regions", + "\n\t\t\t\tconst struct device *dev,\n\t\t\t\tconst struct espi_saf_protection *pr" + ], + "espi_saf.h", + false + ], + [ + [ + "int espi_saf_activate", + "const struct device *dev" + ], + "espi_saf.h", + false + ], + [ + [ + "bool espi_saf_get_channel_status", + "const struct device *dev" + ], + "espi_saf.h", + false + ], + [ + [ + "int espi_saf_flash_read", + "const struct device *dev,\n\t\t\t\t struct espi_saf_packet *pckt" + ], + "espi_saf.h", + false + ], + [ + [ + "int espi_saf_flash_write", + "const struct device *dev,\n\t\t\t\t struct espi_saf_packet *pckt" + ], + "espi_saf.h", + false + ], + [ + [ + "int espi_saf_flash_erase", + "const struct device *dev,\n\t\t\t\t struct espi_saf_packet *pckt" + ], + "espi_saf.h", + false + ], + [ + [ + "int espi_saf_flash_unsuccess", + "const struct device *dev,\n\t\t\t\t struct espi_saf_packet *pckt" + ], + "espi_saf.h", + false + ], + [ + [ + "int flash_read", + "const struct device *dev, off_t offset, void *data,\n\t\t\t size_t len" + ], + "flash.h", + false + ], + [ + [ + "int flash_write", + "const struct device *dev, off_t offset,\n\t\t\t const void *data,\n\t\t\t size_t len" + ], + "flash.h", + false + ], + [ + [ + "int flash_erase", + "const struct device *dev, off_t offset, size_t size" + ], + "flash.h", + false + ], + [ + [ + "int flash_get_size", + "const struct device *dev, uint64_t *size" + ], + "flash.h", + false + ], + [ + [ + "int flash_fill", + "const struct device *dev, uint8_t val, off_t offset, size_t size" + ], + "flash.h", + false + ], + [ + [ + "int flash_flatten", + "const struct device *dev, off_t offset, size_t size" + ], + "flash.h", + false + ], + [ + [ + "int flash_get_page_info_by_offs", + "const struct device *dev,\n\t\t\t\t\t off_t offset,\n\t\t\t\t\t struct flash_pages_info *info" + ], + "flash.h", + false + ], + [ + [ + "int flash_get_page_info_by_idx", + "const struct device *dev,\n\t\t\t\t\t uint32_t page_index,\n\t\t\t\t\t struct flash_pages_info *info" + ], + "flash.h", + false + ], + [ + [ + "size_t flash_get_page_count", + "const struct device *dev" + ], + "flash.h", + false + ], + [ + [ + "int flash_sfdp_read", + "const struct device *dev, off_t offset,\n\t\t\t void *data, size_t len" + ], + "flash.h", + false + ], + [ + [ + "int flash_read_jedec_id", + "const struct device *dev, uint8_t *id" + ], + "flash.h", + false + ], + [ + [ + "size_t flash_get_write_block_size", + "const struct device *dev" + ], + "flash.h", + false + ], + [ + [ + "const struct flash_parameters *flash_get_parameters", + "const struct device *dev" + ], + "flash.h", + false + ], + [ + [ + "int flash_ex_op", + "const struct device *dev, uint16_t code,\n\t\t\t const uintptr_t in, void *out" + ], + "flash.h", + false + ], + [ + [ + "int flash_copy", + "const struct device *src_dev, off_t src_offset,\n\t\t\t const struct device *dst_dev, off_t dst_offset, off_t size, uint8_t *buf,\n\t\t\t size_t buf_size" + ], + "flash.h", + false + ], + [ + [ + "int fuel_gauge_get_prop", + "const struct device *dev, fuel_gauge_prop_t prop,\n\t\t\t\t union fuel_gauge_prop_val *val" + ], + "fuel_gauge.h", + false + ], + [ + [ + "int fuel_gauge_get_props", + "const struct device *dev, const fuel_gauge_prop_t *props,\n\t\t\t\t union fuel_gauge_prop_val *vals, size_t len" + ], + "fuel_gauge.h", + false + ], + [ + [ + "int fuel_gauge_set_prop", + "const struct device *dev, fuel_gauge_prop_t prop,\n\t\t\t\t union fuel_gauge_prop_val val" + ], + "fuel_gauge.h", + false + ], + [ + [ + "int fuel_gauge_set_props", + "const struct device *dev, const fuel_gauge_prop_t *props,\n\t\t\t\t const union fuel_gauge_prop_val *vals, size_t len" + ], + "fuel_gauge.h", + false + ], + [ + [ + "int fuel_gauge_get_buffer_prop", + "const struct device *dev, fuel_gauge_prop_t prop_type,\n\t\t\t\t\t void *dst, size_t dst_len" + ], + "fuel_gauge.h", + false + ], + [ + [ + "int fuel_gauge_battery_cutoff", + "const struct device *dev" + ], + "fuel_gauge.h", + false + ], + [ + [ + "int gnss_set_fix_rate", + "const struct device *dev, uint32_t fix_interval_ms" + ], + "gnss.h", + false + ], + [ + [ + "int gnss_get_fix_rate", + "const struct device *dev, uint32_t *fix_interval_ms" + ], + "gnss.h", + false + ], + [ + [ + "int gnss_set_navigation_mode", + "const struct device *dev,\n\t\t\t\t enum gnss_navigation_mode mode" + ], + "gnss.h", + false + ], + [ + [ + "int gnss_get_navigation_mode", + "const struct device *dev,\n\t\t\t\t enum gnss_navigation_mode *mode" + ], + "gnss.h", + false + ], + [ + [ + "int gnss_set_enabled_systems", + "const struct device *dev, gnss_systems_t systems" + ], + "gnss.h", + false + ], + [ + [ + "int gnss_get_enabled_systems", + "const struct device *dev, gnss_systems_t *systems" + ], + "gnss.h", + false + ], + [ + [ + "int gnss_get_supported_systems", + "const struct device *dev, gnss_systems_t *systems" + ], + "gnss.h", + false + ], + [ + [ + "int gnss_get_latest_timepulse", + "const struct device *dev, k_ticks_t *timestamp" + ], + "gnss.h", + false + ], + [ + [ + "int haptics_start_output", + "const struct device *dev" + ], + "haptics.h", + false + ], + [ + [ + "int haptics_stop_output", + "const struct device *dev" + ], + "haptics.h", + false + ], + [ + [ + "int hwspinlock_trylock", + "const struct device *dev, uint32_t id" + ], + "hwspinlock.h", + false + ], + [ + [ + "void hwspinlock_lock", + "const struct device *dev, uint32_t id" + ], + "hwspinlock.h", + false + ], + [ + [ + "void hwspinlock_unlock", + "const struct device *dev, uint32_t id" + ], + "hwspinlock.h", + false + ], + [ + [ + "uint32_t hwspinlock_get_max_id", + "const struct device *dev" + ], + "hwspinlock.h", + false + ], + [ + [ + "int i2c_configure", + "const struct device *dev, uint32_t dev_config" + ], + "i2c.h", + false + ], + [ + [ + "int i2c_get_config", + "const struct device *dev, uint32_t *dev_config" + ], + "i2c.h", + false + ], + [ + [ + "int i2c_transfer", + "const struct device *dev,\n\t\t\t struct i2c_msg *msgs, uint8_t num_msgs,\n\t\t\t uint16_t addr" + ], + "i2c.h", + false + ], + [ + [ + "int i2c_recover_bus", + "const struct device *dev" + ], + "i2c.h", + false + ], + [ + [ + "int i2c_target_driver_register", + "const struct device *dev" + ], + "i2c.h", + false + ], + [ + [ + "int i2c_target_driver_unregister", + "const struct device *dev" + ], + "i2c.h", + false + ], + [ + [ + "int i2s_configure", + "const struct device *dev, enum i2s_dir dir,\n\t\t\t const struct i2s_config *cfg" + ], + "i2s.h", + false + ], + [ + [ + "int i2s_buf_read", + "const struct device *dev, void *buf, size_t *size" + ], + "i2s.h", + false + ], + [ + [ + "int i2s_buf_write", + "const struct device *dev, void *buf, size_t size" + ], + "i2s.h", + false + ], + [ + [ + "int i2s_trigger", + "const struct device *dev, enum i2s_dir dir,\n\t\t\t enum i2s_trigger_cmd cmd" + ], + "i2s.h", + false + ], + [ + [ + "int i3c_do_ccc", + "const struct device *dev,\n\t\t\t struct i3c_ccc_payload *payload" + ], + "i3c.h", + false + ], + [ + [ + "int i3c_transfer", + "struct i3c_device_desc *target,\n\t\t\t struct i3c_msg *msgs, uint8_t num_msgs" + ], + "i3c.h", + false + ], + [ + [ + "int ipm_send", + "const struct device *ipmdev, int wait, uint32_t id,\n\t\t const void *data, int size" + ], + "ipm.h", + false + ], + [ + [ + "int ipm_max_data_size_get", + "const struct device *ipmdev" + ], + "ipm.h", + false + ], + [ + [ + "uint32_t ipm_max_id_val_get", + "const struct device *ipmdev" + ], + "ipm.h", + false + ], + [ + [ + "int ipm_set_enabled", + "const struct device *ipmdev, int enable" + ], + "ipm.h", + false + ], + [ + [ + "void ipm_complete", + "const struct device *ipmdev" + ], + "ipm.h", + false + ], + [ + [ + "int kscan_config", + "const struct device *dev,\n\t\t\t kscan_callback_t callback" + ], + "kscan.h", + false + ], + [ + [ + "int kscan_enable_callback", + "const struct device *dev" + ], + "kscan.h", + false + ], + [ + [ + "int kscan_disable_callback", + "const struct device *dev" + ], + "kscan.h", + false + ], + [ + [ + "int led_blink", + "const struct device *dev, uint32_t led,\n\t\t\t uint32_t delay_on, uint32_t delay_off" + ], + "led.h", + false + ], + [ + [ + "int led_get_info", + "const struct device *dev, uint32_t led,\n\t\t\t const struct led_info **info" + ], + "led.h", + false + ], + [ + [ + "int led_set_brightness", + "const struct device *dev, uint32_t led,\n\t\t\t\t uint8_t value" + ], + "led.h", + false + ], + [ + [ + "int led_write_channels", + "const struct device *dev,\n\t\t\t\t uint32_t start_channel,\n\t\t\t\t uint32_t num_channels, const uint8_t *buf" + ], + "led.h", + false + ], + [ + [ + "int led_set_channel", + "const struct device *dev,\n\t\t\t uint32_t channel, uint8_t value" + ], + "led.h", + false + ], + [ + [ + "int led_set_color", + "const struct device *dev, uint32_t led,\n\t\t\t uint8_t num_colors, const uint8_t *color" + ], + "led.h", + false + ], + [ + [ + "int led_on", + "const struct device *dev, uint32_t led" + ], + "led.h", + false + ], + [ + [ + "int led_off", + "const struct device *dev, uint32_t led" + ], + "led.h", + false + ], + [ + [ + "int mbox_send", + "const struct device *dev, mbox_channel_id_t channel_id,\n\t\t\tconst struct mbox_msg *msg" + ], + "mbox.h", + false + ], + [ + [ + "int mbox_mtu_get", + "const struct device *dev" + ], + "mbox.h", + false + ], + [ + [ + "int mbox_set_enabled", + "const struct device *dev,\n\t\t\t mbox_channel_id_t channel_id, bool enabled" + ], + "mbox.h", + false + ], + [ + [ + "uint32_t mbox_max_channels_get", + "const struct device *dev" + ], + "mbox.h", + false + ], + [ + [ + "void mdio_bus_enable", + "const struct device *dev" + ], + "mdio.h", + false + ], + [ + [ + "void mdio_bus_disable", + "const struct device *dev" + ], + "mdio.h", + false + ], + [ + [ + "int mdio_read", + "const struct device *dev, uint8_t prtad, uint8_t regad,\n\t\t\tuint16_t *data" + ], + "mdio.h", + false + ], + [ + [ + "int mdio_write", + "const struct device *dev, uint8_t prtad, uint8_t regad,\n\t\t\t uint16_t data" + ], + "mdio.h", + false + ], + [ + [ + "int mdio_read_c45", + "const struct device *dev, uint8_t prtad,\n\t\t\t uint8_t devad, uint16_t regad, uint16_t *data" + ], + "mdio.h", + false + ], + [ + [ + "int mdio_write_c45", + "const struct device *dev, uint8_t prtad,\n\t\t\t uint8_t devad, uint16_t regad, uint16_t data" + ], + "mdio.h", + false + ], + [ + [ + "int mspi_config", + "const struct mspi_dt_spec *spec" + ], + "mspi.h", + false + ], + [ + [ + "int mspi_dev_config", + "const struct device *controller,\n\t\t\t const struct mspi_dev_id *dev_id,\n\t\t\t const enum mspi_dev_cfg_mask param_mask,\n\t\t\t const struct mspi_dev_cfg *cfg" + ], + "mspi.h", + false + ], + [ + [ + "int mspi_get_channel_status", + "const struct device *controller, uint8_t ch" + ], + "mspi.h", + false + ], + [ + [ + "int mspi_transceive", + "const struct device *controller,\n\t\t\t const struct mspi_dev_id *dev_id,\n\t\t\t const struct mspi_xfer *req" + ], + "mspi.h", + false + ], + [ + [ + "int mspi_xip_config", + "const struct device *controller,\n\t\t\t const struct mspi_dev_id *dev_id,\n\t\t\t const struct mspi_xip_cfg *cfg" + ], + "mspi.h", + false + ], + [ + [ + "int mspi_scramble_config", + "const struct device *controller,\n\t\t\t\t const struct mspi_dev_id *dev_id,\n\t\t\t\t const struct mspi_scramble_cfg *cfg" + ], + "mspi.h", + false + ], + [ + [ + "int mspi_timing_config", + "const struct device *controller,\n\t\t\t\t const struct mspi_dev_id *dev_id,\n\t\t\t\t const uint32_t param_mask, void *cfg" + ], + "mspi.h", + false + ], + [ + [ + "int peci_config", + "const struct device *dev, uint32_t bitrate" + ], + "peci.h", + false + ], + [ + [ + "int peci_enable", + "const struct device *dev" + ], + "peci.h", + false + ], + [ + [ + "int peci_disable", + "const struct device *dev" + ], + "peci.h", + false + ], + [ + [ + "int peci_transfer", + "const struct device *dev, struct peci_msg *msg" + ], + "peci.h", + false + ], + [ + [ + "int ps2_config", + "const struct device *dev,\n\t\t\t ps2_callback_t callback_isr" + ], + "ps2.h", + false + ], + [ + [ + "int ps2_write", + "const struct device *dev, uint8_t value" + ], + "ps2.h", + false + ], + [ + [ + "int ps2_read", + "const struct device *dev, uint8_t *value" + ], + "ps2.h", + false + ], + [ + [ + "int ps2_enable_callback", + "const struct device *dev" + ], + "ps2.h", + false + ], + [ + [ + "int ps2_disable_callback", + "const struct device *dev" + ], + "ps2.h", + false + ], + [ + [ + "int ptp_clock_get", + "const struct device *dev, struct net_ptp_time *tm" + ], + "ptp_clock.h", + false + ], + [ + [ + "int pwm_set_cycles", + "const struct device *dev, uint32_t channel,\n\t\t\t uint32_t period, uint32_t pulse,\n\t\t\t pwm_flags_t flags" + ], + "pwm.h", + false + ], + [ + [ + "int pwm_get_cycles_per_sec", + "const struct device *dev, uint32_t channel,\n\t\t\t\t uint64_t *cycles" + ], + "pwm.h", + false + ], + [ + [ + "int pwm_enable_capture", + "const struct device *dev, uint32_t channel" + ], + "pwm.h", + false + ], + [ + [ + "int pwm_disable_capture", + "const struct device *dev, uint32_t channel" + ], + "pwm.h", + false + ], + [ + [ + "int pwm_capture_cycles", + "const struct device *dev, uint32_t channel,\n\t\t\t\t pwm_flags_t flags, uint32_t *period,\n\t\t\t\t uint32_t *pulse, k_timeout_t timeout" + ], + "pwm.h", + false + ], + [ + [ + "int reset_status", + "const struct device *dev, uint32_t id, uint8_t *status" + ], + "reset.h", + false + ], + [ + [ + "int reset_line_assert", + "const struct device *dev, uint32_t id" + ], + "reset.h", + false + ], + [ + [ + "int reset_line_deassert", + "const struct device *dev, uint32_t id" + ], + "reset.h", + false + ], + [ + [ + "int reset_line_toggle", + "const struct device *dev, uint32_t id" + ], + "reset.h", + false + ], + [ + [ + "ssize_t retained_mem_size", + "const struct device *dev" + ], + "retained_mem.h", + false + ], + [ + [ + "int retained_mem_read", + "const struct device *dev, off_t offset, uint8_t *buffer,\n\t\t\t\tsize_t size" + ], + "retained_mem.h", + false + ], + [ + [ + "int retained_mem_write", + "const struct device *dev, off_t offset, const uint8_t *buffer,\n\t\t\t\t size_t size" + ], + "retained_mem.h", + false + ], + [ + [ + "int retained_mem_clear", + "const struct device *dev" + ], + "retained_mem.h", + false + ], + [ + [ + "int rtc_set_time", + "const struct device *dev, const struct rtc_time *timeptr" + ], + "rtc.h", + false + ], + [ + [ + "int rtc_get_time", + "const struct device *dev, struct rtc_time *timeptr" + ], + "rtc.h", + false + ], + [ + [ + "int rtc_alarm_get_supported_fields", + "const struct device *dev, uint16_t id,\n\t\t\t\t\t uint16_t *mask" + ], + "rtc.h", + false + ], + [ + [ + "int rtc_alarm_set_time", + "const struct device *dev, uint16_t id, uint16_t mask,\n\t\t\t\t const struct rtc_time *timeptr" + ], + "rtc.h", + false + ], + [ + [ + "int rtc_alarm_get_time", + "const struct device *dev, uint16_t id, uint16_t *mask,\n\t\t\t\t struct rtc_time *timeptr" + ], + "rtc.h", + false + ], + [ + [ + "int rtc_alarm_is_pending", + "const struct device *dev, uint16_t id" + ], + "rtc.h", + false + ], + [ + [ + "int rtc_alarm_set_callback", + "const struct device *dev, uint16_t id,\n\t\t\t\t rtc_alarm_callback callback, void *user_data" + ], + "rtc.h", + false + ], + [ + [ + "int rtc_update_set_callback", + "const struct device *dev, rtc_update_callback callback,\n\t\t\t\t void *user_data" + ], + "rtc.h", + false + ], + [ + [ + "int rtc_set_calibration", + "const struct device *dev, int32_t calibration" + ], + "rtc.h", + false + ], + [ + [ + "int rtc_get_calibration", + "const struct device *dev, int32_t *calibration" + ], + "rtc.h", + false + ], + [ + [ + "int sdhc_hw_reset", + "const struct device *dev" + ], + "sdhc.h", + false + ], + [ + [ + "int sdhc_request", + "const struct device *dev, struct sdhc_command *cmd,\n\t\t\t struct sdhc_data *data" + ], + "sdhc.h", + false + ], + [ + [ + "int sdhc_set_io", + "const struct device *dev, struct sdhc_io *io" + ], + "sdhc.h", + false + ], + [ + [ + "int sdhc_card_present", + "const struct device *dev" + ], + "sdhc.h", + false + ], + [ + [ + "int sdhc_execute_tuning", + "const struct device *dev" + ], + "sdhc.h", + false + ], + [ + [ + "int sdhc_card_busy", + "const struct device *dev" + ], + "sdhc.h", + false + ], + [ + [ + "int sdhc_get_host_props", + "const struct device *dev,\n\t\t\t\t struct sdhc_host_props *props" + ], + "sdhc.h", + false + ], + [ + [ + "int sdhc_enable_interrupt", + "const struct device *dev,\n\t\t\t\t sdhc_interrupt_cb_t callback,\n\t\t\t\t int sources, void *user_data" + ], + "sdhc.h", + false + ], + [ + [ + "int sdhc_disable_interrupt", + "const struct device *dev, int sources" + ], + "sdhc.h", + false + ], + [ + [ + "int smbus_configure", + "const struct device *dev, uint32_t dev_config" + ], + "smbus.h", + false + ], + [ + [ + "int smbus_get_config", + "const struct device *dev, uint32_t *dev_config" + ], + "smbus.h", + false + ], + [ + [ + "int smbus_smbalert_remove_cb", + "const struct device *dev,\n\t\t\t\t struct smbus_callback *cb" + ], + "smbus.h", + false + ], + [ + [ + "int smbus_host_notify_remove_cb", + "const struct device *dev,\n\t\t\t\t\t struct smbus_callback *cb" + ], + "smbus.h", + false + ], + [ + [ + "int smbus_quick", + "const struct device *dev, uint16_t addr,\n\t\t\t enum smbus_direction direction" + ], + "smbus.h", + false + ], + [ + [ + "int smbus_byte_write", + "const struct device *dev, uint16_t addr,\n\t\t\t uint8_t byte" + ], + "smbus.h", + false + ], + [ + [ + "int smbus_byte_read", + "const struct device *dev, uint16_t addr,\n\t\t\t uint8_t *byte" + ], + "smbus.h", + false + ], + [ + [ + "int smbus_byte_data_write", + "const struct device *dev, uint16_t addr,\n\t\t\t\t uint8_t cmd, uint8_t byte" + ], + "smbus.h", + false + ], + [ + [ + "int smbus_byte_data_read", + "const struct device *dev, uint16_t addr,\n\t\t\t\t uint8_t cmd, uint8_t *byte" + ], + "smbus.h", + false + ], + [ + [ + "int smbus_word_data_write", + "const struct device *dev, uint16_t addr,\n\t\t\t\t uint8_t cmd, uint16_t word" + ], + "smbus.h", + false + ], + [ + [ + "int smbus_word_data_read", + "const struct device *dev, uint16_t addr,\n\t\t\t\t uint8_t cmd, uint16_t *word" + ], + "smbus.h", + false + ], + [ + [ + "int smbus_pcall", + "const struct device *dev, uint16_t addr,\n\t\t\t uint8_t cmd, uint16_t send_word, uint16_t *recv_word" + ], + "smbus.h", + false + ], + [ + [ + "int smbus_block_write", + "const struct device *dev, uint16_t addr,\n\t\t\t\tuint8_t cmd, uint8_t count, uint8_t *buf" + ], + "smbus.h", + false + ], + [ + [ + "int smbus_block_read", + "const struct device *dev, uint16_t addr,\n\t\t\t uint8_t cmd, uint8_t *count, uint8_t *buf" + ], + "smbus.h", + false + ], + [ + [ + "int smbus_block_pcall", + "const struct device *dev,\n\t\t\t\tuint16_t addr, uint8_t cmd,\n\t\t\t\tuint8_t snd_count, uint8_t *snd_buf,\n\t\t\t\tuint8_t *rcv_count, uint8_t *rcv_buf" + ], + "smbus.h", + false + ], + [ + [ + "int spi_transceive", + "const struct device *dev,\n\t\t\t const struct spi_config *config,\n\t\t\t const struct spi_buf_set *tx_bufs,\n\t\t\t const struct spi_buf_set *rx_bufs" + ], + "spi.h", + false + ], + [ + [ + "int spi_release", + "const struct device *dev,\n\t\t\t const struct spi_config *config" + ], + "spi.h", + false + ], + [ + [ + "int stepper_enable", + "const struct device *dev, const bool enable" + ], + "stepper.h", + false + ], + [ + [ + "int stepper_move_by", + "const struct device *dev, int32_t micro_steps" + ], + "stepper.h", + false + ], + [ + [ + "int stepper_set_max_velocity", + "const struct device *dev, uint32_t micro_steps_per_second" + ], + "stepper.h", + false + ], + [ + [ + "int stepper_set_micro_step_res", + "const struct device *dev,\n\t\t\t\t\t enum stepper_micro_step_resolution resolution" + ], + "stepper.h", + false + ], + [ + [ + "int stepper_get_micro_step_res", + "const struct device *dev,\n\t\t\t\t\t enum stepper_micro_step_resolution *resolution" + ], + "stepper.h", + false + ], + [ + [ + "int stepper_set_reference_position", + "const struct device *dev, int32_t value" + ], + "stepper.h", + false + ], + [ + [ + "int stepper_get_actual_position", + "const struct device *dev, int32_t *value" + ], + "stepper.h", + false + ], + [ + [ + "int stepper_move_to", + "const struct device *dev, int32_t micro_steps" + ], + "stepper.h", + false + ], + [ + [ + "int stepper_is_moving", + "const struct device *dev, bool *is_moving" + ], + "stepper.h", + false + ], + [ + [ + "int stepper_run", + "const struct device *dev, enum stepper_direction direction,\n\t\t\t uint32_t velocity" + ], + "stepper.h", + false + ], + [ + [ + "int stepper_set_event_callback", + "const struct device *dev,\n\t\t\t\t\t stepper_event_callback_t callback, void *user_data" + ], + "stepper.h", + false + ], + [ + [ + "int syscon_get_base", + "const struct device *dev, uintptr_t *addr" + ], + "syscon.h", + false + ], + [ + [ + "int syscon_read_reg", + "const struct device *dev, uint16_t reg, uint32_t *val" + ], + "syscon.h", + false + ], + [ + [ + "int syscon_write_reg", + "const struct device *dev, uint16_t reg, uint32_t val" + ], + "syscon.h", + false + ], + [ + [ + "int syscon_get_size", + "const struct device *dev, size_t *size" + ], + "syscon.h", + false + ], + [ + [ + "int tee_get_version", + "const struct device *dev, struct tee_version_info *info" + ], + "tee.h", + false + ], + [ + [ + "int tee_open_session", + "const struct device *dev, struct tee_open_session_arg *arg,\n\t\t\t unsigned int num_param, struct tee_param *param,\n\t\t\t uint32_t *session_id" + ], + "tee.h", + false + ], + [ + [ + "int tee_close_session", + "const struct device *dev, uint32_t session_id" + ], + "tee.h", + false + ], + [ + [ + "int tee_cancel", + "const struct device *dev, uint32_t session_id, uint32_t cancel_id" + ], + "tee.h", + false + ], + [ + [ + "int tee_invoke_func", + "const struct device *dev, struct tee_invoke_func_arg *arg,\n\t\t\t unsigned int num_param, struct tee_param *param" + ], + "tee.h", + false + ], + [ + [ + "int tee_shm_register", + "const struct device *dev, void *addr, size_t size,\n\t\t\t uint32_t flags, struct tee_shm **shm" + ], + "tee.h", + false + ], + [ + [ + "int tee_shm_unregister", + "const struct device *dev, struct tee_shm *shm" + ], + "tee.h", + false + ], + [ + [ + "int tee_shm_alloc", + "const struct device *dev, size_t size, uint32_t flags,\n\t\t\t struct tee_shm **shm" + ], + "tee.h", + false + ], + [ + [ + "int tee_shm_free", + "const struct device *dev, struct tee_shm *shm" + ], + "tee.h", + false + ], + [ + [ + "int tee_suppl_recv", + "const struct device *dev, uint32_t *func, unsigned int *num_params,\n\t\t\t struct tee_param *param" + ], + "tee.h", + false + ], + [ + [ + "int tee_suppl_send", + "const struct device *dev, unsigned int ret, unsigned int num_params,\n\t\t\t struct tee_param *param" + ], + "tee.h", + false + ], + [ + [ + "int w1_change_bus_lock", + "const struct device *dev, bool lock" + ], + "w1.h", + false + ], + [ + [ + "int w1_reset_bus", + "const struct device *dev" + ], + "w1.h", + false + ], + [ + [ + "int w1_read_bit", + "const struct device *dev" + ], + "w1.h", + false + ], + [ + [ + "int w1_write_bit", + "const struct device *dev, const bool bit" + ], + "w1.h", + false + ], + [ + [ + "int w1_read_byte", + "const struct device *dev" + ], + "w1.h", + false + ], + [ + [ + "int w1_write_byte", + "const struct device *dev, uint8_t byte" + ], + "w1.h", + false + ], + [ + [ + "int w1_read_block", + "const struct device *dev, uint8_t *buffer, size_t len" + ], + "w1.h", + false + ], + [ + [ + "int w1_write_block", + "const struct device *dev,\n\t\t\t const uint8_t *buffer, size_t len" + ], + "w1.h", + false + ], + [ + [ + "size_t w1_get_slave_count", + "const struct device *dev" + ], + "w1.h", + false + ], + [ + [ + "int w1_configure", + "const struct device *dev,\n\t\t\t enum w1_settings_type type, uint32_t value" + ], + "w1.h", + false + ], + [ + [ + "int w1_search_bus", + "const struct device *dev, uint8_t command,\n\t\t\t uint8_t family, w1_search_callback_t callback,\n\t\t\t void *user_data" + ], + "w1.h", + false + ], + [ + [ + "int wdt_setup", + "const struct device *dev, uint8_t options" + ], + "watchdog.h", + false + ], + [ + [ + "int wdt_disable", + "const struct device *dev" + ], + "watchdog.h", + false + ], + [ + [ + "int wdt_feed", + "const struct device *dev, int channel_id" + ], + "watchdog.h", + false + ], + [ + [ + "void *flash_simulator_get_memory", + "const struct device *dev,\n\t\t\t\t\t size_t *mock_size" + ], + "flash_simulator.h", + false + ], + [ + [ + "void nrf_qspi_nor_xip_enable", + "const struct device *dev, bool enable" + ], + "nrf_qspi_nor.h", + false + ], + [ + [ + "int devmux_select_get", + "const struct device *dev" + ], + "devmux.h", + false + ], + [ + [ + "int devmux_select_set", + "struct device *dev, size_t index" + ], + "devmux.h", + false + ], + [ + [ + "int tgpio_port_get_time", + "const struct device *dev, uint64_t *current_time" + ], + "timeaware_gpio.h", + false + ], + [ + [ + "int tgpio_port_get_cycles_per_second", + "const struct device *dev, uint32_t *cycles" + ], + "timeaware_gpio.h", + false + ], + [ + [ + "int tgpio_pin_disable", + "const struct device *dev, uint32_t pin" + ], + "timeaware_gpio.h", + false + ], + [ + [ + "int tgpio_pin_config_ext_timestamp", + "const struct device *dev, uint32_t pin,\n\t\t\t\t\t uint32_t event_polarity" + ], + "timeaware_gpio.h", + false + ], + [ + [ + "int tgpio_pin_periodic_output", + "const struct device *dev, uint32_t pin,\n\t\t\t\t\t uint64_t start_time, uint64_t repeat_interval,\n\t\t\t\t\t bool periodic_enable" + ], + "timeaware_gpio.h", + false + ], + [ + [ + "int tgpio_pin_read_ts_ec", + "const struct device *dev, uint32_t pin, uint64_t *timestamp,\n\t\t\t\t uint64_t *event_count" + ], + "timeaware_gpio.h", + false + ], + [ + [ + "int maxim_ds3231_req_syncpoint", + "const struct device *dev,\n\t\t\t\t\t struct k_poll_signal *signal" + ], + "maxim_ds3231.h", + false + ], + [ + [ + "int maxim_ds3231_get_syncpoint", + "const struct device *dev,\n\t\t\t\t\t struct maxim_ds3231_syncpoint *syncpoint" + ], + "maxim_ds3231.h", + false + ], + [ + [ + "void sip_supervisory_call", + "const struct device *dev, unsigned long function_id,\n\t\t\t\t unsigned long arg0, unsigned long arg1, unsigned long arg2,\n\t\t\t\t unsigned long arg3, unsigned long arg4, unsigned long arg5,\n\t\t\t\t unsigned long arg6, struct arm_smccc_res *res" + ], + "sip_svc_driver.h", + false + ], + [ + [ + "bool sip_svc_plat_func_id_valid", + "const struct device *dev, uint32_t command,\n\t\t\t\t\t uint32_t func_id" + ], + "sip_svc_driver.h", + false + ], + [ + [ + "uint32_t sip_svc_plat_format_trans_id", + "const struct device *dev, uint32_t client_idx,\n\t\t\t\t\t\tuint32_t trans_idx" + ], + "sip_svc_driver.h", + false + ], + [ + [ + "uint32_t sip_svc_plat_get_trans_idx", + "const struct device *dev, uint32_t trans_id" + ], + "sip_svc_driver.h", + false + ], + [ + [ + "void sip_svc_plat_update_trans_id", + "const struct device *dev,\n\t\t\t\t\t struct sip_svc_request *request, uint32_t trans_id" + ], + "sip_svc_driver.h", + false + ], + [ + [ + "uint32_t sip_svc_plat_get_error_code", + "const struct device *dev, struct arm_smccc_res *res" + ], + "sip_svc_driver.h", + false + ], + [ + [ + "int sip_svc_plat_async_res_req", + "const struct device *dev, unsigned long *a0,\n\t\t\t\t\t unsigned long *a1, unsigned long *a2, unsigned long *a3,\n\t\t\t\t\t unsigned long *a4, unsigned long *a5, unsigned long *a6,\n\t\t\t\t\t unsigned long *a7, char *buf, size_t size" + ], + "sip_svc_driver.h", + false + ], + [ + [ + "int sip_svc_plat_async_res_res", + "const struct device *dev, struct arm_smccc_res *res,\n\t\t\t\t\t char *buf, size_t *size, uint32_t *trans_id" + ], + "sip_svc_driver.h", + false + ], + [ + [ + "void sip_svc_plat_free_async_memory", + "const struct device *dev,\n\t\t\t\t\t struct sip_svc_request *request" + ], + "sip_svc_driver.h", + false + ], + [ + [ + "int bc12_set_role", + "const struct device *dev, enum bc12_role role" + ], + "usb_bc12.h", + false + ], + [ + [ + "int bc12_set_result_cb", + "const struct device *dev, bc12_callback_t cb, void *user_data" + ], + "usb_bc12.h", + false + ], + [ + [ + "size_t ivshmem_get_mem", + "const struct device *dev,\n\t\t\t\t uintptr_t *memmap" + ], + "ivshmem.h", + false + ], + [ + [ + "uint32_t ivshmem_get_id", + "const struct device *dev" + ], + "ivshmem.h", + false + ], + [ + [ + "uint16_t ivshmem_get_vectors", + "const struct device *dev" + ], + "ivshmem.h", + false + ], + [ + [ + "int ivshmem_int_peer", + "const struct device *dev,\n\t\t\t uint32_t peer_id, uint16_t vector" + ], + "ivshmem.h", + false + ], + [ + [ + "int ivshmem_register_handler", + "const struct device *dev,\n\t\t\t\t struct k_poll_signal *signal,\n\t\t\t\t uint16_t vector" + ], + "ivshmem.h", + false + ], + [ + [ + "size_t ivshmem_get_rw_mem_section", + "const struct device *dev,\n\t\t\t\t\t uintptr_t *memmap" + ], + "ivshmem.h", + false + ], + [ + [ + "size_t ivshmem_get_output_mem_section", + "const struct device *dev,\n\t\t\t\t\t\tuint32_t peer_id,\n\t\t\t\t\t\tuintptr_t *memmap" + ], + "ivshmem.h", + false + ], + [ + [ + "uint32_t ivshmem_get_state", + "const struct device *dev,\n\t\t\t\t uint32_t peer_id" + ], + "ivshmem.h", + false + ], + [ + [ + "int ivshmem_set_state", + "const struct device *dev,\n\t\t\t\tuint32_t state" + ], + "ivshmem.h", + false + ], + [ + [ + "uint32_t ivshmem_get_max_peers", + "const struct device *dev" + ], + "ivshmem.h", + false + ], + [ + [ + "uint16_t ivshmem_get_protocol", + "const struct device *dev" + ], + "ivshmem.h", + false + ], + [ + [ + "int ivshmem_enable_interrupts", + "const struct device *dev,\n\t\t\t\t\tbool enable" + ], + "ivshmem.h", + false + ], + [ + [ + "void k_mem_paging_stats_get", + "struct k_mem_paging_stats_t *stats" + ], + "demand_paging.h", + false + ], + [ + [ + "void k_mem_paging_thread_stats_get", + "struct k_thread *thread,\n\t\t\t\t struct k_mem_paging_stats_t *stats" + ], + "demand_paging.h", + false + ], + [ + [ + "void k_mem_paging_histogram_eviction_get", + "\n\tstruct k_mem_paging_histogram_t *hist" + ], + "demand_paging.h", + false + ], + [ + [ + "void k_mem_paging_histogram_backing_store_page_in_get", + "\n\tstruct k_mem_paging_histogram_t *hist" + ], + "demand_paging.h", + false + ], + [ + [ + "void k_mem_paging_histogram_backing_store_page_out_get", + "\n\tstruct k_mem_paging_histogram_t *hist" + ], + "demand_paging.h", + false + ], + [ + [ + "ssize_t llext_get_fn_table", + "struct llext *ext, bool is_init, void *buf, size_t size" + ], + "llext.h", + false + ], + [ + [ + "void updatehub_autohandler", + "void" + ], + "updatehub.h", + false + ], + [ + [ + "enum updatehub_response updatehub_probe", + "void" + ], + "updatehub.h", + false + ], + [ + [ + "enum updatehub_response updatehub_update", + "void" + ], + "updatehub.h", + false + ], + [ + [ + "int updatehub_confirm", + "void" + ], + "updatehub.h", + false + ], + [ + [ + "int updatehub_reboot", + "void" + ], + "updatehub.h", + false + ], + [ + [ + "const struct device *net_eth_get_ptp_clock_by_index", + "int index" + ], + "ethernet.h", + false + ], + [ + [ + "int net_if_ipv6_addr_lookup_by_index", + "const struct in6_addr *addr" + ], + "net_if.h", + false + ], + [ + [ + "bool net_if_ipv6_addr_add_by_index", + "int index,\n\t\t\t\t\t struct in6_addr *addr,\n\t\t\t\t\t enum net_addr_type addr_type,\n\t\t\t\t\t uint32_t vlifetime" + ], + "net_if.h", + false + ], + [ + [ + "bool net_if_ipv6_addr_rm_by_index", + "int index,\n\t\t\t\t\t const struct in6_addr *addr" + ], + "net_if.h", + false + ], + [ + [ + "int net_if_ipv4_addr_lookup_by_index", + "const struct in_addr *addr" + ], + "net_if.h", + false + ], + [ + [ + "bool net_if_ipv4_addr_add_by_index", + "int index,\n\t\t\t\t\t struct in_addr *addr,\n\t\t\t\t\t enum net_addr_type addr_type,\n\t\t\t\t\t uint32_t vlifetime" + ], + "net_if.h", + false + ], + [ + [ + "bool net_if_ipv4_addr_rm_by_index", + "int index,\n\t\t\t\t\t const struct in_addr *addr" + ], + "net_if.h", + false + ], + [ + [ + "bool net_if_ipv4_set_netmask_by_index", + "int index,\n\t\t\t\t\t\t\t const struct in_addr *netmask" + ], + "net_if.h", + false + ], + [ + [ + "bool net_if_ipv4_set_netmask_by_addr_by_index", + "int index,\n\t\t\t\t\t\t\tconst struct in_addr *addr,\n\t\t\t\t\t\t\tconst struct in_addr *netmask" + ], + "net_if.h", + false + ], + [ + [ + "bool net_if_ipv4_set_gw_by_index", + "int index, const struct in_addr *gw" + ], + "net_if.h", + false + ], + [ + [ + "struct net_if *net_if_get_by_index", + "int index" + ], + "net_if.h", + false + ], + [ + [ + "int net_addr_pton", + "sa_family_t family, const char *src, void *dst" + ], + "net_ip.h", + false + ], + [ + [ + "char *net_addr_ntop", + "sa_family_t family, const void *src,\n\t\t\t char *dst, size_t size" + ], + "net_ip.h", + false + ], + [ + [ + "void *zsock_get_context_object", + "int sock" + ], + "socket.h", + false + ], + [ + [ + "int zsock_socket", + "int family, int type, int proto" + ], + "socket.h", + false + ], + [ + [ + "int zsock_socketpair", + "int family, int type, int proto, int *sv" + ], + "socket.h", + false + ], + [ + [ + "int zsock_close", + "int sock" + ], + "socket.h", + false + ], + [ + [ + "int zsock_shutdown", + "int sock, int how" + ], + "socket.h", + false + ], + [ + [ + "int zsock_bind", + "int sock, const struct sockaddr *addr,\n\t\t\t socklen_t addrlen" + ], + "socket.h", + false + ], + [ + [ + "int zsock_connect", + "int sock, const struct sockaddr *addr,\n\t\t\t socklen_t addrlen" + ], + "socket.h", + false + ], + [ + [ + "int zsock_listen", + "int sock, int backlog" + ], + "socket.h", + false + ], + [ + [ + "int zsock_accept", + "int sock, struct sockaddr *addr, socklen_t *addrlen" + ], + "socket.h", + false + ], + [ + [ + "ssize_t zsock_sendto", + "int sock, const void *buf, size_t len,\n\t\t\t int flags, const struct sockaddr *dest_addr,\n\t\t\t socklen_t addrlen" + ], + "socket.h", + false + ], + [ + [ + "ssize_t zsock_sendmsg", + "int sock, const struct msghdr *msg,\n\t\t\t\tint flags" + ], + "socket.h", + false + ], + [ + [ + "ssize_t zsock_recvfrom", + "int sock, void *buf, size_t max_len,\n\t\t\t\t int flags, struct sockaddr *src_addr,\n\t\t\t\t socklen_t *addrlen" + ], + "socket.h", + false + ], + [ + [ + "ssize_t zsock_recvmsg", + "int sock, struct msghdr *msg, int flags" + ], + "socket.h", + false + ], + [ + [ + "int zsock_fcntl_impl", + "int sock, int cmd, int flags" + ], + "socket.h", + false + ], + [ + [ + "int zsock_ioctl_impl", + "int sock, unsigned long request, va_list ap" + ], + "socket.h", + false + ], + [ + [ + "int zsock_getsockopt", + "int sock, int level, int optname,\n\t\t\t void *optval, socklen_t *optlen" + ], + "socket.h", + false + ], + [ + [ + "int zsock_setsockopt", + "int sock, int level, int optname,\n\t\t\t const void *optval, socklen_t optlen" + ], + "socket.h", + false + ], + [ + [ + "int zsock_getpeername", + "int sock, struct sockaddr *addr,\n\t\t\t\tsocklen_t *addrlen" + ], + "socket.h", + false + ], + [ + [ + "int zsock_getsockname", + "int sock, struct sockaddr *addr,\n\t\t\t\tsocklen_t *addrlen" + ], + "socket.h", + false + ], + [ + [ + "int zsock_gethostname", + "char *buf, size_t len" + ], + "socket.h", + false + ], + [ + [ + "int zsock_inet_pton", + "sa_family_t family, const char *src, void *dst" + ], + "socket.h", + false + ], + [ + [ + "int z_zsock_getaddrinfo_internal", + "const char *host,\n\t\t\t\t\t const char *service,\n\t\t\t\t\t const struct zsock_addrinfo *hints,\n\t\t\t\t\t struct zsock_addrinfo *res" + ], + "socket.h", + false + ], + [ + [ + "int net_socket_service_register", + "const struct net_socket_service_desc *service,\n\t\t\t\t\t struct zsock_pollfd *fds, int len, void *user_data" + ], + "socket_service.h", + false + ], + [ + [ + "void sys_rand_get", + "void *dst, size_t len" + ], + "random.h", + false + ], + [ + [ + "int sys_csrand_get", + "void *dst, size_t len" + ], + "random.h", + false + ], + [ + [ + "int rtio_cqe_get_mempool_buffer", + "const struct rtio *r, struct rtio_cqe *cqe,\n\t\t\t\t\t uint8_t **buff, uint32_t *buff_len" + ], + "rtio.h", + false + ], + [ + [ + "void rtio_release_buffer", + "struct rtio *r, void *buff, uint32_t buff_len" + ], + "rtio.h", + false + ], + [ + [ + "int rtio_sqe_cancel", + "struct rtio_sqe *sqe" + ], + "rtio.h", + false + ], + [ + [ + "int rtio_sqe_copy_in_get_handles", + "struct rtio *r, const struct rtio_sqe *sqes,\n\t\t\t\t\t struct rtio_sqe **handle, size_t sqe_count" + ], + "rtio.h", + false + ], + [ + [ + "int rtio_cqe_copy_out", + "struct rtio *r,\n\t\t\t\tstruct rtio_cqe *cqes,\n\t\t\t\tsize_t cqe_count,\n\t\t\t\tk_timeout_t timeout" + ], + "rtio.h", + false + ], + [ + [ + "int rtio_submit", + "struct rtio *r, uint32_t wait_count" + ], + "rtio.h", + false + ], + [ + [ + "bool atomic_cas", + "atomic_t *target, atomic_val_t old_value,\n\t\t\t atomic_val_t new_value" + ], + "atomic_c.h", + false + ], + [ + [ + "bool atomic_ptr_cas", + "atomic_ptr_t *target, atomic_ptr_val_t old_value,\n\t\t\t atomic_ptr_val_t new_value" + ], + "atomic_c.h", + false + ], + [ + [ + "atomic_val_t atomic_add", + "atomic_t *target, atomic_val_t value" + ], + "atomic_c.h", + false + ], + [ + [ + "atomic_val_t atomic_sub", + "atomic_t *target, atomic_val_t value" + ], + "atomic_c.h", + false + ], + [ + [ + "atomic_val_t atomic_set", + "atomic_t *target, atomic_val_t value" + ], + "atomic_c.h", + false + ], + [ + [ + "atomic_ptr_val_t atomic_ptr_set", + "atomic_ptr_t *target, atomic_ptr_val_t value" + ], + "atomic_c.h", + false + ], + [ + [ + "atomic_val_t atomic_or", + "atomic_t *target, atomic_val_t value" + ], + "atomic_c.h", + false + ], + [ + [ + "atomic_val_t atomic_xor", + "atomic_t *target, atomic_val_t value" + ], + "atomic_c.h", + false + ], + [ + [ + "atomic_val_t atomic_and", + "atomic_t *target, atomic_val_t value" + ], + "atomic_c.h", + false + ], + [ + [ + "atomic_val_t atomic_nand", + "atomic_t *target, atomic_val_t value" + ], + "atomic_c.h", + false + ], + [ + [ + "int *z_errno", + "void" + ], + "errno_private.h", + false + ], + [ + [ + "int zvfs_poll", + "struct zvfs_pollfd *fds, int nfds, int poll_timeout" + ], + "fdtable.h", + false + ], + [ + [ + "int zvfs_select", + "int nfds, struct zvfs_fd_set *ZRESTRICT readfds,\n\t\t\t struct zvfs_fd_set *ZRESTRICT writefds,\n\t\t\t struct zvfs_fd_set *ZRESTRICT errorfds,\n\t\t\t const struct timespec *ZRESTRICT timeout, const void *ZRESTRICT sigmask" + ], + "fdtable.h", + false + ] +] \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_file_list.txt b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_file_list.txt new file mode 100644 index 0000000..bff0e29 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_file_list.txt @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/sys/libc-hooks.h;/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/sys/mutex.h;/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/logging/log_msg.h;/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/logging/log_ctrl.h;/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/drivers/adc.h;/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/drivers/gpio.h;/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/drivers/hwinfo.h;/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/drivers/sensor.h;/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/drivers/uart.h;/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/device.h;/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/kernel.h;/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/sys/kobject.h;/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/sys/time_units.h \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include new file mode 120000 index 0000000..c998c15 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr new file mode 120000 index 0000000..1dad654 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_acpi b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_acpi new file mode 120000 index 0000000..9c89902 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_acpi @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/acpi \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_app_memory b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_app_memory new file mode 120000 index 0000000..f4e42dd --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_app_memory @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/app_memory \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch new file mode 120000 index 0000000..b6420e7 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/arch \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc new file mode 120000 index 0000000..641e736 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/arch/arc \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_asm-compat b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_asm-compat new file mode 120000 index 0000000..b32b730 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_asm-compat @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/arch/arc/asm-compat \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2 b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2 new file mode 120000 index 0000000..4be1bdf --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2 @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/arch/arc/v2 \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2_dsp b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2_dsp new file mode 120000 index 0000000..b718f45 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2_dsp @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/arch/arc/v2/dsp \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2_mpu b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2_mpu new file mode 120000 index 0000000..144cd32 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2_mpu @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/arch/arc/v2/mpu \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2_secureshield b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2_secureshield new file mode 120000 index 0000000..addd92f --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2_secureshield @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/arch/arc/v2/secureshield \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2_vpx b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2_vpx new file mode 120000 index 0000000..eb633c5 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2_vpx @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/arch/arc/v2/vpx \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm new file mode 120000 index 0000000..aea1df5 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/arch/arm \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm64 b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm64 new file mode 120000 index 0000000..efd361b --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm64 @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/arch/arm64 \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm64_cortex_r b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm64_cortex_r new file mode 120000 index 0000000..b36f4c0 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm64_cortex_r @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/arch/arm64/cortex_r \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm64_scripts b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm64_scripts new file mode 120000 index 0000000..eb236f3 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm64_scripts @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/arch/arm64/scripts \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_a_r b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_a_r new file mode 120000 index 0000000..687b4f7 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_a_r @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/arch/arm/cortex_a_r \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_a_r_scripts b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_a_r_scripts new file mode 120000 index 0000000..b595c0c --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_a_r_scripts @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/arch/arm/cortex_a_r/scripts \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_m b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_m new file mode 120000 index 0000000..f5dcff1 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_m @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/arch/arm/cortex_m \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_m_scripts b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_m_scripts new file mode 120000 index 0000000..0273552 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_m_scripts @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/arch/arm/cortex_m/scripts \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_r b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_r new file mode 120000 index 0000000..1815992 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_r @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/arch/arm/cortex_r \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_r_scripts b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_r_scripts new file mode 120000 index 0000000..4a0ae0d --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_r_scripts @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/arch/arm/cortex_r/scripts \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_mmu b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_mmu new file mode 120000 index 0000000..e2a6985 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_mmu @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/arch/arm/mmu \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_mpu b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_mpu new file mode 120000 index 0000000..1badd1f --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_mpu @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/arch/arm/mpu \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_common b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_common new file mode 120000 index 0000000..902d852 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_common @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/arch/common \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_mips b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_mips new file mode 120000 index 0000000..f9eb3c4 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_mips @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/arch/mips \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_nios2 b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_nios2 new file mode 120000 index 0000000..174b8ce --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_nios2 @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/arch/nios2 \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_posix b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_posix new file mode 120000 index 0000000..689ae86 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_posix @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/arch/posix \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_riscv b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_riscv new file mode 120000 index 0000000..5699bf2 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_riscv @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/arch/riscv \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_riscv_common b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_riscv_common new file mode 120000 index 0000000..70df3e8 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_riscv_common @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/arch/riscv/common \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_riscv_riscv-privileged b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_riscv_riscv-privileged new file mode 120000 index 0000000..c011e2a --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_riscv_riscv-privileged @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/arch/riscv/riscv-privileged \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_sparc b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_sparc new file mode 120000 index 0000000..d291f5d --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_sparc @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/arch/sparc \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_x86 b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_x86 new file mode 120000 index 0000000..6a296a7 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_x86 @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/arch/x86 \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_x86_ia32 b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_x86_ia32 new file mode 120000 index 0000000..060fbb5 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_x86_ia32 @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/arch/x86/ia32 \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_x86_ia32_scripts b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_x86_ia32_scripts new file mode 120000 index 0000000..cfb553d --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_x86_ia32_scripts @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/arch/x86/ia32/scripts \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_x86_intel64 b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_x86_intel64 new file mode 120000 index 0000000..58029de --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_x86_intel64 @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/arch/x86/intel64 \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_xtensa b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_xtensa new file mode 120000 index 0000000..9765be4 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_xtensa @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/arch/xtensa \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_audio b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_audio new file mode 120000 index 0000000..54d011b --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_audio @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/audio \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth new file mode 120000 index 0000000..1dcbe85 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/bluetooth \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_audio b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_audio new file mode 120000 index 0000000..205f7fb --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_audio @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/bluetooth/audio \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_classic b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_classic new file mode 120000 index 0000000..f2cd630 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_classic @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/bluetooth/classic \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_mesh b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_mesh new file mode 120000 index 0000000..049a1b5 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_mesh @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/bluetooth/mesh \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_services b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_services new file mode 120000 index 0000000..add1cdf --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_services @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/bluetooth/services \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_services_nus b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_services_nus new file mode 120000 index 0000000..b14f355 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_services_nus @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/bluetooth/services/nus \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_canbus b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_canbus new file mode 120000 index 0000000..25593f5 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_canbus @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/canbus \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_console b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_console new file mode 120000 index 0000000..73d2406 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_console @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/console \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_crypto b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_crypto new file mode 120000 index 0000000..2105d9f --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_crypto @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/crypto \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_data b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_data new file mode 120000 index 0000000..8bf6ffd --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_data @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/data \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_debug b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_debug new file mode 120000 index 0000000..553b651 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_debug @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/debug \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_debug_coresight b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_debug_coresight new file mode 120000 index 0000000..ca29819 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_debug_coresight @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/debug/coresight \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_devicetree b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_devicetree new file mode 120000 index 0000000..f5b6906 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_devicetree @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/devicetree \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dfu b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dfu new file mode 120000 index 0000000..50b2d53 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dfu @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dfu \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_display b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_display new file mode 120000 index 0000000..22a3ba6 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_display @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/display \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers new file mode 120000 index 0000000..db9fdfa --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/drivers \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_adc b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_adc new file mode 120000 index 0000000..9ba92c9 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_adc @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/drivers/adc \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_bluetooth b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_bluetooth new file mode 120000 index 0000000..6b870cf --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_bluetooth @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/drivers/bluetooth \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_can b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_can new file mode 120000 index 0000000..a893f60 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_can @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/drivers/can \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_clock_control b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_clock_control new file mode 120000 index 0000000..29d6f59 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_clock_control @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/drivers/clock_control \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_comparator b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_comparator new file mode 120000 index 0000000..d0c1aff --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_comparator @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/drivers/comparator \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_console b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_console new file mode 120000 index 0000000..6fe4f79 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_console @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/drivers/console \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_dma b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_dma new file mode 120000 index 0000000..04fb7fe --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_dma @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/drivers/dma \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_eeprom b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_eeprom new file mode 120000 index 0000000..a644651 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_eeprom @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/drivers/eeprom \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_ethernet b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_ethernet new file mode 120000 index 0000000..1221054 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_ethernet @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/drivers/ethernet \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_firmware b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_firmware new file mode 120000 index 0000000..913bcaf --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_firmware @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/drivers/firmware \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_firmware_scmi b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_firmware_scmi new file mode 120000 index 0000000..e721f8d --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_firmware_scmi @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/drivers/firmware/scmi \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_flash b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_flash new file mode 120000 index 0000000..4d6087d --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_flash @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/drivers/flash \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_gnss b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_gnss new file mode 120000 index 0000000..2906d9e --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_gnss @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/drivers/gnss \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_gpio b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_gpio new file mode 120000 index 0000000..076d4ed --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_gpio @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/drivers/gpio \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_haptics b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_haptics new file mode 120000 index 0000000..d57193f --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_haptics @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/drivers/haptics \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_i2c b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_i2c new file mode 120000 index 0000000..6e54dcb --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_i2c @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/drivers/i2c \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_i2c_target b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_i2c_target new file mode 120000 index 0000000..8d3ac19 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_i2c_target @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/drivers/i2c/target \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_i3c b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_i3c new file mode 120000 index 0000000..3b4f58c --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_i3c @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/drivers/i3c \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_ieee802154 b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_ieee802154 new file mode 120000 index 0000000..c803a6e --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_ieee802154 @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/drivers/ieee802154 \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_interrupt_controller b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_interrupt_controller new file mode 120000 index 0000000..011f381 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_interrupt_controller @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/drivers/interrupt_controller \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_led b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_led new file mode 120000 index 0000000..d78c176 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_led @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/drivers/led \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_led_strip b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_led_strip new file mode 120000 index 0000000..ecfd402 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_led_strip @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/drivers/led_strip \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mfd b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mfd new file mode 120000 index 0000000..26de311 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mfd @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/drivers/mfd \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mipi_dsi b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mipi_dsi new file mode 120000 index 0000000..9417932 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mipi_dsi @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/drivers/mipi_dsi \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc new file mode 120000 index 0000000..b13aa0e --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/drivers/misc \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_coresight b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_coresight new file mode 120000 index 0000000..f109775 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_coresight @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/drivers/misc/coresight \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_devmux b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_devmux new file mode 120000 index 0000000..e67dcac --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_devmux @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/drivers/misc/devmux \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_ft8xx b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_ft8xx new file mode 120000 index 0000000..f91b959 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_ft8xx @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/drivers/misc/ft8xx \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_grove_lcd b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_grove_lcd new file mode 120000 index 0000000..cc61765 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_grove_lcd @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/drivers/misc/grove_lcd \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_nxp_flexio b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_nxp_flexio new file mode 120000 index 0000000..d2ad459 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_nxp_flexio @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/drivers/misc/nxp_flexio \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_pio_rpi_pico b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_pio_rpi_pico new file mode 120000 index 0000000..143ff6d --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_pio_rpi_pico @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/drivers/misc/pio_rpi_pico \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_renesas_ra_external_interrupt b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_renesas_ra_external_interrupt new file mode 120000 index 0000000..15533b1 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_renesas_ra_external_interrupt @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/drivers/misc/renesas_ra_external_interrupt \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_stm32_wkup_pins b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_stm32_wkup_pins new file mode 120000 index 0000000..c341124 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_stm32_wkup_pins @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/drivers/misc/stm32_wkup_pins \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_timeaware_gpio b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_timeaware_gpio new file mode 120000 index 0000000..478e740 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_timeaware_gpio @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/drivers/misc/timeaware_gpio \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mm b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mm new file mode 120000 index 0000000..c9555f7 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mm @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/drivers/mm \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_modem b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_modem new file mode 120000 index 0000000..d4aad2a --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_modem @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/drivers/modem \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mspi b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mspi new file mode 120000 index 0000000..b5b0351 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mspi @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/drivers/mspi \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pcie b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pcie new file mode 120000 index 0000000..a92a444 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pcie @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/drivers/pcie \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pcie_endpoint b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pcie_endpoint new file mode 120000 index 0000000..30f7a41 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pcie_endpoint @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/drivers/pcie/endpoint \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pinctrl b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pinctrl new file mode 120000 index 0000000..f2828f7 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pinctrl @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/drivers/pinctrl \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pm_cpu_ops b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pm_cpu_ops new file mode 120000 index 0000000..7a395fe --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pm_cpu_ops @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/drivers/pm_cpu_ops \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_power b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_power new file mode 120000 index 0000000..3995aaf --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_power @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/drivers/power \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pwm b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pwm new file mode 120000 index 0000000..754bb46 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pwm @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/drivers/pwm \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_regulator b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_regulator new file mode 120000 index 0000000..a05315f --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_regulator @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/drivers/regulator \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_retained_mem b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_retained_mem new file mode 120000 index 0000000..00d8d0f --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_retained_mem @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/drivers/retained_mem \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_rtc b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_rtc new file mode 120000 index 0000000..8e73858 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_rtc @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/drivers/rtc \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_sensor b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_sensor new file mode 120000 index 0000000..e3045b5 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_sensor @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/drivers/sensor \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_serial b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_serial new file mode 120000 index 0000000..0b6814e --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_serial @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/drivers/serial \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_sip_svc b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_sip_svc new file mode 120000 index 0000000..d48cf88 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_sip_svc @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/drivers/sip_svc \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_spi b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_spi new file mode 120000 index 0000000..12c0d8e --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_spi @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/drivers/spi \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_stepper b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_stepper new file mode 120000 index 0000000..af03a5f --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_stepper @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/drivers/stepper \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_timer b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_timer new file mode 120000 index 0000000..0f85c06 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_timer @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/drivers/timer \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_uart b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_uart new file mode 120000 index 0000000..72c84eb --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_uart @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/drivers/uart \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_usb b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_usb new file mode 120000 index 0000000..f651f0d --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_usb @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/drivers/usb \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_usb_c b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_usb_c new file mode 120000 index 0000000..8bf16ba --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_usb_c @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/drivers/usb_c \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_virtualization b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_virtualization new file mode 120000 index 0000000..4831ad8 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_virtualization @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/drivers/virtualization \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_wifi b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_wifi new file mode 120000 index 0000000..afba05b --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_wifi @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/drivers/wifi \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_wifi_nrf_wifi b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_wifi_nrf_wifi new file mode 120000 index 0000000..d942379 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_wifi_nrf_wifi @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/drivers/wifi/nrf_wifi \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_wifi_nrf_wifi_bus b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_wifi_nrf_wifi_bus new file mode 120000 index 0000000..c8cb429 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_wifi_nrf_wifi_bus @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/drivers/wifi/nrf_wifi/bus \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_wifi_nrf_wifi_off_raw_tx b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_wifi_nrf_wifi_off_raw_tx new file mode 120000 index 0000000..7bab364 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_wifi_nrf_wifi_off_raw_tx @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/drivers/wifi/nrf_wifi/off_raw_tx \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dsp b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dsp new file mode 120000 index 0000000..844bf29 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dsp @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dsp \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings new file mode 120000 index 0000000..2e2a5f8 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_acpi b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_acpi new file mode 120000 index 0000000..72ff79f --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_acpi @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/acpi \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_adc b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_adc new file mode 120000 index 0000000..75c9bad --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_adc @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/adc \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_battery b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_battery new file mode 120000 index 0000000..9ca79d2 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_battery @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/battery \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_clock b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_clock new file mode 120000 index 0000000..1ce73e7 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_clock @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/clock \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_clock_silabs b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_clock_silabs new file mode 120000 index 0000000..8ba2bd8 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_clock_silabs @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/clock/silabs \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_dac b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_dac new file mode 120000 index 0000000..7b7a8a6 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_dac @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/dac \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_dai b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_dai new file mode 120000 index 0000000..9d46546 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_dai @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/dai \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_display b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_display new file mode 120000 index 0000000..08e5f31 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_display @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/display \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_dma b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_dma new file mode 120000 index 0000000..97d8478 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_dma @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/dma \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_espi b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_espi new file mode 120000 index 0000000..9e740d5 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_espi @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/espi \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_ethernet b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_ethernet new file mode 120000 index 0000000..d56bf6f --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_ethernet @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/ethernet \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_flash_controller b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_flash_controller new file mode 120000 index 0000000..0ff0925 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_flash_controller @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/flash_controller \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_gnss b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_gnss new file mode 120000 index 0000000..ac62674 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_gnss @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/gnss \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_gpio b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_gpio new file mode 120000 index 0000000..fcdaccd --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_gpio @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/gpio \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_i2c b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_i2c new file mode 120000 index 0000000..0464f9d --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_i2c @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/i2c \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_input b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_input new file mode 120000 index 0000000..0dbfd0e --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_input @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/input \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_inputmux b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_inputmux new file mode 120000 index 0000000..c192eeb --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_inputmux @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/inputmux \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_interrupt-controller b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_interrupt-controller new file mode 120000 index 0000000..c1a2fd1 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_interrupt-controller @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/interrupt-controller \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_ipc_service b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_ipc_service new file mode 120000 index 0000000..1c587f3 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_ipc_service @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/ipc_service \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_led b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_led new file mode 120000 index 0000000..920a163 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_led @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/led \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_lora b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_lora new file mode 120000 index 0000000..eb81a0a --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_lora @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/lora \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_lvgl b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_lvgl new file mode 120000 index 0000000..f36f9d0 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_lvgl @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/lvgl \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_memory-attr b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_memory-attr new file mode 120000 index 0000000..64615d7 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_memory-attr @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/memory-attr \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_memory-controller b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_memory-controller new file mode 120000 index 0000000..e52e2bb --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_memory-controller @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/memory-controller \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_mfd b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_mfd new file mode 120000 index 0000000..b9a90a0 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_mfd @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/mfd \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_mipi_dbi b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_mipi_dbi new file mode 120000 index 0000000..a151970 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_mipi_dbi @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/mipi_dbi \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_mipi_dsi b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_mipi_dsi new file mode 120000 index 0000000..76b5c23 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_mipi_dsi @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/mipi_dsi \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_misc b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_misc new file mode 120000 index 0000000..47b39da --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_misc @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/misc \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pcie b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pcie new file mode 120000 index 0000000..cf326c7 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pcie @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/pcie \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pinctrl b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pinctrl new file mode 120000 index 0000000..76af6be --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pinctrl @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/pinctrl \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pinctrl_renesas b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pinctrl_renesas new file mode 120000 index 0000000..9fcdb3b --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pinctrl_renesas @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/pinctrl/renesas \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pinctrl_silabs b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pinctrl_silabs new file mode 120000 index 0000000..bf02183 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pinctrl_silabs @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/pinctrl/silabs \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_power b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_power new file mode 120000 index 0000000..23be9bd --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_power @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/power \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pwm b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pwm new file mode 120000 index 0000000..596bf81 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pwm @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/pwm \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_rdc b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_rdc new file mode 120000 index 0000000..8d7dae4 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_rdc @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/rdc \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_regulator b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_regulator new file mode 120000 index 0000000..ebdf412 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_regulator @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/regulator \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_reserved-memory b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_reserved-memory new file mode 120000 index 0000000..64f372f --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_reserved-memory @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/reserved-memory \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_reset b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_reset new file mode 120000 index 0000000..44e9c1e --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_reset @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/reset \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_sensor b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_sensor new file mode 120000 index 0000000..3a4b063 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_sensor @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/sensor \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_spi b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_spi new file mode 120000 index 0000000..665090b --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_spi @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/spi \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_timer b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_timer new file mode 120000 index 0000000..553d3cb --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_timer @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/timer \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_usb b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_usb new file mode 120000 index 0000000..cd8e460 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_usb @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/usb \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_usb-c b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_usb-c new file mode 120000 index 0000000..010dd5a --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_usb-c @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/usb-c \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_video b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_video new file mode 120000 index 0000000..1c091e2 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_video @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/video \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_fs b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_fs new file mode 120000 index 0000000..37ef27e --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_fs @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/fs \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_input b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_input new file mode 120000 index 0000000..03550ae --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_input @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/input \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_internal b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_internal new file mode 120000 index 0000000..cada9d3 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_internal @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/internal \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_ipc b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_ipc new file mode 120000 index 0000000..cae25e4 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_ipc @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/ipc \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_kernel b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_kernel new file mode 120000 index 0000000..c032542 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_kernel @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/kernel \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_kernel_internal b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_kernel_internal new file mode 120000 index 0000000..3faed27 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_kernel_internal @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/kernel/internal \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_kernel_mm b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_kernel_mm new file mode 120000 index 0000000..3b396b9 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_kernel_mm @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/kernel/mm \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_linker b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_linker new file mode 120000 index 0000000..34e8b78 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_linker @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_linker_common-rom b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_linker_common-rom new file mode 120000 index 0000000..af804a6 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_linker_common-rom @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/linker/common-rom \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_llext b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_llext new file mode 120000 index 0000000..1bcb8fc --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_llext @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/llext \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_logging b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_logging new file mode 120000 index 0000000..eda23ad --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_logging @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/logging \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_lorawan b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_lorawan new file mode 120000 index 0000000..be70c5c --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_lorawan @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/lorawan \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_math b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_math new file mode 120000 index 0000000..a838eb0 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_math @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/math \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_mem_mgmt b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_mem_mgmt new file mode 120000 index 0000000..444b2b8 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_mem_mgmt @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/mem_mgmt \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt new file mode 120000 index 0000000..e9991ac --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/mgmt \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_ec_host_cmd b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_ec_host_cmd new file mode 120000 index 0000000..ea26e68 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_ec_host_cmd @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/mgmt/ec_host_cmd \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_hawkbit b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_hawkbit new file mode 120000 index 0000000..b24803f --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_hawkbit @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/mgmt/hawkbit \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr new file mode 120000 index 0000000..ce3640a --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/mgmt/mcumgr \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp new file mode 120000 index 0000000..410930e --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/mgmt/mcumgr/grp \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_enum_mgmt b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_enum_mgmt new file mode 120000 index 0000000..3c411bc --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_enum_mgmt @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/mgmt/mcumgr/grp/enum_mgmt \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_fs_mgmt b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_fs_mgmt new file mode 120000 index 0000000..97ff92c --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_fs_mgmt @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/mgmt/mcumgr/grp/fs_mgmt \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_img_mgmt b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_img_mgmt new file mode 120000 index 0000000..0dd3370 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_img_mgmt @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/mgmt/mcumgr/grp/img_mgmt \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_os_mgmt b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_os_mgmt new file mode 120000 index 0000000..dffdf1a --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_os_mgmt @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/mgmt/mcumgr/grp/os_mgmt \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_settings_mgmt b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_settings_mgmt new file mode 120000 index 0000000..2039cf5 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_settings_mgmt @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/mgmt/mcumgr/grp/settings_mgmt \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_shell_mgmt b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_shell_mgmt new file mode 120000 index 0000000..c8c7464 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_shell_mgmt @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/mgmt/mcumgr/grp/shell_mgmt \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_stat_mgmt b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_stat_mgmt new file mode 120000 index 0000000..acd9616 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_stat_mgmt @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/mgmt/mcumgr/grp/stat_mgmt \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_zephyr b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_zephyr new file mode 120000 index 0000000..35f47fe --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_zephyr @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/mgmt/mcumgr/grp/zephyr \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_mgmt b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_mgmt new file mode 120000 index 0000000..8099d84 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_mgmt @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/mgmt/mcumgr/mgmt \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_smp b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_smp new file mode 120000 index 0000000..96bef8a --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_smp @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/mgmt/mcumgr/smp \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_transport b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_transport new file mode 120000 index 0000000..480f937 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_transport @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/mgmt/mcumgr/transport \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_misc b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_misc new file mode 120000 index 0000000..3790b15 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_misc @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/misc \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_modbus b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_modbus new file mode 120000 index 0000000..df12992 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_modbus @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/modbus \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_modem b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_modem new file mode 120000 index 0000000..d5b86ea --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_modem @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/modem \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_modem_backend b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_modem_backend new file mode 120000 index 0000000..9f919a5 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_modem_backend @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/modem/backend \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_multi_heap b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_multi_heap new file mode 120000 index 0000000..71d251d --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_multi_heap @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/multi_heap \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_net b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_net new file mode 120000 index 0000000..d9da6f3 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_net @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/net \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_net_conn_mgr b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_net_conn_mgr new file mode 120000 index 0000000..64000f6 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_net_conn_mgr @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/net/conn_mgr \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_net_hdlc_rcp_if b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_net_hdlc_rcp_if new file mode 120000 index 0000000..25d2b1a --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_net_hdlc_rcp_if @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/net/hdlc_rcp_if \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_net_http b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_net_http new file mode 120000 index 0000000..1296960 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_net_http @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/net/http \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_net_prometheus b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_net_prometheus new file mode 120000 index 0000000..779f758 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_net_prometheus @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/net/prometheus \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_platform b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_platform new file mode 120000 index 0000000..a651e50 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_platform @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/platform \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_pm b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_pm new file mode 120000 index 0000000..78e46e1 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_pm @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/pm \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_portability b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_portability new file mode 120000 index 0000000..6235098 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_portability @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/portability \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_posix b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_posix new file mode 120000 index 0000000..8260b41 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_posix @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/posix \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_posix_arpa b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_posix_arpa new file mode 120000 index 0000000..37950c0 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_posix_arpa @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/posix/arpa \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_posix_net b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_posix_net new file mode 120000 index 0000000..485e3f8 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_posix_net @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/posix/net \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_posix_netinet b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_posix_netinet new file mode 120000 index 0000000..01e317c --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_posix_netinet @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/posix/netinet \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_posix_sys b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_posix_sys new file mode 120000 index 0000000..2b2d891 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_posix_sys @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/posix/sys \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_psa b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_psa new file mode 120000 index 0000000..9adef1d --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_psa @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/psa \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_random b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_random new file mode 120000 index 0000000..7b5b0b4 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_random @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/random \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_retention b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_retention new file mode 120000 index 0000000..16100dc --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_retention @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/retention \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_rtio b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_rtio new file mode 120000 index 0000000..9d023fb --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_rtio @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/rtio \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_sd b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_sd new file mode 120000 index 0000000..7dc0f8b --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_sd @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/sd \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_sensing b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_sensing new file mode 120000 index 0000000..425b467 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_sensing @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/sensing \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_settings b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_settings new file mode 120000 index 0000000..8d72598 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_settings @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/settings \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_shell b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_shell new file mode 120000 index 0000000..0298823 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_shell @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/shell \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_sip_svc b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_sip_svc new file mode 120000 index 0000000..2b216e7 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_sip_svc @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/sip_svc \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_stats b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_stats new file mode 120000 index 0000000..751cbfa --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_stats @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/stats \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_storage b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_storage new file mode 120000 index 0000000..9c26142 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_storage @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/storage \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_sys b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_sys new file mode 120000 index 0000000..0058d3e --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_sys @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/sys \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_sys_internal b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_sys_internal new file mode 120000 index 0000000..708c069 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_sys_internal @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/sys/internal \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_task_wdt b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_task_wdt new file mode 120000 index 0000000..6002bc9 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_task_wdt @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/task_wdt \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_timing b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_timing new file mode 120000 index 0000000..897a6f6 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_timing @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/timing \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_toolchain b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_toolchain new file mode 120000 index 0000000..d1fc181 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_toolchain @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/toolchain \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_tracing b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_tracing new file mode 120000 index 0000000..ef8c694 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_tracing @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/tracing \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_usb b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_usb new file mode 120000 index 0000000..f9b9334 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_usb @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/usb \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_usb_c b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_usb_c new file mode 120000 index 0000000..c0346bf --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_usb_c @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/usb_c \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_usb_class b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_usb_class new file mode 120000 index 0000000..144d9ff --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_usb_class @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/usb/class \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_xen b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_xen new file mode 120000 index 0000000..ec709ca --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_xen @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/xen \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_xen_dom0 b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_xen_dom0 new file mode 120000 index 0000000..7264057 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_xen_dom0 @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/xen/dom0 \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_xen_public b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_xen_public new file mode 120000 index 0000000..17dd968 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_xen_public @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/xen/public \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_xen_public_hvm b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_xen_public_hvm new file mode 120000 index 0000000..5bc048a --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_xen_public_hvm @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/xen/public/hvm \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_xen_public_io b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_xen_public_io new file mode 120000 index 0000000..fc49d9e --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_xen_public_io @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/xen/public/io \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_zbus b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_zbus new file mode 120000 index 0000000..eb35998 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_zbus @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/zbus \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_zvfs b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_zvfs new file mode 120000 index 0000000..0928c95 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_zvfs @@ -0,0 +1 @@ +/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/zvfs \ No newline at end of file diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_subdirs.trigger b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_subdirs.trigger new file mode 100644 index 0000000..e69de29 diff --git a/build/PHF000-Firmware/zephyr/misc/generated/syscalls_subdirs.txt b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_subdirs.txt new file mode 100644 index 0000000..54c9c2e --- /dev/null +++ b/build/PHF000-Firmware/zephyr/misc/generated/syscalls_subdirs.txt @@ -0,0 +1,235 @@ +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_acpi +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_app_memory +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_audio +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_canbus +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_console +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_crypto +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_data +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_debug +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_devicetree +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dfu +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_display +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dsp +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_fs +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_input +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_internal +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_ipc +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_kernel +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_linker +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_llext +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_logging +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_lorawan +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_math +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_mem_mgmt +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_misc +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_modbus +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_modem +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_multi_heap +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_net +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_platform +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_pm +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_portability +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_posix +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_psa +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_random +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_retention +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_rtio +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_sd +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_sensing +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_settings +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_shell +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_sip_svc +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_stats +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_storage +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_sys +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_task_wdt +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_timing +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_toolchain +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_tracing +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_usb +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_usb_c +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_xen +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_zbus +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_zvfs +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm64 +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_common +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_mips +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_nios2 +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_posix +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_riscv +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_sparc +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_x86 +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_xtensa +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_asm-compat +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2 +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2_dsp +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2_mpu +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2_secureshield +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2_vpx +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_a_r +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_m +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_r +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_mmu +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_mpu +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_a_r_scripts +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_m_scripts +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_r_scripts +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm64_cortex_r +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm64_scripts +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_riscv_common +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_riscv_riscv-privileged +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_x86_ia32 +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_x86_intel64 +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_arch_x86_ia32_scripts +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_audio +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_classic +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_mesh +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_services +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_services_nus +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_debug_coresight +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_adc +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_bluetooth +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_can +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_clock_control +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_comparator +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_console +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_dma +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_eeprom +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_ethernet +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_firmware +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_flash +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_gnss +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_gpio +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_haptics +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_i2c +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_i3c +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_ieee802154 +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_interrupt_controller +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_led +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_led_strip +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mfd +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mipi_dsi +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mm +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_modem +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mspi +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pcie +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pinctrl +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pm_cpu_ops +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_power +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pwm +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_regulator +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_retained_mem +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_rtc +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_sensor +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_serial +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_sip_svc +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_spi +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_stepper +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_timer +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_uart +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_usb +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_usb_c +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_virtualization +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_wifi +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_firmware_scmi +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_i2c_target +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_coresight +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_devmux +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_ft8xx +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_grove_lcd +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_nxp_flexio +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_pio_rpi_pico +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_renesas_ra_external_interrupt +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_stm32_wkup_pins +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_timeaware_gpio +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pcie_endpoint +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_wifi_nrf_wifi +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_wifi_nrf_wifi_bus +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_wifi_nrf_wifi_off_raw_tx +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_acpi +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_adc +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_battery +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_clock +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_dac +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_dai +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_display +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_dma +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_espi +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_ethernet +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_flash_controller +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_gnss +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_gpio +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_i2c +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_input +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_inputmux +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_interrupt-controller +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_ipc_service +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_led +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_lora +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_lvgl +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_memory-attr +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_memory-controller +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_mfd +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_mipi_dbi +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_mipi_dsi +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_misc +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pcie +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pinctrl +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_power +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pwm +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_rdc +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_regulator +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_reserved-memory +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_reset +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_sensor +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_spi +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_timer +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_usb +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_usb-c +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_video +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_clock_silabs +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pinctrl_renesas +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pinctrl_silabs +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_kernel_internal +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_kernel_mm +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_linker_common-rom +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_ec_host_cmd +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_hawkbit +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_mgmt +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_smp +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_transport +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_enum_mgmt +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_fs_mgmt +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_img_mgmt +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_os_mgmt +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_settings_mgmt +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_shell_mgmt +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_stat_mgmt +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_zephyr +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_modem_backend +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_net_conn_mgr +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_net_hdlc_rcp_if +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_net_http +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_net_prometheus +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_posix_arpa +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_posix_net +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_posix_netinet +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_posix_sys +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_sys_internal +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_usb_class +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_xen_dom0 +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_xen_public +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_xen_public_hvm +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/misc/generated/syscalls_links/include_zephyr_xen_public_io diff --git a/build/PHF000-Firmware/zephyr/runners.yaml b/build/PHF000-Firmware/zephyr/runners.yaml new file mode 100644 index 0000000..3a4da14 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/runners.yaml @@ -0,0 +1,53 @@ +# Available runners configured by board.cmake. +runners: +- nrfjprog +- nrfutil +- jlink +- pyocd +- openocd + +# Default flash runner if --runner is not given. +flash-runner: nrfjprog + +# Default debug runner if --runner is not given. +debug-runner: jlink + +# Common runner configuration values. +config: + board_dir: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/boards/Mi_labs/phf000_board + # Build outputs: + elf_file: zephyr.elf + hex_file: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/merged.hex + bin_file: zephyr.bin + # Host tools: + gdb: /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gdb + +# Runner specific arguments +args: + nrfjprog: + [] + + nrfutil: + [] + + jlink: + - --dt-flash=y + - --device=nRF52833_xxAA + - --speed=4000 + pyocd: + - --dt-flash=y + - --target=nrf52833 + - --frequency=4000000 + openocd: + - --cmd-load + - flash write_image erase + - --cmd-verify + - verify_image + - --cmd-pre-init + - set WORKAREASIZE 0x4000 + - --cmd-pre-init + - source [find interface/jlink.cfg] + - --cmd-pre-init + - transport select swd + - --cmd-pre-init + - source [find target/nrf52.cfg] diff --git a/build/PHF000-Firmware/zephyr/snippets_generated.cmake b/build/PHF000-Firmware/zephyr/snippets_generated.cmake new file mode 100644 index 0000000..1ade965 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/snippets_generated.cmake @@ -0,0 +1,20 @@ +# WARNING. THIS FILE IS AUTO-GENERATED. DO NOT MODIFY! +# +# This file contains build system settings derived from your snippets. +# Its contents are an implementation detail that should not be used outside +# of Zephyr's snippets CMake module. +# +# See the Snippets guide in the Zephyr documentation for more information. + +############################################################################### +# Global information about all snippets. + +# The name of every snippet that was discovered. +set(SNIPPET_NAMES "bt-ll-sw-split" "cdc-acm-console" "ci-shell" "diagnostic-logs" "hpf-gpio-icbmsg" "hpf-gpio-icmsg" "hpf-gpio-mbox" "hpf-mspi" "hw-flow-control" "matter-debug" "nordic-bt-rpc" "nordic-flpr" "nordic-flpr-xip" "nordic-log-stm" "nordic-log-stm-dict" "nordic-ppr" "nordic-ppr-xip" "nrf54l09-switch-uart" "nrf70-driver-debug" "nrf70-driver-verbose-debug" "nrf70-fw-patch-ext-flash" "nrf70-wifi" "nrf91-modem-trace-ext-flash" "nrf91-modem-trace-ram" "nrf91-modem-trace-rtt" "nrf91-modem-trace-uart" "nus-console" "power-consumption-tests" "ram-console" "rtt-console" "rtt-tracing" "serial-console" "tfm-enable-share-uart" "wifi-enterprise" "wifi-ipv4" "wpa-supplicant-debug" "xen_dom0" "zperf") +# The paths to all the snippet.yml files. One snippet +# can have multiple snippet.yml files. +set(SNIPPET_PATHS "/home/miguel/ncs/v3.0.2/nrf/snippets/ci-shell/snippet.yml" "/home/miguel/ncs/v3.0.2/nrf/snippets/hpf/gpio/icbmsg/snippet.yml" "/home/miguel/ncs/v3.0.2/nrf/snippets/hpf/gpio/icmsg/snippet.yml" "/home/miguel/ncs/v3.0.2/nrf/snippets/hpf/gpio/mbox/snippet.yml" "/home/miguel/ncs/v3.0.2/nrf/snippets/hpf/mspi/snippet.yml" "/home/miguel/ncs/v3.0.2/nrf/snippets/hw-flow-control/snippet.yml" "/home/miguel/ncs/v3.0.2/nrf/snippets/matter-debug/snippet.yml" "/home/miguel/ncs/v3.0.2/nrf/snippets/matter-diagnostic-logs/snippet.yml" "/home/miguel/ncs/v3.0.2/nrf/snippets/matter-power-consumption-tests/snippet.yml" "/home/miguel/ncs/v3.0.2/nrf/snippets/nordic-bt-rpc/snippet.yml" "/home/miguel/ncs/v3.0.2/nrf/snippets/nrf54l09-switch-uart/snippet.yml" "/home/miguel/ncs/v3.0.2/nrf/snippets/nrf70-driver-debug/snippet.yml" "/home/miguel/ncs/v3.0.2/nrf/snippets/nrf70-driver-verbose-debug/snippet.yml" "/home/miguel/ncs/v3.0.2/nrf/snippets/nrf70-fw-patch-ext-flash/snippet.yml" "/home/miguel/ncs/v3.0.2/nrf/snippets/nrf70-wifi/snippet.yml" "/home/miguel/ncs/v3.0.2/nrf/snippets/nrf91-modem-trace-ext-flash/snippet.yml" "/home/miguel/ncs/v3.0.2/nrf/snippets/nrf91-modem-trace-ram/snippet.yml" "/home/miguel/ncs/v3.0.2/nrf/snippets/nrf91-modem-trace-rtt/snippet.yml" "/home/miguel/ncs/v3.0.2/nrf/snippets/nrf91-modem-trace-uart/snippet.yml" "/home/miguel/ncs/v3.0.2/nrf/snippets/tfm-enable-share-uart/snippet.yml" "/home/miguel/ncs/v3.0.2/nrf/snippets/wpa-supplicant-debug/snippet.yml" "/home/miguel/ncs/v3.0.2/nrf/snippets/zperf/snippet.yml" "/home/miguel/ncs/v3.0.2/zephyr/snippets/bt-ll-sw-split/snippet.yml" "/home/miguel/ncs/v3.0.2/zephyr/snippets/cdc-acm-console/snippet.yml" "/home/miguel/ncs/v3.0.2/zephyr/snippets/nordic-flpr-xip/snippet.yml" "/home/miguel/ncs/v3.0.2/zephyr/snippets/nordic-flpr/snippet.yml" "/home/miguel/ncs/v3.0.2/zephyr/snippets/nordic-log-stm-dict/snippet.yml" "/home/miguel/ncs/v3.0.2/zephyr/snippets/nordic-log-stm/snippet.yml" "/home/miguel/ncs/v3.0.2/zephyr/snippets/nordic-ppr-xip/snippet.yml" "/home/miguel/ncs/v3.0.2/zephyr/snippets/nordic-ppr/snippet.yml" "/home/miguel/ncs/v3.0.2/zephyr/snippets/nus-console/snippet.yml" "/home/miguel/ncs/v3.0.2/zephyr/snippets/ram-console/snippet.yml" "/home/miguel/ncs/v3.0.2/zephyr/snippets/rtt-console/snippet.yml" "/home/miguel/ncs/v3.0.2/zephyr/snippets/rtt-tracing/snippet.yml" "/home/miguel/ncs/v3.0.2/zephyr/snippets/serial-console/snippet.yml" "/home/miguel/ncs/v3.0.2/zephyr/snippets/wifi-enterprise/snippet.yml" "/home/miguel/ncs/v3.0.2/zephyr/snippets/wifi-ipv4/snippet.yml" "/home/miguel/ncs/v3.0.2/zephyr/snippets/xen_dom0/snippet.yml") + +# Create variable scope for snippets build variables +zephyr_create_scope(snippets) + diff --git a/build/PHF000-Firmware/zephyr/soc/cmake_install.cmake b/build/PHF000-Firmware/zephyr/soc/cmake_install.cmake new file mode 100644 index 0000000..5c1d27a --- /dev/null +++ b/build/PHF000-Firmware/zephyr/soc/cmake_install.cmake @@ -0,0 +1,49 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/soc + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/soc/common/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/soc/soc/nrf52833/cmake_install.cmake") +endif() + diff --git a/build/PHF000-Firmware/zephyr/soc/common/cmake_install.cmake b/build/PHF000-Firmware/zephyr/soc/common/cmake_install.cmake new file mode 100644 index 0000000..fa643b7 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/soc/common/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/soc/common + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/zephyr/soc/soc/nrf52833/CMakeFiles/soc__nordic.dir/common/reboot.c.obj b/build/PHF000-Firmware/zephyr/soc/soc/nrf52833/CMakeFiles/soc__nordic.dir/common/reboot.c.obj new file mode 100644 index 0000000..bba3ac0 Binary files /dev/null and b/build/PHF000-Firmware/zephyr/soc/soc/nrf52833/CMakeFiles/soc__nordic.dir/common/reboot.c.obj differ diff --git a/build/PHF000-Firmware/zephyr/soc/soc/nrf52833/CMakeFiles/soc__nordic.dir/nrf52/soc.c.obj b/build/PHF000-Firmware/zephyr/soc/soc/nrf52833/CMakeFiles/soc__nordic.dir/nrf52/soc.c.obj new file mode 100644 index 0000000..58d274d Binary files /dev/null and b/build/PHF000-Firmware/zephyr/soc/soc/nrf52833/CMakeFiles/soc__nordic.dir/nrf52/soc.c.obj differ diff --git a/build/PHF000-Firmware/zephyr/soc/soc/nrf52833/CMakeFiles/soc__nordic.dir/validate_base_addresses.c.obj b/build/PHF000-Firmware/zephyr/soc/soc/nrf52833/CMakeFiles/soc__nordic.dir/validate_base_addresses.c.obj new file mode 100644 index 0000000..46305cf Binary files /dev/null and b/build/PHF000-Firmware/zephyr/soc/soc/nrf52833/CMakeFiles/soc__nordic.dir/validate_base_addresses.c.obj differ diff --git a/build/PHF000-Firmware/zephyr/soc/soc/nrf52833/CMakeFiles/soc__nordic.dir/validate_binding_headers.c.obj b/build/PHF000-Firmware/zephyr/soc/soc/nrf52833/CMakeFiles/soc__nordic.dir/validate_binding_headers.c.obj new file mode 100644 index 0000000..56f42bd Binary files /dev/null and b/build/PHF000-Firmware/zephyr/soc/soc/nrf52833/CMakeFiles/soc__nordic.dir/validate_binding_headers.c.obj differ diff --git a/build/PHF000-Firmware/zephyr/soc/soc/nrf52833/CMakeFiles/soc__nordic.dir/validate_enabled_instances.c.obj b/build/PHF000-Firmware/zephyr/soc/soc/nrf52833/CMakeFiles/soc__nordic.dir/validate_enabled_instances.c.obj new file mode 100644 index 0000000..06755ee Binary files /dev/null and b/build/PHF000-Firmware/zephyr/soc/soc/nrf52833/CMakeFiles/soc__nordic.dir/validate_enabled_instances.c.obj differ diff --git a/build/PHF000-Firmware/zephyr/soc/soc/nrf52833/cmake_install.cmake b/build/PHF000-Firmware/zephyr/soc/soc/nrf52833/cmake_install.cmake new file mode 100644 index 0000000..1a7b950 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/soc/soc/nrf52833/cmake_install.cmake @@ -0,0 +1,49 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/soc/nordic + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/soc/soc/nrf52833/nrf52/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/soc/soc/nrf52833/common/cmake_install.cmake") +endif() + diff --git a/build/PHF000-Firmware/zephyr/soc/soc/nrf52833/common/cmake_install.cmake b/build/PHF000-Firmware/zephyr/soc/soc/nrf52833/common/cmake_install.cmake new file mode 100644 index 0000000..81465d2 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/soc/soc/nrf52833/common/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/zephyr/soc/soc/nrf52833/libsoc__nordic.a b/build/PHF000-Firmware/zephyr/soc/soc/nrf52833/libsoc__nordic.a new file mode 100644 index 0000000..e7c1a22 Binary files /dev/null and b/build/PHF000-Firmware/zephyr/soc/soc/nrf52833/libsoc__nordic.a differ diff --git a/build/PHF000-Firmware/zephyr/soc/soc/nrf52833/nrf52/cmake_install.cmake b/build/PHF000-Firmware/zephyr/soc/soc/nrf52833/nrf52/cmake_install.cmake new file mode 100644 index 0000000..a62653a --- /dev/null +++ b/build/PHF000-Firmware/zephyr/soc/soc/nrf52833/nrf52/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52 + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/zephyr/subsys/canbus/cmake_install.cmake b/build/PHF000-Firmware/zephyr/subsys/canbus/cmake_install.cmake new file mode 100644 index 0000000..bcf7896 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/subsys/canbus/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/subsys/canbus + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/zephyr/subsys/cmake_install.cmake b/build/PHF000-Firmware/zephyr/subsys/cmake_install.cmake new file mode 100644 index 0000000..01c086b --- /dev/null +++ b/build/PHF000-Firmware/zephyr/subsys/cmake_install.cmake @@ -0,0 +1,139 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/subsys + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/canbus/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/debug/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/fb/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/fs/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/ipc/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/logging/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/mem_mgmt/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/mgmt/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/modbus/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/pm/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/portability/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/random/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/rtio/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/sd/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/stats/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/storage/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/task_wdt/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/testsuite/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/tracing/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/usb/cmake_install.cmake") +endif() + diff --git a/build/PHF000-Firmware/zephyr/subsys/debug/cmake_install.cmake b/build/PHF000-Firmware/zephyr/subsys/debug/cmake_install.cmake new file mode 100644 index 0000000..c3b3539 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/subsys/debug/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/subsys/debug + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/zephyr/subsys/fb/cmake_install.cmake b/build/PHF000-Firmware/zephyr/subsys/fb/cmake_install.cmake new file mode 100644 index 0000000..67b541d --- /dev/null +++ b/build/PHF000-Firmware/zephyr/subsys/fb/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/subsys/fb + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/zephyr/subsys/fs/cmake_install.cmake b/build/PHF000-Firmware/zephyr/subsys/fs/cmake_install.cmake new file mode 100644 index 0000000..84689ee --- /dev/null +++ b/build/PHF000-Firmware/zephyr/subsys/fs/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/subsys/fs + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/zephyr/subsys/ipc/cmake_install.cmake b/build/PHF000-Firmware/zephyr/subsys/ipc/cmake_install.cmake new file mode 100644 index 0000000..01a19de --- /dev/null +++ b/build/PHF000-Firmware/zephyr/subsys/ipc/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/subsys/ipc + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/zephyr/subsys/logging/backends/cmake_install.cmake b/build/PHF000-Firmware/zephyr/subsys/logging/backends/cmake_install.cmake new file mode 100644 index 0000000..9fda270 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/subsys/logging/backends/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/subsys/logging/backends + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/zephyr/subsys/logging/cmake_install.cmake b/build/PHF000-Firmware/zephyr/subsys/logging/cmake_install.cmake new file mode 100644 index 0000000..d586fe3 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/subsys/logging/cmake_install.cmake @@ -0,0 +1,49 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/subsys/logging + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/logging/backends/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/logging/frontends/cmake_install.cmake") +endif() + diff --git a/build/PHF000-Firmware/zephyr/subsys/logging/frontends/cmake_install.cmake b/build/PHF000-Firmware/zephyr/subsys/logging/frontends/cmake_install.cmake new file mode 100644 index 0000000..787f60f --- /dev/null +++ b/build/PHF000-Firmware/zephyr/subsys/logging/frontends/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/subsys/logging/frontends + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/zephyr/subsys/mem_mgmt/cmake_install.cmake b/build/PHF000-Firmware/zephyr/subsys/mem_mgmt/cmake_install.cmake new file mode 100644 index 0000000..eae7ee4 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/subsys/mem_mgmt/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/subsys/mem_mgmt + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/zephyr/subsys/mgmt/cmake_install.cmake b/build/PHF000-Firmware/zephyr/subsys/mgmt/cmake_install.cmake new file mode 100644 index 0000000..7411244 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/subsys/mgmt/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/subsys/mgmt + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/zephyr/subsys/modbus/cmake_install.cmake b/build/PHF000-Firmware/zephyr/subsys/modbus/cmake_install.cmake new file mode 100644 index 0000000..bcad900 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/subsys/modbus/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/subsys/modbus + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/zephyr/subsys/pm/cmake_install.cmake b/build/PHF000-Firmware/zephyr/subsys/pm/cmake_install.cmake new file mode 100644 index 0000000..d559688 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/subsys/pm/cmake_install.cmake @@ -0,0 +1,44 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/subsys/pm + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/pm/policy/cmake_install.cmake") +endif() + diff --git a/build/PHF000-Firmware/zephyr/subsys/pm/policy/cmake_install.cmake b/build/PHF000-Firmware/zephyr/subsys/pm/policy/cmake_install.cmake new file mode 100644 index 0000000..9992711 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/subsys/pm/policy/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/subsys/pm/policy + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/zephyr/subsys/portability/cmake_install.cmake b/build/PHF000-Firmware/zephyr/subsys/portability/cmake_install.cmake new file mode 100644 index 0000000..77a9f32 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/subsys/portability/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/subsys/portability + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/zephyr/subsys/random/cmake_install.cmake b/build/PHF000-Firmware/zephyr/subsys/random/cmake_install.cmake new file mode 100644 index 0000000..5c7fce4 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/subsys/random/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/subsys/random + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/zephyr/subsys/rtio/cmake_install.cmake b/build/PHF000-Firmware/zephyr/subsys/rtio/cmake_install.cmake new file mode 100644 index 0000000..ebe4b58 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/subsys/rtio/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/subsys/rtio + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/zephyr/subsys/sd/cmake_install.cmake b/build/PHF000-Firmware/zephyr/subsys/sd/cmake_install.cmake new file mode 100644 index 0000000..0e9a066 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/subsys/sd/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/subsys/sd + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/zephyr/subsys/stats/cmake_install.cmake b/build/PHF000-Firmware/zephyr/subsys/stats/cmake_install.cmake new file mode 100644 index 0000000..a89d4c7 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/subsys/stats/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/subsys/stats + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/zephyr/subsys/storage/cmake_install.cmake b/build/PHF000-Firmware/zephyr/subsys/storage/cmake_install.cmake new file mode 100644 index 0000000..6121f0f --- /dev/null +++ b/build/PHF000-Firmware/zephyr/subsys/storage/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/subsys/storage + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/zephyr/subsys/task_wdt/cmake_install.cmake b/build/PHF000-Firmware/zephyr/subsys/task_wdt/cmake_install.cmake new file mode 100644 index 0000000..1f1a8c2 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/subsys/task_wdt/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/subsys/task_wdt + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/zephyr/subsys/testsuite/cmake_install.cmake b/build/PHF000-Firmware/zephyr/subsys/testsuite/cmake_install.cmake new file mode 100644 index 0000000..1d2cc01 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/subsys/testsuite/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/subsys/testsuite + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/zephyr/subsys/tracing/cmake_install.cmake b/build/PHF000-Firmware/zephyr/subsys/tracing/cmake_install.cmake new file mode 100644 index 0000000..ab302e4 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/subsys/tracing/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/subsys/tracing + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/zephyr/subsys/usb/cmake_install.cmake b/build/PHF000-Firmware/zephyr/subsys/usb/cmake_install.cmake new file mode 100644 index 0000000..de58015 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/subsys/usb/cmake_install.cmake @@ -0,0 +1,44 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/subsys/usb + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/usb/device/cmake_install.cmake") +endif() + diff --git a/build/PHF000-Firmware/zephyr/subsys/usb/device/class/cmake_install.cmake b/build/PHF000-Firmware/zephyr/subsys/usb/device/class/cmake_install.cmake new file mode 100644 index 0000000..d6a9d15 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/subsys/usb/device/class/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device/class + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + diff --git a/build/PHF000-Firmware/zephyr/subsys/usb/device/cmake_install.cmake b/build/PHF000-Firmware/zephyr/subsys/usb/device/cmake_install.cmake new file mode 100644 index 0000000..be92ce2 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/subsys/usb/device/cmake_install.cmake @@ -0,0 +1,44 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/subsys/usb/device + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/subsys/usb/device/class/cmake_install.cmake") +endif() + diff --git a/build/PHF000-Firmware/zephyr/syscall_weakdefs_llext.c b/build/PHF000-Firmware/zephyr/syscall_weakdefs_llext.c new file mode 100644 index 0000000..4d97e42 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/syscall_weakdefs_llext.c @@ -0,0 +1,179 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#include +#include + +/* + * This symbol is placed at address 0 by llext-sections.ld. Its value and + * type is not important, we are only interested in its location. + */ +static void * const no_syscall_impl Z_GENERIC_SECTION(llext_no_syscall_impl); + +/* + * Weak references to all syscall implementations. Those not found by the + * linker outside this file will be exported as NULL and simply fail when + * an extension requiring them is loaded. + */ +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_adc_channel_setup; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_adc_read; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_adc_read_async; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_device_get_binding; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_device_get_by_dt_nodelabel; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_device_init; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_device_is_ready; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_gpio_get_pending_int; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_gpio_pin_configure; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_gpio_pin_get_config; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_gpio_pin_interrupt_configure; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_gpio_port_clear_bits_raw; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_gpio_port_get_direction; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_gpio_port_get_raw; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_gpio_port_set_bits_raw; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_gpio_port_set_masked_raw; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_gpio_port_toggle_bits; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_hwinfo_clear_reset_cause; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_hwinfo_get_device_eui64; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_hwinfo_get_device_id; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_hwinfo_get_reset_cause; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_hwinfo_get_supported_reset_cause; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_busy_wait; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_condvar_broadcast; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_condvar_init; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_condvar_signal; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_condvar_wait; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_event_clear; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_event_init; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_event_post; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_event_set; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_event_set_masked; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_event_wait; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_event_wait_all; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_float_disable; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_float_enable; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_futex_wait; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_futex_wake; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_is_preempt_thread; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_msgq_alloc_init; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_msgq_get; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_msgq_get_attrs; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_msgq_num_free_get; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_msgq_num_used_get; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_msgq_peek; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_msgq_peek_at; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_msgq_purge; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_msgq_put; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_mutex_init; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_mutex_lock; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_mutex_unlock; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_object_access_grant; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_object_alloc; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_object_alloc_size; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_object_release; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_pipe_alloc_init; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_pipe_buffer_flush; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_pipe_flush; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_pipe_get; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_pipe_put; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_pipe_read_avail; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_pipe_write_avail; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_poll; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_poll_signal_check; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_poll_signal_init; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_poll_signal_raise; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_poll_signal_reset; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_queue_alloc_append; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_queue_alloc_prepend; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_queue_cancel_wait; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_queue_get; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_queue_init; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_queue_is_empty; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_queue_peek_head; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_queue_peek_tail; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_reschedule; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_sched_current_thread_query; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_sem_count_get; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_sem_give; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_sem_init; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_sem_reset; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_sem_take; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_sleep; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_stack_alloc_init; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_stack_pop; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_stack_push; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_str_out; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_thread_abort; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_thread_create; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_thread_custom_data_get; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_thread_custom_data_set; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_thread_deadline_set; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_thread_join; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_thread_name_copy; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_thread_name_set; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_thread_priority_get; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_thread_priority_set; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_thread_resume; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_thread_stack_alloc; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_thread_stack_free; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_thread_stack_space_get; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_thread_suspend; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_thread_timeout_expires_ticks; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_thread_timeout_remaining_ticks; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_timer_expires_ticks; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_timer_remaining_ticks; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_timer_start; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_timer_status_get; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_timer_status_sync; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_timer_stop; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_timer_user_data_get; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_timer_user_data_set; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_uptime_ticks; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_usleep; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_wakeup; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_yield; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_log_buffered_cnt; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_log_filter_set; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_log_frontend_filter_set; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_log_panic; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_log_process; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_sensor_attr_get; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_sensor_attr_set; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_sensor_channel_get; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_sensor_get_decoder; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_sensor_reconfigure_read_iodev; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_sensor_sample_fetch; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_sensor_sample_fetch_chan; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_sys_clock_hw_cycles_per_sec_runtime_get; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_uart_config_get; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_uart_configure; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_uart_drv_cmd; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_uart_err_check; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_uart_irq_err_disable; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_uart_irq_err_enable; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_uart_irq_is_pending; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_uart_irq_rx_disable; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_uart_irq_rx_enable; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_uart_irq_tx_disable; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_uart_irq_tx_enable; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_uart_irq_update; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_uart_line_ctrl_get; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_uart_line_ctrl_set; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_uart_poll_in; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_uart_poll_in_u16; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_uart_poll_out; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_uart_poll_out_u16; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_uart_rx_disable; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_uart_rx_enable; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_uart_rx_enable_u16; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_uart_tx; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_uart_tx_abort; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_uart_tx_u16; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_z_log_msg_simple_create_0; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_z_log_msg_simple_create_1; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_z_log_msg_simple_create_2; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_z_log_msg_static_create; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_z_sys_mutex_kernel_lock; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_z_sys_mutex_kernel_unlock; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_zephyr_fputc; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_zephyr_fwrite; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_zephyr_read_stdin; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_zephyr_write_stdout; diff --git a/build/PHF000-Firmware/zephyr/zephyr.bin b/build/PHF000-Firmware/zephyr/zephyr.bin new file mode 100755 index 0000000..d7c7eab Binary files /dev/null and b/build/PHF000-Firmware/zephyr/zephyr.bin differ diff --git a/build/PHF000-Firmware/zephyr/zephyr.dts b/build/PHF000-Firmware/zephyr/zephyr.dts new file mode 100644 index 0000000..917fa9a --- /dev/null +++ b/build/PHF000-Firmware/zephyr/zephyr.dts @@ -0,0 +1,582 @@ +/dts-v1/; + +/ { + #address-cells = < 0x1 >; + #size-cells = < 0x1 >; + model = "PHF000 RA Board"; + compatible = "arm,phf000_board"; + chosen { + zephyr,bt-hci = &bt_hci_sdc; + zephyr,entropy = &rng; + zephyr,flash-controller = &flash_controller; + zephyr,console = &cdc_acm_uart0; + zephyr,udc = &usbd; + 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; + zephyr,ieee802154 = &ieee802154; + }; + aliases { + led0 = &led0; + led1 = &led1; + sw0 = &button0; + bootloader-led0 = &led0; + mcuboot-button0 = &button0; + mcuboot-led0 = &led0; + watchdog0 = &wdt0; + }; + soc { + #address-cells = < 0x1 >; + #size-cells = < 0x1 >; + compatible = "nordic,nrf52833-qdaa", "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 >; + #nordic,ficr-cells = < 0x1 >; + status = "okay"; + }; + uicr: uicr@10001000 { + compatible = "nordic,nrf-uicr"; + reg = < 0x10001000 0x1000 >; + status = "okay"; + gpio-as-nreset; + nfct-pins-as-gpios; + }; + 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 { + #address-cells = < 0x1 >; + #size-cells = < 0x1 >; + compatible = "nordic,nrf-gpregret"; + reg = < 0x4000051c 0x1 >; + status = "okay"; + }; + gpregret2: gpregret2@40000520 { + #address-cells = < 0x1 >; + #size-cells = < 0x1 >; + compatible = "nordic,nrf-gpregret"; + reg = < 0x40000520 0x1 >; + status = "okay"; + }; + reg1: regulator@40000578 { + compatible = "nordic,nrf5x-regulator"; + reg = < 0x40000578 0x1 >; + regulator-name = "REG1"; + regulator-initial-mode = < 0x0 >; + status = "okay"; + }; + reg0: regulator@40000580 { + compatible = "nordic,nrf52x-regulator-hv"; + reg = < 0x40000580 0x1 >; + regulator-name = "REG0"; + 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"; + }; + bt_hci_sdc: bt_hci_sdc { + compatible = "nordic,bt-hci-sdc"; + status = "okay"; + }; + bt_hci_controller: bt_hci_controller { + compatible = "zephyr,bt-hci-ll-sw-split"; + status = "disabled"; + }; + }; + uart0: uart@40002000 { + compatible = "nordic,nrf-uarte"; + reg = < 0x40002000 0x1000 >; + interrupts = < 0x2 0x1 >; + status = "disabled"; + }; + i2c0: i2c@40003000 { + compatible = "nordic,nrf-twim"; + #address-cells = < 0x1 >; + #size-cells = < 0x0 >; + reg = < 0x40003000 0x1000 >; + interrupts = < 0x3 0x1 >; + easydma-maxcnt-bits = < 0x10 >; + status = "disabled"; + zephyr,pm-device-runtime-auto; + }; + 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 >; + interrupts = < 0x4 0x1 >; + easydma-maxcnt-bits = < 0x10 >; + status = "disabled"; + zephyr,pm-device-runtime-auto; + }; + spi1: spi@40004000 { + compatible = "nordic,nrf-spim"; + #address-cells = < 0x1 >; + #size-cells = < 0x0 >; + reg = < 0x40004000 0x1000 >; + interrupts = < 0x4 0x1 >; + max-frequency = < 0x7a1200 >; + easydma-maxcnt-bits = < 0x10 >; + status = "disabled"; + }; + nfct: nfct@40005000 { + compatible = "nordic,nrf-nfct"; + reg = < 0x40005000 0x1000 >; + interrupts = < 0x5 0x1 >; + status = "disabled"; + }; + gpiote: gpiote0: gpiote@40006000 { + compatible = "nordic,nrf-gpiote"; + reg = < 0x40006000 0x1000 >; + interrupts = < 0x6 0x5 >; + status = "okay"; + instance = < 0x0 >; + phandle = < 0x2 >; + }; + adc: adc@40007000 { + compatible = "nordic,nrf-saadc"; + reg = < 0x40007000 0x1000 >; + interrupts = < 0x7 0x1 >; + status = "okay"; + #io-channel-cells = < 0x1 >; + zephyr,pm-device-runtime-auto; + #address-cells = < 0x1 >; + #size-cells = < 0x0 >; + phandle = < 0x6 >; + channel@6 { + reg = < 0x6 >; + zephyr,gain = "ADC_GAIN_1_6"; + zephyr,reference = "ADC_REF_INTERNAL"; + zephyr,acquisition-time = < 0x0 >; + zephyr,input-positive = < 0x7 >; + zephyr,resolution = < 0xc >; + }; + }; + 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 >; + phandle = < 0x3 >; + }; + timer2: timer@4000a000 { + compatible = "nordic,nrf-timer"; + status = "disabled"; + reg = < 0x4000a000 0x1000 >; + cc-num = < 0x4 >; + max-bit-width = < 0x20 >; + interrupts = < 0xa 0x1 >; + prescaler = < 0x0 >; + }; + 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; + headermask-supported; + 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"; + }; + 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 = "disabled"; + #pwm-cells = < 0x3 >; + }; + 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 0x37000 >; + }; + slot1_partition: partition@43000 { + label = "image-1"; + reg = < 0x43000 0x37000 >; + }; + 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: zephyr_udc0: 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 = "okay"; + cdc_acm_uart0: cdc_acm_uart0 { + compatible = "zephyr,cdc-acm-uart"; + }; + }; + 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 >; + gpiote-instance = < &gpiote >; + phandle = < 0x4 >; + }; + gpio1: gpio@50000300 { + compatible = "nordic,nrf-gpio"; + gpio-controller; + reg = < 0x50000300 0x200 0x50000800 0x300 >; + #gpio-cells = < 0x2 >; + ngpios = < 0xa >; + status = "okay"; + port = < 0x1 >; + gpiote-instance = < &gpiote >; + phandle = < 0x5 >; + }; + }; + pinctrl: pin-controller { + compatible = "nordic,nrf-pinctrl"; + }; + rng_hci: entropy_bt_hci { + compatible = "zephyr,bt-hci-entropy"; + status = "okay"; + }; + sw_pwm: sw-pwm { + compatible = "nordic,nrf-sw-pwm"; + status = "disabled"; + generator = < &timer1 >; + clock-prescaler = < 0x0 >; + #pwm-cells = < 0x3 >; + }; + 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 >; + }; + }; + }; + leds { + compatible = "gpio-leds"; + led0: led_0 { + gpios = < &gpio0 0x5 0x1 >; + label = "Red LED 0"; + }; + led1: led_1 { + gpios = < &gpio1 0x9 0x1 >; + label = "Green LED 1"; + }; + }; + buttons { + compatible = "gpio-keys"; + button0: button_0 { + gpios = < &gpio0 0x1c 0x11 >; + label = "Push button switch 0"; + zephyr,code = < 0xb >; + }; + }; + zephyr,user { + hum_en-gpios = < &gpio0 0x2 0x0 >; + do2-gpios = < &gpio0 0x3 0x200 >; + do_en-gpios = < &gpio0 0x9 0x0 >; + do1-gpios = < &gpio0 0xa 0x0 >; + btt_meas_en-gpios = < &gpio0 0x1d 0x0 >; + io-channels = < &adc 0x6 >; + }; + reserved-memory { + #address-cells = < 0x1 >; + #size-cells = < 0x1 >; + ranges; + }; +}; diff --git a/build/PHF000-Firmware/zephyr/zephyr.dts.d b/build/PHF000-Firmware/zephyr/zephyr.dts.d new file mode 100644 index 0000000..e010752 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/zephyr.dts.d @@ -0,0 +1,30 @@ +empty_file.o: /home/miguel/ncs/v3.0.2/zephyr/misc/empty_file.c \ + /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/boards/Mi_labs/phf000_board/phf000_board.dts \ + /home/miguel/ncs/v3.0.2/zephyr/dts/arm/nordic/nrf52833_qdaa.dtsi \ + /home/miguel/ncs/v3.0.2/zephyr/dts/common/mem.h \ + /home/miguel/ncs/v3.0.2/zephyr/dts/arm/nordic/nrf52833.dtsi \ + /home/miguel/ncs/v3.0.2/zephyr/dts/arm/armv7-m.dtsi \ + /home/miguel/ncs/v3.0.2/zephyr/dts/common/skeleton.dtsi \ + /home/miguel/ncs/v3.0.2/zephyr/dts/common/nordic/nrf_common.dtsi \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/adc/adc.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/dt-util.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/sys/util_macro.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/sys/util_internal.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/sys/util_loops.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/sys/util_listify.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/sys/util_internal_is_eq.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/sys/util_internal_util_inc.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/sys/util_internal_util_dec.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/sys/util_internal_util_x2.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/gpio/gpio.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/i2c/i2c.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/input/input-event-codes.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/pinctrl/nrf-pinctrl.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/pwm/pwm.h \ + /home/miguel/ncs/v3.0.2/zephyr/dts/common/freq.h \ + /home/miguel/ncs/v3.0.2/zephyr/dts/arm/nordic/override.dtsi \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/adc/nrf-saadc-v3.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/adc/nrf-saadc-v2.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/adc/nrf-saadc.h \ + /home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/regulator/nrf5x.h \ + /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/boards/Mi_labs/phf000_board/phf000_board-pinctrl.dtsi diff --git a/build/PHF000-Firmware/zephyr/zephyr.dts.pre b/build/PHF000-Firmware/zephyr/zephyr.dts.pre new file mode 100644 index 0000000..c32764c --- /dev/null +++ b/build/PHF000-Firmware/zephyr/zephyr.dts.pre @@ -0,0 +1,889 @@ +# 0 "/home/miguel/ncs/v3.0.2/zephyr/misc/empty_file.c" +# 0 "" +# 0 "" +# 1 "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/boards/Mi_labs/phf000_board/phf000_board.dts" 1 + + + + + + +/dts-v1/; +# 1 "/home/miguel/ncs/v3.0.2/zephyr/dts/arm/nordic/nrf52833_qdaa.dtsi" 1 3 4 + + + + + + +# 1 "/home/miguel/ncs/v3.0.2/zephyr/dts/common/mem.h" 1 3 4 +# 8 "/home/miguel/ncs/v3.0.2/zephyr/dts/arm/nordic/nrf52833_qdaa.dtsi" 2 3 4 +# 1 "/home/miguel/ncs/v3.0.2/zephyr/dts/arm/nordic/nrf52833.dtsi" 1 3 4 + + + + + + +# 1 "/home/miguel/ncs/v3.0.2/zephyr/dts/arm/armv7-m.dtsi" 1 3 4 + + +# 1 "/home/miguel/ncs/v3.0.2/zephyr/dts/common/skeleton.dtsi" 1 3 4 +# 9 "/home/miguel/ncs/v3.0.2/zephyr/dts/common/skeleton.dtsi" 3 4 +/ { + #address-cells = <1>; + #size-cells = <1>; + chosen { }; + aliases { }; +}; +# 4 "/home/miguel/ncs/v3.0.2/zephyr/dts/arm/armv7-m.dtsi" 2 3 4 + +/ { + soc { + #address-cells = <1>; + #size-cells = <1>; + compatible = "simple-bus"; + interrupt-parent = <&nvic>; + ranges; + + nvic: interrupt-controller@e000e100 { + #address-cells = <1>; + compatible = "arm,v7m-nvic"; + reg = <0xe000e100 0xc00>; + interrupt-controller; + #interrupt-cells = <2>; + }; + + systick: timer@e000e010 { + compatible = "arm,armv7m-systick"; + reg = <0xe000e010 0x10>; + }; + }; +}; +# 8 "/home/miguel/ncs/v3.0.2/zephyr/dts/arm/nordic/nrf52833.dtsi" 2 3 4 +# 1 "/home/miguel/ncs/v3.0.2/zephyr/dts/common/nordic/nrf_common.dtsi" 1 3 4 + + + + + + +# 1 "/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/adc/adc.h" 1 3 4 +# 9 "/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/adc/adc.h" 3 4 +# 1 "/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/dt-util.h" 1 3 4 +# 19 "/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/dt-util.h" 3 4 +# 1 "/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/sys/util_macro.h" 1 3 4 +# 34 "/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/sys/util_macro.h" 3 4 +# 1 "/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/sys/util_internal.h" 1 3 4 +# 18 "/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/sys/util_internal.h" 3 4 +# 1 "/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/sys/util_loops.h" 1 3 4 +# 1083 "/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/sys/util_loops.h" 3 4 +# 1 "/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/sys/util_listify.h" 1 3 4 +# 1084 "/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/sys/util_loops.h" 2 3 4 +# 19 "/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/sys/util_internal.h" 2 3 4 +# 162 "/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/sys/util_internal.h" 3 4 +# 1 "/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/sys/util_internal_is_eq.h" 1 3 4 +# 163 "/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/sys/util_internal.h" 2 3 4 +# 193 "/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/sys/util_internal.h" 3 4 +# 1 "/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/sys/util_internal_util_inc.h" 1 3 4 +# 194 "/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/sys/util_internal.h" 2 3 4 + + +# 1 "/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/sys/util_internal_util_dec.h" 1 3 4 +# 197 "/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/sys/util_internal.h" 2 3 4 + + +# 1 "/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/sys/util_internal_util_x2.h" 1 3 4 +# 200 "/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/sys/util_internal.h" 2 3 4 +# 35 "/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/sys/util_macro.h" 2 3 4 +# 20 "/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/dt-util.h" 2 3 4 +# 10 "/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/adc/adc.h" 2 3 4 +# 8 "/home/miguel/ncs/v3.0.2/zephyr/dts/common/nordic/nrf_common.dtsi" 2 3 4 +# 1 "/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/gpio/gpio.h" 1 3 4 +# 9 "/home/miguel/ncs/v3.0.2/zephyr/dts/common/nordic/nrf_common.dtsi" 2 3 4 +# 1 "/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/i2c/i2c.h" 1 3 4 +# 10 "/home/miguel/ncs/v3.0.2/zephyr/dts/common/nordic/nrf_common.dtsi" 2 3 4 +# 1 "/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/input/input-event-codes.h" 1 3 4 +# 11 "/home/miguel/ncs/v3.0.2/zephyr/dts/common/nordic/nrf_common.dtsi" 2 3 4 +# 1 "/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/pinctrl/nrf-pinctrl.h" 1 3 4 +# 12 "/home/miguel/ncs/v3.0.2/zephyr/dts/common/nordic/nrf_common.dtsi" 2 3 4 +# 1 "/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/pwm/pwm.h" 1 3 4 +# 13 "/home/miguel/ncs/v3.0.2/zephyr/dts/common/nordic/nrf_common.dtsi" 2 3 4 + +# 1 "/home/miguel/ncs/v3.0.2/zephyr/dts/common/freq.h" 1 3 4 +# 15 "/home/miguel/ncs/v3.0.2/zephyr/dts/common/nordic/nrf_common.dtsi" 2 3 4 +# 1 "/home/miguel/ncs/v3.0.2/zephyr/dts/arm/nordic/override.dtsi" 1 3 4 +# 16 "/home/miguel/ncs/v3.0.2/zephyr/dts/common/nordic/nrf_common.dtsi" 2 3 4 +# 24 "/home/miguel/ncs/v3.0.2/zephyr/dts/common/nordic/nrf_common.dtsi" 3 4 +/ { + pinctrl: pin-controller { + + + + + compatible = "nordic,nrf-pinctrl"; + }; + + rng_hci: entropy_bt_hci { + compatible = "zephyr,bt-hci-entropy"; + status = "okay"; + }; + + sw_pwm: sw-pwm { + compatible = "nordic,nrf-sw-pwm"; + status = "disabled"; + generator = <&timer1>; + clock-prescaler = <0>; + #pwm-cells = <3>; + }; +}; +# 9 "/home/miguel/ncs/v3.0.2/zephyr/dts/arm/nordic/nrf52833.dtsi" 2 3 4 +# 1 "/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/adc/nrf-saadc-v3.h" 1 3 4 +# 10 "/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/adc/nrf-saadc-v3.h" 3 4 +# 1 "/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/adc/nrf-saadc-v2.h" 1 3 4 +# 10 "/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/adc/nrf-saadc-v2.h" 3 4 +# 1 "/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/adc/nrf-saadc.h" 1 3 4 +# 11 "/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/adc/nrf-saadc-v2.h" 2 3 4 +# 11 "/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/adc/nrf-saadc-v3.h" 2 3 4 +# 10 "/home/miguel/ncs/v3.0.2/zephyr/dts/arm/nordic/nrf52833.dtsi" 2 3 4 +# 1 "/home/miguel/ncs/v3.0.2/zephyr/include/zephyr/dt-bindings/regulator/nrf5x.h" 1 3 4 +# 11 "/home/miguel/ncs/v3.0.2/zephyr/dts/arm/nordic/nrf52833.dtsi" 2 3 4 + +/ { + chosen { + zephyr,bt-hci = &bt_hci_sdc; + zephyr,entropy = &rng; + zephyr,flash-controller = &flash_controller; + }; + + cpus { + #address-cells = <1>; + #size-cells = <0>; + + cpu@0 { + device_type = "cpu"; + compatible = "arm,cortex-m4f"; + reg = <0>; + #address-cells = <1>; + #size-cells = <1>; + + itm: itm@e0000000 { + compatible = "arm,armv7m-itm"; + reg = <0xe0000000 0x1000>; + swo-ref-frequency = <32000000>; + }; + }; + }; + + soc { + ficr: ficr@10000000 { + compatible = "nordic,nrf-ficr"; + reg = <0x10000000 0x1000>; + #nordic,ficr-cells = <1>; + status = "okay"; + }; + + uicr: uicr@10001000 { + compatible = "nordic,nrf-uicr"; + reg = <0x10001000 0x1000>; + status = "okay"; + }; + + sram0: memory@20000000 { + compatible = "mmio-sram"; + }; + + clock: clock@40000000 { + compatible = "nordic,nrf-clock"; + reg = <0x40000000 0x1000>; + interrupts = <0 1>; + status = "okay"; + }; + + power: power@40000000 { + compatible = "nordic,nrf-power"; + reg = <0x40000000 0x1000>; + interrupts = <0 1>; + status = "okay"; + #address-cells = <1>; + #size-cells = <1>; + + gpregret1: gpregret1@4000051c { + #address-cells = <1>; + #size-cells = <1>; + compatible = "nordic,nrf-gpregret"; + reg = <0x4000051c 0x1>; + status = "okay"; + }; + + gpregret2: gpregret2@40000520 { + #address-cells = <1>; + #size-cells = <1>; + compatible = "nordic,nrf-gpregret"; + reg = <0x40000520 0x1>; + status = "okay"; + }; + + reg1: regulator@40000578 { + compatible = "nordic,nrf5x-regulator"; + reg = <0x40000578 0x1>; + regulator-name = "REG1"; + regulator-initial-mode = <0>; + }; + + reg0: regulator@40000580 { + compatible = "nordic,nrf52x-regulator-hv"; + reg = <0x40000580 0x1>; + regulator-name = "REG0"; + status = "disabled"; + }; + }; + + radio: radio@40001000 { + compatible = "nordic,nrf-radio"; + reg = <0x40001000 0x1000>; + interrupts = <1 1>; + 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"; + }; + + bt_hci_sdc: bt_hci_sdc { + compatible = "nordic,bt-hci-sdc"; + status = "okay"; + }; + bt_hci_controller: bt_hci_controller { + compatible = "zephyr,bt-hci-ll-sw-split"; + status = "disabled"; + }; + }; + + uart0: uart@40002000 { + + + compatible = "nordic,nrf-uarte"; + reg = <0x40002000 0x1000>; + interrupts = <2 1>; + status = "disabled"; + }; + + i2c0: i2c@40003000 { + + + + + + + + compatible = "nordic,nrf-twim"; + #address-cells = <1>; + #size-cells = <0>; + reg = <0x40003000 0x1000>; + interrupts = <3 1>; + easydma-maxcnt-bits = <16>; + status = "disabled"; + zephyr,pm-device-runtime-auto; + }; + + spi0: spi@40003000 { + + + + + + + + compatible = "nordic,nrf-spim"; + #address-cells = <1>; + #size-cells = <0>; + reg = <0x40003000 0x1000>; + interrupts = <3 1>; + max-frequency = <(((8) * 1000) * 1000)>; + easydma-maxcnt-bits = <16>; + status = "disabled"; + }; + + i2c1: i2c@40004000 { + + + + + + + + compatible = "nordic,nrf-twim"; + #address-cells = <1>; + #size-cells = <0>; + reg = <0x40004000 0x1000>; + interrupts = <4 1>; + easydma-maxcnt-bits = <16>; + status = "disabled"; + zephyr,pm-device-runtime-auto; + }; + + spi1: spi@40004000 { + + + + + + + + compatible = "nordic,nrf-spim"; + #address-cells = <1>; + #size-cells = <0>; + reg = <0x40004000 0x1000>; + interrupts = <4 1>; + max-frequency = <(((8) * 1000) * 1000)>; + easydma-maxcnt-bits = <16>; + status = "disabled"; + }; + + nfct: nfct@40005000 { + compatible = "nordic,nrf-nfct"; + reg = <0x40005000 0x1000>; + interrupts = <5 1>; + status = "disabled"; + }; + + gpiote: gpiote0: gpiote@40006000 { + compatible = "nordic,nrf-gpiote"; + reg = <0x40006000 0x1000>; + interrupts = <6 5>; + status = "disabled"; + instance = <0>; + }; + + adc: adc@40007000 { + compatible = "nordic,nrf-saadc"; + reg = <0x40007000 0x1000>; + interrupts = <7 1>; + status = "disabled"; + #io-channel-cells = <1>; + zephyr,pm-device-runtime-auto; + }; + + timer0: timer@40008000 { + compatible = "nordic,nrf-timer"; + status = "disabled"; + reg = <0x40008000 0x1000>; + cc-num = <4>; + max-bit-width = <32>; + interrupts = <8 1>; + prescaler = <0>; + }; + + timer1: timer@40009000 { + compatible = "nordic,nrf-timer"; + status = "disabled"; + reg = <0x40009000 0x1000>; + cc-num = <4>; + max-bit-width = <32>; + interrupts = <9 1>; + prescaler = <0>; + }; + + timer2: timer@4000a000 { + compatible = "nordic,nrf-timer"; + status = "disabled"; + reg = <0x4000a000 0x1000>; + cc-num = <4>; + max-bit-width = <32>; + interrupts = <10 1>; + prescaler = <0>; + }; + + rtc0: rtc@4000b000 { + compatible = "nordic,nrf-rtc"; + reg = <0x4000b000 0x1000>; + cc-num = <3>; + interrupts = <11 1>; + status = "disabled"; + clock-frequency = <32768>; + prescaler = <1>; + }; + + temp: temp@4000c000 { + compatible = "nordic,nrf-temp"; + reg = <0x4000c000 0x1000>; + interrupts = <12 1>; + status = "okay"; + }; + + rng: random@4000d000 { + compatible = "nordic,nrf-rng"; + reg = <0x4000d000 0x1000>; + interrupts = <13 1>; + status = "okay"; + }; + + ecb: ecb@4000e000 { + compatible = "nordic,nrf-ecb"; + reg = <0x4000e000 0x1000>; + interrupts = <14 1>; + status = "okay"; + }; + + ccm: ccm@4000f000 { + compatible = "nordic,nrf-ccm"; + reg = <0x4000f000 0x1000>; + interrupts = <15 1>; + length-field-length-8-bits; + headermask-supported; + status = "okay"; + }; + + wdt: wdt0: watchdog@40010000 { + compatible = "nordic,nrf-wdt"; + reg = <0x40010000 0x1000>; + interrupts = <16 1>; + status = "okay"; + }; + + rtc1: rtc@40011000 { + compatible = "nordic,nrf-rtc"; + reg = <0x40011000 0x1000>; + cc-num = <4>; + interrupts = <17 1>; + status = "disabled"; + clock-frequency = <32768>; + prescaler = <1>; + }; + + qdec: qdec0: qdec@40012000 { + compatible = "nordic,nrf-qdec"; + reg = <0x40012000 0x1000>; + interrupts = <18 1>; + status = "disabled"; + }; + + comp: comparator@40013000 { + + + + + compatible = "nordic,nrf-comp"; + reg = <0x40013000 0x1000>; + interrupts = <19 1>; + status = "disabled"; + }; + + egu0: swi0: egu@40014000 { + compatible = "nordic,nrf-egu", "nordic,nrf-swi"; + reg = <0x40014000 0x1000>; + interrupts = <20 1>; + status = "okay"; + }; + + egu1: swi1: egu@40015000 { + compatible = "nordic,nrf-egu", "nordic,nrf-swi"; + reg = <0x40015000 0x1000>; + interrupts = <21 1>; + status = "okay"; + }; + + egu2: swi2: egu@40016000 { + compatible = "nordic,nrf-egu", "nordic,nrf-swi"; + reg = <0x40016000 0x1000>; + interrupts = <22 1>; + status = "okay"; + }; + + egu3: swi3: egu@40017000 { + compatible = "nordic,nrf-egu", "nordic,nrf-swi"; + reg = <0x40017000 0x1000>; + interrupts = <23 1>; + status = "okay"; + }; + + egu4: swi4: egu@40018000 { + compatible = "nordic,nrf-egu", "nordic,nrf-swi"; + reg = <0x40018000 0x1000>; + interrupts = <24 1>; + status = "okay"; + }; + + egu5: swi5: egu@40019000 { + compatible = "nordic,nrf-egu", "nordic,nrf-swi"; + reg = <0x40019000 0x1000>; + interrupts = <25 1>; + status = "okay"; + }; + + timer3: timer@4001a000 { + compatible = "nordic,nrf-timer"; + status = "disabled"; + reg = <0x4001a000 0x1000>; + cc-num = <6>; + max-bit-width = <32>; + interrupts = <26 1>; + prescaler = <0>; + }; + + timer4: timer@4001b000 { + compatible = "nordic,nrf-timer"; + status = "disabled"; + reg = <0x4001b000 0x1000>; + cc-num = <6>; + max-bit-width = <32>; + interrupts = <27 1>; + prescaler = <0>; + }; + + pwm0: pwm@4001c000 { + compatible = "nordic,nrf-pwm"; + reg = <0x4001c000 0x1000>; + interrupts = <28 1>; + status = "disabled"; + #pwm-cells = <3>; + }; + + pdm0: pdm@4001d000 { + compatible = "nordic,nrf-pdm"; + reg = <0x4001d000 0x1000>; + interrupts = <29 1>; + 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 = <1>; + #size-cells = <1>; + + + flash0: flash@0 { + compatible = "soc-nv-flash"; + erase-block-size = <4096>; + write-block-size = <4>; + }; + }; + + 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 = <33 1>; + status = "disabled"; + #pwm-cells = <3>; + }; + + pwm2: pwm@40022000 { + compatible = "nordic,nrf-pwm"; + reg = <0x40022000 0x1000>; + interrupts = <34 1>; + status = "disabled"; + #pwm-cells = <3>; + }; + + spi2: spi@40023000 { + + + + + + + + compatible = "nordic,nrf-spim"; + #address-cells = <1>; + #size-cells = <0>; + reg = <0x40023000 0x1000>; + interrupts = <35 1>; + max-frequency = <(((8) * 1000) * 1000)>; + easydma-maxcnt-bits = <16>; + status = "disabled"; + }; + + rtc2: rtc@40024000 { + compatible = "nordic,nrf-rtc"; + reg = <0x40024000 0x1000>; + cc-num = <4>; + interrupts = <36 1>; + status = "disabled"; + clock-frequency = <32768>; + prescaler = <1>; + }; + + i2s0: i2s@40025000 { + compatible = "nordic,nrf-i2s"; + #address-cells = <1>; + #size-cells = <0>; + reg = <0x40025000 0x1000>; + interrupts = <37 1>; + status = "disabled"; + }; + + usbd: usbd@40027000 { + compatible = "nordic,nrf-usbd"; + reg = <0x40027000 0x1000>; + interrupts = <39 1>; + num-bidir-endpoints = <1>; + num-in-endpoints = <7>; + num-out-endpoints = <7>; + num-isoin-endpoints = <1>; + num-isoout-endpoints = <1>; + status = "disabled"; + }; + + uart1: uart@40028000 { + compatible = "nordic,nrf-uarte"; + reg = <0x40028000 0x1000>; + interrupts = <40 1>; + status = "disabled"; + }; + + pwm3: pwm@4002d000 { + compatible = "nordic,nrf-pwm"; + reg = <0x4002d000 0x1000>; + interrupts = <45 1>; + status = "disabled"; + #pwm-cells = <3>; + }; + + spi3: spi@4002f000 { + compatible = "nordic,nrf-spim"; + #address-cells = <1>; + #size-cells = <0>; + reg = <0x4002f000 0x1000>; + interrupts = <47 1>; + max-frequency = <(((32) * 1000) * 1000)>; + easydma-maxcnt-bits = <16>; + rx-delay-supported; + rx-delay = <2>; + status = "disabled"; + }; + + gpio0: gpio@50000000 { + compatible = "nordic,nrf-gpio"; + gpio-controller; + reg = <0x50000000 0x200 + 0x50000500 0x300>; + #gpio-cells = <2>; + status = "disabled"; + port = <0>; + gpiote-instance = <&gpiote>; + }; + + gpio1: gpio@50000300 { + compatible = "nordic,nrf-gpio"; + gpio-controller; + reg = <0x50000300 0x200 + 0x50000800 0x300>; + #gpio-cells = <2>; + ngpios = <10>; + status = "disabled"; + port = <1>; + gpiote-instance = <&gpiote>; + }; + }; +}; + +&nvic { + arm,num-irq-priority-bits = <3>; +}; + +&systick { + + status = "disabled"; +}; +# 9 "/home/miguel/ncs/v3.0.2/zephyr/dts/arm/nordic/nrf52833_qdaa.dtsi" 2 3 4 + +&flash0 { + reg = <0x00000000 ((512) * 1024)>; +}; + +&sram0 { + reg = <0x20000000 ((128) * 1024)>; +}; + +/ { + soc { + compatible = "nordic,nrf52833-qdaa", "nordic,nrf52833", + "nordic,nrf52", "simple-bus"; + }; +}; +# 9 "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/boards/Mi_labs/phf000_board/phf000_board.dts" 2 +# 1 "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/boards/Mi_labs/phf000_board/phf000_board-pinctrl.dtsi" 1 +&pinctrl { +}; +# 10 "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/boards/Mi_labs/phf000_board/phf000_board.dts" 2 + + +/ { + model = "PHF000 RA Board"; + compatible = "arm,phf000_board"; + + chosen { + zephyr,console = &cdc_acm_uart0; + zephyr,udc = &usbd; + 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; + zephyr,ieee802154 = &ieee802154; + }; + + leds { + compatible = "gpio-leds"; + led0: led_0 { + gpios = <&gpio0 5 (1 << 0)>; + label = "Red LED 0"; + }; + led1: led_1 { + gpios = <&gpio1 9 (1 << 0)>; + label = "Green LED 1"; + }; + }; + + buttons { + compatible = "gpio-keys"; + button0: button_0 { + gpios = <&gpio0 28 ((1 << 0) | (1 << 4))>; + label = "Push button switch 0"; + zephyr,code = <11>; + }; + }; + + + + aliases { + led0 = &led0; + led1 = &led1; + sw0 = &button0; + bootloader-led0 = &led0; + mcuboot-button0 = &button0; + mcuboot-led0 = &led0; + watchdog0 = &wdt0; + }; + + zephyr,user { + hum_en-gpios = <&gpio0 2 0>; + do2-gpios = <&gpio0 3 (1 << 9)>; + do_en-gpios = <&gpio0 9 0>; + do1-gpios = <&gpio0 10 0>; + btt_meas_en-gpios = <&gpio0 29 0>; + io-channels = <&adc 6>; + }; + + reserved-memory { + #address-cells = <1>; + #size-cells = <1>; + ranges; + }; +}; + +®1 { + regulator-initial-mode = <0>; + status = "okay"; + compatible = "nordic,nrf5x-regulator"; +}; + +&adc { + status = "okay"; + #address-cells = <1>; + #size-cells = <0>; + channel@6 { + reg = <6>; + zephyr,gain = "ADC_GAIN_1_6"; + zephyr,reference = "ADC_REF_INTERNAL"; + + zephyr,acquisition-time = <0>; + zephyr,input-positive = <7>; + + zephyr,resolution = <12>; + }; +}; + +&uicr { + gpio-as-nreset; + nfct-pins-as-gpios; +}; + +&gpiote { + status = "okay"; +}; + +&gpio0 { + status = "okay"; +}; + +&gpio1 { + status = "okay"; +}; + +&flash0 { + + partitions { + compatible = "fixed-partitions"; + #address-cells = <1>; + #size-cells = <1>; + + boot_partition: partition@0 { + label = "mcuboot"; + reg = <0x00000000 0xC000>; + }; + slot0_partition: partition@c000 { + label = "image-0"; + reg = <0x0000C000 0x37000>; + }; + slot1_partition: partition@43000 { + label = "image-1"; + reg = <0x00043000 0x37000>; + }; + storage_partition: partition@7a000 { + label = "storage"; + reg = <0x0007A000 0x00006000>; + }; + }; +}; + +zephyr_udc0: &usbd { + compatible = "nordic,nrf-usbd"; + status = "okay"; + cdc_acm_uart0: cdc_acm_uart0 { + compatible = "zephyr,cdc-acm-uart"; + }; +}; + +®0 { + status = "okay"; +}; + +&power { + status = "okay"; +}; +&temp { + compatible = "nordic,nrf-temp"; + status = "okay"; +}; +# 0 "" 2 +# 1 "/home/miguel/ncs/v3.0.2/zephyr/misc/empty_file.c" diff --git a/build/PHF000-Firmware/zephyr/zephyr.elf b/build/PHF000-Firmware/zephyr/zephyr.elf new file mode 100755 index 0000000..03d4862 Binary files /dev/null and b/build/PHF000-Firmware/zephyr/zephyr.elf differ diff --git a/build/PHF000-Firmware/zephyr/zephyr.hex b/build/PHF000-Firmware/zephyr/zephyr.hex new file mode 100644 index 0000000..8c16a71 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/zephyr.hex @@ -0,0 +1,4302 @@ +:10000000C0300020C545000085410000B14500001A +:10001000B1450000B1450000B145000000000000FE +:100020000000000000000000000000003547000054 +:10003000B145000000000000D1460000B1450000BD +:1000400071490000714900007149000071490000C8 +:1000500071490000714900007149000071490000B8 +:1000600071490000714900007149000071490000A8 +:100070007149000071490000714900007149000098 +:100080007149000071490000714900007149000088 +:100090007149000071490000714900007149000078 +:1000A0007149000071490000714900007149000068 +:1000B0007149000071490000714900007149000058 +:1000C0007149000071490000714900007149000048 +:1000D0007149000071490000714900007149000038 +:1000E0007149000071490000714900007149000028 +:1000F0007149000071490000714900007149000018 +:100100004FF0FF0C1CEAD0521EBF1CEAD15392EAFA +:100110000C0F93EA0C0F6FD01A4480EA010C4002D6 +:1001200018BF5FEA41211ED04FF0006343EA501030 +:1001300043EA5111A0FB01310CF00040B1F5000F72 +:100140003EBF490041EAD3715B0040EA010062F121 +:100150007F02FD2A1DD8B3F1004F40EBC25008BF0B +:1001600020F00100704790F0000F0CF0004C08BF29 +:1001700049024CEA502040EA51207F3AC2BFD2F1F6 +:10018000FF0340EAC250704740F400004FF0000304 +:10019000013A5DDC12F1190FDCBF00F0004070473E +:1001A000C2F10002410021FA02F1C2F1200200FA7C +:1001B00002FC5FEA310040F1000053EA4C0308BF43 +:1001C00020EADC70704792F0000F00F0004C02BF94 +:1001D000400010F4000F013AF9D040EA0C0093F00F +:1001E000000F01F0004C02BF490011F4000F013B69 +:1001F000F9D041EA0C018FE70CEAD15392EA0C0FD7 +:1002000018BF93EA0C0F0AD030F0004C18BF31F041 +:10021000004CD8D180EA010000F00040704790F017 +:10022000000F17BF90F0004F084691F0000F91F0BB +:10023000004F14D092EA0C0F01D142020FD193EA81 +:100240000C0F03D14B0218BF084608D180EA010009 +:1002500000F0004040F0FE4040F40000704740F0E5 +:10026000FE4040F44000704780F0004002E000BFD4 +:1002700081F0004142001FBF5FEA410392EA030F91 +:100280007FEA226C7FEA236C6AD04FEA1262D2EBDB +:100290001363C1BFD218414048404140B8BF5B42E0 +:1002A000192B88BF704710F0004F40F4000020F079 +:1002B0007F4018BF404211F0004F41F4000121F08F +:1002C0007F4118BF494292EA030F3FD0A2F10102D9 +:1002D00041FA03FC10EB0C00C3F1200301FA03F117 +:1002E00000F0004302D5494260EB4000B0F5000F3A +:1002F00013D3B0F1807F06D340084FEA310102F1F9 +:100300000102FE2A51D2B1F1004F40EBC25008BFAA +:1003100020F0010040EA03007047490040EB000074 +:10032000013A28BFB0F5000FEDD2B0FA80FCACF175 +:10033000080CB2EB0C0200FA0CF0AABF00EBC250A2 +:1003400052421843BCBFD0401843704792F0000F90 +:1003500081F4000106BF80F400000132013BB5E7E3 +:100360004FEA41037FEA226C18BF7FEA236C21D059 +:1003700092EA030F04D092F0000F08BF08467047BE +:1003800090EA010F1CBF0020704712F07F4F04D18C +:10039000400028BF40F00040704712F100723CBF9F +:1003A00000F50000704700F0004343F0FE4040F4C9 +:1003B000000070477FEA226216BF08467FEA236387 +:1003C0000146420206BF5FEA412390EA010F40F472 +:1003D000800070474FF0000304E000BF10F00043BE +:1003E00048BF40425FEA000C08BF704743F09643A5 +:1003F00001464FF000001CE050EA010208BF7047C0 +:100400004FF000030AE000BF50EA010208BF704746 +:1004100011F0004302D5404261EB41015FEA010C5B +:1004200002BF84460146002043F0B64308BFA3F153 +:100430008053A3F50003BCFA8CF2083AA3EBC25335 +:1004400010DB01FA02FC634400FA02FCC2F1200254 +:10045000BCF1004F20FA02F243EB020008BF20F08B +:100460000100704702F1200201FA02FCC2F12002F1 +:1004700050EA4C0021FA02F243EB020008BF20EAE6 +:10048000DC7070474FEA4002B2F1FE4F0FD34FF0DD +:100490009E03B3EB12620DD94FEA002343F00043F1 +:1004A00010F0004F23FA02F018BF404270474FF09F +:1004B0000000704712F1610F01D1420205D110F026 +:1004C000004008BF6FF0004070474FF000007047D9 +:1004D00053B94AB9002908BF00281CBF4FF0FF31AB +:1004E0004FF0FF3000F00CB8ADF1080C6DE904CE10 +:1004F00000F010F8DDF804E0DDE9022304B07047F5 +:10050000704700BF034613F8012B002AFBD1181ACD +:10051000013870472DE9F04786468C460846089E0C +:10052000154674461946002B40F0C2808542B2FA47 +:1005300082F245D94AB1C2F1200300FA02FC2EFA38 +:1005400003F3954043EA0C0C94404FEA154EA8B2D1 +:10055000BCFBFEF8230C0EFB18CC08FB00F943EAA9 +:100560000C43994528D9EB1808F1FF3704D2994577 +:1005700002D9A8F102072B44A3EB0903A4B2B3FBF1 +:10058000FEFC0EFB1C330CFB00F044EA0344A042CB +:1005900014D92C190CF1FF3304D2A04202D9ACF1CA +:1005A00002032C44241A43EA07401EB1D44000231E +:1005B00034607360BDE8F0874746DDE76346F1E7E6 +:1005C00092BB431B01214FEA154EAFB2B3FBFEFCB9 +:1005D000200C0EFB1C330CFB07F840EA0343984544 +:1005E00062D9EB180CF1FF3004D2984502D9ACF176 +:1005F00002002B44A3EB0803A4B2B3FBFEFC0EFBEA +:100600001C330CFB07F744EA0344A7424ED92C19CC +:100610000CF1FF3304D2A74202D9ACF102032C44FF +:10062000E41B43EA0040C0E7C2F1200320FA03F1D3 +:10063000954090402EFA03F303434FEA154EAFB2B4 +:10064000B1FBFEFC0EFB1C10190C0CFB07F841EA79 +:100650000041884504FA02F422D969180CF1FF30F0 +:1006600004D2884502D9ACF102002944A1EB08016B +:100670009BB2B1FBFEFC0EFB1C110CFB07F743EA1F +:1006800001439F420ED9EB180CF1FF3104D29F4277 +:1006900002D9ACF102012B44DB1B41EA004192E795 +:1006A0006046E3E76146F7E76046A3E76346B7E7DE +:1006B000834206D916B9002108467BE7C6E900E067 +:1006C000F9E7B3FA83F78FB9834201D3724508D8AB +:1006D000BEEB020460EB030301209C461EB900211F +:1006E00068E73846FAE7C6E9004CF8E7C7F1200C9E +:1006F000BB4022FA0CF41C432EFA0CF120FA0CF346 +:10070000B84001434FEA14490EFA07F5B3FBF9F874 +:100710001FFA84FE09FB18300B0C08FB0EFA43EAA3 +:1007200000439A4502FA07F240D9E31808F1FF3076 +:1007300004D29A4502D9A8F102002344A3EB0A038C +:1007400089B2B3FBF9F809FB183308FB0EFE41EA46 +:1007500003418E452CD9611808F1FF3304D28E4530 +:1007600002D9A8F10203214443EA0040A0FB029809 +:10077000A1EB0E014145CE46434602D306D14D457D +:1007800004D2B9EB020E68EB04030138002EA6D0A8 +:10079000B5EB0E0261EB030101FA0CFC22FA07F340 +:1007A0004CEA0303F940C6E9003198E74046C5E743 +:1007B0004346D9E7704700BF2DE9F041002082B0E1 +:1007C00002F0BAFC002867D100F096F900F03AFA7E +:1007D00000F06AFB00F0EEFB011E68DB00F0B6FCE7 +:1007E000011E60DB00F05AFD00F028FE4FF47A7124 +:1007F000002000F0E9F9684600F02AFC2E4F2F4E49 +:100800002F4D0124014640BB0099304601F05AFAB1 +:1008100001A800F0A7FC014640BB0199294801F05E +:1008200051FA00F045FE011E04DB274801F04AFAA8 +:1008300000F004FE00F044FAB0F1000824DB27D1F8 +:10084000C4B94446002140F267600CF03DF86846A8 +:1008500000F0FEFB01460028D6D0384601F032FAFF +:1008600001A800F07FFC01460028D6D0284601F000 +:1008700029FAD6E700F032FB00F054FB00F076FBDB +:10088000012000F06DF9DCE7104801F01BFAD9E710 +:100890000F4801F017FAD4E70E4801F013FA0020D0 +:1008A00002B0BDE8F0810C4801F00CFA9AE70B4861 +:1008B00001F008FA92E700BF9CE500008CE500001B +:1008C000D4E50000C0E50000F4E5000008E6000003 +:1008D00020E6000038E500006CE500004CE5000073 +:1008E0002DE9F04112F0FC6FD0E9017605696AD17B +:1008F000134602F03002302A56D0494A494C1A4079 +:10090000A24242D003F00602042A32D013F440225D +:1009100007D09C0375D5B2F5402F1BD0424A9A43AD +:1009200015D03C684FF0010C0CFA01FC1CEA040FD6 +:1009300023F4801256D02C68DB074CBF4CEA040429 +:1009400024EA0C042C603368BDE8F041184783F4B6 +:100950004023E6E73549364A364840F2EF3301F0A6 +:10096000EDF9354801F0EAF9314840F2EF3101F094 +:10097000DBF932492F482E4A4FF47A7301F0DEF941 +:100980002B484FF47A7101F0CFF92D49284A2948B4 +:1009900040F2E53301F0D2F92A4801F0CFF92448BA +:1009A00040F2E53101F0C0F92749214A214840F2DF +:1009B000E13301F0C3F9254801F0C0F91C4840F2C9 +:1009C000E13101F0B1F92249194A1A4840F2DE3307 +:1009D00001F0B4F91F4801F0B1F9154840F2DE31D9 +:1009E00001F0A2F91C49124A124840F2FB3301F00F +:1009F000A5F91A4801F0A2F90D4840F2FB3101F0C7 +:100A000093F917490A4A0B4840F2EB3301F096F983 +:100A1000144801F093F9064840F2EB3101F084F9F3 +:100A2000020003000200010001001000D8E80000ED +:100A300034E60000C8E600001CE9000020E80000E1 +:100A400088E70000D0E700000CE7000048E700005E +:100A500068E60000E8E6000048E9000088E90000D8 +:100A600054E800009CE800000C4843681B689B05A4 +:100A700004D583684FF400715B6918470849094A37 +:100A8000094810B540F2B56301F058F9074801F084 +:100A900055F9044840F2B56101F046F980E20000E2 +:100AA00048E9000034E60000C8E6000088E90000DC +:100AB0000C4843681B689B0603D5836820215B694B +:100AC00018470949094A0A4810B540F2B56301F0D0 +:100AD00035F9084801F032F9044840F2B56101F0F7 +:100AE00023F900BF94E2000048E9000034E600006A +:100AF000C8E6000088E9000008B5114809F058FB75 +:100B000018B1104809F054FB20B9BDE808400E4860 +:100B100001F0D8B80D4A0A480521FFF7E1FE0B4A5B +:100B200008480921FFF7DCFE09490A4800220CF0B9 +:100B30005BFEBDE808400849084800220CF054BE9E +:100B400094E2000080E200009CE900000100160031 +:100B5000B10A0000A0080020690A0000680800200F +:100B600010B1012809D07047114843681B689A06E4 +:100B70000DD5836820215B6918470E4843681B68C0 +:100B80009B0504D583684FF400715B6918470A49D7 +:100B90000A4A0B4810B540F2B56301F0CFF8094896 +:100BA00001F0CCF8054840F2B56101F0BDF800BF96 +:100BB00094E2000080E2000048E9000034E6000012 +:100BC000C8E6000088E9000000B583B020B1012824 +:100BD0001BD003B05DF804FB21EAE1734FF4004C35 +:100BE000014640F2E732C3FB0C21104600234FF4CC +:100BF0007A72FFF76DFC02460B461048CDE90021E2 +:100C00000CF002FE03B05DF804FB21EAE1734FF43F +:100C1000004240F2E7300021C3FB02014FF47A7238 +:100C20000023FFF755FC02460B460548CDE900219D +:100C30000CF0EAFD03B05DF804FB00BFA008002043 +:100C40006808002010B582B0164C204609F0B0FAB2 +:100C500098B1D4E901321B6821690192DB0012D5F9 +:100C60000B68114A43F080530B60019B1B681C21E9 +:100C7000204602B0BDE8104018470C4802B0BDE85D +:100C8000104001F01FB80A490A4A0B4840F2FB33F2 +:100C900001F054F8094801F051F8064840F2FB31E0 +:100CA00001F042F894E2000011000100B4E90000F4 +:100CB00048E9000034E60000C8E6000088E90000CA +:100CC00000B5124843681B68DB0085B00FD5036987 +:100CD0000193836803A95B68984728B9019B03982F +:100CE0001B685840C0F3007005B05DF804FB08496C +:100CF000084A094840F2336301F020F8074801F040 +:100D00001DF8044840F2336101F00EF894E200004F +:100D100048E9000034E60000C8E6000088E9000069 +:100D20002DE9F04112F0FC6FD0E9017605696AD136 +:100D3000134602F03002302A56D0494A494C1A4034 +:100D4000A24242D003F00602042A32D013F4402219 +:100D500007D09C0375D5B2F5402F1BD0424A9A4369 +:100D600015D03C684FF0010C0CFA01FC1CEA040F92 +:100D700023F4801256D02C68DB074CBF4CEA0404E5 +:100D800024EA0C042C603368BDE8F041184783F472 +:100D90004023E6E73549364A364840F2EF3300F063 +:100DA000CDFF354800F0CAFF314840F2EF3100F086 +:100DB000BBFF32492F482E4A4FF47A7300F0BEFF32 +:100DC0002B484FF47A7100F0AFFF2D49284A29488B +:100DD00040F2E53300F0B2FF2A4800F0AFFF2448AC +:100DE00040F2E53100F0A0FF2749214A214840F2B6 +:100DF000E13300F0A3FF254800F0A0FF1C4840F2BB +:100E0000E13100F091FF2249194A1A4840F2DE33DD +:100E100000F094FF1F4800F091FF154840F2DE31CA +:100E200000F082FF1C49124A124840F2FB3300F0E6 +:100E300085FF1A4800F082FF0D4840F2FB3100F0B8 +:100E400073FF17490A4A0B4840F2EB3300F076FF74 +:100E5000144800F073FF064840F2EB3100F064FFE5 +:100E6000020003000200010001001000D8E80000A9 +:100E700034E60000C8E600001CE9000020E800009D +:100E800088E70000D0E700000CE7000048E700001A +:100E900068E60000E8E6000048E9000088E9000094 +:100EA00054E800009CE8000010B50A4C4FF4B01262 +:100EB0000A212046FFF734FF074A03212046FFF7A7 +:100EC0002FFF4FF4B01220460921BDE81040FFF774 +:100ED00027BF00BF94E20000000216000C484368E0 +:100EE0001B685B0504D583684FF480615B69184714 +:100EF0000849094A094810B540F2B56300F01EFFE1 +:100F0000074800F01BFF044840F2B56100F00CFFF9 +:100F100094E2000048E9000034E60000C8E6000062 +:100F200088E900000C4843681B681B0703D58368E9 +:100F300008215B6918470949094A0A4810B540F277 +:100F4000B56300F0FBFE084800F0F8FE044840F2EC +:100F5000B56100F0E9FE00BF94E2000048E900003E +:100F600034E60000C8E6000088E900000C48436849 +:100F70001B689B0504D583684FF400715B691847B3 +:100F80000849094A094810B540F2B56300F0D6FE99 +:100F9000074800F0D3FE044840F2B56100F0C4FEFB +:100FA00094E2000048E9000034E60000C8E60000D2 +:100FB00088E9000010B582B01C4C204609F0F8F812 +:100FC000F0B11B48D0E901321B6801929B00026915 +:100FD0001DD5136823F000531360019B4FF4C0220A +:100FE0001B681D219847A36812491B682046984733 +:100FF00020B9114B40210C2259601A8202B010BD59 +:101000000E4800F05FFE6FF0120002B010BD0C49F8 +:101010000C4A0D4840F2FB3300F090FE0B4800F004 +:101020008DFE084840F2FB3100F07EFEBCE200007D +:1010300094E20000E6E9000010060020D0E900007C +:1010400048E9000034E60000C8E6000088E9000036 +:101050002DE9F041344E736832691B6884B09C00FE +:10106000019251D5019B1B6807469900B3684FF068 +:10107000005154BFDB681B69304698470021A4200B +:101080000BF022FC29482A4985686B68984704467A +:1010900018B1204604B0BDE8F081DFF898802B89B4 +:1010A000D8F8002003A902FB03F3039306F0B8FA73 +:1010B000044618B9039B1B13C8F80030D8F8000089 +:1010C000FFF788F91C49FFF71BF8FFF7DBF9736896 +:1010D00038601A683369920016D51B689B0009D5E1 +:1010E000B3681148DB684FF000519847204604B0C0 +:1010F000BDE8F081B3680C481B694FF00051984778 +:10110000204604B0BDE8F0810C490D4A0D4840F27C +:101110008C6300F013FE0C4800F010FE084840F20B +:101120008C6100F001FE00BF94E20000BCE2000010 +:1011300010060020E80F0020ED25B43F48E900002C +:1011400034E60000C8E6000088E9000000B583B07E +:101150000723002101A88DF8043008F02DFF03B00B +:101160005DF804FB10B5044608F05AFF044BD3F8B1 +:101170000835002BB8BF03339B102360002010BD3F +:1011800000C000401D4BD3F8402102B9704730B574 +:101190001B491C4C01220020C3F84001C3F8440144 +:1011A0000A641948D1F8405505601848DA600225EC +:1011B000CA60416825605A600B68026983B0019279 +:1011C0005A070BD5019B1B685B07836854BF1B69DB +:1011D000DB68042103B0BDE8304018470C490D4AD4 +:1011E0000D4840F28C6300F0A9FD0C4800F0A6FD0C +:1011F000084840F28C6100F097FD00BF009000406D +:1012000000A00040EC0F0020F00F002094E200004E +:1012100048E9000034E60000C8E6000088E9000064 +:1012200008B543090DD0012B25D017491748184A96 +:101230004FF46C7300F082FD15484FF46C7100F0B0 +:1012400073FD4FF0FF33C340D907EED503464FF08F +:10125000A04202EB830200F18050D2F800170D4B40 +:1012600000F5CC500B40800043F00C030121C2F884 +:101270000037016008BD00F01F0340F2FF32DA4082 +:10128000D207D2D5044AE4E728EA0000C8E6000005 +:10129000F4E90000F0F8FCFF0003005010B55B4BD0 +:1012A0004FF4007282B0C3F880211A600022052139 +:1012B000092003F081FA564C204608F079FF0028F7 +:1012C00000F08980D4E901321B68216901925B0733 +:1012D00040F18D800B6823F004030B60019B4FF4F9 +:1012E00020221B68022120469847002879DB0B202A +:1012F000FFF796FF4749484B012202204A6000242D +:10130000C1F80425C1F808050420CA60C1F84041AD +:101310005A60C3F80445C3F810054CF25030C3F8C6 +:1013200040050320C3F84425C3F808054FF4803076 +:10133000DA60C3F804033948C3F84041C3F84441B4 +:10134000C0F81025D0F81025354C42F43062C0F8B2 +:101350001025D0F8102503F5B03342F48032C0F8E0 +:101360001025D3F8002500F58040083042F0020235 +:10137000C3F80025C3F81845C3F81C05D3F80425A5 +:1013800042F00202C3F80425D3F8002504F54154C5 +:10139000043842F00402C3F80025C3F82045C3F81E +:1013A0002405D3F8042542F00402C3F80425D3F839 +:1013B0000025A0F56C6042F01002C3F80025C3F8C8 +:1013C0003005C3F83415D3F8042542F01002C3F8F1 +:1013D000042502B010BD134802B0BDE8104000F073 +:1013E00071BC114802B0BDE8104000F06BBC0F4961 +:1013F0000F4A104840F2FB3300F0A0FC0E4800F00A +:101400009DFC0B4840F2FB3100F08EFC00E100E057 +:1014100094E2000000A00040009000400060004006 +:10142000006100404CEA000068EA000048E9000062 +:1014300034E60000C8E6000088E9000010B5154C4D +:101440002368012B16D014484268036912685207BA +:1014500011D51B685B0783684FF0040154BFDB683C +:101460001B699847A42000210BF02EFA0B4A012398 +:101470002360136010BD0A490A4A0B4840F28C638E +:1014800000F05CFC094800F059FC064840F28C6111 +:1014900000F04AFCEC0F002094E2000000900040B5 +:1014A00048E9000034E60000C8E6000088E90000D2 +:1014B000034B186802280ABF024B40421868704765 +:1014C000EC0F0020F00F00208368B3F5004F00EB15 +:1014D000C10C0DD3DCF80C3099421FD0DCF8081099 +:1014E000043200EBC10C40F82230CCF80C300CE098 +:1014F000BCF80630994211D0BCF80410043200EB5D +:10150000C10C40F82230ACF80630826800EBC30012 +:10151000B2F5004F2CBF816081807047C368012104 +:101520009140043223EA01030021C36040F82210F5 +:10153000704700BF70B48668541AB6F5004F00EBD0 +:10154000C1034FEA4405A1EB02011FD35E685D6051 +:1015500001EB5601866800EBC2034D00B6F5004F63 +:101560002CBF5D605D808568B5F5004F2CBF40F8ED +:10157000324020F832408468B4F5004F0CD35B68E9 +:1015800002EB530370BC40F833107047B3F802C04D +:101590005D8001EB5C01DDE75B8802EB530270BC10 +:1015A00020F83210704700BF8368B3F5004F10B5C4 +:1015B00000EBC10100EBC20C19D3DCF804304C681D +:1015C0005B0803EB54035C004C608168B1F5004F8D +:1015D00006D3DCF8041002EB510240F8323010BDA3 +:1015E000BCF8021002EB510220F8323010BD4B88DB +:1015F000BCF802E05B0803EB5E034FEA430EA1F880 +:1016000002E0E2E78368B3F5004F00EBC1020AD2C3 +:1016100052880123DA400132D21AB2FA82F2C2F1C0 +:101620001F02FFF751BF52685208012A01D002235E +:10163000F1E7704730B58468B4F5004F00EBC102A4 +:1016400023D2538801255B0801335B1BB3FA83F374 +:10165000C3F11F0300EB830CDCF81050DDB9C56843 +:101660004FF0010E0EFA03F3B4F5004F45EA0305FF +:10167000C560CCF810102CBF916091808368B3F5E1 +:10168000004F2CBFD160D18030BD53685B08012B67 +:10169000FAD00225D8E700EBC50CB4F5004F2BBFFC +:1016A000DCF80830BCF80430936093808468B4F5AB +:1016B000004F2CBFD560D580826800EBC303B2F524 +:1016C000004F2CBFD960D9808368B3F5004F2CBF81 +:1016D000CCF80810ACF8041030BD00BFF8B5836832 +:1016E000B3F5004F04460D464FEAC10600EBC107B3 +:1016F00014D3796805EB510100EBC1035B68D8078F +:1017000036D5A159691A04EBC1035B68DB0714D510 +:1017100029462046BDE8F840FFF78CBF798805EBE5 +:10172000510100EBC1035B88DA0721D5A15B691A7F +:1017300004EBC1035B88DB07EAD42046FFF762FFB6 +:10174000A368B3F5004F2CBFA159A15B2046691ACD +:101750002A46FFF729FFA368B3F5004F2CBFA35912 +:10176000A35BED1A29462046BDE8F840FFF762BFAB +:101770002046FFF747FFA368B3F5004F2CBF7A68F8 +:101780007A88294605EB52022046FFF70DFFA36831 +:10179000B3F5004FB5D2A15B691A04EBC1035B88B6 +:1017A000C9E700BF2DE9F0418668B6F5004F2CBFB0 +:1017B00001F1FF330B46B3FA83F3C3F11F0200EBD1 +:1017C00082073D69A5B12C464FF0030CB6F5004FDA +:1017D00000EBC40E17D3DEF80480B1EB580F21D90B +:1017E000DEF80C403C61BCF1010C01D0A542EDD10A +:1017F000C268C3F120034FF0FF349C4014400AD16B +:101800002046BDE8F081BEF80280B1EB580F09D93F +:10181000BEF80640E6E794FAA4F2B2FA82F2131D8B +:1018200050F823402146FFF74FFE2046BDE8F081E7 +:10183000C1B310B500688368B3F5004F0C4618D2E9 +:101840000439091A21F007020244C908538813F029 +:10185000010F36D001EB530C30F83CE0ACEB0E0C32 +:101860008C4520D123F001035380BDE81040FFF7E1 +:1018700035BF0839091A21F007020244C908536824 +:1018800013F0010F1DD001EB530C50F83CE0ACEB12 +:101890000E0C614507D123F001035360BDE81040F1 +:1018A000FFF71CBF70470E4A0E480F49B72300F0E0 +:1018B00045FA0E48214600F041FA0948B72100F0E8 +:1018C00033FA074A07480A49AF2300F037FA0948B4 +:1018D000214600F033FA0248AF2100F025FA00BF9C +:1018E00084EA0000C8E60000F4EA00001CEB0000F7 +:1018F000A8EA0000BCEA0000F8B5056881B3AB684F +:10190000B3EBD10F2CD9B3F5004F34BF0423082318 +:10191000CC1D1C44E40821462846FFF743FFF8B1DC +:10192000AB68B3F5004F4FEAC00605EBC0070FD315 +:101930007B68B4EB530F15D343F001037B60AB68B6 +:10194000B3F5004F34BF042308231E44A819F8BD83 +:101950007B88B4EB530F05D343F001037B80EEE7A4 +:101960000020F8BD0444014622462846FFF7E2FD68 +:101970002146FFF75FFEAB68B3F5004F01D27B88CD +:10198000EAE77B68D8E700BF2DE9F8434E1E0768F9 +:101990000E40BB6814465ED0B3F5004FC1F100099C +:1019A00009EA01092CBF082204224A4506F1FF3149 +:1019B00028BF4A46314240F09080002C56D0B3EB0D +:1019C000D40F53D9E11DB3F5004F3144A1EB02010F +:1019D00034BF042308231944C9083846FFF7E2FE40 +:1019E0008046002842D0BB68B3F5004F34BF0422C4 +:1019F000082209EBC00515443D4406F1FF321544A9 +:101A0000B5FBF6F506FB05F5A5EB090534BF6FF050 +:101A100003016FF007012C4407342944C91B24F04B +:101A20000704E41BB0EBD10F4FEAE4044FEAD10600 +:101A30002DD3B3F5004F07EBC6081BD3D8F80430FD +:101A400006EB5302944236D343F00103C8F8043046 +:101A50002846BDE8F883B3F5004F34BF04220822BE +:101A6000914223D9B1460E46002CA8D10025284624 +:101A7000BDE8F883B8F8023006EB530294421AD35B +:101A800043F00103A8F802302846BDE8F883414638 +:101A900032463846FFF74EFD4146FFF7CBFDBB68A7 +:101AA000B3F5004F07EBC608E4D3C7E72146BDE80E +:101AB000F843FFF721BF314622463846FFF73AFD8B +:101AC0002146FFF7B7FDBB68B3F5004F02D2B8F867 +:101AD0000230D5E7D8F80430B6E70749074A084886 +:101AE0004FF4A27300F02AF9064800F027F90348E2 +:101AF0004FF4A27100F018F958EB000084EA0000DE +:101B0000C8E6000074EB0000B2F5802FF8B56AD289 +:101B1000042A88BF042340F29580D21ACC1D8D1868 +:101B200024F0070425F007052D1B172D4FEAD507D4 +:101B300079D9B5F5802F2CBF07F1FF323A46B2FABA +:101B400082F2C2F124064FF000034FEA860606F146 +:101B500007060460C4E902732CBF0223012303EBD0 +:101B6000D603BB42C2F120024FEAD6064CD89200FF +:101B7000002104F110000CF0C3FA7300BA1BB5F594 +:101B8000802F04EBC6014FEA420043F001032CD240 +:101B90006380002323804880A368B3F5004F2CBFE7 +:101BA00044F8366024F83660A1686319B1F5004F37 +:101BB0004FF000012CBF59605980A368B3F5004F66 +:101BC0002CBF62516253A268B2F5004F04EBC70309 +:101BD00010D35A6842F001025A6031462046BDE8EF +:101BE000F840FFF727BD082397E7636000232360D1 +:101BF0004860D1E75A8842F001025A8031462046B7 +:101C0000BDE8F840FFF716BD1649174A17484FF4CC +:101C1000037300F093F8164800F090F812484FF460 +:101C2000037100F081F813490F4A104840F2FB138A +:101C300000F084F80E4800F081F80B4840F2FB11E8 +:101C400000F072F80C49084A08484FF4F97300F0A4 +:101C500075F8074800F072F803484FF4F97100F086 +:101C600063F800BF00EC000084EA0000C8E6000052 +:101C7000B8EB0000D4EB000094EB000000207047AC +:101C8000014B1B68184700BF24060020014B186059 +:101C9000704700BF2406002000B585B000230093E4 +:101CA000CDE902330A46064B01934FF0020C014680 +:101CB00068468DF802C00BF0B9FF05B05DF804FB73 +:101CC000811C00000FB400B587B008AA002352F8A9 +:101CD000041BCDE90433CDE901234FF0020C064B80 +:101CE0008DF80AC002A803930BF0A0FF07B05DF8BF +:101CF00004EB04B0704700BF811C000080B50546AE +:101D00000E4614461F460AF08BFE03460CF064FA9A +:101D1000214604463046034E3A463351A847A0595F +:101D200002F0BCFC08000000002383F31188BFF31D +:101D30006F8F0423184602DF704700BF0FB400B551 +:101D400083B004A951F8040B0191FFF7A5FF03B07C +:101D50005DF804EB04B070472DE9F04F0546808B29 +:101D600010F0080C83B0144640F0518100F00702D7 +:101D70000229AB46CDF804C0154692B254D0DBF828 +:101D80001870002FC0F2E280511F012940F2078134 +:101D9000042A40F0898120F00702DBF8006092B24B +:101DA000ABF81C20002E00F03A8142F02002ABF884 +:101DB0001C205DB3DBF808504FF000084646C246D1 +:101DC000002D50D1002E4FD1BAF1000F1ED0354654 +:101DD0004AE0BAF1000F02D0BF495846D047EFF3AE +:101DE0001184202282F31288BFF36F8F48460BF0D4 +:101DF000BDF8002800F0198148460BF0DDF8BBF86B +:101E00001C2022F0080292B2ABF81C20D1064DD55E +:101E100022F0100290B2012100F0070202291546BB +:101E2000ABF81C0092B2AAD1002A71D1DBF80020D5 +:101E3000002A5ED0002D40F01681DBF81020D2F889 +:101E400000A0BAF1000F00F0238120F0070242F059 +:101E500006022E46ABF81C204FF006082F46DBF892 +:101E60000850002DAED0012542F008020BF11409F4 +:101E7000ABF81C2048460BF087F8002800F0E38000 +:101E800084F31188BFF36F8FBDB9002EA1D0304607 +:101E9000394650F8045B00F06FFB044618B3314636 +:101EA0003B4642465846A0472E46EEE7930620D5CD +:101EB00022F0200290B20221AEE7DBF808100029E0 +:101EC000E3D00C684D683B4642465846A847002C74 +:101ED000DBD0214624684D683B4642465846A84719 +:101EE000002CF6D1D1E72E46CFE7BBF81E60002EBE +:101EF00040D05D46143528460BF046F8002800F027 +:101F0000BE8084F31188BFF36F8F03B0BDE8F08FFC +:101F1000022AEAD0012AECD1DBF80020002AE8D01E +:101F2000012D40F0FD80DBF81020D2F808A0BAF1B6 +:101F3000000F00F0E98020F0070242F005020026C1 +:101F4000ABF81C204FF00508374688E720F0070261 +:101F5000019BDBF80060CBF8043042F00102ABF8E3 +:101F60001C20CBF800304FF00108454529D04FF038 +:101F7000000A74E7022D40F0A380DBF81020D2F8AD +:101F800004A0BAF1000F00F0D78020F0070242F061 +:101F90000402ABF81C204FF0040837465FE7019BB2 +:101FA000DBF80060CBF80430062ACBF800300FD005 +:101FB00020F007024FF0000892B24545ABF81C2014 +:101FC000D5D1002E3FF422AF4FF0000A55464BE723 +:101FD0004EB1BBF81E203146013292B2ABF81E2042 +:101FE00009680029F8D120F00701BBF81E0041F074 +:101FF0000202ABF81C2089B210B14FF00208B4E71E +:1020000041F02202ABF81C204FF00208ADE7012995 +:102010000CBF40F0100240F02002AA836AE7002DB6 +:102020003FF4F4AEB046B24619E72C4A2C482D498D +:102030008823FFF783FE2C484946FFF77FFE274899 +:102040008821FFF771FE2949244A254840F23113BF +:10205000FFF774FE49462648FFF770FE1F4840F21E +:102060003111FFF761FE23491D48234A4FF4AB733A +:10207000FFF764FE20484FF4AB71FFF755FE1B4994 +:10208000164A174840F23113FFF758FE2946E2E797 +:102090001A491348184A4FF4AD73FFF74FFE16481C +:1020A0004FF4AD71FFF740FE15490D48124A40F25A +:1020B0001B13FFF743FE104840F21B11FFF734FEDD +:1020C000104907480C4A40F25D13FFF737FE0A48F3 +:1020D00040F25D11FFF728FE61210000A8EC00002E +:1020E000C8E6000008ED000020ED0000D8EC00007C +:1020F000F0EC000054EC00002CEC000060EC000060 +:1021000098E8000078EC000011491248124A4FF498 +:10211000B473FFF713FE10484FF4B471FFF704FED9 +:102120000E490C480C4A4FF4B273FFF707FE0A48F9 +:102130004FF4B271FFF7F8FD05490648064A40F230 +:102140006113FFF7FBFD044840F26111FFF7ECFD5E +:1021500060EC0000C8E600002CEC000090EC0000F1 +:10216000F8B504460D4600F11406EFF3118720235D +:1021700083F31288BFF36F8F30460AF0F7FE50B139 +:1021800030460AF019FFA5613A4620460121BDE814 +:10219000F840FFF7E1BD074A074808498823FFF7E1 +:1021A000CDFD07483146FFF7C9FD02488821FFF7FA +:1021B000BBFD00BFA8EC0000C8E6000008ED000071 +:1021C00020ED000088B138B50C4659B10B684BB111 +:1021D0004B683BB10546202200210BF091FF2C619A +:1021E000002038BD6FF0150038BD6FF01500704746 +:1021F0002DE9F84F002800F08380894600297FD020 +:1022000001F1040A0446504600F0A4F9051E27D146 +:10221000D9F80830032B73D804F11408EFF3118BAD +:10222000202383F31288BFF36F8F40460AF09EFE8F +:10223000074600286AD040460AF0BEFEE38BA68B14 +:102240004FF6FF72934206F0070640D0022E3AD0B6 +:10225000062E49D8DFE806F008444848081C080064 +:10226000DADA2846BDE8F88F0023C9F80030636841 +:102270008BB3C3F80090C4F80490002E43D12046DD +:102280005A4602213546FFF767FD2846BDE8F88F1C +:102290006FF08505002740460AF076FE002843D0FF +:1022A0008BF31188BFF36F8F002FDAD050460021D7 +:1022B00000F062F907460028D3D03246494620464E +:1022C0000023B847CDE70133E3833546E3E76FF0FA +:1022D0000A050027DFE7C4F80090C4F80490CCE7B3 +:1022E0006FF004050027D6E717491848184A4FF43D +:1022F000E473FFF723FD16484FF4E471FFF714FD74 +:102300006FF01505ADE735460027C4E7114A0F48C1 +:1023100011498823FFF712FD10484146FFF70EFDD3 +:102320000C488821FFF700FD0A4A08480C4940F292 +:102330003113FFF703FD0B484146FFF7FFFC05484B +:1023400040F23111FFF7F0FC90EC0000C8E600000D +:102350002CEC0000A8EC000008ED000020ED0000CF +:10236000D8EC0000F0EC0000F8B5054600F11406CA +:10237000EFF31187202383F31288BFF36F8F30466A +:102380000AF0F4FD30B330460AF016FEAC8B04F0D0 +:102390000704022C10D1EB8B002B39D0013B9BB2F0 +:1023A000EB8383B130460AF0EFFD08B387F3118861 +:1023B000BFF36F8F2046F8BD012C0CBF6FF00404F3 +:1023C0006FF08504EEE728463A462146FFF7C4FC45 +:1023D0002046F8BD144A154815498823FFF7AEFC7E +:1023E00014483146FFF7AAFC0F488821FFF79CFCF0 +:1023F0000D4A0E48104940F23113FFF79FFC0F4879 +:102400003146FFF79BFC084840F23111FFF78CFC86 +:102410000B4906480B4A40F2EF13FFF78FFC0948BF +:1024200040F2EF11FFF780FCA8EC0000C8E60000C6 +:1024300008ED000020ED0000D8EC0000F0EC0000FA +:1024400038ED00002CEC0000F8B5002850D00C4608 +:1024500000294DD0054600F11406EFF31187202323 +:1024600083F31288BFF36F8F30460AF07FFD002898 +:1024700041D030460AF0A0FD2B68A98B43B19C42A5 +:1024800002D12CE09C4210D01A461B68002BF9D1D7 +:102490006FF0770430460AF077FD002839D087F3D3 +:1024A0001188BFF36F8F2046F8BD236813606B68F7 +:1024B0009C421BD0002201F0070322601A1F022A4F +:1024C0000BD91C491C481D4A40F22D23FFF736FC4E +:1024D0001A4840F22D21FFF727FC1C46DAE76A680C +:1024E00023682B609442E5D16B60E3E76A60E1E723 +:1024F0006FF01504D7E7124A0F4812498823FFF7F7 +:102500001DFC11483146FFF719FC0D488821FFF7E3 +:102510000BFC0B4A08480D4940F23113FFF70EFC43 +:102520000B483146FFF70AFC054840F23111FFF72E +:10253000FBFB00BF48ED0000C8E600002CEC0000EB +:10254000A8EC000008ED000020ED0000D8EC000031 +:10255000F0EC000030B1436803F00303012B07D017 +:10256000032B02D06FF0150070470368002BF9D0E1 +:10257000002383601846704708B54268816002F006 +:102580000302032A034603D1006800225A6008BDF3 +:102590004AB907490748084A4523FFF7CFFB0648D1 +:1025A0004521FFF7C1FB002000225A6008BD00BF93 +:1025B00098E80000C8E60000C0ED00002DE9F041F9 +:1025C000054688461646002700E024B36968E86897 +:1025D000EB696A690C1A9C4228BFE41AA1EB02025B +:1025E0002CBFC0182046A3EB0404A3EB020328BFB2 +:1025F000081AB34228BF33469C4228BF1C462B68AA +:102600000A196A604146224618440BF06BFD361BDE +:102610002744A044D9D1D5E90123D21A97420CD836 +:10262000EA68E9693B446B60AB609B1A8B4224BF4C +:102630005218EA603846BDE8F08105490548064A67 +:102640004923FFF77BFB04484921FFF76DFB00BFDF +:1026500014EE0000C8E60000E8ED000070B5034687 +:1026600080691E69DC69A6EB000E744598BF0019ED +:1026700015461A689ABFAEEB040EA6EB000CF446A2 +:10268000A4EB0E0002EB0C049A680C60921BAA42A9 +:1026900028BF2A461969904228BF10460144196193 +:1026A00070BD00BFD0E90423D21A8A420AD38269DE +:1026B0001944C3690161A1EB020C6345416104D96E +:1026C000002070476FF0150070471A448261F7E7E9 +:1026D0002DE9F0410546036988461646002700E0CB +:1026E0002CB3D5E906145A1AA24226BF121B0919A7 +:1026F0001146A4EB0204AA68D5F800C0A2EB0302BD +:1027000028BF591AB24228BF3246944228BF144605 +:1027100023442B61B8F1000F06D0404622466144A5 +:102720000BF0E0FC2B69A044361B2744D8D16A6922 +:102730009B1A9F420CD8A969D319EA692B616B6176 +:102740005B1A934224BF8918A9613846BDE8F0811D +:1027500004490548054A8E23FFF7F0FA03488E2105 +:10276000FFF7E2FA14EE0000C8E60000E8ED000012 +:10277000704700BF014B03600020704720EE00004F +:1027800010B5044603F0CEFB10F1780F00D088B9E5 +:1027900014F0700F0FD104F07F02230648BF1032EF +:1027A00001239340DB430549D1F8C4201A4000209F +:1027B000C1F8C42010BD4FF0FF33F4E7D808002063 +:1027C0002DE9F0471C4C1D4EB44225D819D21C4FA0 +:1027D00082468846914663687A6A93420DD3A5691A +:1027E0005DB199789AF8042091420ED05B79012B63 +:1027F00003D14A4641465046A8472434B4420BD838 +:10280000E9D36FF08500BDE8F0874A46414650465F +:102810002B46BDE8F04718470A490B4A0B484FF4CE +:10282000BB63FFF78BFA0A48FFF788FA06484FF4B4 +:10283000BB61FFF779FA00BF400800206408002060 +:10284000D808002054EE000020EE0000C8E600008A +:1028500078EE00002DE9F041154B164EB34218D822 +:102860000FD2154C676A5C68BC4206D31D6925B15E +:1028700094F802C00479A44507D02433B34208D8A1 +:10288000F1D36FF08500BDE8F0812B46BDE8F04143 +:1028900018470A490A4A0B4840F2BB53FFF74EFA61 +:1028A0000948FFF74BFA064840F2BB51FFF73CFAE4 +:1028B0004008002064080020D808002054EE0000E2 +:1028C00020EE0000C8E6000078EE00002DE9F0419F +:1028D000124C134DAC420DD806460F46904618D206 +:1028E000636923B1424639463046984798B124344B +:1028F000AC42F4D90B490C4A0C484FF4C163FFF7C2 +:102900001DFA0B48FFF71AFA07484FF4C161FFF7A9 +:102910000BFA6FF08500BDE8F08100BF4008002091 +:102920006408002054EE000020EE0000C8E600001D +:1029300078EE000043061FD010B5184B184CA34288 +:102940001CD817D29C464FF0080E9CF81C10DCF8DF +:10295000203051B11EFB013102E008338B4204D01C +:102960001A798242F9D1012010BD0CF1240CA44542 +:1029700004D8EAD3002010BD0120704709490A4A53 +:102980000A484FF47D73FFF7D9F90948FFF7D6F9E4 +:1029900005484FF47D71FFF7C7F900BF40080020DC +:1029A0006408002054EE000020EE0000C8E600009D +:1029B00078EE0000F0B5C4B283B020460E468DF824 +:1029C0000740FFF7B7FF054630B16306114F06D049 +:1029D00097F8BA301BB91D46284603B0F0BD204613 +:1029E0005EB103F00FFAFB69002BF5D00DF1070182 +:1029F00008209847284603B0F0BD03F02BFAFB6986 +:102A0000002BE9D00DF1070109209847284603B0B3 +:102A1000F0BD00BFD808002030B502794179847834 +:102A2000C37883B042EA012203F0030314F0700F6D +:102A30008DF80040ADF802208DF8043031D104F05B +:102A40007F03220648BF103301259D40184BD3F861 +:102A5000C4301D4208D0204600F07CFF2046FFF71E +:102A60008FFE08F027FFF0B1684603F0A7F910F1D8 +:102A7000780F00D090B99DF8000003F027FA10F10C +:102A8000780F00D050B90A4BD3F8C42001202A4354 +:102A900083F8B900C3F8C42003B030BD002003B0F0 +:102AA00030BD0025E0E7962009F040FFDCE700BFDD +:102AB000D80800202DE9F047A84EB36904460D461A +:102AC000174613B1984700286AD0237803F01F03F4 +:102AD000012B07D0022B50D0002B63D06FF01500D4 +:102AE000BDE8F08796F8BA30D7F80090002BF5D003 +:102AF000776AB4F8048097F800C05FFA88FEBCF1EA +:102B0000000FEBD062463B4603E013441A78002ADC +:102B1000E4D059780229F8D118797045F5D994F99B +:102B200000206378002AC0F289800B2BD6D14FF0A9 +:102B300000084FF0FF09C2464D460BE0052B03D1BC +:102B4000A388AB4200F041813B781F443B78002BC7 +:102B500000F031817B78042BF0D1BD78A38897F801 +:102B600003909D42F0D163889945EDD1072D40F245 +:102B70004481BA464FF00008E6E794F900206378F4 +:102B8000002A2DDB012B00F0B280032BA6D1638835 +:102B9000002BA3D1A0880121FFF70CFF00289DD0B6 +:102BA00000209DE794F9001038686278002932DB34 +:102BB000013A082A92D801A353F822F0DF2C000032 +:102BC000DD2A0000D12C0000DD2A0000C32C00000B +:102BD000DD2A0000DD2A0000DD2A00007B2C000039 +:102BE000002B7FF47BAF24793F682046FFF7A2FEDD +:102BF00000283FF473AF630604D096F8BA30002B78 +:102C00003FF46CAF3946204603F044F9002202231A +:102C10007A702B60C4E7062A7DD0082A00F09880DD +:102C2000002A7FF45BAF0123038096F8C3305B007A +:102C3000022243F0010303702A60B1E7002B00F089 +:102C4000A0800A2B07D049E7674497F800C0BCF181 +:102C5000000F3FF443AF7B78042BF5D1BB78984548 +:102C6000F2D1B8F1070F96BFB044002398F8BB30FB +:102C700089F8003001222A6092E76388756A002B88 +:102C800000F08A802B78002B3FF428AF4FF0FF082C +:102C90000020474606E0022B37D02B781D442B78C6 +:102CA000002B5DD06B78042B2CD0052BF3D16388DF +:102CB000BB42F2D1B8F1000FEFD12846FFF7ACFECE +:102CC000EBE7A07803F034F800283FF469AF05E79C +:102CD0006388012B7FF402AF86F8C33060E7638816 +:102CE000012B7FF4FBAE002386F8C33058E76188E0 +:102CF00000297FF4F3AEA088FFF75CFE00287FF484 +:102D00004FAFEBE695F80380C7E76F796388BB4266 +:102D100008BF0120C1E76088040A221F012AA446D7 +:102D20007FF6DCAE072C3FF6D9AE726A1178002927 +:102D30003FF4D4AEC6B204E00A44117800293FF44F +:102D4000CDAE5078A042F7D1B3421ED00133F3E7A5 +:102D500096F8BA20027001232B6021E7D8080020E2 +:102D600000283FF4BBAE2849F2690B604B606388D2 +:102D700086F8BA30002A3FF413AF01390320904798 +:102D80000EE7A9F8003029600AE7BCF1020F3A60AB +:102D90002BD013782B6003E71B49C6F8BB304B6080 +:102DA000F369628886F8BA20002B3FF4F9AE013946 +:102DB00003209847F4E6F36913B15146072098477A +:102DC000B8F1000F7FF4ECAE88E6A3784B450FD046 +:102DD00097F80280404600F0BDFD4046FFF7D0FC6A +:102DE000B0FA80F84FEA5818AEE653882B60D7E661 +:102DF0003846FFF711FE8046A6E67319BA4683F8F7 +:102E0000BB904FF001089FE693090020F0B51B4CE2 +:102E1000237D83B03BBBD4E902760425019601AB48 +:102E200032463946802003F0A3F80B3003D109F075 +:102E300003FC013DF3D1D4E9022301990A445B1A52 +:102E4000C4E902236BB961B12369E2889A4208DDC3 +:102E500094F8C82093FBF2F102FB11330BB9012364 +:102E6000237503B0F0BD00231A4619468020237550 +:102E700003B0BDE8F04003F07BB800BFD8080020E5 +:102E800030B585B000230193B0B90C4601B3454C71 +:102E9000D4E90212002A01AB68DD03F0B7F900287B +:102EA0006ADBD4E9022301990A445B1AC4E90223CC +:102EB000002B44D005B030BD802864D1394BDA688E +:102EC00012B91B7D002BF5D0FFF7A0FF05B030BD78 +:102ED00008220B460DEB020103F098F9002840DBB5 +:102EE000304DBDF80820DDF80A10BDF80E302A80FC +:102EF000C5F80210120605F13801C5E90344EB805C +:102F00002C75A96003D4802B36D8002B47D12B78A1 +:102F1000C3F341130A3355F8233013B3224A02F1A5 +:102F20000801A2F10800984700281ADBEB882A69FB +:102F30009342A8BF1346EB60FFF768FFBAE7237818 +:102F4000C3F341130A3304F1380254F82330A2606A +:102F50003BB104F1080204F1100120469847002813 +:102F6000B2DA802002F04EFF05B030BD024603F019 +:102F70004DF900289EDAF4E7802002F043FF00209C +:102F800002F040FF96E7094909480A4A4FF4C57321 +:102F9000FEF7D4FE07484FF4C571FEF7C5FEC5E93C +:102FA000033387E7D8080020E008002098E80000F5 +:102FB000C8E6000020EE00002DE9F04F042883B0A1 +:102FC00006460F461DD001281FD0474B474D0193A1 +:102FD000019BAB426AD80AD2434CE3681BB13A4624 +:102FE0003146204698472434AC425FD8F5D3404B55 +:102FF0001B6A002B51D03946304603B0BDE8F04F74 +:1030000018473C4B00221A605A60DFF8E4B09BF886 +:10301000B930002BD9D0344B344D01931C4600F00D +:10302000CBFCAC4251D834D2DDF8048098F81C3087 +:10303000D8F82090A3B34FF0000A544617E02306B7 +:1030400004F07F0148BF10310123DBF8C44003FACC +:1030500001F1C9430C400028CBF8C44019DB98F8B3 +:103060001C100AF1010A5FFA8AF4A14218D909EB8F +:10307000C404207902F056FF247914F0700FDED0DA +:10308000DBF8C4404FF0FF310C400028CBF8C440BF +:10309000E5DA00238BF8B9309AE703B0BDE8F08F8A +:1030A00008F12408A84510D8C0D3F2E71249134A02 +:1030B000134840F2EE43FEF741FE1248FEF73EFE93 +:1030C0000E4840F2EE41FEF72FFE0B490B4A0C482A +:1030D00040F2C243FEF732FE0A48FEF72FFE0748D1 +:1030E00040F2C241FEF720FE4008002064080020A4 +:1030F000D80800209309002054EE000020EE0000C4 +:10310000C8E6000078EE00002DE9F84381468846C5 +:1031100017461E46042533463A464146484602F0C5 +:1031200027FF10F10B0F044603D109F085FA013D8A +:10313000F1D12046BDE8F8832DE9F041044682B084 +:10314000554D56484FF0FF334FF0FF3207F0ACFBC0 +:1031500095F8B830002B40F08D806E6A002E58D064 +:103160004F48C5E9070403F09BF802F0D7FD041EA1 +:1031700048DB00F045FC041E44DB7378012B76D15C +:10318000F379002B73D00026684685F8C830ADF877 +:1031900002308DF804608DF8006002F00FFE041E0E +:1031A00030DB802768468DF8007002F007FE041EB1 +:1031B00028DB3C49304603F039F8041E22DB39494C +:1031C000384603F033F8041E1CDB374BDFF8DC8095 +:1031D000434552D830D2344F3B7F3E6A43B300243C +:1031E000234604E03A7F0134E3B29A4220D906EB49 +:1031F000C30256F83310107903F018F80028F1D004 +:103200004FF0FF34254807F02DFC204602B0BDE802 +:10321000F08100F09DF8264A264BEB62C5E90902D1 +:10322000254B264A2A630646AB61002898D1E7E77A +:103230002437474521D8CFD3002002F047FE041E93 +:10324000E0DBD5F8C430802043F00103C5F8C4307A +:1032500002F03CFE041ED5DBD5F8C430012243F455 +:103260008033C5F8C43085F8B8200024CAE76FF071 +:103270001504C7E76FF07704C4E71149114A1248F3 +:103280004FF4C363FEF75AFD1048FEF757FD0D4893 +:103290004FF4C361FEF748FDD80800204007002026 +:1032A000B92F0000812E0000400800206408002093 +:1032B000B52A000055280000C1270000CD280000D5 +:1032C00054EE000020EE0000C8E6000078EE00009A +:1032D00030B51D4D1D4C0FCD8BB00DF1140CACE86D +:1032E0000F0000232A688CF80020CDE90133CDE9D6 +:1032F0000333C4E90033C4E902332382102101A857 +:1033000005F0A0F900281CDD0828B8BF08200938FE +:1033100001AA2346104404F1100510F8012F02F011 +:103320000F010AAC283104EB12126944023312F87F +:10333000144C11F8142C03F8024CAB4203F8012C86 +:10334000EBD102480BB030BD98EE0000F40F002026 +:10335000AB4B1B780BB1AB4870472DE9F04FA94C34 +:1033600087B0237883B34FF000094FF00117C846A8 +:103370004E46CDF804906378052B00F28A80DFE892 +:1033800003F0039C99038A2EB8F1030F00F0D0805C +:10339000B8F1000F40F03281B9F1000F00F0A480C5 +:1033A000A4EB0903C3F3072289F80230019B89F8D3 +:1033B000032089F80430217808F101085FFA88F8C1 +:1033C0000C442378002BD6D18F4B02349C42C8D1B9 +:1033D0008B4A8C480123137007B0BDE8F08F002E94 +:1033E00000F08280307F00287ED00021CDE9029855 +:1033F0004FF0010AB0460E4602E00136864273D213 +:10340000D8F82030A27803EBC60B9BF80430934227 +:10341000F3D101250EE00AFA05F33B4206D14B46F3 +:1034200004A88DF8103002F0B3FC08B30135102D5C +:1034300055D0A278E37803F003038DF81430237994 +:103440006179120643EA0123ADF812305FFA85F97B +:10345000E1D505F110030AFA03F33B42E6D149F046 +:10346000800304A88DF8103002F092FC0028DDD112 +:103470009DF81020A270DC4613064646CB46DDF8C8 +:103480000C80DDF808908CF8042048D40123AB4070 +:103490001F43217894E7E378002BFAD1A378002B1F +:1034A00000F08A80019B217803F1010B5FFA8BF316 +:1034B000019385E72178A14682E74FF0000A402377 +:1034C00004A88DF810A0ADF812308DF814A002F009 +:1034D0005FFC58B9BDF812302178E37170E798F8B5 +:1034E0001C00013686428BD3002075E7082304A810 +:1034F000ADF8123002F04CFC0028EBD04349444AAE +:103500004448ADF812A040F28F13FEF717FC424872 +:10351000FEF714FC3E4840F28F11FEF705FC0BF15C +:103520001003DBB2012202FA03F321781F4347E7BD +:10353000FFF7CEFEA51C824650B1FCF7E3FF38B181 +:10354000102802465146A8BF102228460AF0CAFD9C +:1035500021784FEA510C0229ACF102037FF62CAF1F +:10356000CA1EACF1030001F1030EA0EB52000231C0 +:103570002B442844AEEB050E491B00250AE0A3EBC3 +:103580000C0298420EF8125093F801A001F812A014 +:103590003FF411AF13F80129203A5E2AEFD91F49F1 +:1035A0001B4A1C48CB23FEF7C9FB1D48FEF7C6FB90 +:1035B0001748CB21FEF7B8FB1A4E1B4A964206D895 +:1035C00092D273689C4211D024369642F8D917499A +:1035D0000F4A10484FF49B73FEF7B0FB1448FEF7F8 +:1035E000ADFB0B484FF49B71FEF79EFBB368002BBD +:1035F0003FF458AF01992046984753E7A51CA7E729 +:10360000481A0020780700203F080020E4EE000060 +:10361000ACEE0000C8E60000F0EE000018EF00007D +:1036200050EF0000400800206408002054EE000025 +:1036300078EE0000006848B150F8043C5B688B42AB +:10364000A0F1040002D040680028F5D1704700BF07 +:10365000006858B150F8043C5B685B689B788B420B +:10366000A0F1040002D040680028F3D1704700BFE9 +:103670000068C8B100B504384FF0080E03685B68F5 +:103680001A7F1B6A5AB11EFB023C01E0634506D05B +:103690001A798A4203F10803F8D15DF804FB406807 +:1036A0000028FAD00438E9E7704700BF2DE9F0415F +:1036B00050F8283C10F82C5C103382B0044622D11C +:1036C000036950F8202C980739D522B9590760D4DE +:1036D00043F00403236154F8241C01AB2846FFF790 +:1036E00013FD00284ED154E90913019A9B1A114485 +:1036F00044E9091354F81C3C134444F81C3C54F8A6 +:10370000283C103311D054F81C6C54E9067808F0AA +:10371000D1F868B944F8180CA4F1100007F0F8FBD0 +:103720001FB1424631462846B84702B0BDE8F08195 +:1037300021461D4807F07EFF02B0BDE8F08154F835 +:10374000241C01AB284602F095FCD8B954E90923A2 +:10375000019F54F81C6C3A44DB1B3E4444E90923A6 +:1037600044F81C6CE7B1284602F0A0FDB7FBF0F36B +:1037700003FB107797B954F8203C7BB1284602F040 +:10378000C5FCBCE76FF0150354F81C6C44F8283CEA +:10379000BBE754F81C6C44F8282CB6E754F81C6CB2 +:1037A000002344F8283CB0E7B0090020094B03F59A +:1037B00080711A78824204D040338B42F9D10020C4 +:1037C00070475A68002AF7D0103214BF0020012039 +:1037D000704700BF08100020F0B51B4F83B00546AE +:1037E0000E463B4600241A78AA4212D00134042C1B +:1037F00003F14003F7D1012E09D101AB01220DF1F4 +:103800000301284602F036FC019B002BF5D103B0E2 +:10381000F0BD5A68002AE9D0731E012BF7D808F0D2 +:1038200049F807EB841707F12C0138B1012E05D0B8 +:10383000064803B0BDE8F04007F0FCBE084603B000 +:10384000BDE8F040FFF732BF08100020B0090020AB +:103850002DE9F04F3C4F83B09046064601919946C2 +:10386000BC4607F580729CF80030B34223D00CF1BF +:10387000400C9445F7D1EFF3118B202383F312888A +:10388000BFF36F8FDFF8C4A000250022002350464D +:1038900007F0D8FB0446C8B10135042D0AF1400AEF +:1038A000F3D16FF00B048BF31188BFF36F8F2046B9 +:1038B00003B0BDE8F08FDCF80440002CD7D014F141 +:1038C000100FD8D1204603B0BDE8F08F07EB851369 +:1038D000AD015A6812F1100F2FD0019A9A600C9A1C +:1038E0005A610D9A9A61C3E903806FF00F02304666 +:1038F0007E55C3F83C905A60019302F0D7FC68B93A +:1039000019F0020F05D02C357919114807F092FEF5 +:10391000C9E7304602F0FAFB0446C4E7304602F03D +:10392000C5FCB8FBF0F202FB1082002AE8D0019B34 +:10393000DA6B42F00402DA63E2E70192504607F0E4 +:10394000E7FA019A1446AEE7081000202410002080 +:10395000B009002038B5EFF31185202383F31288D6 +:10396000BFF36F8F124C0022234693F800C08445AA +:1039700009D00132042A03F14003F6D185F31188FE +:10398000BFF36F8F38BD59680029F2D01031F5D1DF +:1039900004EB821319466FF08B022C3105485A60F4 +:1039A00007F048FE85F31188BFF36F8F38BD00BF65 +:1039B00008100020B0090020F8B50F4C202704F5AE +:1039C0008076EFF3118587F31288BFF36F8F54F879 +:1039D000283C103307D085F31188BFF36F8F403434 +:1039E000B442EED1F8BD6FF08B03214644F8283C79 +:1039F000024807F01FFEEEE734100020B009002057 +:103A000070B5094C094E04F580753146204607F023 +:103A10007BFD0122A4F110001146403407F06CFA3E +:103A2000AC42F2D1002070BD34100020AD36000051 +:103A30004B1CDBB28170817680F82530C37600F8AC +:103A4000061C704750E90231D0F89C00184700BFAF +:103A50000369002283F84A20704700BF036993F886 +:103A60004A0010B193F8480000B97047D3F890208D +:103A700053685169D0695B1AC01A70470369002204 +:103A800083F84B20704700BF036993F8490008B1E1 +:103A900093F84B00704700BF0169D1F8902050693E +:103AA0005368D2691B1A9A4204BF002381F8483038 +:103AB000D1F88C301A699B689A4204BF002381F8C0 +:103AC00049300120704700BF0369C3E90012704705 +:103AD0000229036906D0042910D0012909D06FF00A +:103AE0008500704793F89B30C3F3400313600020B8 +:103AF0007047D3F8943013600020704793F89B30E0 +:103B000003F00103F2E700BF01690B68012281F8AD +:103B10004B2013B191F8493003B97047014808317F +:103B200007F088BDB009002001690B68012281F807 +:103B30004A2013B191F8483003B970470148083161 +:103B400007F078BDB009002030B514460A1E83B0D6 +:103B5000054616DDD4F88C0004F14C01FEF72EFD6D +:103B60002368012284F8492013B194F84B30F3B94B +:103B7000D4F88C305A685969DB69521A9B1A3F2B6A +:103B800010D994F89E300BB903B030BD0B4B4022D6 +:103B9000CDE9003404F14C0101232846FFF758FE1B +:103BA00003B030BD012384F8A03003B030BD04F170 +:103BB0000801034807F03EFDDAE700BF493B00007B +:103BC000B009002070B50569EFF31186202383F357 +:103BD0001288BFF36F8FD5F89000FEF7EFFC044614 +:103BE00086F31188BFF36F8F08B9204670BD00229D +:103BF000002305F11801024807F0D0FD204670BDF2 +:103C0000B009002070B51446136801220D4684F8EF +:103C1000482013B194F84A30BBB9D4F890301A69EF +:103C20009B689A421CD004F118013DB9BDE8704070 +:103C3000114840F6CD42002307F0B0BDBDE870400A +:103C40000D480022002307F0A9BD0B4804F108012C +:103C500007F0F0FCD4F890301A699B689A42E2D1E0 +:103C60004DB904F118010448BDE8704040F6CD425A +:103C7000002307F093BD70BDB009002070B5044665 +:103C80000E46017915481546FFF7E2FC10B394F98A +:103C900000206378002A06DB202B10D0222B0AD0CC +:103CA0006FF0850070BD212BFAD1103807232860F2 +:103CB0003360002070BD638800F8093CF9E72B6889 +:103CC0001A6840F8102C9A889B7900F80A3C20F872 +:103CD0000C2CEEE76FF0120070BD00BFA8090020A9 +:103CE00008B501460348FFF7C3FC10B1012300F8F3 +:103CF000073C08BDA809002038B50E4B0469596877 +:103D0000C4F8A400002504F1A802C4F8A85069B1C1 +:103D10000A605A6004F10800074907F0F5FB04F156 +:103D20001800064907F00CFD002038BDC3E9002249 +:103D3000F0E700BFA8090020453A0000413D00001F +:103D4000F0B5D0F88C305B681B6A1E7D85B00446E8 +:103D50003046FFF72BFD10B994F886300BB905B04B +:103D6000F0BD05464FF48062A06F03A9FEF776FC14 +:103D700007460028F3D083060A4B039984F8305095 +:103D800008BF00F1FF37A4F11802CDE90032304638 +:103D900002233A46FFF75CFDA06F3946FEF782FC2E +:103DA00005B0F0BD053C000070B5046982B0002389 +:103DB0008DF8071084F84830202609E007F07AFDD6 +:103DC00010BB94F8A130FBB12120002108F07CFD4C +:103DD000EFF3118586F31288BFF36F8F0122D4F8B9 +:103DE00090000DF10701FEF7E9FB85F31188BFF3A1 +:103DF0006F8F0128E2D12122002304F11801064827 +:103E000007F0CCFC02B070BD044B1A78002AF2D146 +:103E100001221A70EFE700BFB0090020491A002004 +:103E200030B5002385B081F89D300D46016AADF8AC +:103E30000C204FF40030029008790A4C42F2A101A4 +:103E400001910A2201A9FFF75FF904E0012006F0C1 +:103E500087F9013C03D095F89D30002BF6D005B0D2 +:103E600030BD00BFA186010010B54029046913468A +:103E700060D019D801391F2913D81F2911D8DFE8BC +:103E800001F03B1010101010103E10101010101008 +:103E9000104D1010101010101010101010101010E5 +:103EA00010326FF0120010BDB1F5807F4BD0B1F52C +:103EB000007F0DD194F89C2002F0BF02002B36D178 +:103EC00084F89C2001694068FFF7AAFF002010BD1C +:103ED0008029E6D194F89C2002F0EF02002BEFD06D +:103EE00042F01002ECE794F89C2002F0FB02002B59 +:103EF000E6D042F00402E3E7C4F89430E6E794F831 +:103F00009C2002F0FE020BB142F0010284F89C20DA +:103F1000016940680122FFF783FFD7E794F89C20EE +:103F200002F0FD02002BCBD042F00202C8E742F0C3 +:103F30004002C5E794F89C2002F0F702002BBFD0A6 +:103F400042F00802BCE794F89C2002F0DF02002B4C +:103F5000B6D042F02002B3E7036993F8492012B1CA +:103F600093F84B2032B993F84A0010B193F8480007 +:103F700010B9704701207047D3F8903058685A69DB +:103F8000DB69801AC01A18BF0120704770B5046938 +:103F900082B00546D4F88C00FEF79AFB94F8A03066 +:103FA000064673B1D4F88C104B684A699A1ACB69EB +:103FB0009B1A3F2B05D994F89E302BB9002384F827 +:103FC000A030304602B070BD6B68064A196A012302 +:103FD000087BCDE9002404F14C014022FFF738FCB6 +:103FE000ECE700BF493B000070B5046982B00546AC +:103FF0000122D4F88C00FEF76BFB94F8A030064643 +:1040000073B1D4F88C104B684A699A1ACB699B1A21 +:104010003F2B05D994F89E3043B9002384F8A03093 +:10402000701E18BF4FF0FF3002B070BD6B68064ABB +:10403000196A0123087BCDE9002404F14C014022D8 +:10404000FFF706FCE9E700BF493B000070B50246F8 +:1040500082B00D462C481146FFF7ECFA68B10368B0 +:10406000691E04465D68052907D8DFE801F00806E7 +:1040700024080345012300F8053C02B070BD234A23 +:1040800092E8030000230A0C44F8100C24F80C1CDE +:1040900004F80A2C19464022A4F1580024F8063CE2 +:1040A00024F85C3C24F8093C04F8043C02B0BDE868 +:1040B00070400AF025B810F8063C002BDDD1012332 +:1040C00000F8063C296A124A087BA4F1A406CDE94F +:1040D0000026A4F158014022FFF7BAFB14F85C2C2B +:1040E000002ACAD12B6A0B49187DCDE9001602239C +:1040F0001146FFF7ADFBC0E710F8053C002BBCD024 +:10410000002300F8053CB8E7A809002020E50000DE +:10411000493B0000053C000030B5094D094983B01A +:10412000002400944FF0FF334FF48062284607F0DC +:1041300091FA0549284607F0C3FB204603B030BD7D +:10414000B0090020801A0020ACEF000008B5044838 +:10415000FDF7B8FDBDE808400248FDF7B3BD00BF5C +:10416000B8EF0000F0EF0000012801D1EFF3058364 +:1041700006F036B801460068012801D1EFF3058347 +:1041800006F02EB808B500F005F8BDE8084000F0CC +:1041900025B800BF30BFFFF7FDBF00BF2DE9F041DC +:1041A0000B4EDFF8308006EB0807CC1B0546324685 +:1041B0000949204609F096FFA01942460021083C13 +:1041C00009F09EFF2C6707F10800BDE8F08100BFF1 +:1041D000000000000400000018E50000074A936892 +:1041E00093F90E10002907DB5269934204D0044A68 +:1041F000536843F080535360704700BFFC190020A0 +:1042000000ED00E0F8B5314B9C6A15469A6A14F04F +:10421000100F14BF1124102412F0080F9A6A18BF4F +:104220001224960707D55F6B9A6A14062BD46FF099 +:104230001507132401E06FF01507244B9A6A12F05A +:10424000010F9A6A18BF142412F0200F9A6A18BF3F +:104250001524D10602D49B6A9A0703D51B4E7368B6 +:104260001B0517D4194B9A6A920603D55A6A22F491 +:1042700000525A62154A936A002143F0FF03936289 +:1042800029702046F8BD0029D3D09A6A22F0800216 +:104290009A62CEE70146384600F0FEFA88B9B36A62 +:1042A000D906DFD50A490B4A0B4840F22D13FDF71A +:1042B00045FD0A48FDF742FD064840F22D11FDF785 +:1042C00033FD80F309880224CCE700BF00ED00E055 +:1042D00054F0000020F00000C8E60000A0F000004C +:1042E00010B4144B9A6A996A12F0007F9A6A9C6A19 +:1042F00014BF1E201D2011F0807F18BF1F2012F454 +:10430000002F9A6A996A18BF212014F4802F18BFD1 +:10431000222012F4003F9A6A6FEA02426FEA1242C8 +:1043200018BF23209A6211F4803F18BF242010BCCC +:10433000704700BF00ED00E010B41A4A936A946A17 +:1043400013F4805F14BF1723162314F4006F946ACC +:1043500018BF1823A40509D5936B936A1B0404D5D1 +:1043600018B1936A23F40043936219230D4A946AA7 +:10437000906A14F4806F18BF1A23C40510D4926A8F +:1043800012F4005F0CBF18461C20064A936A43F4DF +:104390007F4393624FF0000C10BC81F800C070475F +:1043A0001B20F2E700ED00E070B5734B8AB05B684C +:1043B0004FF0000C8CF31188BFF36F8F02F07F4435 +:1043C000B4F17F4F17D102F00C04082C13D014075E +:1043D0004BBF0C4604466546012564B1C3F3080390 +:1043E0000022033B8DF80720032B00F28880DFE8D2 +:1043F00003F0316874116149614A62484FF4856382 +:10440000FDF79CFC6048FDF799FC5D484FF4856121 +:10441000FDF78AFCFFF764FF064620686168A26822 +:10442000E3680DF1080CACE80F0020696169A2692E +:10443000E369ACE80F00002D5AD0C3F3080240F244 +:10444000FF110AB90B43099302A93046FFF78CFE0E +:104450000AB070BD484BDE6A16F002064FD1DA6A28 +:10446000002ADADBDA6A520068D55A69A16942F497 +:1044700080725A61BFF34F8FBFF36F8F5A6931F863 +:10448000021C22F480725A61BFF34F8FBFF36F8F0B +:104490004DF60272914234D09A6AD2B2002A36D1D5 +:1044A0009A6A12F47F4F3ED19B6AB3F5803F54D392 +:1044B000FFF716FF9DF807300646002BADD00AB077 +:1044C00070BD0DF1070200212046FFF79BFE9DF80D +:1044D00007300646002BF2D19FE70DF107010020BF +:1044E000FFF72AFF9DF807300646002BE7D194E737 +:1044F000099B23F4FF7323F001030993A4E700262B +:104500008BE79DF807302668002BD8D185E70DF1A1 +:10451000070201212046FFF775FE9DF80730064689 +:10452000002BCCD179E70DF107010120FFF704FF43 +:104530009DF807300646002BC1D16EE71349104A9B +:10454000104840F2FE23FDF7F9FB1148FDF7F6FB9A +:104550000B4840F2FE21FDF7E7FB0C49084A0948E9 +:1045600040F2FA23FDF7EAFB0A48FDF7E7FB0448AF +:1045700040F2FA21FDF7D8FB00ED00E0C4F00000A6 +:1045800020F00000C8E60000D8F0000098E8000025 +:104590003CF1000018F10000044B5A6942F010028F +:1045A0005A615A6922F008025A61704700ED00E032 +:1045B000EFF30880EFF3098101B57246FFF7F4FECF +:1045C00001BD00BF002080F31488BFF36F8F0F4838 +:1045D00080F3088804F08CFB00200D490860BFF3CD +:1045E0004F8F00F019F8202080F3118809484FF40C +:1045F0000461401880F30988EFF314800221084316 +:1046000080F31488BFF36F8F00F00CF9C0300020E6 +:1046100094ED00E00023002072B6002383F313889A +:104620001C4AD2F8900010F47F4FC0F3072107D046 +:104630001846C2F8983001339942C2F8A000F8D168 +:10464000154B4FF0FF32C3F88020C3F88420C3F825 +:104650008820C3F88C20C3F89020C3F89420C3F8B6 +:104660009820C3F89C20C3F88021C3F88421C3F8A4 +:104670008821C3F88C21C3F89021C3F89421C3F892 +:104680009821C3F89C2162B6BFF34F8FBFF36F8FA1 +:10469000704700BF00ED00E000E100E00A4B9B68BE +:1046A000834201D008F0C2B9EFF30583002BF9D0A3 +:1046B000064B5A6842F080525A605A6A22F400420D +:1046C0005A6208F0B3B900BFFC19002000ED00E009 +:1046D00015498A684FF030001044EFF3098C80E8E8 +:1046E000F01F202080F31288BFF36F8F0F4F4FF021 +:1046F00000664A698A603E604FF0700414192068B1 +:104700000B4C2060506F0023536780F3118804B571 +:10471000104600F04BF9BDE8044002F1300090E88B +:10472000F01F8CF309887047FC19002004ED00E0AD +:10473000081100201EF0040F0CBFEFF30880EFF308 +:104740000980816911F8021C0229FFD001B5724667 +:10475000FFF710FD01BD00BF40B2002807DB044A8F +:104760004109012300F01F00834042F821307047C7 +:1047700000E100E040B200280CDB4309064900F0EC +:104780001F0020330122824041F82320BFF34F8FC6 +:10479000BFF36F8F704700BF00E100E0054B420997 +:1047A00000F01F0053F82220012303FA00F010400C +:1047B000704700BF00E100E038B54B1C072B0446F2 +:1047C00011D840B25B010028DBB206DB00F160408B +:1047D00000F5614080F8003338BD0B4A00F00F004F +:1047E0000244137638BD094A09480D465823094941 +:1047F000FDF7A4FA0848294607232246FDF79EFA4A +:1048000002485821FDF790FAFCEC00E06CF1000042 +:10481000C8E60000A4F10000C0F100000021012062 +:10482000FFF7A2BC0B4A08B50B4B22F07F029A603F +:10483000BFF34F8FBFF36F8FD3F8882022F470023D +:10484000C3F8882005F0BAFD08F0BEFB00F084F83C +:1048500005F0C0FD0000000000ED00E010B401997B +:1048600042F81C1C029942F8181C0A4942F8203CE4 +:1048700021F00101039B42F8081C42F8143C4FF060 +:104880008074A2F12001002342F8044C10BC0165A1 +:1048900043677047FD1C0000094B9B6802466BB1E3 +:1048A00012F1160F186E05D0A0F14003934205D8FF +:1048B000824203D2814228BF002070470020704707 +:1048C000FC19002008B50A4C036FA0601546094A80 +:1048D0000E46136000F06AF82C4686F30988002023 +:1048E000054B98472046002100220023034C204717 +:1048F000FC1900200811002001490000FD1C0000E7 +:1049000061B662B680F31188BFF36F8F704700BF46 +:10491000014B10221A61704700ED00E072B60023CF +:1049200083F31188BFF36F8FBFF34F8F30BF62B631 +:10493000BFF36F8F704700BF72B6002383F31188F7 +:10494000BFF36F8FBFF34F8F20BF80F31188BFF38A +:104950006F8F62B6704700BF044800232021C21841 +:104960000133302B82F80013F9D1704700E100E0E9 +:1049700008B5EFF30583064A103B02EBC30152F87A +:1049800033004B689847BDE80840FFF727BC00BFDD +:10499000E4E20000024B034A0348012100F018B88A +:1049A000000002200000002000F2000010B4026E9F +:1049B000054B064C9C604020403AC3E90020012191 +:1049C00010BC184600F072B80C11002000000B1546 +:1049D0002DE9F0472F4F3C78002953D00E4601EBCC +:1049E000410E2D49002200F1040C00F108085CF88A +:1049F0002250002D42D01F2D50F8223011D8EA212C +:104A0000264A2748397040F26F132649FDF796F978 +:104A100025483146FDF792F9204840F26F11FDF725 +:104A200083F905F1FF3945EA030A1AEA090FE6D1CD +:104A3000202D58F822A02AD0B5F1004F24D8B9FA79 +:104A400089F9C9F11F094FEA49094AEA0905D1F86C +:104A50009090C9F30729E4B209F1FF394C45CED84B +:104A600023F01F03234343F0100345F00105C1F871 +:104A70009840C1F89C300134C1F8A050033272450F +:104A8000B5D13C70BDE8F0874FF03E09DDE74FF04F +:104A90000809DAE74A1A002000ED00E00CF20000F5 +:104AA000C8E6000098E800003CF200002DE9F84359 +:104AB000334B1A7800293ED0324E0D4601EB4107A8 +:104AC0004FF0000C00F1040E00F1080825E0B3F1EE +:104AD000004F2ED8013BB3FA83F3C3F11F035B00F1 +:104AE000D6F89090C9F30729D2B209F1FF394A45A7 +:104AF00041EA030134D824F01F04144344F01004A5 +:104B000041F00101C6F89820C6F89C400132C6F871 +:104B1000A0100CF1030C67450DD05EF82C30002B73 +:104B2000F7D0202B50F82C4058F82C10CFD8082361 +:104B3000D6E73E23D4E71349D1F89030C3F30723D7 +:104B400093420BDD0020C1F89820C1F8A000D1F8F5 +:104B500090300132C3F307239A42F4DBBDE8F883B7 +:104B6000094A0A480A494FF4C773FDF7E7F80948AC +:104B70002946FDF7E3F804484FF4C771FDF7D4F870 +:104B80004A1A002000ED00E00CF20000C8E6000028 +:104B900098E8000068F200002DE9F04FB74CB849E2 +:104BA000D4F890300D68C3F307239D4285B000F21E +:104BB0004181BFF35F8F0022C4F89420ADB14968F2 +:104BC000C4F898200B6823F01F03134343F010032D +:104BD0000C31C4F89C3051F8043C013243F001031D +:104BE000AA42C4F8A030EBD1D5B2DFF8988203A86E +:104BF00088F80050FDF7BEFD002800F0188198F8F5 +:104C00000010039CA04E9D4DDFF880B2DFF880A21B +:104C1000DFF88092019100270A46BE4635E0B3F5E1 +:104C2000001F00F08E80B3F5800F67D1D4E9011327 +:104C3000202B40F2EC80B3F1004F00F2EA80013B00 +:104C4000B3FA83F3C3F11F034AEA4303D5F890C0D4 +:104C5000CCF3072C0CF1FF3C62453DD821F01F013D +:104C60001143C5F8982041F0100143F001030132CF +:104C7000C5F89C10D2B2C5F8A03001270EF1010E84 +:104C8000704504F1100400F08E80D4F80CC00CEADA +:104C90000603B3F5000F44D0C1D9B3F1807F72D0C1 +:104CA000B3F1007FEAD1D4E90113202B40F2AD80AB +:104CB000B3F1004F00F2AF80D5F890C0013BB3FADA +:104CC00083F3CCF3072CC3F11F030CF1FF3C5B0013 +:104CD000624543F48023C1D90FB188F800206E49A2 +:104CE0006E4A6F484FF4E873FDF728F86D48FDF7FA +:104CF00025F86A484FF4E871FDF716F8B3F5801F00 +:104D0000BCD1D4E90113202B7DD9B3F1004F00F2BF +:104D10008680013BB3FA83F3C3F11F0349EA4303DF +:104D200094E7D4E90113202B6BD9B3F1004F74D869 +:104D3000013BB3FA83F3C3F11F035B0043F08273BB +:104D400084E7D4E90113202B59D9B3F1004F68D877 +:104D5000013BB3FA83F3C3F11F034BEA43031CF097 +:104D6000010F3FF473AF0FB188F800204E494B4A52 +:104D70004B487423FCF7E2FF4C48FCF7DFFF474841 +:104D80007421FCF7D1FFD4E90113202B35D9B3F1FD +:104D9000004F48D8013BB3FA83F3C3F11F035B0014 +:104DA00043F0887352E70199002F3ED088F8002025 +:104DB0003249D1F89030C3F307239A420BDA00202E +:104DC000C1F89820C1F8A000D1F890300132C3F3A7 +:104DD00007239342F4DC294B0522C3F89420BFF348 +:104DE0004F8FBFF36F8FD3F89030C3F30723082B97 +:104DF00034D1002005B0BDE8F08F2D4B26E72D4BB8 +:104E0000ADE72D4B22E72D4B20E72D4B1EE72D4B19 +:104E10001CE72D4B1AE72D4B18E72D4B16E72D4BB2 +:104E200014E72D4B9BE72D4B10E70A46C0E798F897 +:104E30000020BDE7194A184919484FF4D373FCF70D +:104E40007DFFD4F8902026482946C2F30722FCF7BC +:104E500075FF12484FF4D371FCF766FF21490F4AE2 +:104E60000F484FF40673FCF769FF1F48FCF766FF15 +:104E70000A484FF40671FCF757FF00BF00ED00E051 +:104E8000C4F300004A1A00200000F0FF00000811DF +:104E90000000020700000B1198E800000CF200006F +:104EA000C8E6000024F30000CCF20000F4F2000099 +:104EB00008001001080008110800040108000B1187 +:104EC00008000400080002073E0002073E0004003C +:104ED0003E0004013E000B113E0008113E0010018F +:104EE00098F2000050F30000A0F3000008B5024B58 +:104EF0001B689847002008BD18110020034A044988 +:104F00009378086043F00203937070478006002096 +:104F10001811002008B50649064821F00701C1F123 +:104F2000005202F50032FCF7EFFD002008BD00BF83 +:104F3000C73F00201C110020024B0122C3F840256E +:104F40000020704700E0014020B1034B800143F096 +:104F500001031847704700BF30E50000020600F06B +:104F60007F030ED4082B02D010F0780F07D1020770 +:104F700000F00F0318D40D4800EB431070470020D9 +:104F80007047082B0AD010F0780FF8D100F00F030B +:104F9000074A4C2000EB431010447047010700F013 +:104FA0000F03F5D50348704703487047BC0B00203A +:104FB000500A00209C0B0020BC0C002010B51248A9 +:104FC00082B001F06DFF114B98421AD1104804F0E5 +:104FD000C3FE00240F4804F0F1FE0F490F4800946F +:104FE0004FF0FF334FF4806206F034FB0C490B485E +:104FF00006F066FC0B480C4906F086FA204602B023 +:1050000010BD6FF00400FAE7895A00000000AD0BF4 +:10501000ECF40000E8F40000C01E0020E00C0020CA +:10502000F4F30000780A002029530000064C0749D9 +:10503000074808B522464FF4E373FCF77FFE4FF4B0 +:10504000E3712046FCF770FE00F4000098E80000D1 +:10505000C8E600002DE9F047484C4FF0000827460D +:105060002546C1464FF0010A0DE007EB46132035F7 +:10507000B8F1080F83F808A083F8099083F80A9024 +:1050800085F84B9012D0EB6DC5F8589008F10306E7 +:10509000C5E9183307EB461208F10108937A002B93 +:1050A000E3D095F8550002F071F9DEE7DFF8D09013 +:1050B0004FF0090800264FF0010A0BE007EB4513FB +:1050C0002034B8F1110F83F808A05E729E7284F844 +:1050D0006B611AD0D4F87C3108F1030507EB451257 +:1050E00008F101086BB1C4E96033C4F87861937AC0 +:1050F00009F14009002BE1D094F8750102F046F95E +:10510000DCE7C4F87C914B46EDE7D7F85C3197F8C3 +:105110006A21C7F85861C7E9583302BBD7F87C3217 +:105120000022012187F8681187F86B2187F869212F +:1051300087F86A21EBB197F88A220021C7E9A033EA +:10514000C7F8781282B90020012387F8883287F8DF +:105150008B0287F8890287F88A02BDE8F08797F802 +:10516000550102F013F9D9E797F8750202F00EF92C +:10517000E9E7044BC7F87C32DDE700BF500A0020A6 +:10518000281500202811002070B582B03448354D14 +:1051900005F082FB002002F0F9FE00220346012107 +:1051A0002720EB61FFF708FB04F028FEFFF752FF12 +:1051B000044610B9012385F824302B4B1B681BB122 +:1051C0002A492B4806F036FA4FF08043D3F838349A +:1051D000DB0711D527480022002301A905F0D8F9E3 +:1051E00068B90199012308740B721F48496005F0E2 +:1051F00005FE95F8243053BB204602B070BD1A4D11 +:105200001C4E00220023284605F004FE50B14168E0 +:10521000304605F051FA00220023284605F0FAFD39 +:105220000028F4D113480022002301A905F0B0F9A9 +:10523000A0B901990C48496004230B7405F0DEFD08 +:105240000A490B4806F0F6F9204602B070BD07493E +:10525000074806F0EFF9204602B070BDFFF7E6FE02 +:10526000880A0020500A002064070020780A0020E5 +:10527000E00C002020070020022800D9704730B53C +:10528000234983B00C5C23480023002201A905F0C8 +:105290007FF9034698B901991F480B7449600C7255 +:1052A00005F0ACFD1D4991F824300BB903B030BDB9 +:1052B0001B48283103B0BDE8304006F0BBB9164C9E +:1052C000144D00220023204605F0A4FD50B1416892 +:1052D000284605F0F1F900220023204605F09AFD4A +:1052E0000028F4D10B480022002301A905F050F951 +:1052F00060B901990848496004230B7405F07EFDEC +:105300000849074806F096F903B030BDFFF78EFE56 +:10531000E4F400002007002064070020500A002069 +:10532000E00C0020780A00202DE9F04FBC4DBD4F65 +:10533000BD4E85B0804600220023284605F06AFD58 +:105340000446002800F0828097F82520237C002A5C +:1053500035D1002B7DD1237A042B2BD8DFE813F035 +:10536000780130010F012A002A0004F04FFD02F0FD +:1053700027F801F0EBFB00220023284605F04AFD48 +:1053800050B14168304605F097F9002200232846C5 +:1053900005F040FD0028F4D1FFF75CFE002840F046 +:1053A0005C8204F02BFDA14801F07AFDA04B9842ED +:1053B00040F047826168304605F07EF9BBE7042B78 +:1053C000F8D801A252F823F09B57000011540000B6 +:1053D000DD5300002B5400006B53000008F110094E +:1053E0004FF0FF324FF0FF33484605F05DFAFFF70C +:1053F00031FE484605F036FB58F8283C002BD9D042 +:105400000021012098476168304605F055F992E780 +:10541000D4F80890B9F1000F00F00782237B032B2A +:10542000C8D8DFE803F039852E1B97F87432002BBB +:1054300040F03B8158F8283C002BBBD000210A20CB +:1054400098476168304605F037F974E705B0BDE864 +:10545000F08F6168744805F02FF96CE799F80A300D +:1054600023B999F81F30002B00F0AC8199F809009E +:10547000D9F80030022198476168304605F01CF9E0 +:1054800059E799F80900D9F8003001219847616877 +:10549000304605F011F94EE799F80A20002A40F04D +:1054A000B581D9F814A0634BCAF80020CAF80420CB +:1054B000D3F880148AF80010D3F884148AF8011005 +:1054C000D3F88814D3F88CC441EA0C21AAF802104E +:1054D000D3F89014D3F894C441EA0C21AAF804102C +:1054E000D3F89814D3F89C34082041EA0323AAF88F +:1054F0000630C9F80C00DAF80000DAF804104E4B58 +:1055000003C31146D9F8003099F8090098479AF971 +:105510000030002B04DBBAF80630002B40F0698124 +:105520000023A7F88C326168304605F0C5F802E721 +:1055300099F81D30002B3FF43DAF99F81C30002B3B +:105540003FF438AF4FF0000A89F81DA089F81CA07D +:105550004FF0FF324FF0FF33384805F0A5F9D9F886 +:1055600014300193D9F80430CDE9023A01A999F831 +:10557000090001F0EBFC314805F074FA1AE7DFF896 +:10558000A49009F5807BCA4603E00AF1200AD345BE +:105590000BD09AF85420002AF7D09AF855000AF157 +:1055A000200A01F0D1FFD345F3D11E4B93F85421CB +:1055B000002A00F0A38093F8550101F0C5FF9DE09B +:1055C00001F0C8FB814600287FF4F4AE01F0DEFA5A +:1055D000BFF35B8F1A49012351E8002F002A03D142 +:1055E00041E800300028F7D1BFF35B8F7FF4E2AED3 +:1055F00041F8089C7B61F86941F8109C1439FCF76C +:10560000F7FD0028BFF6D6AE0E490F480F4A40F20C +:10561000AA23FCF793FB0D4840F2AA21FCF784FB78 +:1056200064070020500A002020070020895A00004B +:105630000000AD0B00700240540A0020880A0020D0 +:10564000700A002080F40000C8E6000000F40000AA +:105650004FF0000987F8259001F0B2FEBFF35B8F91 +:105660008B4951E8003F012B03D141E80092002A09 +:10567000F7D1BFF35B8F0CD1D7F81C901439484693 +:10568000FCF7E2FE10F1780F00F098800028C0F2DD +:10569000F0803B68002B3FF48DAE0021042098473A +:1056A0006168304605F008F845E64FF00109794891 +:1056B00087F8899201A90022002387F8889204F0D4 +:1056C00067FF00283FD10199734881F8109081F855 +:1056D0000C90DFF8C891C1F80890496005F08EFB86 +:1056E000A9F511716E4805F0A5FFA3E699F87501BB +:1056F00009F1200901F028FFCB4507D099F8742162 +:10570000002AF3D109F12009CB45F7D1654B93F875 +:10571000743293B9002001F0E9FA62490B68012262 +:1057200081F82520002B3FF445AE00210220984748 +:105730006168304604F0C0FFFDE55A4B93F87502EE +:1057400001F002FFE6E7DFF85091DFF848A1002200 +:105750004846002305F05EFB50B14168504604F016 +:10576000ABFF00224846002305F054FB0028F4D18B +:10577000484801A90022002304F00AFF002840F055 +:10578000848001994448496004230B7405F036FB7A +:105790004549434805F04EFF4CE6237A042B3FF67B +:1057A00009AE01A252F823F051560000C155000085 +:1057B0007F550000DF570000FD5700004846FCF70A +:1057C000D3FD63E74FF0FF324FF0FF33374805F06A +:1057D0006BF801F0FBFC354805F044F946E601F0B2 +:1057E000C3FA3B68002B3FF4E5AD00210520984744 +:1057F000E0E5A7F88C3201F0E3FCDBE53B68002B29 +:105800003FF4D8AD002106209847D3E52849294A1E +:1058100029484FF43973FCF791FA2848FCF78EFABF +:1058200024484FF43971FCF77FFA25492248214A70 +:105830004FF44B73FCF782FA1E484FF44B71FCF7A0 +:1058400073FA20491C481B4A40F28D43FCF776FA54 +:10585000184840F28D41FCF767FA1B491648154A73 +:1058600040F28643FCF76AFA124840F28641FCF7A0 +:105870005BFA164910480F4A40F2C223FCF75EFA61 +:105880000C4840F2C221FCF74FFAFFF7CFFB00BFF4 +:10589000700A00202007002064070020BC0C0020B4 +:1058A000E00C0020500A0020780A0020880A00201E +:1058B0003CF4000000F40000C8E6000064F40000BE +:1058C00034F4000098E80000E4EE000080F40000EA +:1058D000F0B58578044685B02846FFF73FFB2D06D6 +:1058E000E67807461AD4E6B1012E18D161480022A5 +:1058F000002302A904F04CFE002843D102995E481F +:1059000049607E770E740E738F6005F077FA5B49FD +:105910005B4805B0BDE8F04005F08CBE0EB305B0A5 +:10592000F0BD54480022002303A904F031FE0028F2 +:1059300050D10399496094F90220A378002A65DBCD +:105940001A0769D403F00F0303EB83039B0003F1F1 +:10595000804303F51C33D3F80807F86001220223C3 +:105960000CE044480022002301A904F011FE0028A5 +:1059700062D10199012249600323B8773E480A7435 +:105980000B73C1E73C4C3B4D00220023204605F041 +:1059900041FA50B14168284604F08EFE00220023EF +:1059A000204605F037FA0028F4D1324800220023BF +:1059B00002A904F0EDFD00285AD102992E48496051 +:1059C00004230B7405F01AFA2C492D4805F032FE19 +:1059D00005B0F0BD284C274D00220023204605F0DD +:1059E00019FA50B14168284604F066FE00220023EF +:1059F000204605F00FFA0028F4D11E4800220023AB +:105A000003A904F0C5FD98BB0399D7E7180707D58C +:105A10001C4BD3F8A806A0E71A4BD3F8A8079CE7BD +:105A200003F00F0303EB83039B0003F1804303F5B3 +:105A30001C33D3F8080690E70F4C0E4D00220023CC +:105A4000204605F0E7F950B14168284604F034FEDD +:105A500000220023204605F0DDF90028F4D1054896 +:105A60000022002301A904F093FD08B90199A5E7DC +:105A7000FFF7DCFA2007002064070020780A0020E6 +:105A8000E00C002000700240F0B502788BB00023DB +:105A9000013ACDE90533CDE907330993052A4CD8FE +:105AA000DFE802F04F4D0303635204238DF81C30EE +:105AB000002403AD904800220023294604F068FD2D +:105AC000A0B907AA039B92E8030003F108025B60F8 +:105AD0001C7482E803008948194605F08FF988494B +:105AE00088480BB0BDE8F04005F0A4BD834C824E61 +:105AF00000220023204605F08DF950B14168304660 +:105B000004F0DAFD00220023204605F083F9002886 +:105B1000F4D1794800220023294604F039FD0028F9 +:105B200040F0DB8003997548496004230B7405F04D +:105B300065F97349734805F07DFD0BB0F0BD032393 +:105B4000B4E7022403ADB5E7867804463046FFF794 +:105B500005FA837A0546D3B1013B022BEDD82046E6 +:105B60000BB0BDE8F040FFF7B3BE03AD284601F02F +:105B700005FB9DF80D30052B03D0634B07930124E3 +:105B800098E79DF80C3013F0600FD6D0F5E7330698 +:105B9000E77812D42FB3012FCFD15748002200232A +:105BA00001A904F0F5FC00283CD101995348496053 +:105BB0006F770F740F738D608FE7002FBDD14E4844 +:105BC00000220023694604F0E3FC002863D1009919 +:105BD000012203234960A87748480A740B738D603B +:105BE0007BE745480022002302A904F0D1FC0028ED +:105BF00035D1029E01220223766032743373B56080 +:105C0000A07805F10C0101F031FA002867D13F4A74 +:105C1000E968B2F88C328B4259D8A2F88C02374826 +:105C200031465AE7354C344D00220023204605F01A +:105C3000F1F850B14168284604F03EFD00220023EF +:105C4000204605F0E7F80028F4D12B480022002375 +:105C500001A904F09DFC00283FD1019963E7274C7E +:105C6000254D00220023204605F0D4F850B14168AC +:105C7000284604F021FD00220023204605F0CAF842 +:105C80000028F4D11C480022002302A904F080FC63 +:105C900018BB029947E7194C174D002200232046F4 +:105CA00005F0B8F850B14168284604F005FD00221F +:105CB0000023204605F0AEF80028F4D10E4800225B +:105CC0000023694604F064FC38B900992BE75B1A9D +:105CD000A2F88C3201F074FAA1E7FFF7A7F90C499A +:105CE0000C480D4A40F29D33FCF728F80A4840F270 +:105CF0009D31FCF719F800BF200700206407002041 +:105D0000780A0020E00C0020BC0B0020500A002084 +:105D100098E80000C8E6000000F40000034B93F888 +:105D200024300BB100207047FFF72EBA500A002034 +:105D300008B5114B93F82420D2B193F82530BBB1AC +:105D40000E4BD3F87034DBB2834208BF002000D181 +:105D500008BD0B490B4A0C4840F25953FBF7EEFFC4 +:105D60000A48FBF7EBFF074840F25951FBF7DCFF0D +:105D70006FF0120008BD00BF500A00200070024002 +:105D80008CF4000000F40000C8E60000C8F4000035 +:105D90000378027903F00F011AB921B943F3C00067 +:105DA0007047082902D94FF0FF307047012AF5D11A +:105DB00083F0080343F3C000704700BF38B5104BB1 +:105DC00093F82430C3B1057804462846FFF7C6F897 +:105DD00078B1457223798372638843602078618843 +:105DE000030702D44B1E0B4203D100F0F3FF002047 +:105DF00038BD6FF0150038BD6FF0120038BD00BF20 +:105E0000500A002038B5124B93F82420E2B193F8E1 +:105E10002530CBB10546FFF7A1F8044688B1837A57 +:105E2000012B0ED00AD9023B012B02D8284601F0E3 +:105E300049F96369A3610020E06038BD01F0CCF945 +:105E4000F7E76FF0150038BD6FF0120038BD00BFE6 +:105E5000500A002038B50E4B93F82420A2B193F8D5 +:105E600025308BB10446FFF779F850B114F00805DE +:105E700007D1204601F062F9204601F0A3FB284635 +:105E800038BD6FF0150038BD6FF0120038BD00BF8F +:105E9000500A002038B50C4B93F8242072B193F8C7 +:105EA00025305BB105460C46FFF758F848B144B1C0 +:105EB000284601F025F92070002038BD6FF012004F +:105EC00038BD6FF0150038BD500A002070B5144E73 +:105ED00096F82430D3B10546FFF740F80446D8B110 +:105EE0002B0708D5237AA3B90123237296F825300E +:105EF00043B9002070BD284601F020F9284601F082 +:105F000061FBEFE7284601F01FFBF2E76FF012009C +:105F100070BD6FF0770070BD6FF0150070BD00BFF1 +:105F2000500A002038B50546FFF718F8E0B1037AAB +:105F30000446B3B1284601F0D9FA0023A377A17F24 +:105F400022696261A261E36039B9002001232377ED +:105F5000E07760772072A07738BD607A01F016FA9A +:105F6000F3E76FF0770038BD6FF0150038BD00BF64 +:105F70002DE9F043DFF8F0901E4699F8243085B003 +:105F8000002B66D099F82530002B62D010F0800FDE +:105F900080465BD00F461546FEF7E0FF044600281A +:105FA00054D0037A002B51D04FF0FF3309F1380061 +:105FB0004FF0FF3204F078FCA37F002B4CD1A37A82 +:105FC000EDB9E27F002A3AD0E57733B30123019798 +:105FD000A3770027404601A9CDE9025700F0B6FF9C +:105FE000224B984227D0A77706B137606FF00404A0 +:105FF0001F4804F037FD204605B0BDE8F083002BB4 +:10600000E4D1B9F80A30AB4207D96268B5FBF2F3C4 +:1060100002FB13530BB90123E37701F0E3F880454A +:10602000D4D001F0D3F8124804F01CFD002420461F +:1060300005B0BDE8F08306B135600024D8E7002B39 +:10604000C4D101F0CFF88045C0D0EAE76FF0150465 +:10605000D1E76FF01204CEE709F1380004F002FD39 +:106060006FF00A04C7E700BF500A00200000AD0B24 +:10607000880A00202DE9F041224C1F4694F8243074 +:10608000002B3BD094F82530002B37D0030632D4B8 +:106090000D46164669B3FEF761FF044658B3037A0E +:1060A0004BB34FF0FF3318484FF0FF3204F0FCFBC6 +:1060B000E368B342984628BFB046A5B14246A169FD +:1060C000284608F00FF8A269E3684244A3EB0803EE +:1060D000A261E3600FB1C7F800800B4804F0C2FC76 +:1060E0000020BDE8F081002EE8D1002FF5D03B6004 +:1060F000F3E7002ACFD06FF01500F2E76FF012003F +:10610000EFE700BF500A0020880A002070B5394D23 +:1061100095F8242082B0002A67D095F82520002A1F +:1061200063D003461B065DD4FEF718FF0446002823 +:1061300058D0037A002B55D04FF0FF334FF0FF3289 +:1061400005F1380004F0B0FBE3682BB9012626778F +:10615000637F6269A2612BB9274804F083FC0020A9 +:1061600002B070BD25480022002301A904F010FAF6 +:1061700068B9019922480E748C600E73496004F06E +:106180003DFE05F128011F4805F054FAE4E71C4CD8 +:106190001A4D00220023204604F03CFE50B1416815 +:1061A000284604F089FA00220023204604F032FE3B +:1061B0000028F4D111480022002301A904F0E8F9D5 +:1061C000B0B901990E48496004230B7404F016FE1F +:1061D0000D490C4805F02EFA074804F043FC6FF017 +:1061E0000B00BDE76FF01500BAE76FF01200B7E7DC +:1061F000FEF71CFF500A0020880A0020200700201C +:1062000064070020E00C0020780A002070B50546E5 +:106210000C461646FFF72EFF38B924B12846BDE8D4 +:106220007040FFF773BF002EF8D170BD1A4B93F882 +:1062300024206AB310F0800F00F07F0212D1082AE8 +:1062400002D010F0780F0AD100F00F0200071DD421 +:1062500003EB421303F5B6731960002070476FF02B +:1062600015007047082A0AD010F0780FF7D100F017 +:106270000F0203EB42134C3300201960704700F00B +:106280000F020007F5D503F5A673E5E7034BE3E737 +:106290006FF01200704700BF500A0020BC0C0020B5 +:1062A000014B1860704700BF500A0020184B93F84C +:1062B000242052B3010600F07F0211D4082A02D034 +:1062C00010F0780F09D1010700F00F021BD403EB87 +:1062D000421303F5B673586870476FF015007047A6 +:1062E000082A09D010F0780FF7D100F00F0203EB65 +:1062F00042134C335868704700F00F020007F6D580 +:1063000003F5A673E7E7034BE5E76FF0120070476C +:10631000500A0020BC0C0020064C0749074808B56D +:1063200022464FF4D773FBF709FD4FF4D77120468F +:10633000FBF7FAFCF0F4000038F50000C8E60000B6 +:10634000064C0749074808B5224640F2C113FBF73F +:10635000F5FC40F2C1112046FBF7E6FCF0F400002A +:1063600038F50000C8E60000064C0749074808B5A4 +:10637000224640F28153FBF7E1FC40F28151204676 +:10638000FBF7D2FCF0F4000038F50000C8E600008E +:106390004FF08053D3F830310D2B12D0254A012312 +:1063A000C2F80035D2F800341B05FBD54FF08053FE +:1063B0004FF40061D3F83031C2F800140D2B13D024 +:1063C0007047EFF31182202383F31288BFF36F8F9E +:1063D000194BD3F8001C19B30321C3F8141D82F321 +:1063E0001188BFF36F8FD9E7EFF31181202383F377 +:1063F0001288BFF36F8F104BD3F8002C3AB10022F4 +:10640000C3F8142D81F31188BFF36F8F704749F2E1 +:106410007530C3F8000CC3F8142DC3F8000CF1E775 +:1064200049F275310320C3F8001CC3F8140DC3F8FA +:10643000001CD4E70070024000E006402DE9F04F58 +:10644000B24BD3F8542187B03AB10022C3F854219B +:10645000D3F80413890200F19681AC4BD3F8607134 +:1064600037B10022C3F86021D3F86C74C3F86C74A0 +:10647000A64BD3F82821002A78D1A54E96F80080A3 +:1064800096F9005008F00F04082C00F20C8318F065 +:1064900008024DD1002D4FEA8403C0F264819D496A +:1064A00051F82400002840F0858137B39A4C9B4D69 +:1064B000DFF86CA24FF001084FF0060997FAA7F138 +:1064C000B1FA81F1226808FA01F31A430F2908464C +:1064D00027EA03072968226038DC0B400BD160F003 +:1064E0007F008DF81600DAF800208DF814908DF8F2 +:1064F000173005A89047002FE0D1844BD3F8002136 +:10650000002A40F01781814BD3F85821002A40F02F +:10651000C5807E4BD3F85C31002B40F0DF817E4C90 +:106520007E4D2A6823681A4233D107B0BDE8F08F48 +:10653000002D764BC0F20C81D3F85021002AB4D044 +:106540000022C3F85021D3F8A8373CE10B42D2D146 +:1065500010388DF81600DAF800308DF814908DF8A8 +:10656000178005A89847002FA8D1C6E76D4A0021DB +:10657000C3F82811137803F00F02082A00F2918261 +:10658000DB43C3F3C01302EB0312012393401F4309 +:1065900073E765480022002304F054FD0028C4D1AD +:1065A0005A4BD3F82C35002B40F04E822368D5F897 +:1065B00000A001931AEA030700F0468217F00123B6 +:1065C00000F07E8193FAA3F2B2FA82F20F2A174604 +:1065D00040F33081A2F11003DBB2DFF850E103EBAE +:1065E000430C0EEBCC0898F80C20002A00F07382C4 +:1065F00013F008020292B8F814B0444A40F0A081A7 +:1066000003F5947152F82110594500F27C825EF82E +:106610003C202AB102F06042B2F1005F40F0678294 +:10662000D8F80400884280F09E815EF83C900022F9 +:10663000594500F081810020B9F1000F00F00A8275 +:106640008A42C0F09C8140F014824FFA83FC1D46C0 +:1066500010B9002188F80C103370D8F810301344AA +:10666000C8F810300121019B01FA07F723EA070758 +:10667000029B2760002B40F05581BCF1000FC0F257 +:10668000B381224805EB850300EB83030A35C3F889 +:106690000097C3F8042740F8251046E70022C3F806 +:1066A0005821D3F80044C3F80044E70508D5204A30 +:1066B0001B4B0121117002221B68059205A8984707 +:1066C000A50508D51A4A164B0021117003221B6834 +:1066D000059205A8984764057FF51BAF144B1A78FF +:1066E000002A3FF416AF094AD2F82C05002840F0E2 +:1066F000CC81187001210A4BC2F80815042091655D +:106700001B68059005A8984703E700BF007002408A +:106710004C1A0020307102401C190020181900206A +:10672000201900204D1A002054070020681700206F +:106730004E1A0020B848B949B94C0022C3F80021CC +:1067400002700A7001222368059205A89847DAE6CC +:10675000D3F82C21002A3FF4A8AE0022C3F82C2144 +:10676000D3F8A8362FE0AF4951F8240000283FF4B1 +:106770009CAE5A5023449B0003F1804303F51C3325 +:10678000D3F808361FE08DF81420D3F82025ADF893 +:106790001620D3F8C014A44CA14A2368126800291B +:1067A00014BF4FF001214FF480710B4305A8236003 +:1067B000904752E65A5023449B0003F1804303F56F +:1067C0001C33D3F80837994A117803F001034B4082 +:1067D0001370974804F09CFB04EB4403002D4FEA30 +:1067E000C30311DB934A13449A7D032A00F0DB8034 +:1067F0001B7B002B00F0E180B8F1000F7FF455AE59 +:106800008D4B0122DA6450E68C4A13449A7D032AA8 +:1068100000F0CB801B7B002B7FF447AE884D01221C +:106820002B68A24023EA0203B8F1880F2B607FF4A3 +:106830003CAECCE007F00F05082D4DD87F4B05EBA3 +:10684000450203EBC2084FEAC20A98F80C20002A5E +:1068500000F04181D8F8042002921146B8F81420C3 +:1068600053F80AB08A4228BF0A460BF06041B1F1E2 +:10687000005F00F0CC80402A00F221817148039231 +:10688000594607F02FFCDFF8BC91039A6B4B029935 +:10689000881A02EB0B01C8F8040043F80A10D8F874 +:1068A000081007F0080EC90747F0800367F07F0C57 +:1068B000CDF808E07FF5CCAE002A7FF4CDAEC8E677 +:1068C00097FAA7F3B3FA83F30F2B1F46B2DD103B01 +:1068D000DBB2082B7FF681AEFFF71EFD544B9B68A1 +:1068E0001BB9337858063FF41AAE534B4E4C544DF7 +:1068F0000022C3F85C21D3F88034484A23F07F0398 +:10690000137023682A6823F4803343F0010322F0D4 +:1069100001122360424B2A6005221B68059205A8DC +:106920009847FEE5BCF1000F434B6ADBC3F8A09724 +:10693000C3F8A4279964F8E5003818BF01207BE666 +:10694000D2F8C014CA037FF55FAE5EF83C20002A7F +:106950005FD002F06042B2F1005F40F0C880D8F82A +:106960000400002201E0401A0A465EF83C90C8F894 +:10697000040009EB02014EF83C10114658E68DF870 +:106980001630274B1A680123BB402AEA03032B6009 +:10699000022388F816308DF8173006238DF814304E +:1069A00005A8904702E61034E4B2254D01222B6879 +:1069B000A24023EA02032B6077E5214D04F1100188 +:1069C0002B68C9B201228A4023EA02032B60062207 +:1069D000134B8DF8142000221B688DF816808DF85B +:1069E000172005A8984760E5134B05EB850003EBDE +:1069F000800003EB8503C0F80096C0F804265960B8 +:106A000093E5C3F8A096C3F8A42659628DE5D9464C +:106A10003DE7D8F80400A8E74E1A00204D1A0020E0 +:106A200020190020087102401C1900204B1A002078 +:106A30005407002068170020007002404018002012 +:106A40001819002028170020354807B0BDE8F04F7E +:106A500004F05EBA002A3FF4F8AD32493248334AB6 +:106A60004FF45A73FBF76AF930484FF45A71FBF749 +:106A70005BF92F492C482D4A40F27933FBF75EF938 +:106A80002A4840F27931FBF74FF92A492648274A2C +:106A900040F2F523FBF752F9244840F2F521FBF7C9 +:106AA00043F9FFF74DFC24491F48204A4FF49173E6 +:106AB000FBF744F91D484FF49171FBF735F91F4975 +:106AC00019481A4A4FF4C173FBF738F917484FF4C5 +:106AD000C171FBF729F91A491348144A40F2573398 +:106AE000FBF72CF9114840F25731FBF71DF9154916 +:106AF0000D480E4A4FF4B273FBF720F90B484FF4E0 +:106B0000B271FBF711F910490748084A40F26313C4 +:106B1000FBF714F9054840F26311FBF705F900BFD4 +:106B2000540700204CF60000C8E60000F0F4000016 +:106B300060F6000094F5000038F50000D4F5000080 +:106B4000B8F50000FCF50000E4F5000008B50A4BBC +:106B50001A78012A04D1094900220A601A7008BD76 +:106B600007490848084A40F27443FBF7E7F806482B +:106B700040F27441FBF7D8F84F1A0020201900208A +:106B80007CF60000C8E60000F0F400002DE9F041BA +:106B9000494C2378012B40F08280484E4FF400632B +:106BA0004FF08055C6F80034FFF7F2FBD5F83031CE +:106BB0000D2B1FD0414A4249424D43488026C2F81E +:106BC0001C650126C2F83065002340F2FF122B60DD +:106BD00003700A603D4A9268B24254D13C48022197 +:106BE0004FF0805203702170D2F830210D2A17D057 +:106BF000BDE8F081374F3B78C3BBEFF31182202310 +:106C000083F31288BFF36F8F334BD3F8001C19B393 +:106C10000321C3F8141D82F31188BFF36F8FC9E7F6 +:106C2000EFF31180202282F31288BFF36F8F2A4A7C +:106C3000D2F8001C39B1C2F8143D80F31188BFF3BB +:106C40006F8FBDE8F08149F27533C2F8003CC2F89D +:106C5000141DC2F8003CF0E749F275310320C3F877 +:106C6000001CC3F8140DC3F8001CD4E74FF0000853 +:106C7000C6F80085FFF78CFB87F80080D5F8303127 +:106C80000D2BBAD096E715491548164A4FF495636F +:106C9000FBF754F813484FF49561FBF745F8124998 +:106CA0000F48104A40F27C43FBF748F80D4840F289 +:106CB0007C41FBF739F800BF4F1A002000700240FA +:106CC0001C190020181900204B1A0020540700201E +:106CD0004D1A00201007002000E00640A8F6000032 +:106CE000C8E60000F0F400007CF6000010B5114B7F +:106CF0001B78022B11D11049104B114C114A00285E +:106D000008BF0B46002111702720C4F80033FDF79F +:106D100023FD0123C4F8043510BD0B490B480C4A70 +:106D200040F2DC43FBF70AF8094840F2DC41FAF78D +:106D3000FBFF00BF4F1A0020FDFFDF01FDFFFF0139 +:106D4000007002404E1A0020D0F60000C8E6000095 +:106D5000F0F40000034B1878012894BF00200120B4 +:106D6000704700BF4F1A002010B54FF0FF324FF0B0 +:106D7000FF33154804F066F9EFF31182202383F303 +:106D80001288BFF36F8F114B1B784BB9002482F32D +:106D90001188BFF36F8F0C4804F0BAF8204610BD7D +:106DA0000B4903F0FF04D1F8003413F40073EDD164 +:106DB0000120C1F82C05D1F82C05D1F8000480057C +:106DC000E5D5C1F82C35E1E7540700204E1A002024 +:106DD000007002404B1E0B4210B51BD0030737D08A +:106DE000030730D5274AD2F81C4540F2FF1340F282 +:106DF000FF32802C18BF1346994226D922492348D6 +:106E0000234A40F26D53FAF799FF214840F26D5141 +:106E1000FAF78AFF0029E3D110F00F0226D0040709 +:106E200002D5184BD3F81C35082A1DD8194B10F081 +:106E3000800F03F1D80018BF034602EB420203EBB8 +:106E4000C203998210BD4029D8D800F00F02EBE7A9 +:106E500011490E480E4A40F26953FAF76FFF0C4889 +:106E600040F26951FAF760FFFFF756FA0B490748FD +:106E7000074A40F26B53FAF761FF054840F26B5145 +:106E8000FAF752FF0070024054F70000C8E6000015 +:106E9000F0F4000068170020FCF6000030F7000056 +:106EA000F8B5002836D0214B1D78002D30D1204A6E +:106EB000204E10600121197037462A07E8B247BFFB +:106EC00040F2FF118820402140F080000135FFF79B +:106ED00081FF0024092D87F8EE4087F8E440C7F8C9 +:106EE000E84007F11807E8D12307E0B252BF40217C +:106EF00040F2FF1108200134FFF76CFF0023092C3A +:106F0000B3753373336106F11806EDD10A48F8BD45 +:106F10000A48F8BD0A490B480B4A40F24D43FAF7BC +:106F20000DFF094840F24D41FAF7FEFE4F1A0020CE +:106F300020190020681700200000AD0B0500AD0BE4 +:106F4000B8F70000C8E60000F0F40000F8B500F063 +:106F50000F03082B56D8EFF3118C202282F31288EE +:106F6000BFF36F8F00294FD053B9334A1278824252 +:106F700006D0324C8CF31188BFF36F8F2046F8BDDA +:106F80002F4A304C1268266840B2C543D243ED0FF9 +:106F900092B203EB05154FF0010E32430EFA05FED7 +:106FA00012EA0E0F06D0284C8CF31188BFF36F8FB6 +:106FB0002046F8BD03EB430300284FEAC3031EDB62 +:106FC000224A13440A6822B102F06042B2F1005F23 +:106FD00026D101221A7307C946EA0E0626601C4E06 +:106FE0001C4C0025802783E807001D619D75C6F8AD +:106FF00004718CF31188BFF36F8F2046F8BD164AD9 +:107000001344E6E7FFF79CF914491548154A40F286 +:10701000BC53FAF793FE134840F2BC51FAF784FED2 +:1070200011490F480F4A4FF4BA63FAF787FE0D482B +:107030004FF4BA61FAF778FE4D1A00200A00AD0B42 +:107040001C190020181900200B00AD0B6817002038 +:1070500000E100E00000AD0B40180020C8F7000080 +:10706000C8E60000F0F40000E4F7000000F00F02B2 +:10707000082A08B521D8124B10F0800F03F1D80070 +:1070800018BF034602EB420203EBC203EFF3118287 +:10709000202080F31288BFF36F8F18690860197B76 +:1070A00029B9987D82F31188BFF36F8F08BD042042 +:1070B00082F31188BFF36F8F08BDFFF72DF900BF72 +:1070C0006817002008B5030705D4094B40F4807009 +:1070D000C3F8180508BD07490748084A40F2076386 +:1070E000FAF72CFE054840F20761FAF71DFE00BFD3 +:1070F0000070024050F80000C8E60000F0F4000004 +:1071000001070BD4020600F00F0309D4094A9B00C3 +:107110001A445068003818BF01207047002070479B +:10712000054A03F5847352F82300003818BF012084 +:10713000704700BF407402400070024008B503076A +:1071400007D40A4B40F48072C3F80C05C3F80C2531 +:1071500008BD07490748084A40F22963FAF7EEFDDF +:10716000054840F22961FAF7DFFD00BF00700240D8 +:1071700050F80000C8E60000F0F400000F4B0022B9 +:1071800002604260D3F880240270D3F884244270F5 +:10719000D3F88824D3F88C1442EA01224280D3F831 +:1071A0009024D3F8941442EA01228280D3F89824E0 +:1071B000D3F89C3442EA0323C38070470070024036 +:1071C000014B0122DA64704700700240014B01223A +:1071D0001A65704700700240014B01225A657047E2 +:1071E00000700240014B1878704700BF4D1A002014 +:1071F00010B5EFF3118C202383F31288BFF36F8F48 +:1072000003061CD400F00F03082B16D8124C03F110 +:10721000100E2268012101FA0EF122EA010210F09B +:107220000800226004D10D4A03F5947342F823004C +:107230008CF31188BFF36F8F10BDFFF781F80849F9 +:107240000848094A40F25363FAF778FD064840F2CD +:107250005361FAF769FD00BF1C190020007002405D +:1072600064F80000C8E60000F0F40000F0B583B058 +:10727000EFF31185202383F31288BFF36F8F00F0A3 +:107280000F03082B74D803EB4301040602464FEAB0 +:10729000C10C1BD43749384C03F110020123934031 +:1072A0000A6833EA020664444DD122EA03020A6006 +:1072B000324926730A6822EA03020A600323A3758F +:1072C00085F31188BFF36F8F03B0F0BD010713D4AE +:1072D00080283BD02A4803F2DA314900C0F8001870 +:1072E000D0F80418D0F80448C9B241F00201214393 +:1072F000C0F80418D0F80418204E1E4F30683C68BF +:10730000012101FA03F364EA00011942D8D024EA0A +:10731000030418431B4B8DF8062019681A4B3C6078 +:10732000634403223060002406208DF804008DF8A9 +:1073300007201C739A7501A8884785F31188BFF34D +:107340006F8F03B0F0BDFFF753FFB7E70C4840F273 +:10735000B471C0F80018D0F80418D0F80448C9B2C5 +:1073600041F004012143C0F80418D0F80418C3E721 +:10737000FEF7D2FF18190020681700201C19002002 +:1073800000700240201900204018002038B54FF04E +:10739000FF3204464FF0FF33074D284603F052FEFC +:1073A0002046FFF763FF284603F0B2FD034B80221F +:1073B000C3F8042138BD00BF5407002000E100E0FD +:1073C0002DE9F0413E4E3378002B6DD04FF0FF3366 +:1073D0003C484FF0FF3203F035FE3378022B57D193 +:1073E000394B8022C3F884212720FDF7D7F9F8B95B +:1073F00036490B788BB1364A01230020C2F80801C8 +:10740000C2F80016C2F804365360D2F80831002BD7 +:10741000FBD00023C2F808310B702D4B0022C3F8BB +:107420000025284803F074FD01233370BDE8F08186 +:10743000284F294B3D681B682D0C2D041D431AD085 +:107440004FF0010803E008FA04F4A54313D095FABD +:10745000A5F4B4FA84F40F2C2046C6BFA4F11000A2 +:10746000C0B240F080000307EDD408FA04F4FFF73F +:10747000FDFEA543EBD1164C002540F2FF133B6007 +:107480002720C4F80455FDF775F9C4F80053AFE799 +:1074900012491348134A40F2FC43FAF74FFC1148D3 +:1074A00040F2FC41FAF740FC0F490D480D4A40F20A +:1074B000BA43FAF743FC0B4840F2BA41FAF734FCFE +:1074C0004F1A00205407002000E100E04B1A002072 +:1074D000007002401C19002018190020D0F600008E +:1074E000C8E60000F0F4000078F8000010B504468B +:1074F0004FF0FF324FF0FF33104803F0A3FD20465A +:10750000FFF7B4FE04F00F020123934022060C495A +:107510006FEA03030CD4D1F814251340C1F81435D5 +:10752000064803F0F5FC074B8022C3F8042110BD88 +:10753000D1F810251340C1F81035F1E754070020A9 +:107540000070024000E100E070B500F00F04082C6C +:1075500032D841B20125002905FA04F221DB17498E +:10756000D1F8146532421BD1D1F81465431E324361 +:10757000062BC1F8142513D8EFF31186202383F3CB +:107580001288BFF36F8FFFF733FE0D4A1034136874 +:10759000A54023EA0503136086F31188BFF36F8FBC +:1075A00070BD064BD3F810150A42F9D1D3F8101567 +:1075B0000A43C3F8102570BDFEF7D6FE00700240E6 +:1075C00018190020020710B514D40306044603D589 +:1075D0000E4BC3F8184510BD0D4B00F00F02920082 +:1075E00013445B68002BF3D0FFF702FE074BC3F890 +:1075F000184510BD07490848084A40F20F63FAF7DA +:107600009DFB064840F20F61FAF78EFB00700240C6 +:107610004074024050F80000C8E60000F0F400009A +:10762000142811D80A4A12F810306BB102EB40024C +:1076300052784AB110B40C68002004FB03F393FBAA +:10764000F2F310BC0B6070476FF01500704700BF7D +:10765000A4F8000091F804C00CF01F02072A00F201 +:10766000848070B591F800E0BEF10C0F32D8DFE8ED +:107670000EF0090909313C313F313107363139000B +:107680004FF0050E4B78032B27D0042B22D100237B +:107690004888002861D0A0F57F503F3884B2292C5B +:1076A00018D8292816D8DFE800F0261515155E151C +:1076B0005B15151515581515151552151515155574 +:1076C000151515151515151515151515151515156A +:1076D000151515266FF0150070BD0123D8E74FF082 +:1076E000060ECFE74FF0070ECCE74FF0030EC9E7C9 +:1076F0004FF0040EC6E74FF4A0251D4C012094F86E +:10770000986090401B031CF0200CC0B243EA0E238B +:107710004FEA021E14BF26EA000030430EF1804EED +:107720000EF5E04E18BF4FF4801C2B4322448D7998 +:1077300084F89800497982F8901043EA0C030020FD +:10774000CEF81835CEF81005CEF8145570BD4FF4AC +:107750004035D2E74FF48025CFE74FF40035CCE732 +:107760004FF48035C9E70025C7E76FF01500704773 +:107770007005002010B5114B0024C3F80441D3F864 +:107780000421C3F810411222D3F81011C3F80423C6 +:107790000720FCF7E1FF224601210720FDF70CF846 +:1077A0000748836C2BB1054B0122C3F8002500204C +:1077B00010BD403003F0ACFBF5E700BF00700040A7 +:1077C00070050020A0F10803BFF35B8F53E8002F82 +:1077D000511C43E8001CBCF1000FF7D1BFF35B8FD5 +:1077E0001AB16FF00F0383657047064B0122C3F88F +:1077F000002590F86E1009B1DA6070471A605A607F +:10780000704700BF007000402DE9F0430C4683B084 +:107810004FF0FF3363484FF0FF3203F013FC67680B +:107820007B1EFE2B42D800235F49DFF880811E4675 +:1078300017E018F803E05FFA89F6BEF1000F35D0C3 +:10784000607CD5F81825003818BF012022F080721E +:10785000013342EA0062082BC5F8182541F80CE014 +:1078600018D027FA03F001EB031503F1510C10F0C7 +:107870000100AE464FEA0C1C06F10109D9D1D5F83A +:107880001855013325F08075082BCEF8185541F8AE +:107890000C00E6D1237C083B062B07D8DFE803F079 +:1078A0005806560654060F00082A11D96FF0150421 +:1078B0003C4803F02DFB204603B0BDE8F0830322D3 +:1078C000394B012EC3F8F025627CEDD9002AEDD1A9 +:1078D0003549C1F8F4252268730012B1928902FB80 +:1078E0000333E2689A4259D32F4BA268C3F82C267F +:1078F0002746C3F830660FCF2D4D05F164060FC63D +:107900004FF0000C3B683360C5F860C0236843B19A +:107910000FCB05F1780484E80F006C66A5F888C0E9 +:10792000E8B9214B95F876100122C3F8002599B1EA +:10793000DA6020484FF0FF324FF0FF3303F082FB54 +:10794000044638B92C6EB3E70222B9E70122B7E743 +:107950000022B5E72866ABE71A605A60E9E7BFF393 +:107960005B8F55E8003F45E800C2002AF9D1BFF31C +:107970005B8F114BA86F61464FF40042E0FB023170 +:1079800018460E4A0023F8F7A3FD0022CDE90001B6 +:10799000002305F1080005F037FFCAE76FF00B047C +:1079A00086E700BFB0050020007000400006002000 +:1079B00070050020C00500203F420F0040420F002C +:1079C000414AD2F80431002B40D070B50021C2F8F2 +:1079D00004113E4CD2F8045101239360C2F8001503 +:1079E000A56E94F89810294244D1636E002B3CD0C8 +:1079F000E36FB4F888202BB135499847012814D09B +:107A0000022830D0B4F88830B4F884209A422AD9B9 +:107A10002D4AD2F82C16D2F834060133A4F8883057 +:107A200083B201EB4303C2F82C36A36F002B3ED088 +:107A3000BFF35B8F54E8003F5A1E44E80021002941 +:107A4000F8D1BFF35B8F012B31DC70BDD2F8101180 +:107A500041B1C2F810310123D2F8101193601360C4 +:107A6000536070477047A36FEBB91A48BDE8704088 +:107A700003F04EBAD2F82C665FFA85FC1CEA030FBD +:107A80004FEA430208D0194205D0B6F9003000256C +:107A9000AB42B8BF3580023693B29942EED2636EE4 +:107AA000002BA5D1E1E70C4805F020FFDDE7064BF0 +:107AB00094F876100122C3F8002509B1DA6070BD90 +:107AC0001A605A6070BD00BF007000407005002051 +:107AD000D4050020C0050020780500200069CBB245 +:107AE00000EB431000211047002001F0DFBA00BF77 +:107AF00010B5EFF31184202383F31288BFF36F8F47 +:107B0000094A136823F00201DB07116004D584F3EE +:107B10001188BFF36F8F10BD012001F041FB84F38A +:107B20001188BFF36F8F10BD90190020002001F065 +:107B300037BB00BF104603F0EBB900BF00B585B0FE +:107B400000220123CDE90223CDF800D00369CDF84E +:107B500004D0C9B2EFF3118C202282F31288BFF354 +:107B60006F8F01EB410203EB82039A6C02F0070E68 +:107B7000BEF1010F0ED002F0C002802A8CF31188F2 +:107B8000BFF36F8F0CBF6FF077004FF0FF3005B081 +:107B90005DF804FB80229A648CF31188BFF36F8F29 +:107BA000084A1A64C3F844D0436853F83130984700 +:107BB0004FF480420023684603F044FA05B05DF8B4 +:107BC00004FB00BF357B0000C9B2012908B508D805 +:107BD000036901EB410103EB8103986C00F007009E +:107BE00008BD05490548064A7F23FAF7A7F8044867 +:107BF0007F21FAF799F800BF20F90000C8E60000DD +:107C0000E0F80000064C0749074808B522464FF443 +:107C1000DF73FAF793F84FF4DF712046FAF784F830 +:107C2000E0F8000020F90000C8E60000194A831AB5 +:107C3000C3F34713012B70B52AD805460E46EFF360 +:107C40001181202080F31288BFF36F8F03EB430074 +:107C500002EB800CDCF8482012F0800411D10122E4 +:107C6000CCF8482081F31188BFF36F8F0A4A02EBEA +:107C7000C3035B689847214628463346BDE87040F9 +:107C8000184781F31188BFF36F8F4FF0FF31F3E78F +:107C9000FFF7B8FF3819002060F90000002270B526 +:107CA000012104461046FCF787FD0F4801F0C0F99A +:107CB0000E4B984215D101F0CDF925690C492846A3 +:107CC000FAF780FA00280BDB0126AE642469084924 +:107CD00004F12000FAF776FA002801DB666500203F +:107CE00070BD6FF0040070BDED7E00000000AD0BB4 +:107CF00044F9000030B4114B00EB400203EB820367 +:107D000001460020D3E910521864EFF311802024BB +:107D100084F31288BFF36F8F9C6C04F0C00444F0AE +:107D200002049C6480F31188BFF36F8F1DB12B4652 +:107D3000034830BC184730BC704700BF38190020DA +:107D40006CE2000010B4EFF31180202181F312885F +:107D5000BFF36F8F174A136843F002041460DA0709 +:107D600007D480F31188BFF36F8F012010BC01F09E +:107D70009DB94FF08043D3F80C24D3F80C34DB07C3 +:107D8000EFD5EFF3118481F31288BFF36F8F0A4AA6 +:107D9000936C03F0C00343F00203936484F31188EF +:107DA000BFF36F8F80F31188BFF36F8F002010BC7B +:107DB000FFF7A0BF901900203819002010B5C9B2F4 +:107DC0000129026922D8EFF3118C202383F3128852 +:107DD000BFF36F8F01EB410302EB8302936C13F04F +:107DE000400406D08CF31188BFF36F8F4FF0FF3043 +:107DF00010BD012393648CF31188BFF36F8F436828 +:107E000003EBC1035B689847204610BDFFF7FAFEFD +:107E100038B5C9B20469EFF3118E202585F31288B5 +:107E2000BFF36F8F01EB410504EB850CDCF8484094 +:107E300004F00705012D0CD004F0C004802C8EF353 +:107E40001188BFF36F8F0CBF6FF077004FF0FF30DA +:107E500038BD8024CCF848408EF31188BFF36F8F73 +:107E6000CCE91023436853F831309847002038BDDF +:107E70001B4BC21A10B5C2F347120C46EFF3118C1C +:107E8000202181F31288BFF36F8F02EB420103EBD5 +:107E90008103996C01F0070EBEF1010F10D001F0C3 +:107EA000C00140298CF31188BFF36F8F234608BFB0 +:107EB0006FF07701BDE8104018BF4FF0FF31184751 +:107EC000402199648CF31188BFF36F8F05490648F0 +:107ED000C3E9101450F83220BDE81040104700BF2D +:107EE00038190020DD7A000060F90000012810B583 +:107EF000014608D0032827D0002831D11E4B9B6CA7 +:107F00005B071DD010BD1C4B0020D3E91342D86481 +:107F1000EFF3118C202080F31288BFF36F8F586D20 +:107F200000F0C00040F0020058658CF31188BFF3E8 +:107F30006F8F002CE6D023461048BDE8104018474C +:107F4000BDE81040FFF7D6BE0D490E480E4A40F27C +:107F5000DD23F9F7F3FE0C4840F2DD21F9F7E4FEEA +:107F600007490848084A40F2ED23F9F7E7FE0648BA +:107F700040F2ED21F9F7D8FE381900206CE200003C +:107F800098E80000C8E60000E0F80000024BC0B22C +:107F900003EB4010704700BF381900202DE9F04175 +:107FA000484BBFF35B8F0646012453E8002F43E89C +:107FB00000410029F9D1BFF35B8F002A4DD0002E7C +:107FC00049D0731E012B70D8012E07D14FF080438A +:107FD000D3F81C3403F00303012B3CD003F06AFCFC +:107FE000054618B9384B1B78002B4BD1EFF311879E +:107FF000202383F31288BFF36F8F0125DFF8CC8035 +:108000004FF08044D4F81824D4F81834D20305D59E +:1080100003F00303012B19D0012E17D0002D38D007 +:108020003846FCF789FCD4F81835002BEAD1D4F88F +:108030000421002AE6D0C4F804310123D4F8042135 +:10804000C4F81835C8F88031A360DBE735B387F38F +:108050001188BFF36F8FBDE8F0811D491D484A604C +:10806000CA608C60FAF7C4F80028A8DA1A491B48DD +:108070001B4A40F29123F9F761FE194840F2912121 +:10808000F9F752FE4FF080430222C3F80823074657 +:10809000B4E70021212004F017FCC4E74FF080432F +:1080A0000222C3F80423BDE8F0810E490B480C4AB4 +:1080B00040F2A323F9F742FE094840F2A321F9F761 +:1080C00033FE00BF34190020531A002000E100E005 +:1080D000241900205819002080F40000C8E6000090 +:1080E000E0F8000098E800000A2838B5044607D0F8 +:1080F000074DAB6806485B68E1B29847204638BD3B +:10810000034DAB680D215B6828469847F1E700BF37 +:10811000A8E2000008B5074802F04AF838B106485E +:10812000FCF7ECFE0448F9F7B1FD002008BD6FF044 +:10813000120008BDA8E20000E980000043685B6807 +:10814000D3F810350B600020704700BF43685B68B0 +:1081500002EA010021EA0201C3F808050020C3F881 +:108160000C15704743685B680020C3F8081570471A +:1081700043685B680020C3F80C15704743685A6871 +:10818000D2F8043521EA03000B40C2F808050020AC +:10819000C2F80C35704700BF38B5046900293AD0E1 +:1081A0004B685BB365684DB18D421DD02B4601E035 +:1081B00099420CD018461B68002BF9D1DAB10D603A +:1081C000A36861600BB1002038BDA160FBE70B68BC +:1081D0000360A368994205D000230B60002AF2D007 +:1081E0006568ECE7A060F7E7A0680B686360814210 +:1081F000F2D1A360F0E76FF0150038BD0C490D4ACD +:108200000D484023F9F79AFD0C48F9F797FD094806 +:108210004021F9F789FD0A49064A07483F23F9F743 +:108220008DFD0848F9F78AFD02483F21F9F77CFDEA +:10823000C8F9000070F90000C8E60000DCF9000091 +:10824000ACF90000B8F9000038B5446823692BB1D7 +:108250001034204601F026FB054608B1002038BD49 +:108260000146204601F0DEFA084B98420BD108493E +:1082700020462A4601F0A2FA06202A460521FCF7EC +:108280009BFA0020EBE76FF0040038BD0000AD0B57 +:1082900099840000064C0749074808B522464FF468 +:1082A0006C73F9F74BFD4FF46C712046F9F73CFD08 +:1082B000F4E9000028EA0000C8E600002DE9F043D8 +:1082C0004068037B01F01F06154646EA431640F25C +:1082D0000633D40687B003EA050354BFC2F3401245 +:1082E0000322B3F5837F8DF8032000F0A38028D804 +:1082F000062B52D049D9B3F5807F4BD101240123FD +:108300008B4029032FD46F0344BF4168C1F80C355B +:10831000036973B300F110080DF1020231464046C3 +:1083200001F052FA15F4403F074638D13146404635 +:1083300001F0C2FA534B9F4256D0002007B0BDE86F +:10834000F08340F20224A3425FD0B3F5407F08BF20 +:108350000324D4D0B3F5007F1CD101238B40290323 +:108360004FF00204CFD54168C1F808350369002BEE +:10837000D0D1C5F34043710985F48035C5F300457C +:1083800074D0012958D0FFF785FF33B1022B08BF05 +:108390000424B4D06FF01500D0E71C46AFE701AB62 +:1083A0004FF0000903AA314640460493CDE90199F4 +:1083B000CDF80C90CDF8149001F096F8314B98421E +:1083C000E8D115F4003322D1CDE9043303AA0DF12D +:1083D000030331464046039301F086F8294B984247 +:1083E000D8D1284B9F42A8D19DF80210404601F0F9 +:1083F00065FAB842A1D024492448254AEC23F9F76C +:108400009DFC2348EC21F9F78FFC052477E79DF8C4 +:1084100003008DF80E0085F48035C5F300454B460A +:1084200003AA314640468DF80C408DF80D5001F0FE +:1084300025F9D3E7072462E706F01F0640F2FF3173 +:10844000F140C9079FD5134901EB860143EA450373 +:1084500043EA8203D1F8002722F4E16243EA0423CD +:1084600022F007021343C1F8003766E706F01F0643 +:108470004FF0FF31F140C80748BF4FF0A041E3D4AF +:1084800081E700BF0000AD0B20FA0000C8E6000045 +:10849000F4F9000000030050430970B506D0012B29 +:1084A00003D1144B144E596829B970BD134B144EA7 +:1084B00059680029F9D000F01F0001250C6885409B +:1084C0008A682A4003D04B6833B130469847002C65 +:1084D000EBD021462468F3E70A490B4A0B48642392 +:1084E000F9F72CFC0A48F9F729FC07486421F9F749 +:1084F0001BFC00BF9419002080E20000A01900209E +:1085000094E2000034FA000070F90000C8E60000B0 +:10851000DCF90000F0B54068057B046901F01F0636 +:1085200087B046EA4516002C00F08280B2F5001FA5 +:1085300045D00024B2F5800FCDE901442ED0B3F12F +:10854000C06F3AD0B3F1007F14BF012302238DF82E +:10855000043003AF01AB049300230393BB60836833 +:10856000CB40DC0702D4B2F1A07F11D000F110059E +:108570003A463146284600F0B7FF2F4B98424AD181 +:1085800001223146284601F0A5F9002007B0F0BDD0 +:10859000730919D0012B35D0FFF77CFEB3F1007FB2 +:1085A0000CBF042305238DF8043001AB03AF039403 +:1085B000049300F11005BC60DAE70323C7E73146F6 +:1085C000103001F031FAE0E706F01F034FF0FF3200 +:1085D000DA40D10748BF4FF0A042DDD503F5E07384 +:1085E00000F1100552F82330DB07C1D40DF103046C +:1085F00022463146284601F0E7F8104B98420DD04C +:108600000294B5E706F01F0340F2FF32DA40D207CA +:10861000C2D50B4AE2E76FF01500B7E721462846BE +:1086200001F052F9044B9842EAD06FF00B00ADE72D +:108630006FF08500AAE700BF0000AD0B0400AD0B92 +:108640000003005010B54FF0805282B0136E526E8E +:10865000082928BF082112BA0C461BBA00920A4604 +:108660006946019305F03EFD204602B010BD00BFF3 +:10867000014B01221A60704700C000400C290369B9 +:1086800012D110B40A495B6A0A480B4C01FB03F390 +:1086900080FB0310D917C1EBA04104FB113300206C +:1086A000C2E9001310BC70476FF08500704700BF2F +:1086B00090D0030083DE1B4340420F0010B50346F9 +:1086C00000201C69FFF762FCA062B8B14FF0FF32D6 +:1086D0000021204602F010FC04F1100002F0DCF84A +:1086E000002201210C20FCF767F80C20FCF734F87D +:1086F000074B0122C3F80423002010BD054906489A +:10870000064A7723F9F71AFB04487721F9F70CFB9F +:1087100000C00040CCFA0000C8E6000090FA00005B +:10872000044B00690022C3F80021D3F8003102F0A5 +:10873000EFBB00BF00C0004070B50469A36A84B0FD +:108740009BB33F2901D00C292CD104F110064FF026 +:10875000FF324FF0FF33304602F0A6F800251E4BE3 +:10876000A06A03950322694602920193F9F740FD3E +:10877000A84227DB4FF0FF324FF0FF33204602F0D4 +:1087800061FCA06AF9F7F0FD002811DB134BD3F868 +:108790000825626201225A60304602F063F92846D9 +:1087A00004B070BD6FF08500FAE76FF00A00F7E7DC +:1087B0000B490C480C4A4223F9F7C0FA0A484221F7 +:1087C000F9F7B2FA06490748074A3D23F9F7B6FA1E +:1087D00005483D21F9F7A8FA7186000000C0004065 +:1087E000DCFA0000C8E6000090FA000030B40F493F +:1087F0000B68D01AC3180B6022F07F424B68A2F5B9 +:10880000001443F10003B4F5400F4B600AD2084B4B +:108810001B6819068C184FEA1323064A43F100051A +:10882000C2E9004530BC04F071BD00BF900D0020CE +:10883000E0190020980D00202DE9F047444B1B68FB +:1088400004461A0A0D461B06BFF35F8F4149D1F853 +:108850000415CB1842F10002B1F5801F06D23E4943 +:10886000D1E90001834272EB01016CD3A34272EBA8 +:10887000050151D23949E31A65EB02028B4272F1CC +:1088800000025ED2DFF8D8E0DEE902239D4208BF95 +:10889000944250D02F4A334F4FF480364FF00009A6 +:1088A000C2F8486324F07F48C2F84091D2F84031C2 +:1088B000C2F84085C2F84463D2F804156FF0020C88 +:1088C000ACEB0103434423F07F43BB4233D9032085 +:1088D000D2F8403163B1D2F80415A1EB080323F0BC +:1088E0007F43B3F5000F26D9C2F84091D2F840314A +:1088F00001EB000A2AF07F43C2F84035C2F8446316 +:10890000D2F80415ACEB0103534423F07F43BB4280 +:1089100000F10100DCD80EE0134BBFF35B8F53E88E +:10892000001F41F0010143E80012002AF7D1BFF314 +:108930005B8FDFF82CE00D4A0023CEE90245CEE93B +:108940000023BDE8F08713F1807342F100028DE748 +:10895000E019002000100140980D00200100800067 +:10896000800D0020FDFF7F00D8190020ED8700005A +:108970002DE9F047324CDFF8CCC0334B334FC4F80D +:1089800008330022C4F848334FF4803602234FF4F2 +:10899000003A4FF0FF384FF0FF39C4F808250121A5 +:1089A000CCE902891120C4F80463C4F80433C7F881 +:1089B00080A1FBF701FF264D1120FBF7CDFE01231F +:1089C000A36023602B60BFF35B8F55E8008F28F016 +:1089D000010345E80032002AF7D1BFF35B8FC4F8EA +:1089E0000863BFF35F8FBFF36F8F1A480021FFF753 +:1089F00023FF18F0010F05D10220FFF7CFFA002066 +:108A0000BDE8F087BFF35B8F55E8003F43F00103FB +:108A100045E80032002AF7D1BFF35B8F0E4BC4F854 +:108A20000463BFF35B8F1B68BFF35B8FDB0748BF3B +:108A3000C7F800A10220FFF7B1FA0020BDE8F087D7 +:108A400000100140800D002003000F0000E100E055 +:108A5000DC190020FFFF7F00D8190020434BD3F81A +:108A60000423900705D4414BD3F80423D10312D437 +:108A70007047D3F80421002AF5D03D4A0021C3F8FD +:108A80000411D3F80431136801331360374BD3F862 +:108A90000423D103ECD52DE9F043364ABFF35B8FB5 +:108AA00083B052E8001F21F0010042E80004002CCE +:108AB000F7D1BFF35B8FCA0705D4D3F8403113B9A0 +:108AC00003B0BDE8F083294A294B0021C2F84011C8 +:108AD000D2F840111B68190A1B06BFF35F8FD2F84A +:108AE0000425D31841F10001B2F5801F0AD2224AB1 +:108AF000D2E90067B34271EB070203D213F180732E +:108B000041F10001EFF3118C202282F31288BFF3B0 +:108B10006F8F1A4CD4E90267B342B9411FD34FF0AB +:108B2000FF384FF0FF39C4E90289104B21686268B1 +:108B300000204FF480352060C3F84853C3F840014B +:108B4000D3F840318CF31188BFF36F8F0029B7D071 +:108B500000923B463246884703B0BDE8F0838CF371 +:108B60001188BFF36F8F03B0BDE8F08300100140A0 +:108B7000E0190020D8190020980D0020800D002059 +:108B8000411CF8B566D0344B9842A8BF184601285E +:108B9000B8BF0120314B1B68190A1B06BFF35F8F5A +:108BA0002F4AD2F80425D31841F10001B2F5801FF5 +:108BB00005D22C4AD2E90045A342A94147D32A490C +:108BC000D1E900219B1AB3F5000F22D2224C1844A0 +:108BD000A04228BF2046254CBFF35B8F54E8007F9E +:108BE00027F0010344E80035002DF7D1BFF35B8F78 +:108BF0001B4D4FF48036C5F80863BFF35F8FBFF39A +:108C00006F8F101841F10001FFF716FEFA0702D42A +:108C1000F8BD1148DFE7BFF35B8F54E8003F43F036 +:108C2000010344E80032002AF7D1BFF35B8F104BF9 +:108C3000C5F80463BFF35B8F1B68BFF35B8FDB0773 +:108C4000E6D50C4B4FF40032C3F80021F8BD13F108 +:108C50008073B4E700489DE7FFFF7F00E019002024 +:108C600000100140980D0020900D0020DC1900201C +:108C7000D819002000E100E0104B1B68190A1B0600 +:108C8000BFF35F8F0E4AD2F80425D31841F10001DB +:108C9000B2F5801F0DD230B40A4AD2E90045A34292 +:108CA000A94101D213F18073074A106830BC181A29 +:108CB0007047054A1068181A704700BFE019002075 +:108CC00000100140980D0020900D0020BFF34F8F41 +:108CD0000549064BCA6802F4E0621343CB60BFF358 +:108CE0004F8F00BFFDE700BF00ED00E00400FA0574 +:108CF00008B54FF08053D3F830210D2A0FD04FF034 +:108D00001023D3F80C22D20700F19580D3F800226B +:108D1000002A6ADBD3F80432002B66DB08BD4FF073 +:108D200080410020C1F80C01524AC1F81001C1F87D +:108D30003805D3F80404C2F82005D3F80804C2F8B3 +:108D40002405D3F80C04C2F82805D3F81004C2F89F +:108D50002C05D3F81404C2F83005D3F81804C2F86F +:108D60003405D3F81C04C2F84005D3F82004C2F837 +:108D70004405D3F82404C2F84805D3F82804C2F8FF +:108D80004C05D3F82C04C2F85005D3F83004C2F8CF +:108D90005405D3F83404C2F86005D3F83804C2F897 +:108DA0006405D3F83C04C2F86805D3F84004C2F85F +:108DB0006C05D3F84404C2F87005D1F80024D0073C +:108DC00010D56FF00102D3F83431C1F80024002B24 +:108DD00095D04FF010224FF08043D2F80822C3F80C +:108DE00058258CE7D3F83431F1E7234A0123C2F840 +:108DF0000435D2F80034002BFBD04FF010231221A1 +:108E00001D4AC3F80012D2F80034002BFBD04FF0FB +:108E100010231221184AC3F80412D2F80034002B90 +:108E2000FBD000231449C2F80435D1F80034002BDC +:108E3000FBD0FFF74BFF104A0123C2F80435D2F8EC +:108E40000034002BFBD04FF010210B4AD1F80C322C +:108E500023F00103C1F80C32D2F80034002BFBD010 +:108E600000230549C2F80435D1F80034002BFBD0AB +:108E7000DFE700BF00C0004000E00140004700BF46 +:108E800001F06EB910B50468B4FA84F3C3F11F039E +:108E90000122DBB29A4094B1BFF35B8F24EA020255 +:108EA00050E800CFA44504D140E8002EBEF1000FE9 +:108EB000F6D1BFF35B8FE6D102480B7010BD0248BC +:108EC00010BD00BF0000AD0B0200AD0B036823FA1C +:108ED00001F2D20715D400B501228A4043EA02010B +:108EE000BFF35B8F50E800CF9C4504D140E8001EE3 +:108EF000BEF1000FF6D1BFF35B8F04D109485DF8D6 +:108F000004FB094870470368BFF35B8F42EA030123 +:108F100050E800CF9C45EED140E8001EBEF1000FA6 +:108F2000E9D0F5E70000AD0B0400AD0BF0B5054648 +:108F300083B000284AD0012868D14FF08043002236 +:108F4000C3F808035860C3F80021D3F800310123A7 +:108F50000DF107078DF8073042F210744FF080468C +:108F6000A5B9D6F8183403F48033FFB1D6F8182425 +:108F700002F003023A603BB19DF80700012803D1DB +:108F8000FFF77EFF013CEBD103B0F0BD012D31D1E5 +:108F9000D6F80C3403F4803387B1D6F80C2402F0F1 +:108FA00001023A70002BE7D103B0F0BD002BEBD0EB +:108FB0000120FFF765FF013CD3D1E5E7002BE3D0AB +:108FC0000120FFF75DFF013CE2D1DDE74FF0804378 +:108FD00002210122C3F80813DA60C3F80401D3F8B0 +:108FE0000431012307468DF8073042F210744FF028 +:108FF0008046B5E70A490B480B4A40F2A743F8F709 +:109000009DFE094840F2A741F8F78EFE0449054845 +:10901000064AFB23F8F792FE0448FB21F8F784FE8A +:1090200098E80000C8E6000034FB0000F4FA0000F5 +:10903000054A1179034621B90121044813601171D1 +:1090400070470348704700BFE41900200000AD0BD3 +:109050000C00AD0B08B5104B1A798AB11B681BB117 +:109060000020FBF79BFB40B10C4B4FF080410020F0 +:109070000122C1F818051A7008BDFBF76DFBF3E774 +:1090800007490848084A40F25913F8F757FE0648BE +:1090900040F25911F8F748FEE4190020501A002058 +:1090A00068FB0000C8E60000F4FA000038B5344C54 +:1090B0002379002B57D0B8B1012848D1314B4FF05C +:1090C0008042002521681D6001241D68146021B1C3 +:1090D0004FF08043C3F8040338BD1A68002AFCD05F +:1090E00000221A601B6838BD4FF08043D3F8182463 +:1090F000D3F81814D0030CD4D3F81424D10712D405 +:1091000000214FF08040204BC0F818151F4A022064 +:10911000D7E701F003010129F3D00029F0D00020A6 +:10912000FFF704FFECE7D3F81C249207F7D422687A +:109130001AB10222C3F8042338BDD3F80421002A4F +:10914000FBD00022C3F80421D3F8043138BD104904 +:109150001048114A40F2FD13F8F7F0FD0E4840F2B6 +:10916000FD11F8F7E1FD0D490A480B4A4FF4D4739D +:10917000F8F7E4FD08484FF4D471F8F7D5FD00BFC7 +:10918000E4190020000100400401004008000040F4 +:1091900098E80000C8E60000F4FA000068FB000050 +:1091A00008B5094B1B791BB1BDE80840FFF7BEBEEF +:1091B00006490748074A40F21723F8F7BFFD05485C +:1091C00040F21721F8F7B0FDE419002068FB000019 +:1091D000C8E60000F4FA0000F8B54FF08043D3F879 +:1091E000045305B31E4F01260024B5FA85F0C0F1E3 +:1091F0001F00830003F580739BB203F1804306FADE +:1092000000F2196892B225EA020551B14FF080418F +:109210001C60012A1B68C1F8082305D13B68C0B255 +:109220009847002DE1D1F8BD022A0DD1D1F81834AC +:10923000D1F818349B07F1D1C1F81865C1F804239F +:109240008E60002DD1D1EEE706490748074A40F26B +:109250007633F8F773FD054840F27631F8F764FD90 +:10926000E419002098E80000C8E60000F4FA0000C5 +:10927000064C0749074808B522464FF46C73F8F7C7 +:109280005DFD4FF46C712046F8F74EFDF4E90000E7 +:1092900028EA0000C8E60000104A430970B5D35C14 +:1092A0000F4D00F01F021344DBB20833044635F8BB +:1092B0001330DA050E4607D5C3F3432305EBC3028B +:1092C00055F8333052689847AB682BB1EA6831469D +:1092D0002046BDE87040184770BD00BF8CFC000000 +:1092E00090060020034611F00100CAB204D1C2F377 +:1092F000400092070AD470474FF0A04CDCF82015CC +:109300001960CCF820150029F1D070470449D1F834 +:1093100020255A60101E18BF0120C1F82025704773 +:10932000000300501C4A430910B5D35C1B4C00F0ED +:109330001F000344DBB2083334F81310CA0515D5F7 +:1093400021F4F85224F81320C1F3432104F10E0252 +:1093500004F1620001E0904209D032F8023F13F4B8 +:10936000807FF8D0C3F343239942F4D110BD00238A +:109370000B4844F83130FFF7A9FD0A4B9842F5D06D +:1093800009490A480A4A4FF4DC73F8F7D7FC084841 +:109390004FF4DC71F8F7C8FC8CFC0000900600204C +:1093A000FC0600200000AD0B20FA0000C8E600001B +:1093B00088FB00001E4B4A0910B59B5C1D4C01F058 +:1093C0001F0C6344DBB2083334F813309C0611D50C +:1093D0009C070FD401685B0B01229A40C1F8082357 +:1093E000026802EB8303D3F8102522F00302C3F8CE +:1093F000102510BD8AB1012A17D1614640F2FF3312 +:10940000CB40DB0711D50C4B03EB8103D3F80027CE +:1094100022F44032C3F8002710BD4FF0FF33CB4099 +:10942000DA0748BF4FF0A043EED4FFF721FF00BF9B +:109430008CFC000090060020000300502DE9F8434A +:10944000234BDFF890804F0901F01F09DC5D4C448D +:10945000E4B2083438F81430DD0702D41E48BDE801 +:10946000F8830D460646FFF7A5FF38F81430990635 +:1094700006D55B0B326803F5A273002142F8231076 +:109480002846FFF74FFF002328F814301FB1012FA3 +:1094900016D0FFF7EDFE4FF0FF33EB40DA0748BF81 +:1094A0004FF0A042F5D502EB85020C4BD2F8001725 +:1094B0000B480B4043F00203C2F80037BDE8F883C5 +:1094C0004D4640F2FF33EB40DB07E2D5054AEAE7C1 +:1094D0008CFC0000900600200400AD0BF0F8FCFFAF +:1094E0000000AD0B000300502DE9F0415D4B176803 +:1094F0004E0901F01F0E9C5D744482B0E4B22FB39C +:10950000594D04F1080C35F81C3003F02208B8F16D +:10951000220F70D0002E72D0012E79D140F2FF368A +:1095200026FA0EF6F60773D5504E3F7806EB8E06F8 +:1095300023F0020343F0010325F81C30D6F800376E +:1095400023F00F0343EA8703C6F8003753688BB153 +:10955000454D1F785E6804F1080C35F81C3013F097 +:10956000020F33D0002E46D123F01C0343EA8703B9 +:1095700025F81C3093682BB31F685E680846FFF718 +:10958000D1FEFFB1384DD5E900329F4201D196425C +:1095900064D037480DF10701FFF774FC354B984252 +:1095A00011D19DF8072053029BB2083445F8327060 +:1095B00005EBC202566035F81420134343F4807360 +:1095C00025F814302B4802B0BDE8F08141F6DF7E6B +:1095D00003EA0E0325F81C30002EC5D0032F0AD84D +:1095E0005668D0F800E0766836789FB906F5A2761E +:1095F0004EF82670B8E7204802B0BDE8F0814FF081 +:10960000FF36CE40F60703D58E464FF0A0468CE7D6 +:10961000FFF72EFE0EEB860E43EA4633DEF810858A +:1096200028F00308CEF81085006800EB86060802D3 +:10963000D6F810E52EF44F3E2EF4407EC6F810E525 +:10964000D6F810E500F47C5040EA074043F02003D0 +:1096500040EA0E009BB2C6F8100585E700231A46C3 +:10966000A3E700BF8CFC0000900600200003005020 +:10967000FC0600200000AD0B0400AD0B2DE9F04707 +:10968000494C4E0914F806C001F01F04A4445FFAC7 +:109690008CFCE2B3454F0CF1080837F8185015F070 +:1096A000020F02D115F0200F4CD115F01C0F04D081 +:1096B00092F801E0BEF1010F44D01EB1012E44D05A +:1096C000FFF7D6FD4FF0FF34CC40E607F8D54FF05A +:1096D000A04E01F5E07476465EF8249092F802E020 +:1096E00092F801A0127829F4E1694FEA8E0E29F070 +:1096F00007094EEA4A0E4EEA090E4EEA022245F0EA +:10970000030542F0010227F8185046F82420B3B1AF +:10971000264C0CF1080C34F81C20950712D51E7845 +:10972000056841F6DF7E06F5A27702EA0E024FF0E9 +:10973000000E24F81C2045F827E05D7885B91C4808 +:10974000BDE8F0871B48BDE8F08740F2FF36E640F1 +:10975000F607B5D5184E04F5E07456F82490BDE729 +:1097600000689F7800EB860042EA463242F0200211 +:1097700024F81C20D0F8102522F499120B0222F4B0 +:10978000F8522D04C0F8102503F47C5305F440353D +:109790003905D0F810252B4301F480110B431343F6 +:1097A000C0F81035CBE700BF8CFC0000900600200D +:1097B0000000AD0B0400AD0B00030050014BC3E9EA +:1097C000021270479006002008B58AB10E484B0976 +:1097D00001F01F01C35C0D480B44DBB2083330F8C5 +:1097E0001330990643BF5B0B13700948094808BD45 +:1097F00009490A480A4A40F20D33F8F79FFA084827 +:1098000040F20D31F8F790FA8CFC00009006002031 +:109810000000AD0B0400AD0B30FC0000C8E60000FA +:1098200088FB000070B5194D95F874400CB11848CC +:1098300070BD06465422214605F1100004F060FC7C +:109840006B6E3268214613B904E0082911D001314A +:109850008B42FAD10023C2F87C3142F30730D2F8B0 +:109860007C31FAF779FF012385F87430EB660948FB +:1098700070BD094909480A4A40F2AA33F8F75EFA6E +:10988000074840F2AA31F8F74FFA00BF90060020CF +:109890000C00AD0B0000AD0B74FC0000C8E600002E +:1098A0003CFC0000034B93F87400003818BF012003 +:1098B000704700BF90060020FFF7C0BD0148FFF7CA +:1098C00005BB00BFF80600200148FFF7DBBA00BF68 +:1098D000F806002070B54D4B4D4D4C0901F01F0CA2 +:1098E0001B5D6344DBB2083335F8133013F01C0FF3 +:1098F000C3F3820E71D00568D5F80463002EA4BFAF +:109900004FF00046C5F804639D0619D513F0020513 +:1099100016D15B0B9C00066804F580717550715878 +:1099200001682144D1F8104544F00104C1F8104504 +:109930002AB10168012202FA03F3C1F8043370BDB1 +:10994000002A56D0BEF1040F15D0BEF1050F18D075 +:1099500074B3012C13D140F2FF3323FA0CF3DC076C +:109960000DD52C4BD3F8102522FA0CF202F001028F +:109970000232284911E0032234B1012C26D0FFF72E +:1099800077FC0222002CF8D14FF0FF3323FA0CF3BE +:10999000D90748BF4FF0A041F1D501EB8C01D1F8B8 +:1099A000003723F4403343EA0243C1F8003770BD67 +:1099B0004FF0FF33CB40D807E1D54FF0A043D3F8A9 +:1099C0001025CA4002F001020232DDE740F2FF3307 +:1099D00023FA0CF3DB07D2D5CBE70F490F48104A27 +:1099E00040F2FA33F8F7AAF90D4840F2FA31F8F7E5 +:1099F0009BF90C4909480A4A40F20E43F8F79EF9D0 +:109A0000074840F20E41F8F78FF900BF8CFC0000C8 +:109A100090060020000300500CFC0000C8E6000087 +:109A200088FB000080FC0000FFF7C4BC2DE9F04F6C +:109A3000DFF8ECB2BB4BDBF86440D3F8040387B02B +:109A4000002C3ED00025C0B2B74940F000402B4664 +:109A50000126AC4604E0082B01F1040100F054811A +:109A600023F0404206FA02F2104205D00F681FB1FF +:109A7000C1F800C00F68154301339C42EBD1A94BDC +:109A8000D3F87C3113BBCDB1012495FAA5F2B2FA1B +:109A900082F2930003F1804303F5C04304FA02F21B +:109AA000D3F81005D3F8101525EA0205C1F30141DA +:109AB000C0F30520FFF7F0FB002DE6D107B0BDE8AD +:109AC000F08FD3F87C31002BF8D02546954A00233F +:109AD000C2F87C31DBF87010D2F87C2104A8CDE903 +:109AE0000433FFF7FFFB2F46904D914E0DF1100907 +:109AF000B84615F8013B8F49DA0803F007038A5C82 +:109B000022FA03F3DF0724D48B4BAB4209F104099B +:109B100006F10106EDD1DBF86420474600231AB9AF +:109B200005E0082B00F0F08001339A42F9D17D4B1B +:109B3000D3F87C2122B10022C3F87C21D3F87C31F8 +:109B4000DBF8701004A8FFF7CDFB0028CCD13D4610 +:109B500099E7D9F80030002BD6D032780395CDE9BB +:109B6000016857014FF0010A93FAA3F3B3FA83F3A4 +:109B700043EA0700714A450900F01F04525D224480 +:109B8000D2B208323BF81210DA0803F0070319F8D2 +:109B900002600AFA03F326EA030309F80230C1F36C +:109BA00082024FEA910C11466DB1012D5BD06449E0 +:109BB0006448654A4FF46C73F8F7C0F862484FF494 +:109BC0006C71F8F7B1F84FF0FF33C340DC07EED506 +:109BD0004FEA800E0EF1A0441CF0040FD4F8006789 +:109BE000C6F3014846465AD1B8F1020F0CBF4FF0F8 +:109BF000030C4FF0020C04464FF0A0439E44032A8E +:109C0000DEF8003723F4403343EA0C43CEF8003744 +:109C10001DD0B8F1020F18D0032E01D1022A16D0A0 +:109C2000CDB1012DC3D140F2FF33E340DA07BED5F9 +:109C3000464B0AFA04F4C3F82045D9F80030002B4B +:109C400092D1DDE90168039D5EE7012AE8D1FFF7C3 +:109C500023FB002DE5D14FF0FF33E340DB07A6D512 +:109C60004FF0A043E5E740F2FF33E340DE079ED527 +:109C70004FEA840E0EF1A0431CF0040FD3F8006AE3 +:109C8000C6F3014803F54073464624D1B8F1020FEC +:109C90002E4B0CBF4FF0030C4FF0020CAEE70090C0 +:109CA000FFF7FAFAD4F800370098C3F301439E4255 +:109CB00001D00446D4E7D4F8003723F44033C4F885 +:109CC0000037D4F8003723F4403343EA0843C4F89C +:109CD00000370446C4E70093FFF7DEFA009BD3F891 +:109CE0000027C2F301429045A2D1D3F8002722F405 +:109CF0004032C3F80027D3F8002722F4403242EA6A +:109D00000842C3F8002793E711490E48114A40F270 +:109D1000AA33F8F713F80F4840F2AA31F8F704F81D +:109D20009006002000600040006100409CFC0000A4 +:109D30009CFC0000000700209EFC00008CFC000042 +:109D400028EA0000C8E60000F4E900000003005023 +:109D500074FC00003CFC000010B5C8B1114C034677 +:109D6000207898B91B784FF0804203F00103C2F8C5 +:109D70007835FAF713FD18B101230B48237010BD95 +:109D8000FAF7EAFC012308482370F8E7074810BDFA +:109D900007490848084A7523F7F7D0FF0648752198 +:109DA000F7F7C2FF511A00200000AD0B0C00AD0BFD +:109DB000E0FC0000C8E60000A0FC000008B548B1C7 +:109DC0004FF080434FF46072C3F80823074B0268DA +:109DD0001A6008BD06490748074A4FF4A473F7F70D +:109DE000ADFF05484FF4A471F7F79EFFEC19002072 +:109DF000ECFC0000C8E60000A0FC00004FF080432F +:109E00004FF46072C3F80423704700BF4FF08043E3 +:109E10004FF46072C3F80823704700BF10B54FF0CD +:109E20008043D3F8044362070DD5D3F8082152B11B +:109E3000554A0021C3F808111268D3F80831002AE6 +:109E400000F096809047A3060ED54FF08043D3F8DC +:109E500014214AB14D4A0020C3F814011268D3F806 +:109E60001431002A60D0904760060FD54FF0804330 +:109E7000D3F8182152B1454A0021C3F818111268CD +:109E8000D3F81831002A43D00120904721060DD580 +:109E90004FF08043D3F81C2142B13D4A0020C3F863 +:109EA0001C011268D3F81C3132B39047E2050FD57C +:109EB0004FF08043D3F8202152B1354A0021C3F836 +:109EC00020111268D3F82031002A45D00120904794 +:109ED000A30510D54FF08043D3F824215AB12C4A62 +:109EE0000021C3F824111268D3F8243142B3BDE82D +:109EF00010400220104710BD26492748274A40F24B +:109F00008D13F7F71BFF254840F28D11F7F70CFF73 +:109F100023492148214A4FF4C273F7F70FFF1F4826 +:109F20004FF4C271F7F700FF1D491B481B4A40F26E +:109F30007D13F7F703FF194840F27D11F7F7F4FEA0 +:109F400014491548154A40F29B13F7F7F7FE1348DA +:109F500040F29B11F7F7E8FE0E490F480F4A4FF405 +:109F6000CA73F7F7EBFE0D484FF4CA71F7F7DCFE42 +:109F70000C490948094A4FF4BA73F7F7DFFE07485E +:109F80004FF4BA71F7F7D0FEF4190020F019002051 +:109F9000EC1900204CFD0000C8E60000A0FC000009 +:109FA00028FD000004FD000008B5FFF737FFBDE8FD +:109FB0000840FFF711B900BF38B5B0B1104C237895 +:109FC0008BB9104A116051B10F4D0C20C5F800310A +:109FD000D5F80031FAF7C0FB0123C5F8043301239B +:109FE00023700A4838BD0A4838BD0A490A480B4A56 +:109FF0003C23F7F7A3FE09483C21F7F795FE00BF85 +:10A00000521A0020F819002000C000400000AD0BDB +:10A010000C00AD0BE0FC0000C8E600006CFD000089 +:10A0200038B5184B1B78012B22D1174D0022C5F8EB +:10A030000021164AD5F800112B6013680BB11448A3 +:10A0400038BD642404E00420FEF71AFF013C0DD063 +:10A05000D5F80031002BF6D00023C5F80031D5F833 +:10A0600000310B48084B01225A6038BD0948F9E716 +:10A0700009490A480A4A7423F7F760FE0848742120 +:10A08000F7F752FE521A002000C00040F8190020D5 +:10A090000000AD0B0100AD0BA8FD0000C8E60000FC +:10A0A0006CFD000010B5154CA8220021204604F0DC +:10A0B00027F803212161124A61611248A2614FF41D +:10A0C0008061E061002321620F48A3621021636276 +:10A0D000E36222666066A1662367E3666367BFF397 +:10A0E0005F8F0A4BA3F1100C1846C21A13F8011D1A +:10A0F000A1546345F9D1BFF35F8F10BD1004002058 +:10A10000D4FD00001000002000000020F0FD000041 +:10A1100010B4BFF35F8F0D4A0D4C0023E15C12F8C1 +:10A12000010D884203F1010307D1102BF6D1002362 +:10A13000BFF35F8F33B910BC70470123BFF35F8F4C +:10A14000002BF8D010BCFFF7ADBF00BFF0FD000042 +:10A150001004002008B5FFF7DBFF002008BD00BF9A +:10A1600000B97047FAF7F0BE08B50B4A0B4B9342A3 +:10A1700003D80FD214339342FBD90949094A0A483C +:10A180001823F7F7DBFD0948F7F7D8FD0548182134 +:10A19000F7F7CAFD08BD00BFE4E200006CE2000072 +:10A1A00018FE0000F4FD0000C8E6000078EE000094 +:10A1B00040B1C368587810F0010003D01878B0FAA5 +:10A1C00080F04009704700BFEFF31183202383F331 +:10A1D0001288BFF36F8FFEE708B5FFF7F5FF00BFEA +:10A1E00070B50446EFF31186202383F31288BFF382 +:10A1F0006F8F0E4B9D68FFF7EFFF042C08D086F39E +:10A200001188BFF36F8F2846BDE87040FAF746BA51 +:10A210000749084A08488723F7F790FD0748F7F7EA +:10A220008DFD04488721F7F77FFD00BFFC19002052 +:10A2300054FE000030FE0000C8E6000074FE00007E +:10A24000134B421C70B553F8204053F82260B442BF +:10A2500014D31BE028464BB1984738B10028B8BF4B +:10A260004042EB68FF28A8BFFF201870EA685378C7 +:10A27000083443F00103A642537007D9D4E90035EE +:10A28000002DE7D108349847A642F7D870BD00BF2B +:10A2900008FF000070B53E4B3E4E3F4D012286B098 +:10A2A00003201A70FFF7CCFFF9F750FF00F020F9F8 +:10A2B0000420FFF7C5FFAE424FD838BF344623D243 +:10A2C000D4F824C0D4E90223D4E90001CDF814C0A5 +:10A2D000D4F820C0CDF810C0D4F81CC0CDF80CC004 +:10A2E000D4F818C0CDF808C0D4F814C0CDF804C014 +:10A2F000D4F810C0CDF800C001F0E6FA23685C6520 +:10A300003034AC4229D8DBD302F04AF8AE4219D23D +:10A31000204C224E05E002F027FB3034AC4229D815 +:10A3200010D2D4E90A23B3F1FF3F08BFB2F1FF3FD7 +:10A33000F3D052EA03012068EDD03146183002F024 +:10A340007BFEEAE702F0A0F8F6F736FA144A137B30 +:10A3500023F00103137306B070BD1249124A13486B +:10A360004223F7F7EBFC1248F7F7E8FC0E484221CE +:10A37000F7F7DAFC0B490C4A0C486623F7F7DEFCCA +:10A380000B48F7F7DBFC08486621F7F7CDFC00BF68 +:10A39000531A002064E4000064E4000075BF00006C +:10A3A000200E0020D0FE0000ACFE0000C8E6000039 +:10A3B00078EE000003F0A4BE03F094BE08B5034895 +:10A3C000034A0021121AFFF7F5FF08BD68080020B4 +:10A3D000541A00202DE98048002087B0FFF730FF95 +:10A3E000DFF8E09089F30888374D384E6B69DFF865 +:10A3F000E0A0384F0024E02243F400736B6185F83D +:10A400002220EC772C766C76AC7685F820406B6A4F +:10A4100043F4E0236B6285F82340FAF7BDF8FAF7BE +:10A4200077FA4FF0FF33AB62EB62FAF7B5FBFAF75E +:10A43000B1FA294BB36040F201129A81C3E9184482 +:10A44000DC66FFF791FE0120244DFFF7F9FE0220A4 +:10A45000FFF7F6FE4FF0010B02F0E6F8204B214922 +:10A4600005934FF480625346CDE90244CDE90044A0 +:10A47000CDF810B02846756101F026FA6B7B804656 +:10A4800023F0040328466B7301F078FC0F23164970 +:10A4900003934FF4A072154B0096CDE904B4CDE9B7 +:10A4A0000144384601F010FA7B7B347423F0040336 +:10A4B000524641462846C6F80490F7607B73FAF787 +:10A4C00001FA00BF402B002000ED00E0FC19002045 +:10A4D00095A20000A00D0020A80E0020200E002054 +:10A4E00000FF0000C02C0020402B002051A80000DD +:10A4F000704700BF38B52049204B99422FD829D248 +:10A500005C1E641A5B1A64094FEA531E4FF0000C7C +:10A510008D69CB6843EA050010F003001CD14A693D +:10A520000861013A05FB0232934201D908E01A465C +:10A5300010608B69CD68D31AAB421046F7D20A611E +:10A54000F44501F120010AD0A4450CF1010301D02A +:10A550009C46DDE7002038BD6FF0150038BD084986 +:10A56000084A09489423F7F7E9FB0848F7F7E6FBA0 +:10A5700004489421F7F7D8FB20070020400700206B +:10A5800048FF000020FF0000C8E6000078EE000051 +:10A590002DE9F043044683B00E469146984600F1FB +:10A5A0000805EFF31187202383F31288BFF36F8F21 +:10A5B000284602F0DBFC00285CD0284602F0FCFCB8 +:10A5C000216931B33160E369086820610133E361D7 +:10A5D000D0B1E368C01A0AD4D4E9053202FB03F310 +:10A5E000834204D9B0FBF2F302FB1304BCB1284947 +:10A5F000284A2948E923F7F7A1FB2848F7F79EFBEB +:10A600002448E921F7F790FB62699342E1D10446BF +:10A6100005E059EA08030ED131606FF00B042846BB +:10A6200002F0B2FCB0B187F31188BFF36F8F204600 +:10A6300003B0BDE8F0832246CDE9009839462846AC +:10A6400001F09CFC04460028F1D1154B9B685B6926 +:10A650003360ECE7134A1048134940F23113F7F71F +:10A660006DFB12482946F7F769FB0E4840F231119D +:10A67000F7F75AFB0B4A08480D498823F7F75EFBAA +:10A680000C482946F7F75AFB06488821F7F74CFB98 +:10A6900068FF000020FF0000C8E60000E4FF0000A3 +:10A6A000FC190020A8EC0000D8EC0000F0EC000041 +:10A6B00008ED000020ED00002DE9F04FC368CB1A33 +:10A6C00083B031D40D46D0E9052101FB02F29A4254 +:10A6D000044629D9B3FBF1F201FB123323BB00F18D +:10A6E0000806EFF311894FF0200888F31288BFF3B2 +:10A6F0006F8F304602F03AFC00286AD0304602F0F4 +:10A700005BFC2769FFB12F60E3692561013BE361D1 +:10A71000304602F039FC00284BD089F31188BFF392 +:10A720006F8F03B0BDE8F08F3C493D4A3D4840F291 +:10A730001113F7F703FB3C48F7F700FB384840F2EA +:10A740001111F7F7F1FAEFF3118388F31288BFF3D1 +:10A750006F8F83F31188BFF36F8F002B47D023686F +:10A760009C4200D00BB92769CDE79A68002A4BD0EC +:10A77000D3E900210A6051605A7B9F6022F00202F7 +:10A780004FF0000A4FF0000B5A73C3E900AB03F11E +:10A790001800019302F038FD019B18469F675D6128 +:10A7A00001F0ECFA4946304603B0BDE8F04F01F045 +:10A7B00083BD1E4A1B481E4940F23113F7F7BEFA0B +:10A7C0001C483146F7F7BAFA184840F23111F7F74A +:10A7D000ABFA164A134818498823F7F7AFFA174817 +:10A7E0003146F7F7ABFA11488821F7F79DFA14497B +:10A7F000144A0C48B023F7F7A1FA1348F7F79EFA6A +:10A800001048B021F7F790FA104906480D4A9923ED +:10A81000F7F794FA0B489921F7F786FA98E80000C1 +:10A8200020FF0000C8E6000000000100A8EC0000C6 +:10A83000D8EC0000F0EC000008ED000020ED000076 +:10A840005000010024000100680001006C000100BC +:10A8500008B50D4B9B6893F90E30002B09DB2024C3 +:10A86000EFF3118384F31288BFF36F8FFAF756F872 +:10A87000F6E706490648074A1B23F7F75FFA05483B +:10A880001B21F7F751FA00BFFC190020A8000100B6 +:10A89000C8E600008400010003460020C3E902006E +:10A8A0001B605B60704700BF2DE9F04383B0EFF39E +:10A8B0000587002F40F0A280044690461E46EFF325 +:10A8C0001189202383F31288BFF36F8F5A4802F057 +:10A8D0004DFB002800F08480574802F06DFB574B79 +:10A8E000E1689D6899B995F90E30534823610131AB +:10A8F000C4E9025102F048FB002800F08C8089F383 +:10A900001188BFF36F8F002003B0BDE8F083A0680B +:10A91000A84201D12369E8E758EA060355D095F922 +:10A920000E1090F90E309942A8BF19466FF07E02C2 +:10A930009142B8BF11468B4243DC3F48CDF80080BE +:10A9400001962246494601F019FB0028DBD0EFF3BF +:10A950001185202383F31288BFF36F8F364802F0EE +:10A9600005FB00283CD0344802F026FBA06890B1DB +:10A97000236821699C420AD04BB193F90E30994269 +:10A98000A8BF19466FF07E039942B8BF194690F9E7 +:10A990000E3099420CD17FB9274802F0F5FA002811 +:10A9A00039D085F31188BFF36F8F6FF00A00ABE7E2 +:10A9B00001F0DCFB0028EED01F48294601F07CFCAA +:10A9C000F3E701F0D3FB0746B7E71B4802F0DCFAD8 +:10A9D00008B389F31188BFF36F8F6FF00F0093E70F +:10A9E000174A184918488823F7F7A8F91249174851 +:10A9F000F7F7A4F912488821F7F796F91449154A90 +:10AA000011486F23F7F79AF91348F7F797F91148A8 +:10AA10006F21F7F789F90A4A10490B4840F23113C0 +:10AA2000F7F78CF904490E48F7F788F9044840F223 +:10AA30003111F7F779F900BF1C1A0020FC1900202A +:10AA4000A8EC000008ED0000C8E6000020ED0000C2 +:10AA5000F4000100D000010008010100D8EC000062 +:10AA6000F0EC0000F8B5EFF30583002B6ED183689E +:10AA70000446002B67D05B4A9268934260D1C3685A +:10AA8000002B70D0012B03D0013BC3600020F8BD28 +:10AA9000EFF31186202383F31288BFF36F8F5248A0 +:10AAA00002F064FA002875D04F4802F085FAA068D9 +:10AAB000216990F90E3099421DD1EFF311832022C4 +:10AAC00082F31288BFF36F8F83F31188BFF36F8F08 +:10AAD000002B52D02568AC4200D07DB90023C4E9D8 +:10AAE0000233414802F050FA002861D086F3118801 +:10AAF000BFF36F8FCAE701F039FBDEE7AB68002BCD +:10AB000066D0D5E9003213605A6000220023C5E9FF +:10AB100000236B7B002723F002036B73AF6005F10A +:10AB2000180002F071FBA56095F90E3023612846EC +:10AB3000AF6701F023F92C48314601F0BDFBA5E7D2 +:10AB40004FF0FF30F8BD6FF01500F8BD2749284AD7 +:10AB50002848D723F7F7F2F82748F7F7EFF8244803 +:10AB6000D721F7F7E1F825492248214AEF23F7F7E3 +:10AB7000E5F81F48EF21F7F7D7F82149214A1D488A +:10AB8000B023F7F7DBF82048F7F7D8F81D48B021D5 +:10AB9000F7F7CAF81D4A1E4916488823F7F7CEF87A +:10ABA00011491C48F7F7CAF818488821F7F7BCF88C +:10ABB000164A19490F4840F23113F7F7BFF80A490E +:10ABC0001648F7F7BBF8114840F23111F7F7ACF827 +:10ABD000134908480B4A9923F7F7B0F80948992117 +:10ABE000F7F7A2F8FC1900201C1A0020F40001005D +:10ABF000D0000100C8E6000008010100300101009A +:10AC0000500001002400010068000100A8EC0000D1 +:10AC100008ED000020ED0000D8EC0000F0EC000092 +:10AC20006C0001002DE9F04782B081469DF828A014 +:10AC30000E4615461C4600F10807EFF31188202345 +:10AC400083F31288BFF36F8F384602F08FF9002824 +:10AC500000F09780384602F0AFF9BAF1000F2AD120 +:10AC6000EFF31183202282F31288BFF36F8F83F3F7 +:10AC70001188BFF36F8F002B76D04B4653F80C2F03 +:10AC80009A4201D0002A3ED1C4B92C6016B3336871 +:10AC9000032B2CD923F0030323432B60336803F0E9 +:10ACA00003031D4335604146384601F005FB002093 +:10ACB00002B0BDE8F087D9F80460D1E70821002090 +:10ACC00002F038FE002844D00124456004600546A7 +:10ACD000002EDCD1D9F8003023432B60D9F80430A2 +:10ACE000C9F80050002BDED1C9F80450DBE72C6016 +:10ACF000D9F8042042B3136803F003032B43136015 +:10AD0000C9F80450CFE79368002B58D0D2E900313E +:10AD10000B605960537B019223F002030021002451 +:10AD20000020C2E900015373946002F1180002F0A0 +:10AD30006BFA019A10469467556101F01FF841467D +:10AD4000384601F0B9FAB2E7C9F80050C9F8045022 +:10AD5000A9E7384602F018F908B388F31188BFF361 +:10AD60006F8F6FF00B00A3E71A491B4A1B48B023F3 +:10AD7000F6F7E4FF1A48F6F7E1FF1748B021F6F7B7 +:10AD8000D3FF184A154818498823F6F7D7FF174804 +:10AD90003946F6F7D3FF13488821F6F7C5FF114A65 +:10ADA0000E48134940F23113F6F7C8FF11483946EF +:10ADB000F6F7C4FF0B4840F23111F6F7B5FF0E4924 +:10ADC0000648054A9923F6F7B9FF03489921F6F793 +:10ADD000ABFF00BF5000010024000100C8E60000E6 +:10ADE00068000100A8EC000008ED000020ED000064 +:10ADF000D8EC0000F0EC00006C00010000B583B05E +:10AE00000A460023012100911946FFF70BFF03B00A +:10AE10005DF804FB2DE9F043044683B09046994663 +:10AE200000F10806EFF31187202181F31288BFF3A8 +:10AE30006F8F304602F09AF888B3304602F0BCF8C3 +:10AE40002568DDB12B68626823F00303954208BFD3 +:10AE5000636023602B689B070BD1304602F094F8A7 +:10AE600058B387F31188BFF36F8F284603B0BDE84E +:10AE7000F08328466D6802F055FDEEE758EA0903B5 +:10AE8000EBD0CDE9008904F10C023946304601F0DF +:10AE900075F80028E9D1114B9B685D69E5E7104A18 +:10AEA000104811498823F6F749FF10483146F6F754 +:10AEB00045FF0B488821F6F737FF094A09480C4936 +:10AEC00040F23113F6F73AFF0A483146F6F736FFFB +:10AED000034840F23111F6F727FF00BFFC190020AC +:10AEE000A8EC0000C8E6000008ED000020ED00001E +:10AEF000D8EC0000F0EC00003AB18A4205D3C0E97A +:10AF0000021200604060002070476FF0150070472B +:10AF100070B50446EFF31186202585F31288BFF340 +:10AF20006F8F3D4802F022F800285DD03A4802F0C9 +:10AF300043F8EFF3118385F31288BFF36F8F83F328 +:10AF40001188BFF36F8F002B41D02568AC4200D031 +:10AF500075B9D4E902329A4218BF01332E48A36072 +:10AF600002F012F818B386F31188BFF36F8F70BD2B +:10AF7000AB68002B46D0D5E9003213605A606B7B7A +:10AF80000021002423F002030020C5E900016B73B7 +:10AF9000AC6005F1180002F037F92846AC6700F004 +:10AFA000EDFE31461C48BDE8704001F085B91B4AF2 +:10AFB0001B491C4840F23113F6F7C0FE16491A48E7 +:10AFC000F6F7BCFE154840F23111F6F7ADFE174911 +:10AFD000174A1448B023F6F7B1FE1648F6F7AEFE4E +:10AFE0001348B021F6F7A0FE0C4A13490D488823F8 +:10AFF000F6F7A4FE08491148F6F7A0FE0748882195 +:10B00000F6F792FE0E490748094A9923F6F796FE8D +:10B0100007489921F6F788FE201A0020A8EC0000C6 +:10B02000D8EC0000C8E60000F0EC00005000010081 +:10B03000240001006800010008ED000020ED000080 +:10B040006C000100F0B5044683B016461D46EFF3D0 +:10B05000058111B152EA05034FD1EFF31187202387 +:10B0600083F31288BFF36F8F2A4801F07FFF30B35C +:10B07000284801F0A1FFA16861B101392548A1600C +:10B0800001F082FF48B387F31188BFF36F8F002070 +:10B0900003B0F0BD56EA05031E4809D101F074FF64 +:10B0A000D8B187F31188BFF36F8F6FF00F00EFE710 +:10B0B000CDE900652246394600F060FFE8E7164A10 +:10B0C000164917488823F6F739FE12491548F6F74E +:10B0D00035FE11488821F6F727FE0F4A124910481D +:10B0E00040F23113F6F72AFE0A491048F6F726FE19 +:10B0F000094840F23111F6F717FE0D490D4A08488C +:10B100008823F6F71BFE0C48F6F718FE094888213D +:10B11000F6F70AFE201A0020A8EC000008ED000057 +:10B12000C8E6000020ED0000D8EC0000F0EC0000C4 +:10B130006801010048010100680001002DE9704725 +:10B14000DFF80082DFF800A285B00546EFF3118931 +:10B15000202383F31288BFF36F8F404601F006FF70 +:10B16000002800F0C480404601F026FFD5F880405A +:10B17000002C00F08180D5F884202368C5F8803049 +:10B18000944208BFC5F88430D5F8983043F00203E4 +:10B19000C5F89830E368666823F0040343F00103C0 +:10B1A0004046E36001F0F0FE002800F0AE8089F335 +:10B1B0001188BFF36F8F002E00F0B7802046B04794 +:10B1C000EFF31189202383F31288BFF36F8F40467A +:10B1D00001F0CCFE002800F08A80404601F0ECFE31 +:10B1E000E268D10622F001033DD4E3609A0715D44A +:10B1F000D5F8983023F002034046C5F89830C3F3E1 +:10B20000002401F0C1FE00287FD089F31188BFF32C +:10B210006F8F002C9AD101F00FFA97E7DAF800004F +:10B2200023F00203E3600028E2D0426803689442FE +:10B230004FF0000107D0002BDAD0014618461B68FA +:10B2400042689442F7D10368002947D00B60DAF8CE +:10B250000430834208BFCAF80410002340F8083BBA +:10B26000FFF756FEC4E722F01102E26004F110007D +:10B27000FFF74EFEE368B9E7D5F8983023F00402F3 +:10B280005C07C5F89820C3F380010FD4D00616D50B +:10B290002C48C5F8981001F077FE002835D089F3C6 +:10B2A0001188BFF36F8F05B0BDE8708705F190047A +:10B2B00000220121204601F0F7FC0028F8D10023EC +:10B2C0004FF0FF314FF0FF32CDE90012029305F14C +:10B2D00088024946404601F057FD37E7DAF8042076 +:10B2E000CAF800308242B8D1CAF80430B5E7174A2C +:10B2F000174918488823F6F721FD12491648F6F732 +:10B300001DFD12488821F6F70FFD104A1349114818 +:10B3100040F23113F6F712FD0A491148F6F70EFD17 +:10B320000A4840F23111F6F7FFFC0E4909480E4A6F +:10B3300040F2AB23F6F702FD0B4840F2AB21F6F7E3 +:10B34000F3FC00BF241A0020A00E0020A8EC00008F +:10B3500008ED0000C8E6000020ED0000D8EC000079 +:10B36000F0EC0000DC010100B8010100F8B5C36891 +:10B370009A070D46C3F3400611D45F0712D5002388 +:10B380002B603046F8BD00F095FAD7F89830C8B970 +:10B39000D907C3F3C00245D5F2B15A071CD46FF0E8 +:10B3A0000F06ECE70F68044667B3DB0733D5A768E1 +:10B3B000002F3AD02F600226224B9B68BB42E2D07E +:10B3C000D7F89830D807C3F380022BD5002AE6D1EE +:10B3D000C3F3C003002BE2D100232360D7F88430ED +:10B3E000DBB11C60C7F88440002207F188001146D9 +:10B3F00001F05AFCE36843F00403E3602B68A360A8 +:10B400003046F8BD87680F60C368DE07CFD417B930 +:10B410006FF01506B3E70126CEE7C7F88040C7F8FE +:10B420008440E1E76FF01206A9E707490748084A98 +:10B430004FF4AA73F6F782FC05484FF4AA71F6F7A9 +:10B4400073FC00BFFC190020F4010100C8E60000F5 +:10B45000B801010030B5044683B0EFF31185202315 +:10B4600083F31288BFF36F8F204801F07FFDF0B1A6 +:10B470001E4801F0A1FD54F8043C002123F008020D +:10B480001B07019144F8042C09D4184801F07CFDF5 +:10B49000D8B185F31188BFF36F8F03B030BDA369B6 +:10B4A000019301A9A4F11000FFF760FFEDE7104A36 +:10B4B000104911488823F6F741FC0C490F48F6F76C +:10B4C0003DFC0B488821F6F72FFC094A0C490A4835 +:10B4D00040F23113F6F732FC04490A48F6F72EFC25 +:10B4E000034840F23111F6F71FFC00BF241A002078 +:10B4F000A8EC000008ED0000C8E6000020ED000008 +:10B50000D8EC0000F0EC000008B530B179B10023B0 +:10B51000C0E902330360416008BD0A490A480B4A8A +:10B520009923F6F70BFC09489921F6F7FDFB08492A +:10B530000548064A9A23F6F701FC04489A21F6F7D3 +:10B54000F3FB00BF28020100C8E60000B8010100BB +:10B55000DC01010030B583B0019009B34B680C46A3 +:10B56000002B47D0EFF31185202383F31288BFF31C +:10B570006F8F264801F0FAFC70B3244801F01CFDDF +:10B58000204601A9FFF7F2FE0446204801F0FCFC2A +:10B5900090B185F31188BFF36F8F204603B030BDA3 +:10B5A0001B491C481C4A4FF4BD73F6F7C7FB1A48E9 +:10B5B0004FF4BD71F6F7B8FB184A1949154840F227 +:10B5C0003113F6F7BBFB11491648F6F7B7FB1348E2 +:10B5D00040F23111F6F7A8FB104A13490D488823B1 +:10B5E000F6F7ACFB09491148F6F7A8FB0B48882190 +:10B5F000F6F79AFB0E490748074A40F27B13F6F725 +:10B600009DFB054840F27B11F6F78EFB241A0020C3 +:10B6100028020100C8E60000B8010100A8EC000003 +:10B62000D8EC0000F0EC000008ED000020ED000078 +:10B630003C02010010B5FFF78DFF041E08DDEFF39B +:10B640001180202383F31288BFF36F8F00F088FEF0 +:10B65000204610BDF0B589B00E9D002840D00029CD +:10B6600056D00446D0F8980010F0010044D1C4F838 +:10B670008000C4F8840004F18800C4E9220004F1C9 +:10B680009000C4E924004DB32879002840F201104D +:10B6900008BF0120C4F898004FF0FF364FF0FF3785 +:10B6A0000020CDE9010003930490CDE906671E4B0D +:10B6B0000094204600F07EF955B1296811B120466A +:10B6C00000F0FEF86B791BB1237B43F00103237379 +:10B6D000204609B0BDE8F04001F046B90120D9E7A5 +:10B6E00012491348134A40F2DB23F6F727FB1148AF +:10B6F00040F2DB21F6F718FB0F490D480D4A40F2E6 +:10B70000DD23F6F71BFB0B4840F2DD21F6F70CFBBF +:10B710000A490748074A4FF43773F6F70FFB054805 +:10B720004FF43771F6F700FB3DB100005C020100F9 +:10B73000C8E60000B80101006C02010064020100CB +:10B7400038B558B10D46A9B104463022002102F0A7 +:10B75000D7FC4FF480736560E36038BD0B490C483B +:10B760000C4A40F27A33F6F7E9FA0A4840F27A31A5 +:10B77000F6F7DAFA08490648064A40F27B33F6F74C +:10B78000DDFA044840F27B31F6F7CEFAA002010060 +:10B79000C8E60000B8010100DC010100F0B583B08B +:10B7A0000190002864D00C46002955D016461D464D +:10B7B000EFF31187202383F31288BFF36F8F324892 +:10B7C00001F0D4FB002839D02F4801F0F5FBE168E7 +:10B7D00011F01E0F0BD000242B4801F0D5FBE8B16F +:10B7E00087F31188BFF36F8F204603B0F0BD55EA91 +:10B7F00006030DD0019BA36241F00801E16004F152 +:10B800001000224932462B4601F016FC0124E3E7E2 +:10B81000204601A9FFF7AAFD0446DDE71C4A1D49A1 +:10B820001D4840F23113F6F789FA17491B48F6F71D +:10B8300085FA174840F23111F6F776FA144A18499A +:10B8400015488823F6F77AFA0F491648F6F776FA7C +:10B850000F488821F6F768FA13490F48134A40F257 +:10B86000F633F6F76BFA114840F2F631F6F75CFA68 +:10B870000F4909480D4A40F2F533F6F75FFA0B48D5 +:10B8800040F2F531F6F750FA241A002055B40000C2 +:10B89000A8EC0000D8EC0000C8E60000F0EC0000C6 +:10B8A00008ED000020ED0000A0020100B801010039 +:10B8B00010020100EFF30580003818BF0120704727 +:10B8C0006FF05700704700BF2DE9F04385B0054683 +:10B8D0000F9C0F2C0E461F4649D004F110031E2B5F +:10B8E00048D8073222F00702109B2B737F3222F0D8 +:10B8F0003F0205F15803C5E91633AC730023042455 +:10B90000002000213F2AC5E90601AB60EB736C7390 +:10B9100006F14009A2F1400822D9B4182146284670 +:10B92000F8F73CFC07300E9B20F00700A866C5E93D +:10B93000189802930D9B0193241A0C9B00932246A6 +:10B940003B4631462846F8F789FF144B9B68002296 +:10B950006A6503B1DB6EEB66204605B0BDE8F08397 +:10B9600083F31188BFF36F8F204602DFD5E70C4BBE +:10B970009F42B6D00B4A0C490C484FF40173F6F7BE +:10B98000DDF90B4821466FF00F030E22F6F7D6F9CA +:10B9900004484FF40171F6F7C7F900BFFC19002005 +:10B9A00051A80000B8020100DC020100C8E6000056 +:10B9B0005C030100F0B587B0DDE91276EFF3058591 +:10B9C0004DBB0595109D04950F9D03950E9D029509 +:10B9D0000D9D01950C9D00950446FFF775FFB6F18E +:10B9E000FF3F08BFB7F1FF3F02D1204607B0F0BDCF +:10B9F00056EA070305D1204600F0B6FF204607B0FF +:10BA0000F0BD04F118000B493A46334601F014FB2F +:10BA1000204607B0F0BD0849084A094840F2912382 +:10BA2000F6F78CF90748F6F789F9044840F29121B6 +:10BA3000F6F77AF975BF0000F4000100B8020100C2 +:10BA4000C8E600009003010038B590F90D20437B53 +:10BA5000002A19DB214D2A46AB6852F8184F944250 +:10BA600020D0FCB1834208D00BB35A7BD20604D15C +:10BA7000DA897F2A01D9A269B2B1A34202D0204655 +:10BA800001F0C4F96C6138BD154A03F07F039042A0 +:10BA9000437319D0D0E9002100230A60516003608C +:10BAA0004360D7E7EC68DDE71C466C6138BD0D49A3 +:10BAB0000D4A0E48D623F6F741F90D48F6F73EF940 +:10BAC0000948D621F6F730F90A4908480A4A5623A8 +:10BAD000F6F734F908485621F6F726F9FC19002044 +:10BAE000A00D00202C04010000040100C8E60000A5 +:10BAF00068000100DC030100B803010038B5054609 +:10BB00000C46FFF7A1FF6B7B43F002036B73B4B1EC +:10BB1000AC6023689C4213D093B195F90E1093F951 +:10BB20000E20914201D08A420CDC62689A4202D017 +:10BB30001B68002BF3D1C5E900421560656038BD74 +:10BB40006268F8E75A68C5E9003215605D6038BD83 +:10BB5000054C0649064808B522469923F6F7EEF843 +:10BB600099212046F6F7E0F8240001006C0001005E +:10BB7000C8E6000038B590F90D30427B002B03DB9E +:10BB8000D10601D1836903B138BD2B4B62F07F022E +:10BB90009842427339D0294C214651F8183F8B42C4 +:10BBA0002BD0E56963B190F90EC093F90E2094454E +:10BBB00001D0624523DC9D4202D01B68002BF4D1EA +:10BBC000C0E900152860E061A5698D4213D095B1E8 +:10BBD000A36823B35A7BD20606D1DA897F2A03D918 +:10BBE000AA690AB9636138BDAB4202D0284601F0A8 +:10BBF0000DF9656138BDE568EAE7E569E0E75A688F +:10BC0000C0E9003210605860DEE70D490D480E4A69 +:10BC10004F23F6F793F80C484F21F6F785F80B49B8 +:10BC20000B4A0848D623F6F789F80A48F6F786F84B +:10BC30000748D621F6F778F8A00D0020FC1900205F +:10BC4000DC030100C8E60000B80301002C04010079 +:10BC5000000401006800010038B590F90D10427B26 +:10BC6000002903463D4935DB62F07F02884242737A +:10BC70006AD03B4C204650F8182F824240D0E569EC +:10BC800062B193F90EC092F90E108C4501D0614556 +:10BC90003DDC954202D01268002AF4D1C3E90005C8 +:10BCA0002B60E361A569A26885422BD055B39A4207 +:10BCB00009D0002A3BD0537BDB0604D1D3897F2BEC +:10BCC00001D9AB6903B3AA4202D0284601F09EF81D +:10BCD000656138BD02F07F02884242731DD0D0E911 +:10BCE00000210A605160427B1D4C002162F07F02FE +:10BCF000016041604273204650F8182F8242BED145 +:10BD0000E569CBE7E568D2E71546656138BD51685E +:10BD1000C3E900210B605360C4E712491248134A7B +:10BD20005623F6F70BF811485621F5F7FDFF104999 +:10BD3000104A0D48D623F6F701F80F48F5F7FEFF35 +:10BD40000C48D621F5F7F0FF06490748074A4F236C +:10BD5000F5F7F4FF05484F21F5F7E6FFA00D0020A9 +:10BD6000FC190020DC030100C8E60000B803010054 +:10BD70002C040100000401006800010038B50446ED +:10BD8000EFF31185202383F31288BFF36F8F1848D8 +:10BD900001F0ECF870B1164801F00EF92046FFF7FB +:10BDA000E9FE134801F0F0F890B185F31188BFF374 +:10BDB0006F8F38BD0F4A104910488823F5F7BEFF32 +:10BDC0000B490F48F5F7BAFF0A488821F5F7ACFF91 +:10BDD000084A0C49094840F23113F5F7AFFF04490E +:10BDE0000948F5F7ABFF034840F23111F5F79CFF26 +:10BDF000281A0020A8EC000008ED0000C8E60000AA +:10BE000020ED0000D8EC0000F0EC000038B504464E +:10BE1000EFF31185202383F31288BFF36F8F1F4840 +:10BE200001F0A4F8D8B11D4801F0C6F8A3686BB1C1 +:10BE3000D4E9003213605A60637B00200021C4E91A +:10BE4000000123F0020300226373A260134801F093 +:10BE50009BF890B185F31188BFF36F8F38BD104AFE +:10BE6000104911488823F5F769FF0C490F48F5F789 +:10BE700065FF0B488821F5F757FF094A0C490A4826 +:10BE800040F23113F5F75AFF04490A48F5F756FF17 +:10BE9000034840F23111F5F747FF00BF281A002090 +:10BEA000A8EC000008ED0000C8E6000020ED00004E +:10BEB000D8EC0000F0EC000038B50446EFF3118533 +:10BEC000202383F31288BFF36F8F234801F04EF8CD +:10BED00018B3214801F070F8637B13F0280213D1E6 +:10BEE000A16859B1D4E9003100200B6059600021EC +:10BEF000637BA260C4E9000103F0FD0323F00403A7 +:10BF000063732046FFF736FE134801F03DF890B109 +:10BF100085F31188BFF36F8F38BD104A104911485F +:10BF20008823F5F70BFF0C490F48F5F707FF0B487F +:10BF30008821F5F7F9FE094A0C490A4840F2311305 +:10BF4000F5F7FCFE04490A48F5F7F8FE034840F20D +:10BF50003111F5F7E9FE00BF281A0020A8EC000017 +:10BF600008ED0000C8E6000020ED0000D8EC00005D +:10BF7000F0EC000001211838FFF79EBF2DE9F047D3 +:10BF80003D4D3E4F3E4B1646B842AA681A60DDE969 +:10BF900008A94BD004468846EFF31183202383F38E +:10BFA0001288BFF36F8F384600F0E0FF80B3384649 +:10BFB00001F002F83146AE683046FFF79FFDB9F157 +:10BFC000FF3F08BFBAF1FF3F06D02E4952464B460D +:10BFD00006F1180001F030F8204600F0D5FF0028E7 +:10BFE00040D0264800F0D0FF60B3AB68264A6FF01F +:10BFF0000A01C3E91D81536843F080530021536057 +:10C0000081F31188BFF36F8FAB68986FBDE8F0873D +:10C010001E4A1F481F498823F5F790FE1E483946DF +:10C02000F5F78CFE19488821F5F77EFE1B49184864 +:10C030001B4A40F26D23F5F781FE194840F26D214D +:10C04000F5F772FE1749114A114840F26B13F5F7E4 +:10C0500075FE0A491448F5F771FE0C4840F26B1161 +:10C06000F5F762FE0F49094A094840F26B13F5F7EC +:10C0700065FE2146EEE700BFFC190020281A0020CB +:10C080002C1A002075BF000000ED00E0A8EC0000B5 +:10C09000C8E6000008ED000020ED00005404010097 +:10C0A000B8030100D8EC0000F0EC000070B50546C4 +:10C0B000EFF31186202383F31288BFF36F8F244898 +:10C0C00000F054FF002833D0214800F075FF2C68A1 +:10C0D000A5421BD084B1A368002B37D0D4E900322D +:10C0E00013605A60637B00200021C4E9000123F043 +:10C0F000020300226373A260154800F045FF38B1C7 +:10C1000086F31188BFF36F8F204670BD0024F3E7DC +:10C11000104A1149114840F23113F5F70FFE0C494E +:10C120000F48F5F70BFE0B4840F23111F5F7FCFD17 +:10C13000084A0C4909488823F5F700FE04490A48D3 +:10C14000F5F7FCFD03488821F5F7EEFDFFF700FD4C +:10C15000281A0020A8EC0000D8EC0000C8E6000077 +:10C16000F0EC000008ED000020ED0000F8B50446FA +:10C170000F46EFF31185202383F31288BFF36F8FEF +:10C18000424800F0F3FE002868D006463F4800F021 +:10C1900013FF637BDA060CD0A77300263B4800F040 +:10C1A000F3FE00284AD085F31188BFF36F8F304625 +:10C1B000F8BDA269002AEFD103F07F036373344B0B +:10C1C0009C4259D0D4E9003003605860637B226000 +:10C1D00079B2304F626063F07F033846A1736373B6 +:10C1E00050F8183F834220D0D7F81CC053B193F9C0 +:10C1F0000E20914201D08A421ADC9C4502D01B6875 +:10C20000002BF4D1C4E9000CCCF80040FC61BC69FF +:10C21000844208D03CB1BB689C4202D0204600F06A +:10C22000F5FD7C61BAE7FC68F5E7D7F81CC0E9E7E3 +:10C230005A68C4E9003214605C60E8E7164A17499E +:10C24000174840F23113F5F779FD10491548F5F715 +:10C2500075FD114840F23111F5F766FD0E4A12499D +:10C260000F488823F5F76AFD08491048F5F766FD81 +:10C2700009488821F5F758FD0D4909480D4A56230C +:10C28000F5F75CFD0B485621F5F74EFD281A002006 +:10C29000A00D0020FC190020A8EC0000D8EC000044 +:10C2A000C8E60000F0EC000008ED000020ED000002 +:10C2B000DC030100B8030100F8B505460C4611B9CE +:10C2C000EFF3058646B1284600F05EFED8B184F350 +:10C2D0001188BFF36F8FF8BD1B4F7A69BB689A4214 +:10C2E000F1D000F051FEF0B1BB68184A5E676FF004 +:10C2F0000A019967536843F08053536086F31188AD +:10C30000BFF36F8FF8BD124A1248134940F2311340 +:10C31000F5F714FD11482946F5F710FD0C4840F2D9 +:10C320003111F5F701FD0A4A0A480B4940F26B1337 +:10C33000F5F704FD09482946F5F700FD044840F2E9 +:10C340006B11F5F7F1FC00BFFC19002000ED00E0D7 +:10C35000A8EC0000C8E60000D8EC0000F0EC0000FB +:10C36000A8B9EFF3058393B90B498A6849699142EB +:10C370000DD00A4953676FF00A0090674A6842F08F +:10C3800080524A6083F31188BFF36F8F704780F348 +:10C390001188BFF36F8F7047FC19002000ED00E09B +:10C3A00010B5EFF31184202383F31288BFF36F8F4E +:10C3B000294800F0DBFDB0B1274800F0FDFDEFF3A8 +:10C3C0000583002B3AD1254B9A68D37B012B28D0CB +:10C3D000013BD373204800F0D7FD90B184F311885E +:10C3E000BFF36F8F10BD1E4A1E491F488823F5F703 +:10C3F000A5FC19491D48F5F7A1FC19488821F5F756 +:10C4000093FC174A1A49184840F23113F5F796FC85 +:10C4100011491848F5F792FC114840F23111F5F72F +:10C4200083FC1549154A10489023F5F787FC1448FA +:10C43000F5F784FC11489021F5F776FC11490F4A75 +:10C4400009488F23F5F77AFC0D48F5F777FC0B4880 +:10C450008F21F5F769FC00BF281A0020FC19002085 +:10C46000A8EC000008ED0000C8E6000020ED000088 +:10C47000D8EC0000F0EC0000900401002400010062 +:10C4800068000100F400010070B5EFF3118620236D +:10C4900083F31288BFF36F8F494800F067FD0028CF +:10C4A00051D0484D464800F087FDAB68DA7B002A42 +:10C4B00076D0EFF30581002963D129460132DA7382 +:10C4C00051F8184F8C423CD0002C3AD05A7BD206FF +:10C4D0002CD1DA897F2A29D9A2693ABB1C4638486F +:10C4E0006C6100F051FD00283BD086F31188BFF34A +:10C4F0006F8FEFF31183202282F31288BFF36F8FC7 +:10C50000D3B9EFF30582BAB9A9686869884213D034 +:10C510002D484A676FF00A038B67436843F08053E6 +:10C52000436082F31188BFF36F8F70BDA342D6D0F2 +:10C53000204600F06BFCD2E783F31188BFF36F8FC6 +:10C5400070BDEC68C2E7214A214922488823F5F7EB +:10C55000F5FB1B492048F5F7F1FB1C488821F5F74E +:10C56000E3FB1A4A1D491B4840F23113F5F7E6FB7D +:10C5700013491B48F5F7E2FB144840F23111F5F777 +:10C58000D3FB1849184A134840F2FF23F5F7D6FBAE +:10C590001648F5F7D3FB144840F2FF21F5F7C4FB2A +:10C5A0001349114A0B4840F2FE23F5F7C7FB0F4829 +:10C5B000F5F7C4FB0C4840F2FE21F5F7B5FB00BFD0 +:10C5C000281A0020FC19002000ED00E0A8EC000073 +:10C5D00008ED0000C8E6000020ED0000D8EC0000E7 +:10C5E000F0EC0000F4000100B80301006800010055 +:10C5F000C404010038B50468844212D005460CB961 +:10C600000FE064B12046FFF701FC04F1180000F0D0 +:10C61000FBFD2046FFF7B2FB2C68A542F1D10120BB +:10C6200038BD002038BD00BF024A134643F8182920 +:10C63000DA617047141A002070B5EFF30584002CFE +:10C6400068D1EFF31186202383F31288BFF36F8F35 +:10C65000404800F08BFC00284ED03F4D3D4800F094 +:10C66000ABFCAA68EB699A4214BF13681168526860 +:10C6700018BF1946116008BF23464A60A868EC69D4 +:10C6800063B190F90E2093F90E108A4201D09142C5 +:10C690002BDCA34202D01B68002BF2D12F4AC0E949 +:10C6A00000242060E861AC6994421CD0DCB1AB6826 +:10C6B0009C4202D0204600F0A9FB26486C6100F0A5 +:10C6C00063FC002835D0AB68254A6FF00A01C3E946 +:10C6D0001D61536843F080530021536081F311883A +:10C6E000BFF36F8F70BDEC68E1E75A68C0E90032B4 +:10C6F00010601A4A5860D6E71A4A1B491B4888231B +:10C70000F5F71CFB13491A48F5F718FB1548882163 +:10C71000F5F70AFB1749184A144840F21443F5F795 +:10C720000DFB1648F5F70AFB134840F21441F5F7E4 +:10C73000FBFA0C4A12490D4840F26B13F5F7FEFA6A +:10C7400004491048F5F7FAFA064840F26B11F5F77C +:10C75000EBFA00BF281A0020FC190020141A002050 +:10C7600000ED00E0A8EC000008ED0000C8E60000C5 +:10C7700020ED0000F4000100B80301006800010092 +:10C78000D8EC0000F0EC00002DE9F041EFF3058457 +:10C79000002C4FD150EA01030546884645D0831C42 +:10C7A00071F1FF333DDA6FF00100441BEFF31186A6 +:10C7B000202383F31288BFF36F8F354800F0D6FB38 +:10C7C000002856D0334F324800F0F6FB324BB868A1 +:10C7D0001860FFF739F9B86830492A4643461830DF +:10C7E00000F02AFCBA682A48537B43F004035373D1 +:10C7F00000F0CAFB68B3BB68294A6FF00A01C3E9BD +:10C800001D61536843F080530021536081F3118808 +:10C81000BFF36F8F00F0D0FE201A20EAE070BDE871 +:10C82000F08100F0C9FE4419C0E7FFF705FF20467C +:10C83000BDE8F0811B491C4A1C4840F22F43F5F724 +:10C840007DFA1B48F5F77AFA174840F22F41F5F7C1 +:10C850006BFA184A1849154840F26B13F5F76EFA4F +:10C860000B491648F5F76AFA124840F26B11F5F7D2 +:10C870005BFA104A12490D488823F5F75FFA04491C +:10C880001048F5F75BFA0B488821F5F74DFA00BF21 +:10C89000281A0020FC1900202C1A002075BF000067 +:10C8A00000ED00E0F4000100B8030100C8E600005C +:10C8B00068000100A8EC0000D8EC0000F0EC0000DB +:10C8C00008ED000020ED000070B5EFF30586B6B965 +:10C8D00005460C46FFF758FFB4F1FF3F08BFB5F11E +:10C8E000FF3F09D04FF47A7247F6FF73C0FB023660 +:10C8F000D80B40EA464070BD4FF0FF3070BD07498D +:10C90000074A084840F25B43F5F718FA0648F5F77E +:10C9100015FA034840F25B41F5F706FAF40001000E +:10C92000B8030100C8E600006800010010B50C4B18 +:10C9300000244FF400422146C0FB02311846094A48 +:10C940000023F3F7C5FDC117FFF71EFF054A47F6A1 +:10C95000FF73C0FB0234DB0B43EA444010BD00BF51 +:10C960003F420F0040420F0038B50446183000F037 +:10C970004BFCEFF31185202383F31288BFF36F8FF5 +:10C98000204800F0F3FAF0B11E4800F015FB637B7D +:10C990005A0708D41B4800F0F7FA10B385F3118842 +:10C9A000BFF36F8F38BD23F0040363732046FFF796 +:10C9B000E1F8EFF305831348002BECD12946BDE8DD +:10C9C0003840FFF779BC104A104911488823F5F721 +:10C9D000B5F90C490F48F5F7B1F90B488821F5F77F +:10C9E000A3F9094A0C490A4840F23113F5F7A6F9B0 +:10C9F00004490A48F5F7A2F9034840F23111F5F766 +:10CA000093F900BF281A0020A8EC000008ED0000F0 +:10CA1000C8E6000020ED0000D8EC0000F0EC0000BB +:10CA2000014B9868704700BFFC1900202DE9F843BE +:10CA30000646EFF31189202383F31288BFF36F8F2B +:10CA4000854800F093FA002800F0DE80824800F06C +:10CA5000B3FA377B17F0010760D1737B1A0752D402 +:10CA6000D90943F0080240F096807273B3685BB155 +:10CA7000D6E9003213605A60727B0023C6E90033A6 +:10CA800022F002027273B36006F1180000F0BCFBE2 +:10CA9000B46D06F15808A0451DD0E4B1002500E0B2 +:10CAA000CCB1A368002B00F09580D4E9003213606C +:10CAB0005A60637B256023F0020363736560A560A1 +:10CAC00004F1180000F0A0FBA5672046FFF752F81C +:10CAD000B46DA045E4D1614CA3689E4274D0A569B1 +:10CAE0005F4A954255D0002D53D0AB4202D0284624 +:10CAF00000F08CF96561002F5CD1A3689E4202D1E1 +:10CB0000EFF305851DB3544800F03EFA00286BD0C2 +:10CB100089F31188BFF36F8FBDE8F8834E4800F0AA +:10CB200033FA002860D089F31188BFF36F8F4D4A24 +:10CB30004D484E4940F23553F5F700F94C4831461F +:10CB4000F5F7FCF8474840F23551F5F7EDF8424863 +:10CB500000F01AFA00286FD0A368464A6FF00A0165 +:10CB6000C3E91D91536843F08053536085F31188E6 +:10CB7000BFF36F8F40493B4A3B4840F2B513F5F78E +:10CB8000DDF83E48F5F7DAF8364840F2B511F5F72A +:10CB9000CBF8E568A9E73A4A03F07F0343F00803BE +:10CBA000964273733ED0D6E9003213605A60C6E9EC +:10CBB00000775BE7334BA36040F201129A810022B9 +:10CBC000C3E91822DA6699E7EFF30587003F18BF3B +:10CBD000012784E72C4924482C4A9923F5F7AEF81D +:10CBE0002A489921F5F7A0F8294A2A491E4840F217 +:10CBF0003113F5F7A3F818492748F5F79FF82448AB +:10CC000040F23111F5F790F8214A2449164888235B +:10CC1000F5F794F810492248F5F790F81C48882158 +:10CC2000F5F782F81F4910480E4A5623F5F786F8A3 +:10CC30000C485621F5F778F8154A16490A4840F28B +:10CC40006B13F5F77BF804491348F5F777F81048AC +:10CC500040F26B11F5F768F8281A0020FC19002043 +:10CC6000141A0020B8030100C8E6000098E800008C +:10CC7000F804010000ED00E01805010024050100A2 +:10CC8000A00D0020A80E00206C000100240001006F +:10CC9000A8EC0000D8EC0000F0EC000008ED00006B +:10CCA00020ED0000DC0301002DE9F843064688462C +:10CCB0001746EFF31189202383F31288BFF36F8F98 +:10CCC0002A4800F053F9002840D00546274800F0D4 +:10CCD00073F93468A64227D024B3A368C4F87880D7 +:10CCE0006761002B40D0D4E9003213605A60002203 +:10CCF0000023C4E90023637BA26023F00203637373 +:10CD000004F1180000F080FA2046FEF733FF1748C0 +:10CD100000F03AF950B189F31188BFF36F8F2846BC +:10CD2000BDE8F8832546F2E70025F0E7104A1149EF +:10CD3000114840F23113F5F701F80C490F48F4F7A8 +:10CD4000FDFF0B4840F23111F4F7EEFF084A0C49A1 +:10CD500009488823F4F7F2FF04490A48F4F7EEFF84 +:10CD600003488821F4F7E0FFFEF7F2FE281A0020BE +:10CD7000A8EC0000D8EC0000C8E60000F0EC0000D1 +:10CD800008ED000020ED000010B582B0DDE90434AC +:10CD9000CDE90034069CFFF7F1F81CB1024B9B680B +:10CDA0005B69236002B010BDFC19002008B5A8B172 +:10CDB0000F4B984212D303F1180290420ED20D4A43 +:10CDC000C01A0D4B02FB00F1B3EBF10F06D3C010FC +:10CDD00002FB00F0094B01221A5408BD084909481A +:10CDE000094A3823F4F7AAFF07483821F4F79CFFD3 +:10CDF000280F0020ABAAAAAAAAAAAA0A301A0020C1 +:10CE000070050100C8E600004805010070B5144A2D +:10CE1000144E157C05EB450206EBC206044630466F +:10CE200000F0F2F9104B00225A55E3897F2B16D8F7 +:10CE30000E4B1A689AB10E4B94F90E101B6899426A +:10CE40000DDB637BDB060AD10A4B9C4207D0013A1B +:10CE500030460949BDE87040D31700F0EDB870BD09 +:10CE6000FC190020280F0020301A0020381A00205A +:10CE7000341A0020A00D0020ADCD000038B5EFF32E +:10CE80001185202383F31288BFF36F8F2A4800F0A7 +:10CE90006DF8002832D0284800F08EF8274A284B39 +:10CEA00094681868A04226D00021127C1960254B96 +:10CEB0009B5CBBB1E3897F2B14D8234B1B688BB1E0 +:10CEC000224B94F90E201B689A420BDB637BDB0636 +:10CED00008D11F4B9C4205D02046FEF7BDFE2046E0 +:10CEE000FFF794FF144800F04FF8A8B185F31188BC +:10CEF000BFF36F8F38BDFFF789FFF3E7154A164977 +:10CF000016488823F4F71AFF0B491548F4F716FF63 +:10CF100010488821F4F708FF0E4A12490F4840F2E2 +:10CF20003113F4F70BFF04490F48F4F707FF0948E2 +:10CF300040F23111F4F7F8FE281A0020FC19002005 +:10CF40002C1A0020301A0020381A0020341A002031 +:10CF5000A00D0020A8EC000008ED0000C8E60000CD +:10CF600020ED0000D8EC0000F0EC0000006838B1C3 +:10CF7000044B1B7C00F00300C01A18BF012070474F +:10CF800001207047FC190020002301680360EFF3C3 +:10CF90000583084A43B99368127C43EA0200401AA9 +:10CFA000B0FA80F0400970479368587BC007F3D50A +:10CFB00001207047FC190020024B1A7C9B68134328 +:10CFC00003607047FC1900200748084A084908B563 +:10CFD000121AFDF7F1F90748074A0849BDE8084069 +:10CFE000121AFDF7E9B900BFC00400206408002050 +:10CFF00090080100B8040020C00400208808010047 +:10D0000010B40C4B5A68036882420AD04BB1D3E982 +:10D0100004210469121944691A6141EB0401596140 +:10D020000368416800220B60596010BC02604260D6 +:10D03000704700BF08070020B3F1FF3F08BFB2F1FF +:10D04000FF3F00F09A802DE9F047D0F800800646B7 +:10D05000B8F1000F40F0B08092461D461446994644 +:10D060008160EFF31187202383F31288BFF36F8F62 +:10D070005848FFF77BFF002800F090805548FFF7E5 +:10D080009BFFBAF1FF3F75F1FF3343DA524A116853 +:10D0900055686FF001035B1A4FF0FF3262EB050534 +:10D0A000B3EB0A0465EB0905012C75F1000301DA05 +:10D0B00001244546DFF824C1DCE900106145C6E9DA +:10D0C000044511D081B1D1E90423944275EB030EDC +:10D0D0002DDBA21A65EB03058842C6E90425144638 +:10D0E00002D009680029EED1C6E900C00660CCF87C +:10D0F0000460DCF80030634501D09E4222D0354800 +:10D10000FFF742FF002839D087F31188BFF36F8FF4 +:10D11000BDE8F087324B1B68013445F10005002B58 +:10D12000C8D1FBF7A9FD041945EBE075C2E7121B56 +:10D1300063EB0503C1E904234B68C6E900131E60D5 +:10D140004E60D6E7264B1B68002BD8D1FBF794FD29 +:10D15000336972690146181A62EBE173002BBCBF98 +:10D1600000200023B0F1004F73F10003A8BF6FF05F +:10D1700000400021FBF704FDC1E77047194A1A4936 +:10D180001A4840F23113F4F7D9FD12491848F4F760 +:10D19000D5FD144840F23111F4F7C6FD114A154986 +:10D1A00012488823F4F7CAFD0A491348F4F7C6FD6C +:10D1B0000C488821F4F7B8FD1049114A0B486E233A +:10D1C000F4F7BCFD0F48F4F7B9FD0D486E21F4F7F4 +:10D1D000ABFD00BF401A0020400F002008070020D0 +:10D1E0003C1A0020A8EC0000D8EC0000C8E60000C3 +:10D1F000F0EC000008ED000020ED00004807010001 +:10D200002407010068000100F8B50446EFF3118619 +:10D21000202383F31288BFF36F8F3348FFF7A6FEF6 +:10D22000002843D03048FFF7C7FE236853B12F4D85 +:10D230002F68AF4220462DD0FFF7E2FEBC420ED051 +:10D24000002401E06FF015042748FFF79DFE002839 +:10D250003AD086F31188BFF36F8F2046F8BD2C6853 +:10D26000234BAC421B6818D0EBB10020C4B1D4E909 +:10D2700004321B1A62EBE072B3F1004F72F100014D +:10D280000EDA002AACBF184600200021FBF778FC1C +:10D290000024D9E7FFF7B4FED2E70BB9FBF7ECFCAB +:10D2A0006FF00040F1E7FBF7E7FCDFE7114A1249B6 +:10D2B00012488823F4F742FD0B491148F4F73EFD6C +:10D2C0000C488821F4F730FD0A4A0E490B4840F219 +:10D2D0003113F4F733FD04490B48F4F72FFD0548EB +:10D2E00040F23111F4F720FD401A00200807002019 +:10D2F0003C1A0020A8EC000008ED0000C8E6000081 +:10D3000020ED0000D8EC0000F0EC00002DE9F04F1B +:10D3100083B00190EFF311854FF0200B8BF312884F +:10D32000BFF36F8F6D48FFF721FE019A002800F0D0 +:10D33000B7806B4F69480192FFF73EFED7F8008037 +:10D34000DFF8A0A1019ACAF80020B84500F0958046 +:10D35000B8F1000F00F0B280DFF88C915F4E03E06F +:10D36000B8F1000F00F0B580D8E904404FEAE27C44 +:10D37000A2427CEB000E45DBD9E90020121940EBFC +:10D38000E47300210020C8E904014046C9E90023F4 +:10D39000FFF736FE3046FFF7F7FD002870D085F323 +:10D3A0001188BFF36F8FD8F8082040469047EFF3FD +:10D3B00011858BF31288BFF36F8F3046FFF7D6FDD0 +:10D3C00000286DD03046FFF7F7FDDAF80020D7F8D7 +:10D3D0000080121BB845CAF80020C1D1D9F800302E +:10D3E0009B18C9F800304FF00003CAF80030D9F894 +:10D3F000043043EBE273C9F80430FBF73DFC6FF0F7 +:10D4000000402AE0A41AC8F8104060EB0C003C6809 +:10D41000C8F81400D9F80000D9F80430801843EB9C +:10D420000C03C9F80430BC424FF00003C9F80000F7 +:10D43000CAF80030E1D0FBF71FFC002CDFD0D4E9A4 +:10D440000423121A63EBE073B2F1004F73F1000191 +:10D45000D5DA002BACBF104600200021FBF790FB73 +:10D460001E48FFF791FD58B185F31188BFF36F8F08 +:10D4700003B0BDE8F04FFFF701BDDFF86C90ADE7FA +:10D480001A4A1B491B4840F23113F4F757FC134961 +:10D490001948F4F753FC154840F23111F4F744FCF5 +:10D4A000124A164913488823F4F748FC0B491448DC +:10D4B000F4F744FC0D488821F4F736FC0A49CAF811 +:10D4C0000080D1E900309B1840EBE270C1E90030E8 +:10D4D00093E744464FEAE27C9CE700BF401A0020F5 +:10D4E000080700203C1A0020400F0020A8EC000094 +:10D4F000D8EC0000C8E60000F0EC000008ED0000E9 +:10D5000020ED000070B5EFF31186202383F312881D +:10D51000BFF36F8F1F48FFF729FDE0B11D48FFF7EC +:10D520004BFD1D4B1B6893B1002001461B4B1A6835 +:10D530005D688418174841EB0505FFF725FDC0B16C +:10D5400086F31188BFF36F8F2046294670BDFBF725 +:10D5500093FBC117EAE7124A124913488823F4F7EC +:10D56000EDFB0C491148F4F7E9FB0D488821F4F76D +:10D57000DBFB0B4A0E490C4840F23113F4F7DEFB9B +:10D5800004490C48F4F7DAFB054840F23111F4F78E +:10D59000CBFB00BF401A00203C1A0020400F0020A7 +:10D5A000A8EC000008ED0000C8E6000020ED000037 +:10D5B000D8EC0000F0EC000008B5FFF7A3FF08BDB1 +:10D5C000FFF7A0BF50B5B3F1FF3F08BFB2F1FF3F77 +:10D5D00083B0044617D016461A430DD06FF00100F1 +:10D5E000801B4FF0FF3262EB0301002913DBC4E91B +:10D5F0000001204603B050BD00200146C4E90001EF +:10D60000204603B050BD4FF0FF300146C4E9000191 +:10D61000204603B050BD0193FFF774FF019B8019B2 +:10D6200041EB0301E3E700BFB3F1FF3F08BFB2F1F5 +:10D63000FF3FF8B5064617D01C4654EA02031546CC +:10D6400005D100200446C6E900043046F8BDFFF7C6 +:10D6500059FFA84271EB0403F3D2281A64EB0104CA +:10D66000C6E900043046F8BD4FF0FF300446C6E975 +:10D6700000043046F8BD00BFF8B50446EFF311854D +:10D68000202383F31288BFF36F8F4F48FFF76EFCA0 +:10D6900000287BD04C48FFF78FFC22684AB14A48EB +:10D6A000FFF772FC00287FD085F31188BFF36F8FDE +:10D6B000F8BDD4E90A315E1C41F10000022E70F180 +:10D6C00000001CD3012B71F10000BCBF01231146E7 +:10D6D0005E1E41F1FF37FFF773FF013041F100019A +:10D6E000801947EB0101012871F100013EDA6FF06A +:10D6F00001024FF0FF3335492046FFF79DFC236BB5 +:10D70000226A01332363CAB12F48FFF73DFC00288A +:10D710004AD085F31188BFF36F8F236A204698475C +:10D72000EFF31185202383F31288BFF36F8F264810 +:10D73000FFF71CFC50B32448FFF73EFC54F8186F69 +:10D74000A642ACD0002EAAD03046FEF75FFB0023E5 +:10D750001D48B367FFF718FC30B385F31188BFF39A +:10D760006F8F3046BDE8F840FEF708BBFFF728FF93 +:10D77000013041F100016FF00102801947EB010116 +:10D780004FF0FF33121A63EB0103B4E7104A11495B +:10D7900011488823F4F7D2FA0B491048F4F7CEFA6F +:10D7A0000B488821F4F7C0FA094A0D490A4840F2AB +:10D7B0003113F4F7C3FA04490A48F4F7BFFA0448EE +:10D7C00040F23111F4F7B0FA441A002079D6000083 +:10D7D000A8EC000008ED0000C8E6000020ED000005 +:10D7E000D8EC0000F0EC000030B400240025C0E9C3 +:10D7F0000045002300F11804C0E90644C0E90812FE +:10D8000030BC0363436370472DE9F84314461D465B +:10D81000064690461F46EFF31189202383F31288B2 +:10D82000BFF36F8F2948FFF7A1FB80B32748FFF7AD +:10D83000C3FBB5F1FF3F08BFB4F1FF3F12D0631C3B +:10D8400075F1FF3318DA3046FFF7DEFCDDE90845F5 +:10D8500000213163C6E90A451D4942463B46304630 +:10D86000FFF7EAFB1948FFF78FFBF0B189F3118846 +:10D87000BFF36F8FBDE8F883012C75F10003BCBFC7 +:10D880000124002514F1FF3845F1FF37DBE7114A89 +:10D89000114912488823F4F751FA0C491048F4F75B +:10D8A0004DFA0C488821F4F73FFA0A4A0D490B4813 +:10D8B00040F23113F4F742FA04490B48F4F73EFA08 +:10D8C000044840F23111F4F72FFA00BF441A002047 +:10D8D00079D60000A8EC000008ED0000C8E60000C2 +:10D8E00020ED0000D8EC0000F0EC000010B504467C +:10D8F000FFF78AFCA8B9636A0BB12046984704F188 +:10D900001800FEF7D3FB60B1FEF738FAEFF3118091 +:10D91000202383F31288BFF36F8FBDE81040FEF71A +:10D920001FBD10BD014620B150F8040C043900F0B1 +:10D930000BB9704770B582B006460C46FDF7BAFFCA +:10D94000C0B9164B9B68DD6E8DB1221D12D200202E +:10D950000021CDE9000146F00401284600F056F808 +:10D9600040B10560051D16B1731E1D4206D1284643 +:10D9700002B070BD0025284602B070BD084A0949B2 +:10D9800009482523F4F7DAF9084829463246F4F71E +:10D99000D5F903482521F4F7C7F900BFFC19002089 +:10D9A000680701008C070100C8E60000C0070100FD +:10D9B00038B5104C104DAC420CD818D204F10C0301 +:10D9C000D4E9011220461B6018345B60F4F79CF820 +:10D9D000AC42F2D909490A4A0A481923F4F7AEF9C8 +:10D9E0000948F4F7ABF906481921F4F79DF900202E +:10D9F00038BD00BF40070020400700200C08010090 +:10DA0000E8070100C8E6000078EE00002DE9F04FBD +:10DA100089B0DDE912538046914606A82A461C4685 +:10DA20008B46FFF7CFFDDDE9062308F11407CDE9AA +:10DA30000223EFF31186202383F31288BFF36F8F45 +:10DA40003846FFF793FA00284ED03846FFF7B4FA6D +:10DA5000EFF30583002B37D108F10C0305934FF04A +:10DA6000200A1CE02C4321D0DDE9022306A8FFF7A1 +:10DA7000DBFDDDE90654059ACDE900543146384610 +:10DA8000FEF77CFAEFF311868AF31288BFF36F8FEB +:10DA90003846FFF76BFA38B33846FFF78DFA4A4637 +:10DAA00059464046F3F770FF0028DBD00290384615 +:10DAB000FFF76AFA029B28B386F31188BFF36F8FD2 +:10DAC000184609B0BDE8F08F55EA0403C4D01549E3 +:10DAD000154A16484B23F4F731F91548F4F72EF997 +:10DAE00011484B21F4F720F9124A104812498823B3 +:10DAF000F4F724F911483946F4F720F90D48882144 +:10DB0000F4F712F90B4A09480D4940F23113F4F7C2 +:10DB100015F90C483946F4F711F9064840F231116D +:10DB2000F4F702F928080100E8070100C8E6000040 +:10DB300068000100A8EC000008ED000020ED0000E6 +:10DB4000D8EC0000F0EC0000F8B504460E4600F1F9 +:10DB50001405EFF31187202383F31288BFF36F8F2F +:10DB60002846FFF703FAD0B12846FFF725FA2046EA +:10DB70003146F3F75DFE04F10C00FEF73BFD40B9C2 +:10DB80002846FFF701FAC0B187F31188BFF36F8F02 +:10DB9000F8BD39462846BDE8F840FEF78DBB0F4A70 +:10DBA0000F4810498823F4F7C9F80F482946F4F7BD +:10DBB000C5F80A488821F4F7B7F8084A08480B491D +:10DBC00040F23113F4F7BAF809482946F4F7B6F8E9 +:10DBD000024840F23111F4F7A7F800BFA8EC0000AA +:10DBE000C8E6000008ED000020ED0000D8EC0000C1 +:10DBF000F0EC000000B50A4B93E8030085B002AAE0 +:10DC000000924FF0FF3382E80300064806494FF4C4 +:10DC10008062FDF71FFD002005B05DF804FB00BF2A +:10DC200028E50000480F0020003100202DE9F04FCA +:10DC30008DB043680293837815469A07804640F179 +:10DC40000D8100240E78002E00F00A81252E0BD0C5 +:10DC50004B1C03930134029B4146304698470028F1 +:10DC6000C0F2F6800399EDE74E788B1C252E0393C6 +:10DC7000F0D00027B946BB46BBF11F0F38D8A6F13C +:10DC80002003102B0AD8DFE803F02A09093009091C +:10DC9000092109090928092D09091F00A6F13003E6 +:10DCA000092B33D92A2E37D11BF0400F55F8043BEE +:10DCB00040F08280002BA7BF4BF0200B9946C3F1A8 +:10DCC00000094BF0280B01E04BF0010B039B13F80C +:10DCD000016B0393002ECFD130E04BF0020B4BF0E1 +:10DCE000040BF3E74BF0080BF0E74BF0100BEDE7FC +:10DCF000BBF17F0F19D8A6F13003092BD2D81BF046 +:10DD0000400F03D00A2101FB0737DFE70A2101FB9F +:10DD100009394BF0200BD9E72E2E06D11BF0400F0E +:10DD200040F09E804BF0400BD0E76C2E31D02BD8CA +:10DD3000682E36D06A2E3CD04C2E3AD0002F46F0BA +:10DD40002003B8BF2BF04002A3F16501BCBF1FFA4E +:10DD500082FB0027022901D9612B2FD1073525F03D +:10DD60000705DFF8ACA2083507271BF0080F66D0BF +:10DD70000AEB070B56465E4563D1A4EB0A0A06EB95 +:10DD80000A02A9EB07096FE1742E9FD07A2E9DD06D +:10DD9000D4E71BF0800F18BF4BF4007B4BF0800BD7 +:10DDA00094E71BF4807F18BF4BF4007B4BF4807B1F +:10DDB0008CE74BF4207B89E71F4687E7A6F16301D8 +:10DDC000122900F2F080DFE811F013004F00EE009E +:10DDD000EE00EE00EE004F00EE00EE00EE00EE0072 +:10DDE000EE00FE00E900EE00EE001B00EE00AF00CA +:10DDF00055F8043B8DF8183001270DF1180AB4E7E7 +:10DE000055F804AB834BBAF1000F08BF9A461BF0DC +:10DE1000400F14BF39464FF0FF31504600F078F9FB +:10DE20000746A2E7029B41462020984700280FDBC7 +:10DE3000013EB742F6D34C44A41BB14698E74E4688 +:10DE4000F7E716F8010B029B41469847002892DA43 +:10DE500098F8023043F0040388F802304FF0FF34A2 +:10DE600020460DB0BDE8F08F1BF0800F34D01BF4BE +:10DE7000007F2CD0073525F00705AA4669685AF8B7 +:10DE8000080B2BF010050029ADB237DA404261EBE8 +:10DE9000410145F480650DF1180B0A235A4600F044 +:10DEA00043F9A0EB0B0301936B0662D5019B25F0B0 +:10DEB00001019F4289B240F3A180002E00F09980B9 +:10DEC00015F0100240F09C80BB460D4623E0AA46A8 +:10DED0005AF8040BC117D4E7AA461BF4807F5AF8FE +:10DEE000041B01D10846F5E71BF4007F15BF48B2BB +:10DEF00008B241F3C01141F3C031C2E750EA010357 +:10DF0000C9D11BF0400FC6D0002FC4D12BF0110295 +:10DF100095B2BB46019740F2064115EA01021CBFCB +:10DF20000BF1010B00222CE02BF010021FFA82FBF8 +:10DF30000A231BF0800C49D01BF400711DBF07356C +:10DF400025F00705AA46AA461ABF5AF8080B6968C1 +:10DF50005AF8040B50EA010545D12BF016051BF0C9 +:10DF6000400FADB242D0002F40D12BF0170295B236 +:10DF7000019715F0100248D0019B002E42D103F109 +:10DF8000010B29075AD4EB0706D5D9456FDD019956 +:10DF9000A9EB0B035F18CB465B4649E04BF0100B37 +:10DFA00010237826C5E7782B04D1C6F1780343F017 +:10DFB0001003BEE7029B4146252098470028FFF644 +:10DFC00047AF023447E608230026B2E7AA461BF40F +:10DFD00080715AF8040BBDD01BF400711ABFC0B297 +:10DFE000614680B2B6E72BF0060295B20DF1180B30 +:10DFF00054E725F01105ADB2BB468CE70D46B8E7F6 +:10E000003B460D4603F1020BBBE7DDF804B082E7A7 +:10E010008008010079080100CDE904324146029BE5 +:10E02000202098470028FFF613AF049B059A013380 +:10E030009945F1DCA4EB0B01CC189B460AB3029B7B +:10E040004146302098470028FFF602AF8EB90134D0 +:10E050002744019B391B994224DC1D465DBB019A74 +:10E06000A9EB0B09224455461446914435E0019F23 +:10E0700092E7023441463046029B98470028E7DA8F +:10E08000E6E640F206410D42E2D015F0020F14BF61 +:10E090002B20202015F4806F04F10104414618BFA5 +:10E0A0002D20E9E7029B414630209847002804F1E3 +:10E0B0000104CEDACCE606AB013D4146585D029B39 +:10E0C00098470028CADAC3E6029B414620209847B9 +:10E0D000002804F10104FFF6BBAEA9EB0403002BFA +:10E0E000F2DCBFE50A44914200F1FF3300D17047F2 +:10E0F00010B511F8014B03F8014F9142F9D110BD51 +:10E1000002440346934200D1704703F8011BF9E72C +:10E1100010B5024601448A42134603D01C780132EE +:10E12000002CF8D1181A10BDF0B5C3F1370704461A +:10E13000FFB203F01F031046082BE6B233D0102BBA +:10E140003ED06508A40844EA817445EAC1752D19DA +:10E150004FEA910242EB5102290941EA02716D181E +:10E1600042EB1212290A41EA02616D1842EB1222B7 +:10E17000290C41EA02416D1842EB1242AD1842F1FE +:10E180000002EC0844EA4274D10804EB8402A6EBD6 +:10E190004205EDB2092D0CD90134A5F10A0541F172 +:10E1A0000001EDB212E0E40844EA417406F007050C +:10E1B000C908303554EA010200F8015BBCD1F0BD5A +:10E1C000240944EA017406F00F050909092D84BFEA +:10E1D000ED19EDB2EDE7000001480068704700005E +:04E1E0000811002002 +:08E1E4002023FF7F0100000071 +:10E1EC00394F0000000000009D7C00006CE2000034 +:10E1FC0055A1000000000000F5A400000000000084 +:10E20C00B1D90000000000004982000094E2000037 +:10E21C004982000080E20000F93C0000A8E2000006 +:10E22C001581000000000000718900000000000052 +:10E23C00154F000000000000194100000000000014 +:10E24C00F5DB00000000000075770000BCE2000068 +:10E25C00BD4F000000000000BD860000D0E20000B1 +:10E26C0050F9000060F90000B0E400001507002030 +:10E27C003819002040FA000060FA000070E4000039 +:10E28C00170700209419002050FA000078FA0000BB +:10E29C0070E4000019070020A01900209CEF00007A +:10E2AC0040080020CCE4000011070020C00400202E +:10E2BC00D0F800000000000064E400001307002008 +:10E2CC0000000000E4FA00000000000094E40000EC +:08E2DC001B070020AC19002013 +:10E2E400A99F00007D8E0000000000001D48000072 +:10E2F400000000001D480000000000001D48000050 +:10E30400000000001D480000000000001D4800003F +:10E314002D9A00007D8E0000BCE20000C17900004F +:10E32400000000001D4800000000000085110000EE +:10E33400000000001D480000000000001D4800000F +:10E34400D0E2000021870000000000001D4800000A +:10E35400000000001D480000000000001D480000EF +:10E36400000000001D480000000000005D8A00005D +:10E37400000000001D480000000000001D480000CF +:10E38400000000001D480000000000001D480000BF +:10E39400000000001D480000000000001D480000AF +:10E3A400000000001D480000000000001D4800009F +:10E3B400000000001D480000000000001D4800008F +:10E3C400000000001D480000000000001D4800007F +:10E3D400000000001D480000000000001D4800006F +:10E3E400000000001D480000000000001D4800005F +:10E3F400000000001D480000000000001D4800004F +:10E40400000000001D480000000000001D4800003E +:10E41400000000001D4800003D6400007D8E0000E7 +:10E42400000000001D480000000000001D4800001E +:10E43400000000001D480000000000001D4800000E +:10E44400000000001D480000000000001D480000FE +:10E45400000000001D480000000000001D480000EE +:0CE4640055760000097800005802000006 +:10E47000BD8200003D8100004D81000065810000EB +:10E48000718100007D8100001585000099810000E8 +:04E490000000000088 +:10E4940000000000000000000000000039870000B8 +:0CE4A4007D860000000000000000000069 +:10E4B0003D7B0000BD7D0000117E000000000000DB +:0CE4C000C97B000000000000000000000C +:10E4CC00E93F0000A93D000000000000C53B000032 +:10E4DC008D3F0000293B0000513A00005D3A0000DE +:10E4EC00093B00007D3A000000000000893A000062 +:10E4FC000000000000000000593F0000993A0000A5 +:0CE50C00C93A0000693E0000D13A00004E +:10E5200000C20100000008007008010000010000A6 +:10E530000338FDD87047000055534220696E697456 +:10E54000206661696C65640A0000000042617474B1 +:10E550006572792041444320696E6974206661695F +:10E560006C656420282564290A00000054656D70DC +:10E570006572617475726520696E6974206661697F +:10E580006C656420282564290A00000042617474C7 +:10E590006572793A202564206D56200042617474BA +:10E5A000657279206D6561737572656D656E742035 +:10E5B0006661696C656420282564292000000000DC +:10E5C00054656D70657261747572653A20256420BA +:10E5D0004320000054656D7065726174757265202A +:10E5E00072656164206661696C6564202825642910 +:10E5F0002000000068756D69646974795F726177E5 +:10E600003A2025640A0000004572726F722072651C +:10E610006164696E6720627574746F6E0A00000031 +:10E62000427574746F6E2072656C65617365640AFF +:10E6300000000000574553545F544F504449522F37 +:10E640007A65706879722F696E636C7564652F7A6C +:10E6500065706879722F647269766572732F67705E +:10E66000696F2E680000000028666C6167732026C1 +:10E670002028283155203C3C20323129207C20287C +:10E680003155203C3C20323229207C202831552035 +:10E690003C3C20323329207C20283155203C3C2032 +:10E6A000323429207C20283155203C3C2032352929 +:10E6B000207C20283155203C3C2032362929292035 +:10E6C0003D3D203000000000415353455254494F16 +:10E6D0004E204641494C205B25735D204020257328 +:10E6E0003A25640A0000000009496E74657272756B +:10E6F000707420666C61677320617265206E6F7440 +:10E7000020737570706F727465640A0028666C619E +:10E710006773202620282831203C3C203429207C87 +:10E72000202831203C3C203529292920213D202842 +:10E730002831203C3C203429207C202831203C3CBE +:10E7400020352929000000000950756C6C20557097 +:10E7500020616E642050756C6C20446F776E20735E +:10E76000686F756C64206E6F7420626520656E61E1 +:10E77000626C65642073696D756C74616E656F752C +:10E78000736C790A00000000212828666C616773A9 +:10E79000202620283155203C3C20313629292026AE +:10E7A00026202128666C6167732026202831552099 +:10E7B0003C3C20313729292026262028666C6167B9 +:10E7C000732026202831203C3C20312929290000B3 +:10E7D00009496E7075742063616E6E6F7420626596 +:10E7E00020656E61626C656420666F7220274F70D1 +:10E7F000656E20447261696E272C20274F70656E0C +:10E8000020536F7572636527206D6F646573207781 +:10E810006974686F7574204F75747075740A0000A0 +:10E8200028666C6167732026202831203C3C20310B +:10E83000292920213D2030207C7C2028666C6167BE +:10E84000732026202831203C3C20322929203D3DC0 +:10E850002030000028666C6167732026202828314C +:10E8600055203C3C20313829207C20283155203C43 +:10E870003C203139292929203D3D2030207C7C2035 +:10E8800028666C616773202620283155203C3C2087 +:10E890003137292920213D2030000000094F7574AF +:10E8A000707574206E6565647320746F20626520D6 +:10E8B000656E61626C656420746F20626520696EAC +:10E8C000697469616C697A6564206C6F77206F7216 +:10E8D00020686967680A000028666C6167732026F3 +:10E8E0002028283155203C3C20313829207C202804 +:10E8F0003155203C3C20313929292920213D20282F +:10E90000283155203C3C20313829207C20283155A5 +:10E91000203C3C203139292900000000094F757442 +:10E920007075742063616E6E6F7420626520696E0D +:10E93000697469616C697A6564206C6F7720616EB7 +:10E940006420686967680A00286366672D3E706FF7 +:10E9500072745F70696E5F6D61736B20262028672B +:10E9600070696F5F706F72745F70696E735F742926 +:10E970002831554C203C3C202870696E29292920DB +:10E98000213D20305500000009556E737570706F81 +:10E99000727465642070696E0A0000004C45442062 +:10E9A00064657669636573206E6F74207265616457 +:10E9B000790A0000427574746F6E2064657669632D +:10E9C00065206E6F742072656164790A0000000032 +:10E9D000414443206E6F742072656164790A0000BF +:10E9E000BCE2000006010004000006070000000071 +:10E9F0000C000000574553545F544F504449522F68 +:10EA00006D6F64756C65732F68616C2F6E6F7264C7 +:10EA100069632F6E7266782F68616C2F6E72665F05 +:10EA20006770696F2E6800006E72665F6770696F4D +:10EA30005F70696E5F70726573656E745F63686541 +:10EA4000636B282A705F70696E29000068756D5FBE +:10EA5000656E20646576696365206E6F74207265EB +:10EA60006164790A000000004661696C6564207485 +:10EA70006F20636F6E6669677572652068756D5F7C +:10EA8000656E0A00574553545F544F504449522F06 +:10EA90007A65706879722F6C69622F686561702F72 +:10EAA000686561702E6300006368756E6B5F7573D7 +:10EAB000656428682C2063290000000009756E65D4 +:10EAC0007870656374656420686561702073746133 +:10EAD00074652028646F75626C652D667265653F8C +:10EAE0002920666F72206D656D6F727920617420C8 +:10EAF00025700A006C6566745F6368756E6B2868C4 +:10EB00002C2072696768745F6368756E6B28682C67 +:10EB100020632929203D3D206300000009636F72B6 +:10EB2000727570746564206865617020626F756EBF +:10EB300064732028627566666572206F76657266FA +:10EB40006C6F773F2920666F72206D656D6F7279EB +:10EB50002061742025700A0028616C69676E202688 +:10EB60002028616C69676E202D20312929203D3DC8 +:10EB70002030000009616C69676E206D7573742028 +:10EB80006265206120706F776572206F6620320A9F +:10EB9000000000006279746573203E206865617032 +:10EBA0005F666F6F7465725F6279746573286279EE +:10EBB000746573290000000009686561702073693D +:10EBC0007A6520697320746F6F20736D616C6C0AB5 +:10EBD00000000000686561705F737A203E20636802 +:10EBE000756E6B737A2873697A656F6628737472B1 +:10EBF000756374207A5F68656170292900000000E0 +:10EC00006368756E6B305F73697A65202B206D6960 +:10EC10006E5F6368756E6B5F73697A65286829201B +:10EC20003C3D20686561705F737A0000574553541E +:10EC30005F544F504449522F7A65706879722F6C37 +:10EC400069622F7574696C732F6F6E6F66662E63C1 +:10EC5000000000007374617465203D3D2030550054 +:10EC60007472616E73697420213D202828766F6963 +:10EC700064202A29302900007374617465203D3DA9 +:10EC8000202831554C203C3C202831292900000007 +:10EC90007374617465203D3D202831554C203C3C07 +:10ECA0002028302929000000574553545F544F5005 +:10ECB0004449522F7A65706879722F696E636C755A +:10ECC00064652F7A65706879722F7370696E6C6FE6 +:10ECD000636B2E68000000007A5F7370696E5F7569 +:10ECE0006E6C6F636B5F76616C6964286C290000E1 +:10ECF000094E6F74206D79207370696E6C6F636B51 +:10ED00002025700A000000007A5F7370696E5F6CE6 +:10ED10006F636B5F76616C6964286C29000000008A +:10ED200009496E76616C6964207370696E6C6F63FB +:10ED30006B2025700A0000006D67722D3E726566BB +:10ED400073203E2030000000287374617465203DFC +:10ED50003D20282831554C203C3C202832292920B0 +:10ED60007C202831554C203C3C2028312929292958 +:10ED7000207C7C20287374617465203D3D20282808 +:10ED800031554C203C3C2028322929207C2030550C +:10ED90002929207C7C20287374617465203D3D20E6 +:10EDA000282831554C203C3C2028322929207C2021 +:10EDB0002831554C203C3C202830292929290000A5 +:10EDC000574553545F544F504449522F7A657068E9 +:10EDD00079722F6C69622F7574696C732F6E6F7402 +:10EDE0006966792E63000000574553545F544F50B5 +:10EDF0004449522F7A65706879722F6C69622F7559 +:10EE000074696C732F72696E675F6275666665728E +:10EE10002E630000657272203D3D2030000000002E +:10EE2000574553545F544F504449522F7A65706888 +:10EE300079722F7375627379732F7573622F64659E +:10EE4000766963652F7573625F6465766963652EA5 +:10EE5000630000006366675F64617461203C3D206D +:10EE60005F7573625F6366675F646174615F6C693D +:10EE700073745F656E64000009756E657870656314 +:10EE8000746564206C69737420656E64206C6F63B4 +:10EE90006174696F6E0A00003031323334353637B1 +:10EEA0003839414243444546000000005745535419 +:10EEB0005F544F504449522F7A65706879722F73AE +:10EEC00075627379732F7573622F646576696365F4 +:10EED0002F7573625F64657363726970746F722EED +:10EEE00063000000726574203D3D2030000000008A +:10EEF000094661696C656420746F2066696E6420E0 +:10EF000076616C696420624D61785061636B6574F1 +:10EF100053697A65300A00006275665B61736369E4 +:10EF2000695F6964785F6D61785D203E203078317B +:10EF300046202626206275665B61736369695F6996 +:10EF400064785F6D61785D203C2030783746000042 +:10EF5000094F6E6C79207072696E7461626C652005 +:10EF600061736369692D37206368617261637465D9 +:10EF700072732061726520616C6C6F7765642069C3 +:10EF80006E2055534220737472696E6720646573F6 +:10EF900063726970746F72730A0000006364635F68 +:10EFA00061636D5F75617274300000007573627724 +:10EFB0006F726B71000000002A2A2A20426F6F7462 +:10EFC000696E67206E524620436F6E6E65637420D3 +:10EFD00053444B2076332E302E322D383962613136 +:10EFE00032393461633962202A2A2A0A000000007B +:10EFF0002A2A2A205573696E67205A6570687972CB +:10F00000204F532076342E302E39392D6637393142 +:10F010006334396634393263202A2A2A0A00000010 +:10F02000574553545F544F504449522F7A65706886 +:10F0300079722F617263682F61726D2F636F7265D1 +:10F040002F636F727465785F6D2F6661756C742EB7 +:10F0500063000000212828285343425F54797065DB +:10F06000202A29202828307845303030453030306B +:10F07000554C29202B20307830443030554C2920F5 +:10F08000292D3E434653522026202831554C203C02 +:10F090003C20283055202B203455292929000000F8 +:10F0A00009537461636B696E67206572726F7220B9 +:10F0B0006E6F74206120737461636B206661696C8C +:10F0C0000A0A000065736620213D202828766F69B2 +:10F0D00064202A29302900000945534620636F75B2 +:10F0E0006C64206E6F74206265207265747269654D +:10F0F000766564207375636365737366756C6C798C +:10F100002E205368616C6C206E65766572206F638B +:10F110006375722E0A000000094661756C742065E3 +:10F120007363616C6174696F6E20776974686F7561 +:10F13000742046535220696E666F0A000948617256 +:10F14000644661756C7420776974686F75742048C3 +:10F1500046535220696E666F205368616C6C206E56 +:10F1600065766572206F636375720A005745535464 +:10F170005F544F504449522F7A65706879722F61FD +:10F180007263682F61726D2F636F72652F636F7288 +:10F190007465785F6D2F6972715F6D616E6167650F +:10F1A0002E6300007072696F203C3D202828315585 +:10F1B0004C203C3C2028332929202D2031290000D7 +:10F1C00009696E76616C6964207072696F72697426 +:10F1D0007920256420666F72202564206972712170 +:10F1E0002076616C756573206D757374206265207F +:10F1F0006C657373207468616E20256C750A0A0053 +:10F20000C00400200000000000000B0657455354C6 +:10F210005F544F504449522F7A65706879722F615C +:10F220007263682F61726D2F636F72652F6D7075D9 +:10F230002F61726D5F6D70752E63000009436F6EF4 +:10F240006669677572696E672025752073746174CD +:10F250006963204D505520726567696F6E73206633 +:10F2600061696C65640A0A0009436F6E66696775B7 +:10F2700072696E672025752064796E616D696320FF +:10F280004D505520726567696F6E73206661696CB9 +:10F2900065640A0A0000000009526571756573749F +:10F2A00020746F20636F6E6669677572653A2025FA +:10F2B0007520726567696F6E732028737570706F43 +:10F2C000727465643A202575290A0A00212872653E +:10F2D00067696F6E5B6964785D2E64745F617474D6 +:10F2E000722026202831554C203C3C2028302929EA +:10F2F000290000000952414D5F4E4F4341434845AC +:10F3000020776974682044545F4D454D5F43414305 +:10F31000484541424C452061747472696275746558 +:10F320000A0A0000094661696C656420746F2061F7 +:10F330006C6C6F63617465204D5055207265676910 +:10F340006F6E732066726F6D2044540A0A000000CD +:10F350002828284D50555F54797065202A29202887 +:10F360002830784530303045303030554C29202B0E +:10F3700020307830443930554C2920292D3E5459BD +:10F3800050452026202830784646554C203C3C20CD +:10F3900038552929203E3E203855203D3D20380053 +:10F3A00009496E76616C6964206E756D62657220C4 +:10F3B0006F66204D505520726567696F6E730A0A3B +:10F3C0000000000002000000DCF30000464C415346 +:10F3D000485F30005352414D5F3000000000000094 +:10F3E000CCF300002400020700000020D4F300004A +:10F3F00020000B11757362645F776F726B71000090 +:10F40000574553545F544F504449522F7A657068A2 +:10F4100079722F647269766572732F7573622F64C7 +:10F4200065766963652F7573625F64635F6E72668C +:10F43000782E630065705F637478000065705F63A9 +:10F4400074782D3E6366672E74797065203D3D208B +:10F450005553425F44435F45505F434F4E54524FB4 +:10F460004C00000009496E76616C69642065766520 +:10F470006E74206F6E204354524C2045502E0A006B +:10F48000657272203E3D20300000000061646472AD +:10F49000203D3D202875696E74385F742928284EF8 +:10F4A00052465F555342445F547970652A29203093 +:10F4B000783430303237303030554C292D3E55536A +:10F4C00042414444520000000955534220416464C3 +:10F4D0007265737320696E636F7272656374210A5B +:10F4E000000000000100020079520000000000004E +:10F4F000574553545F544F504449522F7A657068B2 +:10F5000079722F647269766572732F7573622F63D7 +:10F510006F6D6D6F6E2F6E72665F757362645F6381 +:10F520006F6D6D6F6E2F6E72665F757362645F6371 +:10F530006F6D6D6F6E2E6300282828286570202659 +:10F54000203078383029203D3D203078383029204F +:10F550002626202828657020262030784629203C41 +:10F5600020392929207C7C20282828657020262005 +:10F570003078383029203D3D20302920262620288B +:10F5800028657020262030784629203C20392929FA +:10F5900029000000216E72665F757362645F636F9D +:10F5A0006D6D6F6E5F73757370656E645F636865B4 +:10F5B000636B282900000000705F73746174652D0F +:10F5C0003E6D6F72655F7472616E73616374696FB3 +:10F5D0006E73000074785F73697A65203C3D203655 +:10F5E0003400000065705F73697A65203E3D2064D9 +:10F5F0006174615F73697A650000000028705F7450 +:10F6000072616E736665722D3E705F646174612E07 +:10F610007278203D3D202828766F6964202A2930A1 +:10F620002929207C7C206E7266785F69735F696E21 +:10F630005F72616D28705F7472616E736665722DA2 +:10F640003E705F646174612E727829007472616E1D +:10F65000736665722E73697A65203D3D2030000027 +:10F660007472616E736665722E73697A65203D3DB2 +:10F670002072785F73697A65000000006D5F6472C4 +:10F68000765F7374617465203D3D204E5246585F2D +:10F690004452565F53544154455F494E4954494181 +:10F6A0004C495A45440000006B5F73656D5F636FA2 +:10F6B000756E745F6765742826646D615F6176613D +:10F6C000696C61626C6529203D3D203100000000BD +:10F6D0006D5F6472765F7374617465203D3D204E8A +:10F6E0005246585F4452565F53544154455F504F01 +:10F6F00057455245445F4F4E0000000028282873AC +:10F70000697A652026202873697A65202D203129A1 +:10F7100029203D3D203029207C7C20282865702030 +:10F7200026203078462920213D203029290000005C +:10F730002873697A6520213D203029207C7C20288F +:10F740002865702026203078462920213D20302948 +:10F7500000000000282828657020262030784629DF +:10F76000203E3D203829202626202873697A6520EE +:10F770003C3D20757362645F65705F69736F5F63A2 +:10F7800061706163697479286570292929207C7CFE +:10F790002028212828657020262030784629203E00 +:10F7A0003D203829202626202873697A65203C3D93 +:10F7B00020363429290000006576656E745F686123 +:10F7C0006E646C6572000000705F7472616E7366C7 +:10F7D000657220213D202828766F6964202A29300F +:10F7E000290000002828657020262030783830292C +:10F7F000203D3D203078383029207C7C2028705FE7 +:10F800007472616E736665722D3E705F64617461BF +:10F810002E7278203D3D202828766F6964202A29A1 +:10F82000302929207C7C20286E7266785F69735F9E +:10F83000696E5F72616D28705F7472616E73666568 +:10F84000722D3E705F646174612E72782929000008 +:10F85000212828657020262030784629203E3D202A +:10F860003829000028286570202620307838302973 +:10F87000203D3D20302900006D5F6472765F737417 +:10F8800061746520213D204E5246585F4452565FB8 +:10F8900053544154455F554E494E495449414C4992 +:10F8A0005A4544000601050104010702030105024F +:10F8B0000201030205040101010201030104010622 +:10F8C0000108010C01100118012001400180000015 +:10F8D0006164634034303030373030300000000035 +:10F8E000574553545F544F504449522F7A657068BE +:10F8F00079722F647269766572732F636C6F636BB4 +:10F900005F636F6E74726F6C2F636C6F636B5F639A +:10F910006F6E74726F6C5F6E72662E630000000013 +:10F9200074797065203C20434C4F434B5F434F4EEE +:10F9300054524F4C5F4E52465F545950455F434FAF +:10F94000554E5400717E00002D7C00000000000028 +:10F95000636C6F636B4034303030303030300000D7 +:10F96000457D0000F17A0000E97A00002D7B00005F +:10F97000574553545F544F504449522F7A6570682D +:10F9800079722F696E636C7564652F7A657068791A +:10F99000722F647269766572732F6770696F2F6753 +:10F9A00070696F5F7574696C732E680063616C6C4D +:10F9B0006261636B00000000094E6F2063616C6C34 +:10F9C0006261636B210A000063616C6C6261636B4E +:10F9D0002D3E68616E646C6572000000094E6F20F8 +:10F9E00063616C6C6261636B2068616E646C6572EC +:10F9F000210A0000574553545F544F504449522F39 +:10FA00007A65706879722F647269766572732F6790 +:10FA100070696F2F6770696F5F6E7266782E630012 +:10FA2000657272203D3D204E5246585F5355434308 +:10FA30004553530063622D3E68616E646C657200CD +:10FA40006770696F4035303030303330300000003F +:10FA50006770696F40353030303030303000000032 +:10FA6000FF03000000030050000000000100000040 +:10FA70000060004000000000FFFFFFFF000000509A +:10FA800000000000000000000060004000000000D6 +:10FA9000574553545F544F504449522F7A6570680C +:10FAA00079722F647269766572732F73656E736FE6 +:10FAB000722F6E6F726469632F74656D702F746539 +:10FAC0006D705F6E7266352E630000006461746154 +:10FAD0002D3E636C6B5F6D677200000072203E3DCF +:10FAE0002030000074656D70403430303063303049 +:10FAF00030000000574553545F544F504449522F33 +:10FB00006D6F64756C65732F68616C2F6E6F7264B6 +:10FB100069632F6E7266782F647269766572732FCF +:10FB20007372632F6E7266785F636C6F636B2E63A4 +:10FB300000000000574553545F544F504449522F22 +:10FB40006D6F64756C65732F68616C2F6E6F726476 +:10FB500069632F6E7266782F68616C2F6E72665FB4 +:10FB6000636C6F636B2E68006D5F636C6F636B5FBC +:10FB700063622E6D6F64756C655F696E697469612F +:10FB80006C697A6564000000574553545F544F50C8 +:10FB90004449522F6D6F64756C65732F68616C2FCB +:10FBA0006E6F726469632F6E7266782F6472697605 +:10FBB0006572732F7372632F6E7266785F677069F8 +:10FBC0006F74652E630000006E7266795F677069FE +:10FBD0006F5F70696E5F70726573656E745F636886 +:10FBE00065636B2870696E290000000070696E5FA4 +:10FBF00069735F696E70757428705F696E73746184 +:10FC00006E63652C2070696E2900000070696E5F5C +:10FC10006861735F7472696767657228705F696E87 +:10FC20007374616E63652C2070696E29000000009A +:10FC3000705F6368616E6E656C00000057455354D9 +:10FC40005F544F504449522F6D6F64756C65732F2C +:10FC500068616C2F6E6F726469632F6E7266782FA5 +:10FC600068616C2F6E72665F6770696F74652E686D +:10FC700000000000696E646578203C2038000000B8 +:10FC8000696E745F656E61626C65000000202A2AEF +:10FC90002A2A2A2A2A2A2A2A2A2A2A2A000100006B +:10FCA000574553545F544F504449522F6D6F6475FC +:10FCB0006C65732F68616C2F6E6F726469632F6E51 +:10FCC0007266782F647269766572732F7372632F10 +:10FCD0006E7266785F706F7765722E630000000049 +:10FCE000705F636F6E66696700000000705F636F2E +:10FCF0006E66696720213D202828766F6964202A76 +:10FD0000293029006D5F706F667761726E5F686180 +:10FD10006E646C657220213D202828766F6964200E +:10FD20002A293029000000006D5F736C65657065DD +:10FD300076745F68616E646C657220213D202828AE +:10FD4000766F6964202A2930290000006D5F757381 +:10FD5000626576745F68616E646C657220213D2017 +:10FD60002828766F6964202A293029005745535482 +:10FD70005F544F504449522F6D6F64756C65732FFB +:10FD800068616C2F6E6F726469632F6E7266782F74 +:10FD9000647269766572732F7372632F6E72667800 +:10FDA0005F74656D702E63006D5F74656D705F7359 +:10FDB00074617465203D3D204E5246585F44525652 +:10FDC0005F53544154455F494E495449414C495A47 +:10FDD000454400005465726D696E616C000000005E +:10FDE000000000000000545452205245474745533C +:10FDF00000000000574553545F544F504449522F60 +:10FE00007A65706879722F6B65726E656C2F6465A8 +:10FE1000766963652E630000646576203C3D205F53 +:10FE20006465766963655F6C6973745F656E6400B1 +:10FE3000574553545F544F504449522F7A65706868 +:10FE400079722F6B65726E656C2F666174616C2EB2 +:10FE500063000000726561736F6E20213D204B5F6F +:10FE60004552525F4B45524E454C5F50414E4943BF +:10FE70000000000009417474656D7074656420743D +:10FE80006F207265636F7665722066726F6D206198 +:10FE9000206B65726E656C2070616E696320636FA4 +:10FEA0006E646974696F6E0A000000005745535410 +:10FEB0005F544F504449522F7A65706879722F6BA6 +:10FEC00065726E656C2F696E69742E6300000000A8 +:10FED0007468726561645F64617461203C3D205F99 +:10FEE0005F7374617469635F7468726561645F6491 +:10FEF0006174615F6C6973745F656E64000000001B +:10FF00006D61696E00000000ECE10000ECE10000B2 +:10FF100034E200003CE200006CE200006CE2000011 +:10FF2000574553545F544F504449522F7A65706877 +:10FF300079722F6B65726E656C2F6D656D5F736C7A +:10FF400061622E6300000000736C6162203C3D2002 +:10FF50005F6B5F6D656D5F736C61625F6C6973741D +:10FF60005F656E640000000028736C61622D3E6660 +:10FF70007265655F6C697374203D3D202828766F3B +:10FF80006964202A29302920262620736C61622D7D +:10FF90003E696E666F2E6E756D5F75736564203D8C +:10FFA0003D20736C61622D3E696E666F2E6E756DBD +:10FFB0005F626C6F636B7329207C7C20736C616261 +:10FFC0005F7074725F69735F676F6F6428736C61D1 +:10FFD000622C20736C61622D3E667265655F6C6990 +:10FFE0007374290009736C616220636F727275709B +:10FFF00074696F6E2064657465637465640A0000DB +:020000021000EC +:1000000009496E76616C6964206D656D6F72792047 +:10001000706F696E7465722070726F766964656462 +:100020000A000000574553545F544F504449522F23 +:100030007A65706879722F6B65726E656C2F696E68 +:10004000636C7564652F6B73636865642E6800006C +:1000500021617263685F6972715F756E6C6F636B4B +:100060006564286B65792900090A00007468726567 +:1000700061642D3E626173652E70656E6465645FB8 +:100080006F6E0000574553545F544F504449522FF0 +:100090007A65706879722F6B65726E656C2F696412 +:1000A0006C652E63000000005F6B65726E656C2EE0 +:1000B000637075735B305D2E63757272656E742D3F +:1000C0003E626173652E7072696F203E3D20300084 +:1000D000574553545F544F504449522F7A657068C6 +:1000E00079722F6B65726E656C2F6D757465782EE5 +:1000F0006300000021617263685F69735F696E5F0E +:100100006973722829000000096D7574657865733C +:100110002063616E6E6F7420626520757365642064 +:10012000696E7369646520495352730A00000000C8 +:100130006D757465782D3E6C6F636B5F636F756E64 +:1001400074203E2030550000574553545F544F50A3 +:100150004449522F7A65706879722F6B65726E65AB +:100160006C2F73656D2E63002828617263685F6968 +:10017000735F696E5F6973722829203D3D203029C5 +:10018000207C7C20282874696D656F7574292E7415 +:1001900069636B73203D3D202828286B5F74696D6F +:1001A000656F75745F7429207B307D29292E7469F1 +:1001B000636B732929000000574553545F544F5017 +:1001C0004449522F7A65706879722F6B65726E653B +:1001D0006C2F776F726B2E630000000068616E6495 +:1001E0006C657220213D202828766F6964202A29B9 +:1001F00030290000776F726B2D3E71756575652033 +:10020000213D202828766F6964202A2930290000A2 +:10021000717565756520213D202828766F696420F9 +:100220002A29302900000000776F726B20213D20C1 +:100230002828766F6964202A29302900776F726B2D +:100240002D3E68616E646C657220213D2028287601 +:100250006F6964202A2930290000000071756575D6 +:1002600065000000737461636B00000021666C61BF +:10027000675F74657374282671756575652D3E66B4 +:100280006C6167732C204B5F574F524B5F51554544 +:1002900055455F535441525445445F4249542900E7 +:1002A00064776F726B20213D202828766F69642067 +:1002B0002A29302900000000574553545F544F50FD +:1002C0004449522F7A65706879722F6B65726E653A +:1002D0006C2F7468726561642E63000028282828DA +:1002E0007072696F2929203D3D2031352026262056 +:1002F0007A5F69735F69646C655F74687265616475 +:100300005F656E7472792828656E7472792929295F +:10031000207C7C202828283135202D203129203EA2 +:100320003D2028282D313629292920262620282835 +:100330007072696F2929203E3D2028282D313629E9 +:10034000292026262028287072696F2929203C3D03 +:1003500020283135202D20312929290009696E7680 +:10036000616C6964207072696F72697479202825E4 +:1003700064293B20616C6C6F7765642072616E67E5 +:10038000653A20256420746F2025640A000000006F +:100390000954687265616473206D6179206E6F74B1 +:1003A000206265206372656174656420696E20490E +:1003B0005352730A00000000574553545F544F5086 +:1003C0004449522F7A65706879722F6B65726E6539 +:1003D0006C2F73636865642E63000000217A5F6987 +:1003E000735F69646C655F7468726561645F6F6296 +:1003F0006A6563742874687265616429000000008E +:10040000574553545F544F504449522F7A65706892 +:1004100079722F6B65726E656C2F696E636C756493 +:10042000652F6B7468726561642E68005F6B65721E +:100430006E656C2E637075735B305D2E63757272C2 +:10044000656E7420213D202828766F6964202A2952 +:100450003029000073697A656F66285F7363686589 +:10046000645F7370696E6C6F636B29203D3D203053 +:10047000207C7C206C6F636B20213D20265F7363A2 +:100480006865645F7370696E6C6F636B0000000079 +:100490005F6B65726E656C2E637075735B305D2E7D +:1004A00063757272656E742D3E626173652E73633F +:1004B0006865645F6C6F636B656420213D20315516 +:1004C000000000005F6B65726E656C2E6370757363 +:1004D0005B305D2E63757272656E742D3E62617362 +:1004E000652E73636865645F6C6F636B6564202160 +:1004F0003D203055000000000961626F7274696E22 +:100500006720657373656E7469616C2074687265C9 +:1005100061642025700A0000217465726D696E6146 +:10052000746500000961626F72746564205F6375B1 +:100530007272656E74206261636B2066726F6D20EB +:10054000646561640A000000574553545F544F507E +:100550004449522F7A65706879722F6B65726E65A7 +:100560006C2F74696D65736C6963696E672E6300C7 +:10057000282874696D656F7574292026262028281F +:1005800075696E747074725F74292028736C696366 +:10059000655F74696D656F7574732929203C3D2012 +:1005A000282875696E747074725F742920287469C4 +:1005B0006D656F7574292920262620282875696E97 +:1005C000747074725F7429202874696D656F757416 +:1005D0002929203C20282875696E747074725F7414 +:1005E0002920282628736C6963655F74696D656FBF +:1005F000757473295B282873697A655F74292028CC +:100600002828696E74292073697A656F6628636883 +:1006100061725B31202D2032202A202128215F5F4A +:100620006275696C74696E5F74797065735F636F0E +:100630006D70617469626C655F70285F5F7479705A +:10064000656F665F5F28736C6963655F74696D656C +:100650006F757473292C205F5F747970656F665FA6 +:100660005F282628736C6963655F74696D656F75B3 +:100670007473295B305D2929295D29202D203129BA +:10068000202B202873697A656F6628736C6963650F +:100690005F74696D656F75747329202F2073697A93 +:1006A000656F662828736C6963655F74696D656F33 +:1006B000757473295B305D292929295D2929202634 +:1006C000262028282875696E747074725F7429203A +:1006D0002874696D656F75742929202D2028287567 +:1006E000696E747074725F74292028736C69636515 +:1006F0005F74696D656F75747329292920252073CE +:10070000697A656F662828736C6963655F74696DC3 +:10071000656F757473295B305D29203D3D2030295C +:1007200000000000574553545F544F504449522F26 +:100730007A65706879722F6B65726E656C2F74695B +:100740006D656F75742E6300217379735F646E6FCE +:1007500064655F69735F6C696E6B65642826746F8E +:100760002D3E6E6F64652900574553545F544F50BA +:100770004449522F7A65706879722F6B65726E6585 +:100780006C2F6D656D706F6F6C2E6300616C6967A7 +:100790006E203D3D2030207C7C20282875696E74B9 +:1007A0007074725F74296D656D20262028616C69F4 +:1007B000676E202D20312929203D3D20300000008A +:1007C000096D6973616C69676E6564206D656D6F35 +:1007D00072792061742025702028616C69676E2011 +:1007E0003D20257A75290A00574553545F544F50D0 +:1007F0004449522F7A65706879722F6B65726E6505 +:100800006C2F6B686561702E630000006865617015 +:10081000203C3D205F6B5F686561705F6C6973743D +:100820005F656E640000000021617263685F697338 +:100830005F696E5F6973722829207C7C2028287488 +:10084000696D656F7574292E7469636B73203D3D06 +:10085000202828286B5F74696D656F75745F742933 +:10086000207B307D29292E7469636B732900000079 +:10087000737973776F726B7100286E756C6C2900D9 +:080880002A666C6F61742A0006 +:100890000000000000000000000000000000000058 +:1008A0000000000000000000000000000000000048 +:1008B0000000000000000000000000000000000038 +:1008C0000000000000000000000000000000000028 +:1008D0000000000000000000000000000000000018 +:1008E0000000000000000000000000000000000008 +:1008F00000000000000000000000000000000000F8 +:1009000000000000000000000000000000000000E7 +:100910000000000000000000000000004806002069 +:100920002806002000C201000000080000000000AE +:1009300000000000000000000000000000000000B7 +:1009400000000000000000000000000000000000A7 +:1009500079D6000000000000000000000000000048 +:100960009005002090050020C577000000000000E1 +:100970000000000000000000000000000000000077 +:10098000B0050020B00500200000000001000000BC +:10099000C0050020C005002000000000010000008C +:1009A0000000000000000000000000000000000047 +:1009B0000000000000000000000000000000000037 +:1009C0000000000000000000000000000000000027 +:1009D0000000000000000000000000000000000017 +:1009E0000000000000000000E80F002004000000EC +:1009F000000000007D1C00004035002000000000C9 +:100A000000000000000000000000000000000000E6 +:100A10000000000000040000403900200000000039 +:100A200000000000000000000000000000000000C6 +:100A30000000000000040000E13C00008000000015 +:100A4000D937000000000000D93700008000000006 +:100A500000000000ED4E000000000000000000005B +:100A60000000000000000000000000000000000086 +:100A70000000000000000000000000000000000076 +:100A80000000000000000000000000000000000066 +:100A90000000000000000000000000000000000056 +:100AA0000000000000000000000000000000000046 +:100AB0000000000000000000000000000000000036 +:100AC0000000000008000000FF000000000000001F +:100AD00003000000000000000807002008070020B5 +:010AE0000114 +:0C0AE10000000000000000000000000009 +:100AF000200700202007002000000000403D0020CB +:100B000000000000200000001400000000000000B1 +:100B10004007002040070020000000000000000007 +:040B20000E000000C3 +:100B240054070020540700200100000001000000C9 +:100B3400000000000000000000000000700700201A +:040B44007007002016 +:100B480012010002EF020140E32F04000004010239 +:100B5800030109020000000100E032080B00020254 +:100B68000200000904000001020200000524001030 +:100B780001052401020104240202052406000107DC +:100B880005800310000A09040100020A000000079A +:100B98000580024000000705000240000004030928 +:100BA800040E035A45504859520000000000003412 +:100BB800035A65706879722055534220636F6E73CB +:100BC8006F6C652073616D706C650000000000003B +:100BD800000000000000000000000000000000000D +:100BE800000000220330313233343536373839418A +:100BF8004243444546000000000000000000000099 +:070C080000000000000000E5 +:100C1000000000009B070020313A00004D4000001A +:100C20007D3C000000000000000000000300000008 +:040C30006806002032 +:040C340015E015E0D2 +:04000003000045C5EF +:00000001FF diff --git a/build/PHF000-Firmware/zephyr/zephyr.map b/build/PHF000-Firmware/zephyr/zephyr.map new file mode 100644 index 0000000..65f85d4 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/zephyr.map @@ -0,0 +1,5944 @@ +Archive member included to satisfy reference by file (symbol) + +app/libapp.a(main.c.obj) (--whole-archive) +app/libapp.a(led.c.obj) (--whole-archive) +app/libapp.a(button.c.obj) (--whole-archive) +app/libapp.a(actuator.c.obj) (--whole-archive) +app/libapp.a(battery_adc.c.obj) + (--whole-archive) +app/libapp.a(temperature.c.obj) + (--whole-archive) +app/libapp.a(timer_count.c.obj) + (--whole-archive) +zephyr/libzephyr.a(heap.c.obj) + (--whole-archive) +zephyr/libzephyr.a(cbprintf_packaged.c.obj) + (--whole-archive) +zephyr/libzephyr.a(printk.c.obj) + (--whole-archive) +zephyr/libzephyr.a(sem.c.obj) + (--whole-archive) +zephyr/libzephyr.a(thread_entry.c.obj) + (--whole-archive) +zephyr/libzephyr.a(cbprintf_complete.c.obj) + (--whole-archive) +zephyr/libzephyr.a(assert.c.obj) + (--whole-archive) +zephyr/libzephyr.a(dec.c.obj) + (--whole-archive) +zephyr/libzephyr.a(hex.c.obj) + (--whole-archive) +zephyr/libzephyr.a(rb.c.obj) (--whole-archive) +zephyr/libzephyr.a(timeutil.c.obj) + (--whole-archive) +zephyr/libzephyr.a(bitarray.c.obj) + (--whole-archive) +zephyr/libzephyr.a(onoff.c.obj) + (--whole-archive) +zephyr/libzephyr.a(notify.c.obj) + (--whole-archive) +zephyr/libzephyr.a(ring_buffer.c.obj) + (--whole-archive) +zephyr/libzephyr.a(last_section_id.c.obj) + (--whole-archive) +zephyr/libzephyr.a(configs.c.obj) + (--whole-archive) +zephyr/libzephyr.a(mem_attr.c.obj) + (--whole-archive) +zephyr/libzephyr.a(tracing_none.c.obj) + (--whole-archive) +zephyr/libzephyr.a(usb_device.c.obj) + (--whole-archive) +zephyr/libzephyr.a(usb_descriptor.c.obj) + (--whole-archive) +zephyr/libzephyr.a(usb_transfer.c.obj) + (--whole-archive) +zephyr/libzephyr.a(cdc_acm.c.obj) + (--whole-archive) +zephyr/libzephyr.a(usb_work_q.c.obj) + (--whole-archive) +zephyr/libzephyr.a(banner.c.obj) + (--whole-archive) +zephyr/libzephyr.a(flash_map_partition_manager.c.obj) + (--whole-archive) +zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/libarch__arm__core.a(fatal.c.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi.c.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi_on_reset.S.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/libarch__arm__core.a(tls.c.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(exc_exit.c.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault.c.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault_s.S.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fpu.c.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(reset.S.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(scb.c.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread_abort.c.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(vector_table.S.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(swap_helper.S.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(prep_c.c.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread.c.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(cpu_idle.c.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_init.c.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(isr_wrapper.c.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(__aeabi_read_tp.S.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_core_mpu.c.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_mpu.c.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_mpu_regions.c.obj) + (--whole-archive) +zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + (--whole-archive) +zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + (--whole-archive) +zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + (--whole-archive) +zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + (--whole-archive) +zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + (--whole-archive) +zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + (--whole-archive) +zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + (--whole-archive) +zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + (--whole-archive) +zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + (--whole-archive) +zephyr/soc/soc/nrf52833/libsoc__nordic.a(validate_base_addresses.c.obj) + (--whole-archive) +zephyr/soc/soc/nrf52833/libsoc__nordic.a(validate_binding_headers.c.obj) + (--whole-archive) +zephyr/soc/soc/nrf52833/libsoc__nordic.a(validate_enabled_instances.c.obj) + (--whole-archive) +zephyr/soc/soc/nrf52833/libsoc__nordic.a(soc.c.obj) + (--whole-archive) +zephyr/soc/soc/nrf52833/libsoc__nordic.a(reboot.c.obj) + (--whole-archive) +zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + (--whole-archive) +zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + (--whole-archive) +zephyr/drivers/adc/libdrivers__adc.a(adc_common.c.obj) + (--whole-archive) +zephyr/drivers/adc/libdrivers__adc.a(adc_nrfx_saadc.c.obj) + (--whole-archive) +zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + (--whole-archive) +zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + (--whole-archive) +zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + (--whole-archive) +zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_weak_impl.c.obj) + (--whole-archive) +zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_nrf.c.obj) + (--whole-archive) +zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + (--whole-archive) +zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_nrf.c.obj) + (--whole-archive) +zephyr/drivers/sensor/nordic/temp/libdrivers__sensor__nordic__temp.a(temp_nrf5.c.obj) + (--whole-archive) +zephyr/drivers/serial/libdrivers__serial.a(empty_file.c.obj) + (--whole-archive) +zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + (--whole-archive) +zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + (--whole-archive) +modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(system_nrf52833.c.obj) + (--whole-archive) +modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_glue.c.obj) + (--whole-archive) +modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_flag32_allocator.c.obj) + (--whole-archive) +modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_ram_ctrl.c.obj) + (--whole-archive) +modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_clock.c.obj) + (--whole-archive) +modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + (--whole-archive) +modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + (--whole-archive) +modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_temp.c.obj) + (--whole-archive) +modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + (--whole-archive) +modules/segger/libmodules__segger.a(SEGGER_RTT_zephyr.c.obj) + (--whole-archive) +zephyr/kernel/libkernel.a(busy_wait.c.obj) + zephyr/libzephyr.a(cdc_acm.c.obj) (z_impl_k_busy_wait) +zephyr/kernel/libkernel.a(device.c.obj) + app/libapp.a(led.c.obj) (z_impl_device_is_ready) +zephyr/kernel/libkernel.a(fatal.c.obj) + zephyr/arch/arch/arm/core/libarch__arm__core.a(fatal.c.obj) (z_fatal_error) +zephyr/kernel/libkernel.a(init.c.obj) + zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) (z_sys_post_kernel) +zephyr/kernel/libkernel.a(init_static.c.obj) + zephyr/kernel/libkernel.a(init.c.obj) (z_init_static) +zephyr/kernel/libkernel.a(mem_slab.c.obj) + zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) (k_mem_slab_alloc) +zephyr/kernel/libkernel.a(idle.c.obj) + zephyr/kernel/libkernel.a(init.c.obj) (idle) +zephyr/kernel/libkernel.a(mutex.c.obj) + zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) (z_impl_k_mutex_init) +zephyr/kernel/libkernel.a(queue.c.obj) + zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) (k_queue_append) +zephyr/kernel/libkernel.a(sem.c.obj) + zephyr/libzephyr.a(sem.c.obj) (z_impl_k_sem_init) +zephyr/kernel/libkernel.a(work.c.obj) + zephyr/libzephyr.a(usb_transfer.c.obj) (k_work_init) +zephyr/kernel/libkernel.a(thread.c.obj) + zephyr/libzephyr.a(usb_device.c.obj) (k_is_in_isr) +zephyr/kernel/libkernel.a(sched.c.obj) + zephyr/kernel/libkernel.a(init.c.obj) (z_ready_thread) +zephyr/kernel/libkernel.a(timeslicing.c.obj) + zephyr/kernel/libkernel.a(sched.c.obj) (z_reset_time_slice) +zephyr/kernel/libkernel.a(spinlock_validate.c.obj) + zephyr/libzephyr.a(bitarray.c.obj) (z_spin_lock_valid) +zephyr/kernel/libkernel.a(xip.c.obj) + zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(prep_c.c.obj) (z_data_copy) +zephyr/kernel/libkernel.a(timeout.c.obj) + zephyr/kernel/libkernel.a(init.c.obj) (z_add_timeout) +zephyr/kernel/libkernel.a(timer.c.obj) + zephyr/drivers/adc/libdrivers__adc.a(adc_nrfx_saadc.c.obj) (z_timer_expiration_handler) +zephyr/kernel/libkernel.a(mempool.c.obj) + zephyr/kernel/libkernel.a(queue.c.obj) (k_free) +zephyr/kernel/libkernel.a(kheap.c.obj) + zephyr/kernel/libkernel.a(mempool.c.obj) (k_heap_aligned_alloc) +zephyr/kernel/libkernel.a(system_work_q.c.obj) + zephyr/kernel/libkernel.a(work.c.obj) (k_sys_work_q) +/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(strcmp.S.o) + zephyr/kernel/libkernel.a(device.c.obj) (strcmp) +/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(memcpy.c.o) + zephyr/libzephyr.a(heap.c.obj) (memcpy) +/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(memset.c.o) + zephyr/libzephyr.a(heap.c.obj) (memset) +/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(strlen.S.o) + zephyr/libzephyr.a(cbprintf_packaged.c.obj) (strlen) +/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_ctype_ctype_.c.o) + zephyr/libzephyr.a(cbprintf_complete.c.obj) (_ctype_) +/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_errno_errno.c.o) + zephyr/libzephyr.a(timeutil.c.obj) (errno) +/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_string_strnlen.c.o) + zephyr/libzephyr.a(cbprintf_complete.c.obj) (strnlen) +/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_puts.c.o) + zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) (puts) +/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_vflprintf.c.o) + (__l_vfprintf) +/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_vflscanf.c.o) + (__l_vfscanf) +/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_string_strchr.c.o) + /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_vflscanf.c.o) (strchr) +/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_fgetc.c.o) + /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_vflscanf.c.o) (fgetc) +/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_ungetc.c.o) + /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_vflscanf.c.o) (ungetc) +/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_muldf3.o) + zephyr/libzephyr.a(timeutil.c.obj) (__aeabi_dmul) +/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_mulsf3.o) + app/libapp.a(battery_adc.c.obj) (__aeabi_fmul) +/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_addsubdf3.o) + zephyr/libzephyr.a(timeutil.c.obj) (__aeabi_dsub) +/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_muldivdf3.o) + zephyr/libzephyr.a(timeutil.c.obj) (__aeabi_ddiv) +/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_truncdfsf2.o) + zephyr/libzephyr.a(timeutil.c.obj) (__aeabi_d2f) +/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_addsubsf3.o) + app/libapp.a(battery_adc.c.obj) (__aeabi_ui2f) +/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_cmpsf2.o) + zephyr/libzephyr.a(timeutil.c.obj) (__aeabi_fcmpeq) +/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_fixsfsi.o) + app/libapp.a(battery_adc.c.obj) (__aeabi_f2iz) +/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_aeabi_ldivmod.o) + app/libapp.a(led.c.obj) (__aeabi_ldivmod) +/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_aeabi_uldivmod.o) + app/libapp.a(led.c.obj) (__aeabi_uldivmod) +/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_popcountsi2.o) + zephyr/libzephyr.a(bitarray.c.obj) (__popcountsi2) +/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_fixdfdi.o) + zephyr/libzephyr.a(timeutil.c.obj) (__aeabi_d2lz) +/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_fixunsdfdi.o) + /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_fixdfdi.o) (__aeabi_d2ulz) +/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_udivmoddi4.o) + /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_aeabi_ldivmod.o) (__udivmoddi4) +/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_dvmd_tls.o) + /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_aeabi_ldivmod.o) (__aeabi_ldiv0) +/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_cmpdf2.o) + /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_fixdfdi.o) (__aeabi_dcmplt) +/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_fixunsdfsi.o) + /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_fixunsdfdi.o) (__aeabi_d2uiz) + +Discarded input sections + + .text 0x0000000000000000 0x0 zephyr/CMakeFiles/zephyr_final.dir/misc/empty_file.c.obj + .data 0x0000000000000000 0x0 zephyr/CMakeFiles/zephyr_final.dir/misc/empty_file.c.obj + .bss 0x0000000000000000 0x0 zephyr/CMakeFiles/zephyr_final.dir/misc/empty_file.c.obj + .debug_line 0x0000000000000000 0x0 zephyr/CMakeFiles/zephyr_final.dir/misc/empty_file.c.obj + .debug_str 0x0000000000000000 0x202 zephyr/CMakeFiles/zephyr_final.dir/misc/empty_file.c.obj + .comment 0x0000000000000000 0x21 zephyr/CMakeFiles/zephyr_final.dir/misc/empty_file.c.obj + .text 0x0000000000000000 0x0 zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj + .data 0x0000000000000000 0x0 zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj + .bss 0x0000000000000000 0x0 zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj + .text 0x0000000000000000 0x0 zephyr/CMakeFiles/offsets.dir/./arch/arm/core/offsets/offsets.c.obj + .data 0x0000000000000000 0x0 zephyr/CMakeFiles/offsets.dir/./arch/arm/core/offsets/offsets.c.obj + .bss 0x0000000000000000 0x0 zephyr/CMakeFiles/offsets.dir/./arch/arm/core/offsets/offsets.c.obj + .text 0x0000000000000000 0x0 app/libapp.a(main.c.obj) + .data 0x0000000000000000 0x0 app/libapp.a(main.c.obj) + .bss 0x0000000000000000 0x0 app/libapp.a(main.c.obj) + .rodata.dev 0x0000000000000000 0x4 app/libapp.a(main.c.obj) + .text 0x0000000000000000 0x0 app/libapp.a(led.c.obj) + .data 0x0000000000000000 0x0 app/libapp.a(led.c.obj) + .bss 0x0000000000000000 0x0 app/libapp.a(led.c.obj) + .text.led_set 0x0000000000000000 0xb4 app/libapp.a(led.c.obj) + .text.led_stop_blink + 0x0000000000000000 0x1c app/libapp.a(led.c.obj) + .text 0x0000000000000000 0x0 app/libapp.a(button.c.obj) + .data 0x0000000000000000 0x0 app/libapp.a(button.c.obj) + .bss 0x0000000000000000 0x0 app/libapp.a(button.c.obj) + .text 0x0000000000000000 0x0 app/libapp.a(actuator.c.obj) + .data 0x0000000000000000 0x0 app/libapp.a(actuator.c.obj) + .bss 0x0000000000000000 0x0 app/libapp.a(actuator.c.obj) + .text.digital_out_set_do1 + 0x0000000000000000 0x78 app/libapp.a(actuator.c.obj) + .text.digital_out_set_do2 + 0x0000000000000000 0x74 app/libapp.a(actuator.c.obj) + .text.digital_out_set_do_en + 0x0000000000000000 0x78 app/libapp.a(actuator.c.obj) + .text 0x0000000000000000 0x0 app/libapp.a(battery_adc.c.obj) + .data 0x0000000000000000 0x0 app/libapp.a(battery_adc.c.obj) + .bss 0x0000000000000000 0x0 app/libapp.a(battery_adc.c.obj) + .text 0x0000000000000000 0x0 app/libapp.a(temperature.c.obj) + .data 0x0000000000000000 0x0 app/libapp.a(temperature.c.obj) + .bss 0x0000000000000000 0x0 app/libapp.a(temperature.c.obj) + .text 0x0000000000000000 0x0 app/libapp.a(timer_count.c.obj) + .data 0x0000000000000000 0x0 app/libapp.a(timer_count.c.obj) + .bss 0x0000000000000000 0x0 app/libapp.a(timer_count.c.obj) + .text.timer_init + 0x0000000000000000 0x40 app/libapp.a(timer_count.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(heap.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(heap.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(heap.c.obj) + .text.sys_heap_usable_size + 0x0000000000000000 0x38 zephyr/libzephyr.a(heap.c.obj) + .text.sys_heap_aligned_realloc + 0x0000000000000000 0x1f4 zephyr/libzephyr.a(heap.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .rodata.cbvprintf_package.str1.4 + 0x0000000000000000 0xc3 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .text.cbvprintf_package + 0x0000000000000000 0x52c zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .text.cbprintf_package + 0x0000000000000000 0x20 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .text.cbpprintf_external + 0x0000000000000000 0x5c zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .text.is_ptr 0x0000000000000000 0x64 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .rodata.cbprintf_package_convert.str1.4 + 0x0000000000000000 0x5c zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .text.cbprintf_package_convert + 0x0000000000000000 0x490 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .debug_info 0x0000000000000000 0x1754 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .debug_abbrev 0x0000000000000000 0x4f0 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .debug_loc 0x0000000000000000 0x2d45 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .debug_aranges + 0x0000000000000000 0x40 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .debug_ranges 0x0000000000000000 0x2f0 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .debug_line 0x0000000000000000 0x13eb zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .debug_str 0x0000000000000000 0x7c0 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .comment 0x0000000000000000 0x21 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .debug_frame 0x0000000000000000 0x10c zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(printk.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(printk.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(printk.c.obj) + .text.__printk_get_hook + 0x0000000000000000 0xc zephyr/libzephyr.a(printk.c.obj) + .text.z_impl_k_str_out + 0x0000000000000000 0x20 zephyr/libzephyr.a(printk.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(sem.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(sem.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(sem.c.obj) + .text.sys_sem_init + 0x0000000000000000 0xc zephyr/libzephyr.a(sem.c.obj) + .text.sys_sem_give + 0x0000000000000000 0xc zephyr/libzephyr.a(sem.c.obj) + .text.sys_sem_take + 0x0000000000000000 0x20 zephyr/libzephyr.a(sem.c.obj) + .text.sys_sem_count_get + 0x0000000000000000 0x4 zephyr/libzephyr.a(sem.c.obj) + .debug_info 0x0000000000000000 0x4dd zephyr/libzephyr.a(sem.c.obj) + .debug_abbrev 0x0000000000000000 0x22a zephyr/libzephyr.a(sem.c.obj) + .debug_loc 0x0000000000000000 0x21a zephyr/libzephyr.a(sem.c.obj) + .debug_aranges + 0x0000000000000000 0x38 zephyr/libzephyr.a(sem.c.obj) + .debug_ranges 0x0000000000000000 0x70 zephyr/libzephyr.a(sem.c.obj) + .debug_line 0x0000000000000000 0x37c zephyr/libzephyr.a(sem.c.obj) + .debug_str 0x0000000000000000 0x400 zephyr/libzephyr.a(sem.c.obj) + .comment 0x0000000000000000 0x21 zephyr/libzephyr.a(sem.c.obj) + .debug_frame 0x0000000000000000 0x68 zephyr/libzephyr.a(sem.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(thread_entry.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(thread_entry.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(thread_entry.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .text.encode_uint + 0x0000000000000000 0xd0 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .rodata.z_cbvprintf_impl.str1.4 + 0x0000000000000000 0x6 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .text.z_cbvprintf_impl + 0x0000000000000000 0x9a0 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .debug_info 0x0000000000000000 0x1049 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .debug_abbrev 0x0000000000000000 0x3f2 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .debug_loc 0x0000000000000000 0x1a3f zephyr/libzephyr.a(cbprintf_complete.c.obj) + .debug_aranges + 0x0000000000000000 0x28 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .debug_ranges 0x0000000000000000 0x420 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .debug_line 0x0000000000000000 0x1002 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .debug_str 0x0000000000000000 0x6b9 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .comment 0x0000000000000000 0x21 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .debug_frame 0x0000000000000000 0x68 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(assert.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(assert.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(assert.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(dec.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(dec.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(dec.c.obj) + .text.u8_to_dec + 0x0000000000000000 0x78 zephyr/libzephyr.a(dec.c.obj) + .debug_info 0x0000000000000000 0x12b zephyr/libzephyr.a(dec.c.obj) + .debug_abbrev 0x0000000000000000 0x9c zephyr/libzephyr.a(dec.c.obj) + .debug_loc 0x0000000000000000 0x176 zephyr/libzephyr.a(dec.c.obj) + .debug_aranges + 0x0000000000000000 0x20 zephyr/libzephyr.a(dec.c.obj) + .debug_ranges 0x0000000000000000 0x10 zephyr/libzephyr.a(dec.c.obj) + .debug_line 0x0000000000000000 0x1ee zephyr/libzephyr.a(dec.c.obj) + .debug_str 0x0000000000000000 0x2d7 zephyr/libzephyr.a(dec.c.obj) + .comment 0x0000000000000000 0x21 zephyr/libzephyr.a(dec.c.obj) + .debug_frame 0x0000000000000000 0x44 zephyr/libzephyr.a(dec.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(hex.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(hex.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(hex.c.obj) + .text.char2hex + 0x0000000000000000 0x3c zephyr/libzephyr.a(hex.c.obj) + .text.hex2char + 0x0000000000000000 0x24 zephyr/libzephyr.a(hex.c.obj) + .text.bin2hex 0x0000000000000000 0x58 zephyr/libzephyr.a(hex.c.obj) + .text.hex2bin 0x0000000000000000 0xd4 zephyr/libzephyr.a(hex.c.obj) + .debug_info 0x0000000000000000 0x356 zephyr/libzephyr.a(hex.c.obj) + .debug_abbrev 0x0000000000000000 0x160 zephyr/libzephyr.a(hex.c.obj) + .debug_loc 0x0000000000000000 0x4de zephyr/libzephyr.a(hex.c.obj) + .debug_aranges + 0x0000000000000000 0x38 zephyr/libzephyr.a(hex.c.obj) + .debug_ranges 0x0000000000000000 0xa8 zephyr/libzephyr.a(hex.c.obj) + .debug_line 0x0000000000000000 0x47d zephyr/libzephyr.a(hex.c.obj) + .debug_str 0x0000000000000000 0x2de zephyr/libzephyr.a(hex.c.obj) + .comment 0x0000000000000000 0x21 zephyr/libzephyr.a(hex.c.obj) + .debug_frame 0x0000000000000000 0x68 zephyr/libzephyr.a(hex.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(rb.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(rb.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(rb.c.obj) + .text.find_and_stack + 0x0000000000000000 0x40 zephyr/libzephyr.a(rb.c.obj) + .text.rotate 0x0000000000000000 0xac zephyr/libzephyr.a(rb.c.obj) + .text.z_rb_get_minmax + 0x0000000000000000 0x20 zephyr/libzephyr.a(rb.c.obj) + .text.rb_insert + 0x0000000000000000 0x148 zephyr/libzephyr.a(rb.c.obj) + .rodata.rb_remove.str1.4 + 0x0000000000000000 0x7b zephyr/libzephyr.a(rb.c.obj) + .text.rb_remove + 0x0000000000000000 0x48c zephyr/libzephyr.a(rb.c.obj) + .text.z_rb_walk + 0x0000000000000000 0x128 zephyr/libzephyr.a(rb.c.obj) + .text.z_rb_child + 0x0000000000000000 0x10 zephyr/libzephyr.a(rb.c.obj) + .text.z_rb_is_black + 0x0000000000000000 0x8 zephyr/libzephyr.a(rb.c.obj) + .text.rb_contains + 0x0000000000000000 0x38 zephyr/libzephyr.a(rb.c.obj) + .text.z_rb_foreach_next + 0x0000000000000000 0xec zephyr/libzephyr.a(rb.c.obj) + .debug_info 0x0000000000000000 0x3191 zephyr/libzephyr.a(rb.c.obj) + .debug_abbrev 0x0000000000000000 0x4cc zephyr/libzephyr.a(rb.c.obj) + .debug_loc 0x0000000000000000 0x37ae zephyr/libzephyr.a(rb.c.obj) + .debug_aranges + 0x0000000000000000 0x68 zephyr/libzephyr.a(rb.c.obj) + .debug_ranges 0x0000000000000000 0xae0 zephyr/libzephyr.a(rb.c.obj) + .debug_line 0x0000000000000000 0x1ab2 zephyr/libzephyr.a(rb.c.obj) + .debug_str 0x0000000000000000 0x4ee zephyr/libzephyr.a(rb.c.obj) + .comment 0x0000000000000000 0x21 zephyr/libzephyr.a(rb.c.obj) + .debug_frame 0x0000000000000000 0x188 zephyr/libzephyr.a(rb.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(timeutil.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(timeutil.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(timeutil.c.obj) + .text.timeutil_timegm64 + 0x0000000000000000 0x1fc zephyr/libzephyr.a(timeutil.c.obj) + .text.timeutil_timegm + 0x0000000000000000 0x1c zephyr/libzephyr.a(timeutil.c.obj) + .text.timeutil_sync_state_update + 0x0000000000000000 0x68 zephyr/libzephyr.a(timeutil.c.obj) + .text.timeutil_sync_state_set_skew + 0x0000000000000000 0x38 zephyr/libzephyr.a(timeutil.c.obj) + .text.timeutil_sync_estimate_skew + 0x0000000000000000 0xa4 zephyr/libzephyr.a(timeutil.c.obj) + .text.timeutil_sync_ref_from_local + 0x0000000000000000 0xb0 zephyr/libzephyr.a(timeutil.c.obj) + .text.timeutil_sync_local_from_ref + 0x0000000000000000 0xa8 zephyr/libzephyr.a(timeutil.c.obj) + .text.timeutil_sync_skew_to_ppb + 0x0000000000000000 0x3c zephyr/libzephyr.a(timeutil.c.obj) + .debug_info 0x0000000000000000 0x879 zephyr/libzephyr.a(timeutil.c.obj) + .debug_abbrev 0x0000000000000000 0x1d5 zephyr/libzephyr.a(timeutil.c.obj) + .debug_loc 0x0000000000000000 0x6ee zephyr/libzephyr.a(timeutil.c.obj) + .debug_aranges + 0x0000000000000000 0x58 zephyr/libzephyr.a(timeutil.c.obj) + .debug_ranges 0x0000000000000000 0xe0 zephyr/libzephyr.a(timeutil.c.obj) + .debug_line 0x0000000000000000 0x633 zephyr/libzephyr.a(timeutil.c.obj) + .debug_str 0x0000000000000000 0x58f zephyr/libzephyr.a(timeutil.c.obj) + .comment 0x0000000000000000 0x21 zephyr/libzephyr.a(timeutil.c.obj) + .debug_frame 0x0000000000000000 0x11c zephyr/libzephyr.a(timeutil.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(bitarray.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(bitarray.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(bitarray.c.obj) + .text.set_region + 0x0000000000000000 0xe8 zephyr/libzephyr.a(bitarray.c.obj) + .rodata.set_clear_region.str1.4 + 0x0000000000000000 0x105 zephyr/libzephyr.a(bitarray.c.obj) + .text.set_clear_region + 0x0000000000000000 0x10c zephyr/libzephyr.a(bitarray.c.obj) + .rodata.match_region.str1.4 + 0x0000000000000000 0x15 zephyr/libzephyr.a(bitarray.c.obj) + .text.match_region + 0x0000000000000000 0xec zephyr/libzephyr.a(bitarray.c.obj) + .text.is_region_set_clear + 0x0000000000000000 0x10c zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_popcount_region + 0x0000000000000000 0x184 zephyr/libzephyr.a(bitarray.c.obj) + .rodata.sys_bitarray_xor.str1.4 + 0x0000000000000000 0x54 zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_xor + 0x0000000000000000 0x230 zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_set_bit + 0x0000000000000000 0xf8 zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_clear_bit + 0x0000000000000000 0xfc zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_test_bit + 0x0000000000000000 0x100 zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_test_and_set_bit + 0x0000000000000000 0x110 zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_test_and_clear_bit + 0x0000000000000000 0x114 zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_alloc + 0x0000000000000000 0x17c zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_find_nth_set + 0x0000000000000000 0x1c4 zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_free + 0x0000000000000000 0x128 zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_is_region_set + 0x0000000000000000 0x8 zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_is_region_cleared + 0x0000000000000000 0x8 zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_test_and_set_region + 0x0000000000000000 0x12c zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_set_region + 0x0000000000000000 0x8 zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_clear_region + 0x0000000000000000 0x8 zephyr/libzephyr.a(bitarray.c.obj) + .debug_info 0x0000000000000000 0x41d9 zephyr/libzephyr.a(bitarray.c.obj) + .debug_abbrev 0x0000000000000000 0x435 zephyr/libzephyr.a(bitarray.c.obj) + .debug_loc 0x0000000000000000 0x37ec zephyr/libzephyr.a(bitarray.c.obj) + .debug_aranges + 0x0000000000000000 0xb0 zephyr/libzephyr.a(bitarray.c.obj) + .debug_ranges 0x0000000000000000 0x5d0 zephyr/libzephyr.a(bitarray.c.obj) + .debug_line 0x0000000000000000 0x272d zephyr/libzephyr.a(bitarray.c.obj) + .debug_str 0x0000000000000000 0x72b zephyr/libzephyr.a(bitarray.c.obj) + .comment 0x0000000000000000 0x21 zephyr/libzephyr.a(bitarray.c.obj) + .debug_frame 0x0000000000000000 0x2d4 zephyr/libzephyr.a(bitarray.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(onoff.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(onoff.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(onoff.c.obj) + .text.onoff_reset + 0x0000000000000000 0x100 zephyr/libzephyr.a(onoff.c.obj) + .text.onoff_monitor_register + 0x0000000000000000 0xb4 zephyr/libzephyr.a(onoff.c.obj) + .text.onoff_monitor_unregister + 0x0000000000000000 0xdc zephyr/libzephyr.a(onoff.c.obj) + .text.onoff_sync_lock + 0x0000000000000000 0x54 zephyr/libzephyr.a(onoff.c.obj) + .rodata.onoff_sync_finalize.str1.4 + 0x0000000000000000 0x3 zephyr/libzephyr.a(onoff.c.obj) + .text.onoff_sync_finalize + 0x0000000000000000 0xc4 zephyr/libzephyr.a(onoff.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(notify.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(notify.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(notify.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(ring_buffer.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(ring_buffer.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(ring_buffer.c.obj) + .text.ring_buf_put_claim + 0x0000000000000000 0x40 zephyr/libzephyr.a(ring_buffer.c.obj) + .text.ring_buf_put_finish + 0x0000000000000000 0x2c zephyr/libzephyr.a(ring_buffer.c.obj) + .rodata.ring_buf_peek.str1.4 + 0x0000000000000000 0x14 zephyr/libzephyr.a(ring_buffer.c.obj) + .text.ring_buf_peek + 0x0000000000000000 0xa0 zephyr/libzephyr.a(ring_buffer.c.obj) + .rodata.ring_buf_item_put.str1.4 + 0x0000000000000000 0x2e zephyr/libzephyr.a(ring_buffer.c.obj) + .text.ring_buf_item_put + 0x0000000000000000 0x12c zephyr/libzephyr.a(ring_buffer.c.obj) + .text.ring_buf_item_get + 0x0000000000000000 0x130 zephyr/libzephyr.a(ring_buffer.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(last_section_id.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(last_section_id.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(last_section_id.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(configs.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(configs.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(configs.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(mem_attr.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(mem_attr.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(mem_attr.c.obj) + .text.mem_attr_check_buf + 0x0000000000000000 0x10 zephyr/libzephyr.a(mem_attr.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(tracing_none.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(tracing_none.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(tracing_none.c.obj) + .text.sys_trace_isr_enter + 0x0000000000000000 0x4 zephyr/libzephyr.a(tracing_none.c.obj) + .text.sys_trace_isr_exit + 0x0000000000000000 0x4 zephyr/libzephyr.a(tracing_none.c.obj) + .text.sys_trace_isr_exit_to_scheduler + 0x0000000000000000 0x4 zephyr/libzephyr.a(tracing_none.c.obj) + .text.sys_trace_idle + 0x0000000000000000 0x4 zephyr/libzephyr.a(tracing_none.c.obj) + .debug_info 0x0000000000000000 0x56 zephyr/libzephyr.a(tracing_none.c.obj) + .debug_abbrev 0x0000000000000000 0x48 zephyr/libzephyr.a(tracing_none.c.obj) + .debug_aranges + 0x0000000000000000 0x38 zephyr/libzephyr.a(tracing_none.c.obj) + .debug_ranges 0x0000000000000000 0x28 zephyr/libzephyr.a(tracing_none.c.obj) + .debug_line 0x0000000000000000 0xa2 zephyr/libzephyr.a(tracing_none.c.obj) + .debug_str 0x0000000000000000 0x264 zephyr/libzephyr.a(tracing_none.c.obj) + .comment 0x0000000000000000 0x21 zephyr/libzephyr.a(tracing_none.c.obj) + .debug_frame 0x0000000000000000 0x50 zephyr/libzephyr.a(tracing_none.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(usb_device.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(usb_device.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(usb_device.c.obj) + .text.usb_deconfig + 0x0000000000000000 0x24 zephyr/libzephyr.a(usb_device.c.obj) + .text.usb_disable + 0x0000000000000000 0x6c zephyr/libzephyr.a(usb_device.c.obj) + .text.usb_read + 0x0000000000000000 0x4 zephyr/libzephyr.a(usb_device.c.obj) + .text.usb_ep_set_stall + 0x0000000000000000 0x4 zephyr/libzephyr.a(usb_device.c.obj) + .text.usb_ep_clear_stall + 0x0000000000000000 0x4 zephyr/libzephyr.a(usb_device.c.obj) + .text.usb_ep_read_wait + 0x0000000000000000 0x4 zephyr/libzephyr.a(usb_device.c.obj) + .text.usb_ep_read_continue + 0x0000000000000000 0x4 zephyr/libzephyr.a(usb_device.c.obj) + .text.usb_get_remote_wakeup_status + 0x0000000000000000 0xc zephyr/libzephyr.a(usb_device.c.obj) + .text.usb_wakeup_request + 0x0000000000000000 0x18 zephyr/libzephyr.a(usb_device.c.obj) + .text.usb_set_config + 0x0000000000000000 0x30 zephyr/libzephyr.a(usb_device.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(usb_descriptor.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(usb_descriptor.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(usb_descriptor.c.obj) + .text.usb_get_str_descriptor_idx + 0x0000000000000000 0x30 zephyr/libzephyr.a(usb_descriptor.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(usb_transfer.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(usb_transfer.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(usb_transfer.c.obj) + .text.usb_transfer_sync_cb + 0x0000000000000000 0xc zephyr/libzephyr.a(usb_transfer.c.obj) + .text.usb_transfer_sync + 0x0000000000000000 0x4c zephyr/libzephyr.a(usb_transfer.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(cdc_acm.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(cdc_acm.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(cdc_acm.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(usb_work_q.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(usb_work_q.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(usb_work_q.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(banner.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(banner.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(banner.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(flash_map_partition_manager.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(flash_map_partition_manager.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(flash_map_partition_manager.c.obj) + .bss.flash_map + 0x0000000000000000 0x4 zephyr/libzephyr.a(flash_map_partition_manager.c.obj) + .rodata.flash_map_entries + 0x0000000000000000 0x4 zephyr/libzephyr.a(flash_map_partition_manager.c.obj) + .debug_info 0x0000000000000000 0x204 zephyr/libzephyr.a(flash_map_partition_manager.c.obj) + .debug_abbrev 0x0000000000000000 0xd0 zephyr/libzephyr.a(flash_map_partition_manager.c.obj) + .debug_aranges + 0x0000000000000000 0x18 zephyr/libzephyr.a(flash_map_partition_manager.c.obj) + .debug_line 0x0000000000000000 0x25d zephyr/libzephyr.a(flash_map_partition_manager.c.obj) + .debug_str 0x0000000000000000 0x38a zephyr/libzephyr.a(flash_map_partition_manager.c.obj) + .comment 0x0000000000000000 0x21 zephyr/libzephyr.a(flash_map_partition_manager.c.obj) + .text 0x0000000000000000 0x0 zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .data 0x0000000000000000 0x0 zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .rodata.z_get_sw_isr_table_idx.str1.4 + 0x0000000000000000 0x65 zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .text.z_get_sw_isr_table_idx + 0x0000000000000000 0x28 zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .debug_info 0x0000000000000000 0x13b zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .debug_abbrev 0x0000000000000000 0xc3 zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .debug_loc 0x0000000000000000 0x4a zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .debug_aranges + 0x0000000000000000 0x20 zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .debug_ranges 0x0000000000000000 0x10 zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .debug_line 0x0000000000000000 0xea zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .debug_str 0x0000000000000000 0x2e8 zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .comment 0x0000000000000000 0x21 zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .debug_frame 0x0000000000000000 0x28 zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/libarch__arm__core.a(fatal.c.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/libarch__arm__core.a(fatal.c.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/libarch__arm__core.a(fatal.c.obj) + .text.arch_syscall_oops + 0x0000000000000000 0x1c zephyr/arch/arch/arm/core/libarch__arm__core.a(fatal.c.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi.c.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi.c.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi.c.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi_on_reset.S.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi_on_reset.S.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi_on_reset.S.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/libarch__arm__core.a(tls.c.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/libarch__arm__core.a(tls.c.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/libarch__arm__core.a(tls.c.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(exc_exit.c.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(exc_exit.c.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(exc_exit.c.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault.c.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault.c.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault.c.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault_s.S.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault_s.S.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault_s.S.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fpu.c.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fpu.c.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fpu.c.obj) + .text.z_arm_save_fp_context + 0x0000000000000000 0x4 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fpu.c.obj) + .text.z_arm_restore_fp_context + 0x0000000000000000 0x4 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fpu.c.obj) + .debug_info 0x0000000000000000 0x146 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fpu.c.obj) + .debug_abbrev 0x0000000000000000 0xcd zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fpu.c.obj) + .debug_aranges + 0x0000000000000000 0x28 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fpu.c.obj) + .debug_ranges 0x0000000000000000 0x18 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fpu.c.obj) + .debug_line 0x0000000000000000 0x1a5 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fpu.c.obj) + .debug_str 0x0000000000000000 0x329 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fpu.c.obj) + .comment 0x0000000000000000 0x21 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fpu.c.obj) + .debug_frame 0x0000000000000000 0x30 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fpu.c.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(reset.S.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(reset.S.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(reset.S.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(scb.c.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(scb.c.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(scb.c.obj) + .text.sys_arch_reboot + 0x0000000000000000 0x24 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(scb.c.obj) + .text.z_arm_clear_arm_mpu_config + 0x0000000000000000 0x28 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(scb.c.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread_abort.c.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread_abort.c.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread_abort.c.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(vector_table.S.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(vector_table.S.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(vector_table.S.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(swap_helper.S.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(swap_helper.S.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(swap_helper.S.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(prep_c.c.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(prep_c.c.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(prep_c.c.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread.c.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread.c.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread.c.obj) + .text.arch_irq_lock_outlined + 0x0000000000000000 0x10 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread.c.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(cpu_idle.c.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(cpu_idle.c.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(cpu_idle.c.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_init.c.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_init.c.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_init.c.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(isr_wrapper.c.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(isr_wrapper.c.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(isr_wrapper.c.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(__aeabi_read_tp.S.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(__aeabi_read_tp.S.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(__aeabi_read_tp.S.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_core_mpu.c.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_core_mpu.c.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_core_mpu.c.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_mpu.c.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_mpu.c.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_mpu.c.obj) + .text.arm_core_mpu_enable + 0x0000000000000000 0x18 zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_mpu.c.obj) + .text.arm_core_mpu_disable + 0x0000000000000000 0x14 zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_mpu.c.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_mpu_regions.c.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_mpu_regions.c.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_mpu_regions.c.obj) + .text 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .data 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .bss 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .rodata.__assert_no_args.str1.4 + 0x0000000000000000 0x51 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .text.__assert_no_args + 0x0000000000000000 0x24 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .debug_info 0x0000000000000000 0x109 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .debug_abbrev 0x0000000000000000 0x9c zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .debug_aranges + 0x0000000000000000 0x20 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .debug_ranges 0x0000000000000000 0x10 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .debug_line 0x0000000000000000 0xba zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .debug_str 0x0000000000000000 0x2e0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .comment 0x0000000000000000 0x21 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .debug_frame 0x0000000000000000 0x28 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .text 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .data 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .bss 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .text.cbputc 0x0000000000000000 0xc zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .text.cbvprintf + 0x0000000000000000 0x34 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .debug_info 0x0000000000000000 0x2d9 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .debug_abbrev 0x0000000000000000 0x16f zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .debug_loc 0x0000000000000000 0x128 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .debug_aranges + 0x0000000000000000 0x28 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .debug_ranges 0x0000000000000000 0x18 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .debug_line 0x0000000000000000 0x257 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .debug_str 0x0000000000000000 0x34a zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .comment 0x0000000000000000 0x21 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .debug_frame 0x0000000000000000 0x48 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .text 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .data 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .bss 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .rodata.__chk_fail.str1.4 + 0x0000000000000000 0x1e zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .text.__chk_fail + 0x0000000000000000 0x1c zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .debug_info 0x0000000000000000 0x1bb zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .debug_abbrev 0x0000000000000000 0x14d zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .debug_loc 0x0000000000000000 0x2c zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .debug_aranges + 0x0000000000000000 0x20 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .debug_ranges 0x0000000000000000 0x10 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .debug_line 0x0000000000000000 0x2a4 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .debug_str 0x0000000000000000 0x38a zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .comment 0x0000000000000000 0x21 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .debug_frame 0x0000000000000000 0x28 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .text 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + .data 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + .bss 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + .debug_info 0x0000000000000000 0x79 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + .debug_abbrev 0x0000000000000000 0x26 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + .debug_aranges + 0x0000000000000000 0x18 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + .debug_line 0x0000000000000000 0x5e zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + .debug_str 0x0000000000000000 0x2b3 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + .comment 0x0000000000000000 0x21 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + .text 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .data 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .bss 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .rodata._exit.str1.4 + 0x0000000000000000 0x5 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .text._exit 0x0000000000000000 0x10 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .debug_info 0x0000000000000000 0xca zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .debug_abbrev 0x0000000000000000 0x82 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .debug_loc 0x0000000000000000 0x25 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .debug_aranges + 0x0000000000000000 0x20 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .debug_ranges 0x0000000000000000 0x10 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .debug_line 0x0000000000000000 0xab zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .debug_str 0x0000000000000000 0x2ce zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .comment 0x0000000000000000 0x21 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .debug_frame 0x0000000000000000 0x28 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .text 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .data 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .bss 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .rodata.__retarget_lock_init_recursive.part.0.str1.4 + 0x0000000000000000 0x8b zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .text.__retarget_lock_init_recursive.part.0 + 0x0000000000000000 0x30 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .rodata.__retarget_lock_close_recursive.part.0.str1.4 + 0x0000000000000000 0x14 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .text.__retarget_lock_close_recursive.part.0 + 0x0000000000000000 0x24 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .text.__retarget_lock_acquire_recursive.part.0 + 0x0000000000000000 0x24 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .text.__retarget_lock_try_acquire_recursive.part.0 + 0x0000000000000000 0x24 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .text.__retarget_lock_release_recursive.part.0 + 0x0000000000000000 0x24 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .text.__retarget_lock_init_recursive + 0x0000000000000000 0x3c zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .text.__retarget_lock_init + 0x0000000000000000 0x3c zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .text.__retarget_lock_close_recursive + 0x0000000000000000 0xc zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .text.__retarget_lock_close + 0x0000000000000000 0xc zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .text.__retarget_lock_acquire_recursive + 0x0000000000000000 0x14 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .text.__retarget_lock_acquire + 0x0000000000000000 0x14 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .text.__retarget_lock_try_acquire_recursive + 0x0000000000000000 0x18 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .text.__retarget_lock_try_acquire + 0x0000000000000000 0x18 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .text.__retarget_lock_release_recursive + 0x0000000000000000 0xc zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .text.__retarget_lock_release + 0x0000000000000000 0xc zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + ._k_mutex.static.__lock___libc_recursive_mutex_ + 0x0000000000000000 0x14 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .debug_info 0x0000000000000000 0xf65 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .debug_abbrev 0x0000000000000000 0x34d zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .debug_loc 0x0000000000000000 0x5b6 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .debug_aranges + 0x0000000000000000 0x90 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .debug_ranges 0x0000000000000000 0x138 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .debug_line 0x0000000000000000 0x7cb zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .debug_str 0x0000000000000000 0x946 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .comment 0x0000000000000000 0x21 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .debug_frame 0x0000000000000000 0x188 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .text 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .data 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .bss 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .text.z_impl_zephyr_fputc + 0x0000000000000000 0x10 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .text.__stdin_hook_install + 0x0000000000000000 0x14 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .rodata.stdout + 0x0000000000000000 0x4 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .rodata.stdin 0x0000000000000000 0x4 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .bss.__stdin 0x0000000000000000 0x10 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .text 0x0000000000000000 0x0 zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .data 0x0000000000000000 0x0 zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .bss 0x0000000000000000 0x0 zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .rodata.abort.str1.4 + 0x0000000000000000 0x9 zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .text.abort 0x0000000000000000 0x1c zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .debug_info 0x0000000000000000 0x1bb zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .debug_abbrev 0x0000000000000000 0x14d zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .debug_loc 0x0000000000000000 0x2c zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .debug_aranges + 0x0000000000000000 0x20 zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .debug_ranges 0x0000000000000000 0x10 zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .debug_line 0x0000000000000000 0x310 zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .debug_str 0x0000000000000000 0x399 zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .comment 0x0000000000000000 0x21 zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .debug_frame 0x0000000000000000 0x28 zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .text 0x0000000000000000 0x0 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .data 0x0000000000000000 0x0 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .bss 0x0000000000000000 0x0 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .rodata.malloc_lock.part.0.str1.4 + 0x0000000000000000 0x69 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .text.malloc_lock.part.0 + 0x0000000000000000 0x24 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .text.malloc 0x0000000000000000 0x54 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .text.aligned_alloc + 0x0000000000000000 0x58 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .text.realloc 0x0000000000000000 0x58 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .text.free 0x0000000000000000 0x34 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .text.calloc 0x0000000000000000 0x34 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .text.reallocarray + 0x0000000000000000 0x24 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .data.z_malloc_heap_mutex + 0x0000000000000000 0x14 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .text 0x0000000000000000 0x0 zephyr/soc/soc/nrf52833/libsoc__nordic.a(validate_base_addresses.c.obj) + .data 0x0000000000000000 0x0 zephyr/soc/soc/nrf52833/libsoc__nordic.a(validate_base_addresses.c.obj) + .bss 0x0000000000000000 0x0 zephyr/soc/soc/nrf52833/libsoc__nordic.a(validate_base_addresses.c.obj) + .debug_info 0x0000000000000000 0x79 zephyr/soc/soc/nrf52833/libsoc__nordic.a(validate_base_addresses.c.obj) + .debug_abbrev 0x0000000000000000 0x26 zephyr/soc/soc/nrf52833/libsoc__nordic.a(validate_base_addresses.c.obj) + .debug_aranges + 0x0000000000000000 0x18 zephyr/soc/soc/nrf52833/libsoc__nordic.a(validate_base_addresses.c.obj) + .debug_line 0x0000000000000000 0x64 zephyr/soc/soc/nrf52833/libsoc__nordic.a(validate_base_addresses.c.obj) + .debug_str 0x0000000000000000 0x2b0 zephyr/soc/soc/nrf52833/libsoc__nordic.a(validate_base_addresses.c.obj) + .comment 0x0000000000000000 0x21 zephyr/soc/soc/nrf52833/libsoc__nordic.a(validate_base_addresses.c.obj) + .text 0x0000000000000000 0x0 zephyr/soc/soc/nrf52833/libsoc__nordic.a(validate_binding_headers.c.obj) + .data 0x0000000000000000 0x0 zephyr/soc/soc/nrf52833/libsoc__nordic.a(validate_binding_headers.c.obj) + .bss 0x0000000000000000 0x0 zephyr/soc/soc/nrf52833/libsoc__nordic.a(validate_binding_headers.c.obj) + .debug_info 0x0000000000000000 0x64 zephyr/soc/soc/nrf52833/libsoc__nordic.a(validate_binding_headers.c.obj) + .debug_abbrev 0x0000000000000000 0x26 zephyr/soc/soc/nrf52833/libsoc__nordic.a(validate_binding_headers.c.obj) + .debug_aranges + 0x0000000000000000 0x18 zephyr/soc/soc/nrf52833/libsoc__nordic.a(validate_binding_headers.c.obj) + .debug_line 0x0000000000000000 0x65 zephyr/soc/soc/nrf52833/libsoc__nordic.a(validate_binding_headers.c.obj) + .debug_str 0x0000000000000000 0x29a zephyr/soc/soc/nrf52833/libsoc__nordic.a(validate_binding_headers.c.obj) + .comment 0x0000000000000000 0x21 zephyr/soc/soc/nrf52833/libsoc__nordic.a(validate_binding_headers.c.obj) + .text 0x0000000000000000 0x0 zephyr/soc/soc/nrf52833/libsoc__nordic.a(validate_enabled_instances.c.obj) + .data 0x0000000000000000 0x0 zephyr/soc/soc/nrf52833/libsoc__nordic.a(validate_enabled_instances.c.obj) + .bss 0x0000000000000000 0x0 zephyr/soc/soc/nrf52833/libsoc__nordic.a(validate_enabled_instances.c.obj) + .debug_info 0x0000000000000000 0x79 zephyr/soc/soc/nrf52833/libsoc__nordic.a(validate_enabled_instances.c.obj) + .debug_abbrev 0x0000000000000000 0x26 zephyr/soc/soc/nrf52833/libsoc__nordic.a(validate_enabled_instances.c.obj) + .debug_aranges + 0x0000000000000000 0x18 zephyr/soc/soc/nrf52833/libsoc__nordic.a(validate_enabled_instances.c.obj) + .debug_line 0x0000000000000000 0x67 zephyr/soc/soc/nrf52833/libsoc__nordic.a(validate_enabled_instances.c.obj) + .debug_str 0x0000000000000000 0x2b3 zephyr/soc/soc/nrf52833/libsoc__nordic.a(validate_enabled_instances.c.obj) + .comment 0x0000000000000000 0x21 zephyr/soc/soc/nrf52833/libsoc__nordic.a(validate_enabled_instances.c.obj) + .text 0x0000000000000000 0x0 zephyr/soc/soc/nrf52833/libsoc__nordic.a(soc.c.obj) + .data 0x0000000000000000 0x0 zephyr/soc/soc/nrf52833/libsoc__nordic.a(soc.c.obj) + .bss 0x0000000000000000 0x0 zephyr/soc/soc/nrf52833/libsoc__nordic.a(soc.c.obj) + .text 0x0000000000000000 0x0 zephyr/soc/soc/nrf52833/libsoc__nordic.a(reboot.c.obj) + .data 0x0000000000000000 0x0 zephyr/soc/soc/nrf52833/libsoc__nordic.a(reboot.c.obj) + .bss 0x0000000000000000 0x0 zephyr/soc/soc/nrf52833/libsoc__nordic.a(reboot.c.obj) + .text.sys_arch_reboot + 0x0000000000000000 0x24 zephyr/soc/soc/nrf52833/libsoc__nordic.a(reboot.c.obj) + .debug_info 0x0000000000000000 0x2ec zephyr/soc/soc/nrf52833/libsoc__nordic.a(reboot.c.obj) + .debug_abbrev 0x0000000000000000 0x117 zephyr/soc/soc/nrf52833/libsoc__nordic.a(reboot.c.obj) + .debug_aranges + 0x0000000000000000 0x20 zephyr/soc/soc/nrf52833/libsoc__nordic.a(reboot.c.obj) + .debug_ranges 0x0000000000000000 0x10 zephyr/soc/soc/nrf52833/libsoc__nordic.a(reboot.c.obj) + .debug_line 0x0000000000000000 0x1f0 zephyr/soc/soc/nrf52833/libsoc__nordic.a(reboot.c.obj) + .debug_str 0x0000000000000000 0x358 zephyr/soc/soc/nrf52833/libsoc__nordic.a(reboot.c.obj) + .comment 0x0000000000000000 0x21 zephyr/soc/soc/nrf52833/libsoc__nordic.a(reboot.c.obj) + .debug_frame 0x0000000000000000 0x20 zephyr/soc/soc/nrf52833/libsoc__nordic.a(reboot.c.obj) + .text 0x0000000000000000 0x0 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + .data 0x0000000000000000 0x0 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + .bss 0x0000000000000000 0x0 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + .text.usb_dc_detach + 0x0000000000000000 0x9c zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + .text.usb_dc_reset + 0x0000000000000000 0x30 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + .text.usb_dc_ep_halt + 0x0000000000000000 0x4 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + .text.usb_dc_ep_flush + 0x0000000000000000 0x3c zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + .text.usb_dc_wakeup_request + 0x0000000000000000 0x14 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + .text 0x0000000000000000 0x0 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + .data 0x0000000000000000 0x0 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + .bss 0x0000000000000000 0x0 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + .text.nrf_usbd_common_is_initialized + 0x0000000000000000 0x10 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + .text.nrf_usbd_common_is_started + 0x0000000000000000 0x20 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + .text.nrf_usbd_common_wakeup_req + 0x0000000000000000 0x44 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + .text.nrf_usbd_common_suspend_check + 0x0000000000000000 0x14 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + .text.nrf_usbd_common_bus_suspend_check + 0x0000000000000000 0xc zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + .text.nrf_usbd_common_force_bus_wakeup + 0x0000000000000000 0xc zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + .text.nrf_usbd_common_ep_max_packet_size_get + 0x0000000000000000 0x2c zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + .text.nrf_usbd_common_ep_enable_check + 0x0000000000000000 0x30 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + .text.nrf_usbd_common_epout_size_get + 0x0000000000000000 0x28 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + .text.nrf_usbd_common_ep_is_busy + 0x0000000000000000 0x40 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + .text 0x0000000000000000 0x0 zephyr/drivers/adc/libdrivers__adc.a(adc_common.c.obj) + .data 0x0000000000000000 0x0 zephyr/drivers/adc/libdrivers__adc.a(adc_common.c.obj) + .bss 0x0000000000000000 0x0 zephyr/drivers/adc/libdrivers__adc.a(adc_common.c.obj) + .text 0x0000000000000000 0x0 zephyr/drivers/adc/libdrivers__adc.a(adc_nrfx_saadc.c.obj) + .data 0x0000000000000000 0x0 zephyr/drivers/adc/libdrivers__adc.a(adc_nrfx_saadc.c.obj) + .bss 0x0000000000000000 0x0 zephyr/drivers/adc/libdrivers__adc.a(adc_nrfx_saadc.c.obj) + .text 0x0000000000000000 0x0 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .data 0x0000000000000000 0x0 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .bss 0x0000000000000000 0x0 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .text.z_nrf_clock_bt_ctlr_hf_request + 0x0000000000000000 0x2c zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .text.z_nrf_clock_bt_ctlr_hf_release + 0x0000000000000000 0x3c zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .text 0x0000000000000000 0x0 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .data 0x0000000000000000 0x0 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .bss 0x0000000000000000 0x0 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .text.uart_register_input + 0x0000000000000000 0x4 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .text 0x0000000000000000 0x0 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + .data 0x0000000000000000 0x0 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + .bss 0x0000000000000000 0x0 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + .text 0x0000000000000000 0x0 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_weak_impl.c.obj) + .data 0x0000000000000000 0x0 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_weak_impl.c.obj) + .bss 0x0000000000000000 0x0 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_weak_impl.c.obj) + .text.z_impl_hwinfo_get_device_id + 0x0000000000000000 0x8 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_weak_impl.c.obj) + .text.z_impl_hwinfo_get_device_eui64 + 0x0000000000000000 0x8 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_weak_impl.c.obj) + .text.z_impl_hwinfo_get_reset_cause + 0x0000000000000000 0x8 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_weak_impl.c.obj) + .text.z_impl_hwinfo_clear_reset_cause + 0x0000000000000000 0x8 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_weak_impl.c.obj) + .text.z_impl_hwinfo_get_supported_reset_cause + 0x0000000000000000 0x8 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_weak_impl.c.obj) + .debug_info 0x0000000000000000 0x1a9 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_weak_impl.c.obj) + .debug_abbrev 0x0000000000000000 0xf8 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_weak_impl.c.obj) + .debug_loc 0x0000000000000000 0x4a zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_weak_impl.c.obj) + .debug_aranges + 0x0000000000000000 0x40 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_weak_impl.c.obj) + .debug_ranges 0x0000000000000000 0x30 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_weak_impl.c.obj) + .debug_line 0x0000000000000000 0x238 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_weak_impl.c.obj) + .debug_str 0x0000000000000000 0x3aa zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_weak_impl.c.obj) + .comment 0x0000000000000000 0x21 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_weak_impl.c.obj) + .debug_frame 0x0000000000000000 0x60 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_weak_impl.c.obj) + .text 0x0000000000000000 0x0 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_nrf.c.obj) + .data 0x0000000000000000 0x0 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_nrf.c.obj) + .bss 0x0000000000000000 0x0 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_nrf.c.obj) + .text.z_impl_hwinfo_get_reset_cause + 0x0000000000000000 0x54 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_nrf.c.obj) + .text.z_impl_hwinfo_clear_reset_cause + 0x0000000000000000 0x10 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_nrf.c.obj) + .text.z_impl_hwinfo_get_supported_reset_cause + 0x0000000000000000 0xc zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_nrf.c.obj) + .text 0x0000000000000000 0x0 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .data 0x0000000000000000 0x0 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .bss 0x0000000000000000 0x0 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .text.pinctrl_lookup_state + 0x0000000000000000 0x58 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .debug_info 0x0000000000000000 0x1af zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .debug_abbrev 0x0000000000000000 0xd0 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .debug_loc 0x0000000000000000 0x7c zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .debug_aranges + 0x0000000000000000 0x20 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .debug_ranges 0x0000000000000000 0x10 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .debug_line 0x0000000000000000 0x232 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .debug_str 0x0000000000000000 0x353 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .comment 0x0000000000000000 0x21 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .debug_frame 0x0000000000000000 0x2c zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .text 0x0000000000000000 0x0 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_nrf.c.obj) + .data 0x0000000000000000 0x0 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_nrf.c.obj) + .bss 0x0000000000000000 0x0 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_nrf.c.obj) + .text.pinctrl_configure_pins + 0x0000000000000000 0x18 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_nrf.c.obj) + .debug_info 0x0000000000000000 0x302 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_nrf.c.obj) + .debug_abbrev 0x0000000000000000 0x14f zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_nrf.c.obj) + .debug_loc 0x0000000000000000 0xb7 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_nrf.c.obj) + .debug_aranges + 0x0000000000000000 0x20 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_nrf.c.obj) + .debug_ranges 0x0000000000000000 0x10 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_nrf.c.obj) + .debug_line 0x0000000000000000 0x2b0 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_nrf.c.obj) + .debug_str 0x0000000000000000 0x58d zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_nrf.c.obj) + .comment 0x0000000000000000 0x21 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_nrf.c.obj) + .debug_frame 0x0000000000000000 0x20 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_nrf.c.obj) + .text 0x0000000000000000 0x0 zephyr/drivers/sensor/nordic/temp/libdrivers__sensor__nordic__temp.a(temp_nrf5.c.obj) + .data 0x0000000000000000 0x0 zephyr/drivers/sensor/nordic/temp/libdrivers__sensor__nordic__temp.a(temp_nrf5.c.obj) + .bss 0x0000000000000000 0x0 zephyr/drivers/sensor/nordic/temp/libdrivers__sensor__nordic__temp.a(temp_nrf5.c.obj) + .text 0x0000000000000000 0x0 zephyr/drivers/serial/libdrivers__serial.a(empty_file.c.obj) + .data 0x0000000000000000 0x0 zephyr/drivers/serial/libdrivers__serial.a(empty_file.c.obj) + .bss 0x0000000000000000 0x0 zephyr/drivers/serial/libdrivers__serial.a(empty_file.c.obj) + .debug_line 0x0000000000000000 0x0 zephyr/drivers/serial/libdrivers__serial.a(empty_file.c.obj) + .debug_str 0x0000000000000000 0x202 zephyr/drivers/serial/libdrivers__serial.a(empty_file.c.obj) + .comment 0x0000000000000000 0x21 zephyr/drivers/serial/libdrivers__serial.a(empty_file.c.obj) + .text 0x0000000000000000 0x0 zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .data 0x0000000000000000 0x0 zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .bss 0x0000000000000000 0x0 zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .text.sys_clock_set_timeout + 0x0000000000000000 0x4 zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .text.sys_clock_idle_exit + 0x0000000000000000 0x4 zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .debug_info 0x0000000000000000 0xda zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .debug_abbrev 0x0000000000000000 0x7e zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .debug_aranges + 0x0000000000000000 0x28 zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .debug_ranges 0x0000000000000000 0x18 zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .debug_line 0x0000000000000000 0x15d zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .debug_str 0x0000000000000000 0x2f1 zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .comment 0x0000000000000000 0x21 zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .debug_frame 0x0000000000000000 0x30 zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .text 0x0000000000000000 0x0 zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .data 0x0000000000000000 0x0 zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .bss 0x0000000000000000 0x0 zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .rodata.z_nrf_rtc_timer_compare_evt_address_get.str1.4 + 0x0000000000000000 0x6d zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .text.z_nrf_rtc_timer_compare_evt_address_get + 0x0000000000000000 0x2c zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .text.z_nrf_rtc_timer_capture_task_address_get + 0x0000000000000000 0x4 zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .rodata.z_nrf_rtc_timer_compare_int_lock.str1.4 + 0x0000000000000000 0x1b zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .text.z_nrf_rtc_timer_compare_int_lock + 0x0000000000000000 0x24 zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .text.z_nrf_rtc_timer_compare_int_unlock + 0x0000000000000000 0x24 zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .text.z_nrf_rtc_timer_compare_read + 0x0000000000000000 0x30 zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .text.z_nrf_rtc_timer_get_ticks + 0x0000000000000000 0xf8 zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .text.z_nrf_rtc_timer_set + 0x0000000000000000 0x28 zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .text.z_nrf_rtc_timer_exact_set + 0x0000000000000000 0x28 zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .text.z_nrf_rtc_timer_abort + 0x0000000000000000 0x28 zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .text.z_nrf_rtc_timer_read + 0x0000000000000000 0x44 zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .text.z_nrf_rtc_timer_chan_alloc + 0x0000000000000000 0x48 zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .text.z_nrf_rtc_timer_chan_free + 0x0000000000000000 0x28 zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .text.z_nrf_rtc_timer_trigger_overflow + 0x0000000000000000 0x8 zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .text.sys_clock_cycle_get_32 + 0x0000000000000000 0x44 zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .text.sys_clock_disable + 0x0000000000000000 0x30 zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .bss.alloc_mask + 0x0000000000000000 0x4 zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .text 0x0000000000000000 0x0 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(system_nrf52833.c.obj) + .data 0x0000000000000000 0x0 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(system_nrf52833.c.obj) + .bss 0x0000000000000000 0x0 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(system_nrf52833.c.obj) + .text.nvmc_wait + 0x0000000000000000 0x10 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(system_nrf52833.c.obj) + .text.nvmc_config + 0x0000000000000000 0x14 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(system_nrf52833.c.obj) + .text.SystemCoreClockUpdate + 0x0000000000000000 0x10 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(system_nrf52833.c.obj) + .data.SystemCoreClock + 0x0000000000000000 0x4 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(system_nrf52833.c.obj) + .text 0x0000000000000000 0x0 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_glue.c.obj) + .data 0x0000000000000000 0x0 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_glue.c.obj) + .bss 0x0000000000000000 0x0 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_glue.c.obj) + .rodata.nrfx_error_string_get.str1.4 + 0x0000000000000000 0x194 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_glue.c.obj) + .text.nrfx_error_string_get + 0x0000000000000000 0xd4 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_glue.c.obj) + .text 0x0000000000000000 0x0 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_flag32_allocator.c.obj) + .data 0x0000000000000000 0x0 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_flag32_allocator.c.obj) + .bss 0x0000000000000000 0x0 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_flag32_allocator.c.obj) + .text.nrfx_flag32_is_allocated + 0x0000000000000000 0xc modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_flag32_allocator.c.obj) + .text 0x0000000000000000 0x0 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_ram_ctrl.c.obj) + .data 0x0000000000000000 0x0 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_ram_ctrl.c.obj) + .bss 0x0000000000000000 0x0 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_ram_ctrl.c.obj) + .text.ram_ctrl_block_section_power_enable_set + 0x0000000000000000 0x14 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_ram_ctrl.c.obj) + .text.ram_ctrl_block_section_retention_enable_set + 0x0000000000000000 0x18 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_ram_ctrl.c.obj) + .rodata.ram_ctrl_block_section_iterate.str1.4 + 0x0000000000000000 0x7f modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_ram_ctrl.c.obj) + .text.ram_ctrl_block_section_iterate + 0x0000000000000000 0x9c modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_ram_ctrl.c.obj) + .text.nrfx_ram_ctrl_power_enable_set + 0x0000000000000000 0xc modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_ram_ctrl.c.obj) + .text.nrfx_ram_ctrl_retention_enable_set + 0x0000000000000000 0xc modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_ram_ctrl.c.obj) + .rodata.unit_to_block_section_lut + 0x0000000000000000 0x20 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_ram_ctrl.c.obj) + .debug_info 0x0000000000000000 0xb8a modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_ram_ctrl.c.obj) + .debug_abbrev 0x0000000000000000 0x2fe modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_ram_ctrl.c.obj) + .debug_loc 0x0000000000000000 0x629 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_ram_ctrl.c.obj) + .debug_aranges + 0x0000000000000000 0x40 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_ram_ctrl.c.obj) + .debug_ranges 0x0000000000000000 0xb8 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_ram_ctrl.c.obj) + .debug_line 0x0000000000000000 0x5a5 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_ram_ctrl.c.obj) + .debug_str 0x0000000000000000 0x834 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_ram_ctrl.c.obj) + .comment 0x0000000000000000 0x21 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_ram_ctrl.c.obj) + .debug_frame 0x0000000000000000 0x78 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_ram_ctrl.c.obj) + .text 0x0000000000000000 0x0 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_clock.c.obj) + .data 0x0000000000000000 0x0 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_clock.c.obj) + .bss 0x0000000000000000 0x0 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_clock.c.obj) + .rodata.nrfx_clock_disable.str1.4 + 0x0000000000000000 0x17 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_clock.c.obj) + .text.nrfx_clock_disable + 0x0000000000000000 0x7c modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_clock.c.obj) + .text.nrfx_clock_uninit + 0x0000000000000000 0x44 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_clock.c.obj) + .text.nrfx_clock_init_check + 0x0000000000000000 0xc modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_clock.c.obj) + .text 0x0000000000000000 0x0 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .data 0x0000000000000000 0x0 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .bss 0x0000000000000000 0x0 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .text.pin_in_event_get.constprop.0 + 0x0000000000000000 0xb0 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .rodata.pin_out_task_get.isra.0.str1.4 + 0x0000000000000000 0x24 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .text.pin_out_task_get.isra.0 + 0x0000000000000000 0x84 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .text.pin_clr_task_get.isra.0 + 0x0000000000000000 0x88 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .text.pin_set_task_get.isra.0 + 0x0000000000000000 0x88 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .text.nrfx_gpiote_in_is_set + 0x0000000000000000 0x70 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .text.nrfx_gpiote_channels_number_get + 0x0000000000000000 0xc modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .rodata.nrfx_gpiote_uninit.str1.4 + 0x0000000000000000 0x48 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .text.nrfx_gpiote_uninit + 0x0000000000000000 0x98 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .rodata.nrfx_gpiote_out_set.str1.4 + 0x0000000000000000 0x45 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .text.nrfx_gpiote_out_set + 0x0000000000000000 0xb4 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .text.nrfx_gpiote_out_clear + 0x0000000000000000 0xb4 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .text.nrfx_gpiote_out_toggle + 0x0000000000000000 0xc8 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .text.nrfx_gpiote_out_task_enable + 0x0000000000000000 0x94 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .text.nrfx_gpiote_out_task_disable + 0x0000000000000000 0x94 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .text.nrfx_gpiote_out_task_get + 0x0000000000000000 0x8 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .text.nrfx_gpiote_out_task_address_get + 0x0000000000000000 0x10 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .text.nrfx_gpiote_set_task_get + 0x0000000000000000 0x8 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .text.nrfx_gpiote_set_task_address_get + 0x0000000000000000 0x10 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .text.nrfx_gpiote_clr_task_get + 0x0000000000000000 0x8 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .text.nrfx_gpiote_clr_task_address_get + 0x0000000000000000 0x10 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .text.nrfx_gpiote_out_task_force + 0x0000000000000000 0xa4 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .rodata.nrfx_gpiote_out_task_trigger.str1.4 + 0x0000000000000000 0x3b modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .text.nrfx_gpiote_out_task_trigger + 0x0000000000000000 0x8c modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .rodata.nrfx_gpiote_set_task_trigger.str1.4 + 0x0000000000000000 0x3e modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .text.nrfx_gpiote_set_task_trigger + 0x0000000000000000 0xa8 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .text.nrfx_gpiote_clr_task_trigger + 0x0000000000000000 0xa8 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .text.nrfx_gpiote_in_event_get + 0x0000000000000000 0x8 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .text.nrfx_gpiote_in_event_address_get + 0x0000000000000000 0x10 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .text 0x0000000000000000 0x0 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + .data 0x0000000000000000 0x0 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + .bss 0x0000000000000000 0x0 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + .text.nrfx_power_pof_handler_get + 0x0000000000000000 0xc modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + .text.nrfx_power_usb_handler_get + 0x0000000000000000 0xc modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + .rodata.nrfx_power_uninit.str1.4 + 0x0000000000000000 0x17 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + .text.nrfx_power_uninit + 0x0000000000000000 0x68 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + .text.nrfx_power_init_check + 0x0000000000000000 0xc modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + .text.nrfx_power_pof_init + 0x0000000000000000 0x30 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + .rodata.nrfx_power_pof_enable.str1.4 + 0x0000000000000000 0x8b modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + .text.nrfx_power_pof_enable + 0x0000000000000000 0x88 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + .text.nrfx_power_pof_disable + 0x0000000000000000 0x1c modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + .text.nrfx_power_pof_uninit + 0x0000000000000000 0xc modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + .text.nrfx_power_sleepevt_init + 0x0000000000000000 0x30 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + .text.nrfx_power_sleepevt_enable + 0x0000000000000000 0x3c modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + .text.nrfx_power_sleepevt_disable + 0x0000000000000000 0xc modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + .text.nrfx_power_sleepevt_uninit + 0x0000000000000000 0xc modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + .rodata.nrfx_power_constlat_mode_request.str1.4 + 0x0000000000000000 0x1c modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + .text.nrfx_power_constlat_mode_request + 0x0000000000000000 0x68 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + .rodata.nrfx_power_constlat_mode_free.str1.4 + 0x0000000000000000 0x17 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + .text.nrfx_power_constlat_mode_free + 0x0000000000000000 0x70 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + .text.nrfx_power_mode_get + 0x0000000000000000 0x10 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + .text.nrfx_power_usbevt_uninit + 0x0000000000000000 0x18 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + .bss.m_power_mode_refs + 0x0000000000000000 0x1 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + .text 0x0000000000000000 0x0 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_temp.c.obj) + .data 0x0000000000000000 0x0 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_temp.c.obj) + .bss 0x0000000000000000 0x0 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_temp.c.obj) + .text.nrfx_temp_uninit + 0x0000000000000000 0x50 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_temp.c.obj) + .text.nrfx_temp_init_check + 0x0000000000000000 0x10 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_temp.c.obj) + .text.nrfx_temp_calculate + 0x0000000000000000 0xc modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_temp.c.obj) + .rodata.nrfx_temp_irq_handler.str1.4 + 0x0000000000000000 0xf modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_temp.c.obj) + .text.nrfx_temp_irq_handler + 0x0000000000000000 0x48 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_temp.c.obj) + .text 0x0000000000000000 0x0 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .data 0x0000000000000000 0x0 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .bss 0x0000000000000000 0x0 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .text._WriteNoCheck + 0x0000000000000000 0x34 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .text._WriteBlocking + 0x0000000000000000 0x64 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .text.SEGGER_RTT_ReadUpBufferNoLock + 0x0000000000000000 0xc4 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .text.SEGGER_RTT_ReadNoLock + 0x0000000000000000 0xb0 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .text.SEGGER_RTT_ReadUpBuffer + 0x0000000000000000 0x1c modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .text.SEGGER_RTT_Read + 0x0000000000000000 0x1c modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .text.SEGGER_RTT_WriteWithOverwriteNoLock + 0x0000000000000000 0xc4 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .text.SEGGER_RTT_WriteDownBufferNoLock + 0x0000000000000000 0x70 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .text.SEGGER_RTT_WriteNoLock + 0x0000000000000000 0x88 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .text.SEGGER_RTT_WriteDownBuffer + 0x0000000000000000 0x34 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .text.SEGGER_RTT_Write + 0x0000000000000000 0x34 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .text.SEGGER_RTT_WriteString + 0x0000000000000000 0x3c modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .text.SEGGER_RTT_PutCharSkipNoLock + 0x0000000000000000 0x44 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .text.SEGGER_RTT_PutCharSkip + 0x0000000000000000 0x60 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .text.SEGGER_RTT_PutChar + 0x0000000000000000 0x80 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .text.SEGGER_RTT_GetKey + 0x0000000000000000 0x30 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .text.SEGGER_RTT_WaitKey + 0x0000000000000000 0x2c modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .text.SEGGER_RTT_HasKey + 0x0000000000000000 0x20 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .text.SEGGER_RTT_HasData + 0x0000000000000000 0x18 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .text.SEGGER_RTT_HasDataUp + 0x0000000000000000 0x18 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .text.SEGGER_RTT_AllocDownBuffer + 0x0000000000000000 0x78 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .text.SEGGER_RTT_AllocUpBuffer + 0x0000000000000000 0x84 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .text.SEGGER_RTT_ConfigUpBuffer + 0x0000000000000000 0x70 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .text.SEGGER_RTT_ConfigDownBuffer + 0x0000000000000000 0x68 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .text.SEGGER_RTT_SetNameUpBuffer + 0x0000000000000000 0x40 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .text.SEGGER_RTT_SetNameDownBuffer + 0x0000000000000000 0x40 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .text.SEGGER_RTT_SetFlagsUpBuffer + 0x0000000000000000 0x40 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .text.SEGGER_RTT_SetFlagsDownBuffer + 0x0000000000000000 0x40 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .text.SEGGER_RTT_SetTerminal + 0x0000000000000000 0x90 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .text.SEGGER_RTT_TerminalOut + 0x0000000000000000 0x144 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .text.SEGGER_RTT_GetAvailWriteSpace + 0x0000000000000000 0x20 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .text.SEGGER_RTT_GetBytesInBuffer + 0x0000000000000000 0x20 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .bss._ActiveTerminal + 0x0000000000000000 0x1 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .rodata._aTerminalId + 0x0000000000000000 0x10 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .text 0x0000000000000000 0x0 modules/segger/libmodules__segger.a(SEGGER_RTT_zephyr.c.obj) + .data 0x0000000000000000 0x0 modules/segger/libmodules__segger.a(SEGGER_RTT_zephyr.c.obj) + .bss 0x0000000000000000 0x0 modules/segger/libmodules__segger.a(SEGGER_RTT_zephyr.c.obj) + .text.zephyr_rtt_irq_lock + 0x0000000000000000 0x10 modules/segger/libmodules__segger.a(SEGGER_RTT_zephyr.c.obj) + .text.zephyr_rtt_irq_unlock + 0x0000000000000000 0xc modules/segger/libmodules__segger.a(SEGGER_RTT_zephyr.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(busy_wait.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(busy_wait.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(busy_wait.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(device.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(device.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(device.c.obj) + .text.z_impl_device_get_binding + 0x0000000000000000 0x78 zephyr/kernel/libkernel.a(device.c.obj) + .text.z_device_get_all_static + 0x0000000000000000 0x20 zephyr/kernel/libkernel.a(device.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(fatal.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(fatal.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(fatal.c.obj) + .text.k_fatal_halt + 0x0000000000000000 0x8 zephyr/kernel/libkernel.a(fatal.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(init.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(init.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(init.c.obj) + .rodata.z_impl_device_init.str1.4 + 0x0000000000000000 0x22 zephyr/kernel/libkernel.a(init.c.obj) + .text.z_impl_device_init + 0x0000000000000000 0xa8 zephyr/kernel/libkernel.a(init.c.obj) + .text.z_init_cpu + 0x0000000000000000 0x70 zephyr/kernel/libkernel.a(init.c.obj) + .text.z_early_rand_get + 0x0000000000000000 0x74 zephyr/kernel/libkernel.a(init.c.obj) + .data.state.1 0x0000000000000000 0x8 zephyr/kernel/libkernel.a(init.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(init_static.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(init_static.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(init_static.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(mem_slab.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(mem_slab.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(mem_slab.c.obj) + .text.k_mem_slab_init + 0x0000000000000000 0x4c zephyr/kernel/libkernel.a(mem_slab.c.obj) + .text.k_mem_slab_runtime_stats_get + 0x0000000000000000 0xbc zephyr/kernel/libkernel.a(mem_slab.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(idle.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(idle.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(idle.c.obj) + .rodata.arch_spin_relax.str1.4 + 0x0000000000000000 0x54 zephyr/kernel/libkernel.a(idle.c.obj) + .text.arch_spin_relax + 0x0000000000000000 0x40 zephyr/kernel/libkernel.a(idle.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(mutex.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(mutex.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(mutex.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(queue.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(queue.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(queue.c.obj) + .text.z_queue_node_peek + 0x0000000000000000 0x1c zephyr/kernel/libkernel.a(queue.c.obj) + .text.z_impl_k_queue_init + 0x0000000000000000 0x14 zephyr/kernel/libkernel.a(queue.c.obj) + .text.z_impl_k_queue_cancel_wait + 0x0000000000000000 0x100 zephyr/kernel/libkernel.a(queue.c.obj) + .text.k_queue_insert + 0x0000000000000000 0x14 zephyr/kernel/libkernel.a(queue.c.obj) + .text.k_queue_prepend + 0x0000000000000000 0x18 zephyr/kernel/libkernel.a(queue.c.obj) + .text.z_impl_k_queue_alloc_append + 0x0000000000000000 0x18 zephyr/kernel/libkernel.a(queue.c.obj) + .text.z_impl_k_queue_alloc_prepend + 0x0000000000000000 0x18 zephyr/kernel/libkernel.a(queue.c.obj) + .text.k_queue_append_list + 0x0000000000000000 0x198 zephyr/kernel/libkernel.a(queue.c.obj) + .text.k_queue_merge_slist + 0x0000000000000000 0x1c zephyr/kernel/libkernel.a(queue.c.obj) + .text.k_queue_remove + 0x0000000000000000 0x60 zephyr/kernel/libkernel.a(queue.c.obj) + .text.k_queue_unique_append + 0x0000000000000000 0x34 zephyr/kernel/libkernel.a(queue.c.obj) + .text.z_impl_k_queue_peek_head + 0x0000000000000000 0x10 zephyr/kernel/libkernel.a(queue.c.obj) + .text.z_impl_k_queue_peek_tail + 0x0000000000000000 0x10 zephyr/kernel/libkernel.a(queue.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(sem.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(sem.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(sem.c.obj) + .text.z_impl_k_sem_reset + 0x0000000000000000 0x11c zephyr/kernel/libkernel.a(sem.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(work.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(work.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(work.c.obj) + .text.handle_flush + 0x0000000000000000 0x4 zephyr/kernel/libkernel.a(work.c.obj) + .text.cancel_async_locked + 0x0000000000000000 0x88 zephyr/kernel/libkernel.a(work.c.obj) + .text.work_flush_locked + 0x0000000000000000 0xac zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_busy_get + 0x0000000000000000 0x94 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_submit + 0x0000000000000000 0x28 zephyr/kernel/libkernel.a(work.c.obj) + .rodata.k_work_flush.str1.4 + 0x0000000000000000 0x54 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_flush + 0x0000000000000000 0x138 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_cancel + 0x0000000000000000 0xd8 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_cancel_sync + 0x0000000000000000 0x198 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_queue_init + 0x0000000000000000 0x34 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_queue_drain + 0x0000000000000000 0x138 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_queue_unplug + 0x0000000000000000 0xc8 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_queue_stop + 0x0000000000000000 0x158 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_delayable_busy_get + 0x0000000000000000 0xb4 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_schedule + 0x0000000000000000 0xc zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_reschedule_for_queue + 0x0000000000000000 0x124 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_reschedule + 0x0000000000000000 0xc zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_cancel_delayable + 0x0000000000000000 0xd0 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_cancel_delayable_sync + 0x0000000000000000 0x188 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_flush_delayable + 0x0000000000000000 0x164 zephyr/kernel/libkernel.a(work.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(thread.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(thread.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(thread.c.obj) + .text.z_impl_k_is_preempt_thread + 0x0000000000000000 0x20 zephyr/kernel/libkernel.a(thread.c.obj) + .text.z_impl_k_thread_priority_get + 0x0000000000000000 0x8 zephyr/kernel/libkernel.a(thread.c.obj) + .text.k_thread_name_get + 0x0000000000000000 0x4 zephyr/kernel/libkernel.a(thread.c.obj) + .text.z_impl_k_thread_name_copy + 0x0000000000000000 0x8 zephyr/kernel/libkernel.a(thread.c.obj) + .rodata.k_thread_state_str.str1.4 + 0x0000000000000000 0x6 zephyr/kernel/libkernel.a(thread.c.obj) + .text.k_thread_state_str + 0x0000000000000000 0x84 zephyr/kernel/libkernel.a(thread.c.obj) + .text.z_init_thread_base + 0x0000000000000000 0x1c zephyr/kernel/libkernel.a(thread.c.obj) + .text.k_thread_user_mode_enter + 0x0000000000000000 0x20 zephyr/kernel/libkernel.a(thread.c.obj) + .text.k_thread_runtime_stats_get + 0x0000000000000000 0x14 zephyr/kernel/libkernel.a(thread.c.obj) + .text.k_thread_runtime_stats_all_get + 0x0000000000000000 0xc zephyr/kernel/libkernel.a(thread.c.obj) + .text.k_thread_runtime_stats_cpu_get + 0x0000000000000000 0xc zephyr/kernel/libkernel.a(thread.c.obj) + .rodata.str1.4 + 0x0000000000000000 0x4f zephyr/kernel/libkernel.a(thread.c.obj) + .rodata.state_string.0 + 0x0000000000000000 0x40 zephyr/kernel/libkernel.a(thread.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_requeue_current + 0x0000000000000000 0x80 zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_move_thread_to_end_of_prio_q + 0x0000000000000000 0x90 zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_impl_k_thread_suspend + 0x0000000000000000 0x20c zephyr/kernel/libkernel.a(sched.c.obj) + .rodata.z_pend_thread.str1.4 + 0x0000000000000000 0x3d zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_pend_thread + 0x0000000000000000 0xec zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_unpend_thread + 0x0000000000000000 0x14 zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_impl_k_thread_resume + 0x0000000000000000 0xa8 zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_swap_next_thread + 0x0000000000000000 0xc zephyr/kernel/libkernel.a(sched.c.obj) + .text.init_ready_q + 0x0000000000000000 0x8 zephyr/kernel/libkernel.a(sched.c.obj) + .rodata.z_impl_k_thread_priority_set.str1.4 + 0x0000000000000000 0xb9 zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_impl_k_thread_priority_set + 0x0000000000000000 0xa0 zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_impl_k_reschedule + 0x0000000000000000 0xbc zephyr/kernel/libkernel.a(sched.c.obj) + .text.k_can_yield + 0x0000000000000000 0x30 zephyr/kernel/libkernel.a(sched.c.obj) + .rodata.z_impl_k_thread_join.str1.4 + 0x0000000000000000 0x15 zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_impl_k_thread_join + 0x0000000000000000 0x180 zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_sched_waitq_walk + 0x0000000000000000 0xb4 zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_unready_thread + 0x0000000000000000 0x90 zephyr/kernel/libkernel.a(sched.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .text.thread_is_sliceable + 0x0000000000000000 0x38 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .text.k_sched_time_slice_set + 0x0000000000000000 0xc0 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(spinlock_validate.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(spinlock_validate.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(spinlock_validate.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(xip.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(xip.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(xip.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(timeout.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(timeout.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(timeout.c.obj) + .text.z_timeout_remaining + 0x0000000000000000 0xf4 zephyr/kernel/libkernel.a(timeout.c.obj) + .text.z_timeout_expires + 0x0000000000000000 0xdc zephyr/kernel/libkernel.a(timeout.c.obj) + .text.z_get_next_timeout_expiry + 0x0000000000000000 0xd4 zephyr/kernel/libkernel.a(timeout.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(timer.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(timer.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(timer.c.obj) + .text.z_impl_k_timer_status_get + 0x0000000000000000 0x94 zephyr/kernel/libkernel.a(timer.c.obj) + .rodata.z_impl_k_timer_status_sync.str1.4 + 0x0000000000000000 0x3b zephyr/kernel/libkernel.a(timer.c.obj) + .text.z_impl_k_timer_status_sync + 0x0000000000000000 0x100 zephyr/kernel/libkernel.a(timer.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(mempool.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(mempool.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(mempool.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(kheap.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(kheap.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(kheap.c.obj) + .text.k_heap_init + 0x0000000000000000 0x10 zephyr/kernel/libkernel.a(kheap.c.obj) + .text.k_heap_alloc + 0x0000000000000000 0x18 zephyr/kernel/libkernel.a(kheap.c.obj) + .text.k_heap_calloc + 0x0000000000000000 0x34 zephyr/kernel/libkernel.a(kheap.c.obj) + .text.k_heap_realloc + 0x0000000000000000 0x140 zephyr/kernel/libkernel.a(kheap.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(system_work_q.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(system_work_q.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(system_work_q.c.obj) + .text 0x0000000000000000 0x14 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(strcmp.S.o) + .data 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(strcmp.S.o) + .bss 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(strcmp.S.o) + .ARM.extab 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(strcmp.S.o) + .ARM.exidx 0x0000000000000000 0x8 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(strcmp.S.o) + .debug_frame 0x0000000000000000 0x20 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(strcmp.S.o) + .text 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(memcpy.c.o) + .data 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(memcpy.c.o) + .bss 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(memcpy.c.o) + .text 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(memset.c.o) + .data 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(memset.c.o) + .bss 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(memset.c.o) + .data 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(strlen.S.o) + .bss 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(strlen.S.o) + .ARM.extab 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(strlen.S.o) + .text 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_ctype_ctype_.c.o) + .data 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_ctype_ctype_.c.o) + .bss 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_ctype_ctype_.c.o) + .rodata._ctype_ + 0x0000000000000000 0x101 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_ctype_ctype_.c.o) + .text 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_errno_errno.c.o) + .data 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_errno_errno.c.o) + .bss 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_errno_errno.c.o) + .tbss.errno 0x0000000000000000 0x4 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_errno_errno.c.o) + .text 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_string_strnlen.c.o) + .data 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_string_strnlen.c.o) + .bss 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_string_strnlen.c.o) + .text 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_puts.c.o) + .data 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_puts.c.o) + .bss 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_puts.c.o) + .text.puts 0x0000000000000000 0x40 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_puts.c.o) + .debug_frame 0x0000000000000000 0x30 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_puts.c.o) + .text 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_vflprintf.c.o) + .data 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_vflprintf.c.o) + .bss 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_vflprintf.c.o) + .text 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_vflscanf.c.o) + .data 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_vflscanf.c.o) + .bss 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_vflscanf.c.o) + .text.scanf_getc + 0x0000000000000000 0x14 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_vflscanf.c.o) + .text.scanf_ungetc + 0x0000000000000000 0x10 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_vflscanf.c.o) + .text.skip_spaces + 0x0000000000000000 0x2a /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_vflscanf.c.o) + .text.putval 0x0000000000000000 0x2c /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_vflscanf.c.o) + .rodata.__l_vfscanf.str1.1 + 0x0000000000000000 0xc /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_vflscanf.c.o) + .text.__l_vfscanf + 0x0000000000000000 0x364 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_vflscanf.c.o) + .debug_frame 0x0000000000000000 0x94 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_vflscanf.c.o) + .text 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_string_strchr.c.o) + .data 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_string_strchr.c.o) + .bss 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_string_strchr.c.o) + .text.strchr 0x0000000000000000 0x1a /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_string_strchr.c.o) + .debug_frame 0x0000000000000000 0x20 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_string_strchr.c.o) + .text 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_fgetc.c.o) + .data 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_fgetc.c.o) + .bss 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_fgetc.c.o) + .text.fgetc 0x0000000000000000 0x46 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_fgetc.c.o) + .debug_frame 0x0000000000000000 0x28 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_fgetc.c.o) + .text 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_ungetc.c.o) + .data 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_ungetc.c.o) + .bss 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_ungetc.c.o) + .text.ungetc 0x0000000000000000 0x3a /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_ungetc.c.o) + .debug_frame 0x0000000000000000 0x20 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_ungetc.c.o) + .text 0x0000000000000000 0x254 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_muldf3.o) + .data 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_muldf3.o) + .bss 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_muldf3.o) + .debug_frame 0x0000000000000000 0x30 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_muldf3.o) + .data 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_mulsf3.o) + .bss 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_mulsf3.o) + .text 0x0000000000000000 0x378 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_addsubdf3.o) + .data 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_addsubdf3.o) + .bss 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_addsubdf3.o) + .debug_frame 0x0000000000000000 0xac /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_addsubdf3.o) + .text 0x0000000000000000 0x424 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_muldivdf3.o) + .data 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_muldivdf3.o) + .bss 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_muldivdf3.o) + .debug_frame 0x0000000000000000 0x50 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_muldivdf3.o) + .text 0x0000000000000000 0xa0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_truncdfsf2.o) + .data 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_truncdfsf2.o) + .bss 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_truncdfsf2.o) + .debug_frame 0x0000000000000000 0x24 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_truncdfsf2.o) + .data 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_addsubsf3.o) + .bss 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_addsubsf3.o) + .text 0x0000000000000000 0xec /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_cmpsf2.o) + .data 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_cmpsf2.o) + .bss 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_cmpsf2.o) + .debug_frame 0x0000000000000000 0xc8 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_cmpsf2.o) + .data 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_fixsfsi.o) + .bss 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_fixsfsi.o) + .text 0x0000000000000000 0xa0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_aeabi_ldivmod.o) + .data 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_aeabi_ldivmod.o) + .bss 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_aeabi_ldivmod.o) + .debug_frame 0x0000000000000000 0x44 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_aeabi_ldivmod.o) + .data 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_aeabi_uldivmod.o) + .bss 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_aeabi_uldivmod.o) + .text 0x0000000000000000 0x26 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_popcountsi2.o) + .data 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_popcountsi2.o) + .bss 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_popcountsi2.o) + .debug_frame 0x0000000000000000 0x20 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_popcountsi2.o) + .text 0x0000000000000000 0x2e /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_fixdfdi.o) + .data 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_fixdfdi.o) + .bss 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_fixdfdi.o) + .debug_frame 0x0000000000000000 0x38 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_fixdfdi.o) + .text 0x0000000000000000 0x3c /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_fixunsdfdi.o) + .data 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_fixunsdfdi.o) + .bss 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_fixunsdfdi.o) + .debug_frame 0x0000000000000000 0x2c /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_fixunsdfdi.o) + .data 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_udivmoddi4.o) + .bss 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_udivmoddi4.o) + .ARM.extab 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_udivmoddi4.o) + .data 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_dvmd_tls.o) + .bss 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_dvmd_tls.o) + .text 0x0000000000000000 0x110 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_cmpdf2.o) + .data 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_cmpdf2.o) + .bss 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_cmpdf2.o) + .debug_frame 0x0000000000000000 0xc4 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_cmpdf2.o) + .text 0x0000000000000000 0x40 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_fixunsdfsi.o) + .data 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_fixunsdfsi.o) + .bss 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_fixunsdfsi.o) + .debug_frame 0x0000000000000000 0x24 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_fixunsdfsi.o) + +Memory Configuration + +Name Origin Length Attributes +FLASH 0x0000000000000000 0x0000000000080000 xr +RAM 0x0000000020000000 0x0000000000020000 xw +IDT_LIST 0x00000000ffff7fff 0x0000000000008000 xw +*default* 0x0000000000000000 0xffffffffffffffff + +Linker script and memory map + + 0x000000000000dc2c vfprintf = __l_vfprintf + 0x0000000000000000 vfscanf = __l_vfscanf +LOAD zephyr/CMakeFiles/zephyr_final.dir/misc/empty_file.c.obj +LOAD zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj +LOAD zephyr/CMakeFiles/offsets.dir/./arch/arm/core/offsets/offsets.c.obj +LOAD app/libapp.a +LOAD zephyr/libzephyr.a +LOAD zephyr/arch/common/libarch__common.a +LOAD zephyr/arch/arch/arm/core/libarch__arm__core.a +LOAD zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a +LOAD zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a +LOAD zephyr/lib/libc/picolibc/liblib__libc__picolibc.a +LOAD zephyr/lib/libc/common/liblib__libc__common.a +LOAD zephyr/soc/soc/nrf52833/libsoc__nordic.a +LOAD zephyr/drivers/usb/device/libdrivers__usb__device.a +LOAD zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a +LOAD zephyr/drivers/adc/libdrivers__adc.a +LOAD zephyr/drivers/clock_control/libdrivers__clock_control.a +LOAD zephyr/drivers/console/libdrivers__console.a +LOAD zephyr/drivers/gpio/libdrivers__gpio.a +LOAD zephyr/drivers/hwinfo/libdrivers__hwinfo.a +LOAD zephyr/drivers/pinctrl/libdrivers__pinctrl.a +LOAD zephyr/drivers/sensor/nordic/temp/libdrivers__sensor__nordic__temp.a +LOAD zephyr/drivers/serial/libdrivers__serial.a +LOAD zephyr/drivers/timer/libdrivers__timer.a +LOAD modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a +LOAD modules/segger/libmodules__segger.a +LOAD zephyr/kernel/libkernel.a +LOAD zephyr/arch/common/libisr_tables.a +LOAD /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a +LOAD /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a + 0x0000000000000020 _region_min_align = 0x20 + +.rel.plt 0x0000000000000000 0x0 + *(SORT_BY_ALIGNMENT(.rel.plt)) + [!provide] PROVIDE (__rel_iplt_start = .) + *(SORT_BY_ALIGNMENT(.rel.iplt)) + .rel.iplt 0x0000000000000000 0x0 zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj + [!provide] PROVIDE (__rel_iplt_end = .) + +.rela.plt 0x0000000000000000 0x0 + *(SORT_BY_ALIGNMENT(.rela.plt)) + [!provide] PROVIDE (__rela_iplt_start = .) + *(SORT_BY_ALIGNMENT(.rela.iplt)) + [!provide] PROVIDE (__rela_iplt_end = .) + +.rel.dyn + *(SORT_BY_ALIGNMENT(.rel.*)) + +.rela.dyn + *(SORT_BY_ALIGNMENT(.rela.*)) + +/DISCARD/ + *(SORT_BY_ALIGNMENT(.plt)) + +/DISCARD/ + *(SORT_BY_ALIGNMENT(.iplt)) + 0x0000000000000000 __rom_region_start = 0x0 + +rom_start 0x0000000000000000 0x100 + 0x0000000000000000 __rom_start_address = . + FILL mask 0x00 + 0x0000000000000000 . = (. + (0x0 - (. - __rom_start_address))) + 0x0000000000000000 . = ALIGN (0x4) + 0x0000000000000000 . = ALIGN (0x80) + 0x0000000000000000 . = ALIGN (0x100) + 0x0000000000000000 _vector_start = . + *(SORT_BY_ALIGNMENT(.exc_vector_table)) + *(SORT_BY_ALIGNMENT(.exc_vector_table.*)) + .exc_vector_table._vector_table_section + 0x0000000000000000 0x40 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(vector_table.S.obj) + 0x0000000000000000 _vector_table + *(SORT_BY_ALIGNMENT(.vectors)) + 0x0000000000000100 _vector_end = . + 0x0000000000000040 . = ALIGN (0x4) + *(SORT_BY_ALIGNMENT(.gnu.linkonce.irq_vector_table*)) + .gnu.linkonce.irq_vector_table + 0x0000000000000040 0xc0 zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj + 0x0000000000000040 _irq_vector_table + 0x0000000000000100 _vector_end = . + +text 0x0000000000000100 0xe0e4 + 0x0000000000000100 __text_region_start = . + *(SORT_BY_ALIGNMENT(.text)) + .text 0x0000000000000100 0x168 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_mulsf3.o) + 0x0000000000000100 __mulsf3 + 0x0000000000000100 __aeabi_fmul + .text 0x0000000000000268 0x21c /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_addsubsf3.o) + 0x0000000000000268 __aeabi_frsub + 0x0000000000000270 __subsf3 + 0x0000000000000270 __aeabi_fsub + 0x0000000000000274 __aeabi_fadd + 0x0000000000000274 __addsf3 + 0x00000000000003d4 __aeabi_ui2f + 0x00000000000003d4 __floatunsisf + 0x00000000000003dc __aeabi_i2f + 0x00000000000003dc __floatsisf + 0x00000000000003f8 __floatundisf + 0x00000000000003f8 __aeabi_ul2f + 0x0000000000000408 __floatdisf + 0x0000000000000408 __aeabi_l2f + .text 0x0000000000000484 0x4c /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_fixsfsi.o) + 0x0000000000000484 __fixsfsi + 0x0000000000000484 __aeabi_f2iz + .text 0x00000000000004d0 0x30 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_aeabi_uldivmod.o) + 0x00000000000004d0 __aeabi_uldivmod + .text 0x0000000000000500 0x4 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_dvmd_tls.o) + 0x0000000000000500 __aeabi_ldiv0 + 0x0000000000000500 __aeabi_idiv0 + .text 0x0000000000000504 0x10 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(strlen.S.o) + 0x0000000000000504 strlen + .text 0x0000000000000514 0x2a0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_udivmoddi4.o) + 0x0000000000000514 __udivmoddi4 + *(SORT_BY_ALIGNMENT(.text.*)) + .text._OffsetAbsSyms + 0x00000000000007b4 0x4 zephyr/CMakeFiles/offsets.dir/./arch/arm/core/offsets/offsets.c.obj + 0x00000000000007b4 _OffsetAbsSyms + .text.main 0x00000000000007b8 0x128 app/libapp.a(main.c.obj) + 0x00000000000007b8 main + .text.z_impl_gpio_pin_configure.isra.0 + 0x00000000000008e0 0x188 app/libapp.a(led.c.obj) + .text.led1_timer_handler + 0x0000000000000a68 0x48 app/libapp.a(led.c.obj) + .text.led0_timer_handler + 0x0000000000000ab0 0x48 app/libapp.a(led.c.obj) + .text.led_init + 0x0000000000000af8 0x68 app/libapp.a(led.c.obj) + 0x0000000000000af8 led_init + .text.led_toggle + 0x0000000000000b60 0x68 app/libapp.a(led.c.obj) + 0x0000000000000b60 led_toggle + .text.led_start_blink + 0x0000000000000bc8 0x7c app/libapp.a(led.c.obj) + 0x0000000000000bc8 led_start_blink + .text.button_init + 0x0000000000000c44 0x7c app/libapp.a(button.c.obj) + 0x0000000000000c44 button_init + .text.button_read + 0x0000000000000cc0 0x60 app/libapp.a(button.c.obj) + 0x0000000000000cc0 button_read + .text.z_impl_gpio_pin_configure.isra.0 + 0x0000000000000d20 0x188 app/libapp.a(actuator.c.obj) + .text.digital_out_init + 0x0000000000000ea8 0x34 app/libapp.a(actuator.c.obj) + 0x0000000000000ea8 digital_out_init + .text.digital_out_toggle_do1 + 0x0000000000000edc 0x48 app/libapp.a(actuator.c.obj) + 0x0000000000000edc digital_out_toggle_do1 + .text.digital_out_toggle_do2 + 0x0000000000000f24 0x48 app/libapp.a(actuator.c.obj) + 0x0000000000000f24 digital_out_toggle_do2 + .text.digital_out_toggle_do_en + 0x0000000000000f6c 0x48 app/libapp.a(actuator.c.obj) + 0x0000000000000f6c digital_out_toggle_do_en + .text.battery_adc_init + 0x0000000000000fb4 0x9c app/libapp.a(battery_adc.c.obj) + 0x0000000000000fb4 battery_adc_init + .text.battery_measure_mv + 0x0000000000001050 0xfc app/libapp.a(battery_adc.c.obj) + 0x0000000000001050 battery_measure_mv + .text.temperature_init + 0x000000000000114c 0x18 app/libapp.a(temperature.c.obj) + 0x000000000000114c temperature_init + .text.temperature_get_celsius + 0x0000000000001164 0x20 app/libapp.a(temperature.c.obj) + 0x0000000000001164 temperature_get_celsius + .text.TIMER1_IRQHandler + 0x0000000000001184 0x9c app/libapp.a(timer_count.c.obj) + 0x0000000000001184 TIMER1_IRQHandler + .text.configure_clock_pin + 0x0000000000001220 0x7c app/libapp.a(timer_count.c.obj) + 0x0000000000001220 configure_clock_pin + .text.configure_measurement + 0x000000000000129c 0x1a0 app/libapp.a(timer_count.c.obj) + 0x000000000000129c configure_measurement + .text.make_measurement + 0x000000000000143c 0x74 app/libapp.a(timer_count.c.obj) + 0x000000000000143c make_measurement + .text.read_measurement + 0x00000000000014b0 0x18 app/libapp.a(timer_count.c.obj) + 0x00000000000014b0 read_measurement + .text.free_list_remove_bidx + 0x00000000000014c8 0x6c zephyr/libzephyr.a(heap.c.obj) + .text.split_chunks + 0x0000000000001534 0x74 zephyr/libzephyr.a(heap.c.obj) + .text.merge_chunks + 0x00000000000015a8 0x5c zephyr/libzephyr.a(heap.c.obj) + .text.free_list_remove + 0x0000000000001604 0x30 zephyr/libzephyr.a(heap.c.obj) + .text.free_list_add + 0x0000000000001634 0xa8 zephyr/libzephyr.a(heap.c.obj) + .text.free_chunk + 0x00000000000016dc 0xc8 zephyr/libzephyr.a(heap.c.obj) + .text.alloc_chunk + 0x00000000000017a4 0x8c zephyr/libzephyr.a(heap.c.obj) + .text.sys_heap_free + 0x0000000000001830 0xc8 zephyr/libzephyr.a(heap.c.obj) + 0x0000000000001830 sys_heap_free + .text.sys_heap_alloc + 0x00000000000018f8 0x90 zephyr/libzephyr.a(heap.c.obj) + 0x00000000000018f8 sys_heap_alloc + .text.sys_heap_aligned_alloc + 0x0000000000001988 0x180 zephyr/libzephyr.a(heap.c.obj) + 0x0000000000001988 sys_heap_aligned_alloc + .text.sys_heap_init + 0x0000000000001b08 0x174 zephyr/libzephyr.a(heap.c.obj) + 0x0000000000001b08 sys_heap_init + .text.arch_printk_char_out + 0x0000000000001c7c 0x4 zephyr/libzephyr.a(printk.c.obj) + 0x0000000000001c7c arch_printk_char_out + .text.char_out + 0x0000000000001c80 0xc zephyr/libzephyr.a(printk.c.obj) + .text.__printk_hook_install + 0x0000000000001c8c 0xc zephyr/libzephyr.a(printk.c.obj) + 0x0000000000001c8c __printk_hook_install + .text.vprintk 0x0000000000001c98 0x2c zephyr/libzephyr.a(printk.c.obj) + 0x0000000000001c98 vprintk + .text.printk 0x0000000000001cc4 0x38 zephyr/libzephyr.a(printk.c.obj) + 0x0000000000001cc4 printk + .text.z_thread_entry + 0x0000000000001cfc 0x2c zephyr/libzephyr.a(thread_entry.c.obj) + 0x0000000000001cfc z_thread_entry + .text.assert_post_action + 0x0000000000001d28 0x14 zephyr/libzephyr.a(assert.c.obj) + 0x0000000000001d28 assert_post_action + .text.assert_print + 0x0000000000001d3c 0x1c zephyr/libzephyr.a(assert.c.obj) + 0x0000000000001d3c assert_print + .text.process_event + 0x0000000000001d58 0x408 zephyr/libzephyr.a(onoff.c.obj) + .text.transition_complete + 0x0000000000002160 0x64 zephyr/libzephyr.a(onoff.c.obj) + .text.onoff_manager_init + 0x00000000000021c4 0x2c zephyr/libzephyr.a(onoff.c.obj) + 0x00000000000021c4 onoff_manager_init + .text.onoff_request + 0x00000000000021f0 0x178 zephyr/libzephyr.a(onoff.c.obj) + 0x00000000000021f0 onoff_request + .text.onoff_release + 0x0000000000002368 0xe0 zephyr/libzephyr.a(onoff.c.obj) + 0x0000000000002368 onoff_release + .text.onoff_cancel + 0x0000000000002448 0x10c zephyr/libzephyr.a(onoff.c.obj) + 0x0000000000002448 onoff_cancel + .text.sys_notify_validate + 0x0000000000002554 0x24 zephyr/libzephyr.a(notify.c.obj) + 0x0000000000002554 sys_notify_validate + .text.sys_notify_finalize + 0x0000000000002578 0x44 zephyr/libzephyr.a(notify.c.obj) + 0x0000000000002578 sys_notify_finalize + .text.ring_buf_put + 0x00000000000025bc 0xa0 zephyr/libzephyr.a(ring_buffer.c.obj) + 0x00000000000025bc ring_buf_put + .text.ring_buf_get_claim + 0x000000000000265c 0x48 zephyr/libzephyr.a(ring_buffer.c.obj) + 0x000000000000265c ring_buf_get_claim + .text.ring_buf_get_finish + 0x00000000000026a4 0x2c zephyr/libzephyr.a(ring_buffer.c.obj) + 0x00000000000026a4 ring_buf_get_finish + .text.ring_buf_get + 0x00000000000026d0 0xa0 zephyr/libzephyr.a(ring_buffer.c.obj) + 0x00000000000026d0 ring_buf_get + .text._ConfigAbsSyms + 0x0000000000002770 0x4 zephyr/libzephyr.a(configs.c.obj) + 0x0000000000002770 _ConfigAbsSyms + .text.mem_attr_get_regions + 0x0000000000002774 0xc zephyr/libzephyr.a(mem_attr.c.obj) + 0x0000000000002774 mem_attr_get_regions + .text.disable_endpoint + 0x0000000000002780 0x40 zephyr/libzephyr.a(usb_device.c.obj) + .text.custom_handler + 0x00000000000027c0 0x94 zephyr/libzephyr.a(usb_device.c.obj) + .text.class_handler + 0x0000000000002854 0x78 zephyr/libzephyr.a(usb_device.c.obj) + .text.vendor_handler + 0x00000000000028cc 0x68 zephyr/libzephyr.a(usb_device.c.obj) + .text.is_ep_valid + 0x0000000000002934 0x80 zephyr/libzephyr.a(usb_device.c.obj) + .text.usb_halt_endpoint_req.isra.0 + 0x00000000000029b4 0x64 zephyr/libzephyr.a(usb_device.c.obj) + .text.set_endpoint + 0x0000000000002a18 0x9c zephyr/libzephyr.a(usb_device.c.obj) + .text.usb_handle_standard_request + 0x0000000000002ab4 0x358 zephyr/libzephyr.a(usb_device.c.obj) + .text.usb_data_to_host + 0x0000000000002e0c 0x74 zephyr/libzephyr.a(usb_device.c.obj) + .text.usb_handle_control_transfer + 0x0000000000002e80 0x138 zephyr/libzephyr.a(usb_device.c.obj) + .text.forward_status_cb + 0x0000000000002fb8 0x150 zephyr/libzephyr.a(usb_device.c.obj) + .text.usb_write + 0x0000000000003108 0x30 zephyr/libzephyr.a(usb_device.c.obj) + 0x0000000000003108 usb_write + .text.usb_enable + 0x0000000000003138 0x198 zephyr/libzephyr.a(usb_device.c.obj) + 0x0000000000003138 usb_enable + .text.usb_update_sn_string_descriptor + 0x00000000000032d0 0x80 zephyr/libzephyr.a(usb_descriptor.c.obj) + 0x00000000000032d0 usb_update_sn_string_descriptor + .text.usb_get_device_descriptor + 0x0000000000003350 0x2e4 zephyr/libzephyr.a(usb_descriptor.c.obj) + 0x0000000000003350 usb_get_device_descriptor + .text.usb_get_dev_data_by_cfg + 0x0000000000003634 0x1c zephyr/libzephyr.a(usb_descriptor.c.obj) + 0x0000000000003634 usb_get_dev_data_by_cfg + .text.usb_get_dev_data_by_iface + 0x0000000000003650 0x20 zephyr/libzephyr.a(usb_descriptor.c.obj) + 0x0000000000003650 usb_get_dev_data_by_iface + .text.usb_get_dev_data_by_ep + 0x0000000000003670 0x3c zephyr/libzephyr.a(usb_descriptor.c.obj) + 0x0000000000003670 usb_get_dev_data_by_ep + .text.usb_transfer_work + 0x00000000000036ac 0x100 zephyr/libzephyr.a(usb_transfer.c.obj) + .text.usb_transfer_is_busy + 0x00000000000037ac 0x2c zephyr/libzephyr.a(usb_transfer.c.obj) + 0x00000000000037ac usb_transfer_is_busy + .text.usb_transfer_ep_callback + 0x00000000000037d8 0x78 zephyr/libzephyr.a(usb_transfer.c.obj) + 0x00000000000037d8 usb_transfer_ep_callback + .text.usb_transfer + 0x0000000000003850 0x104 zephyr/libzephyr.a(usb_transfer.c.obj) + 0x0000000000003850 usb_transfer + .text.usb_cancel_transfer + 0x0000000000003954 0x64 zephyr/libzephyr.a(usb_transfer.c.obj) + 0x0000000000003954 usb_cancel_transfer + .text.usb_cancel_transfers + 0x00000000000039b8 0x48 zephyr/libzephyr.a(usb_transfer.c.obj) + 0x00000000000039b8 usb_cancel_transfers + .text.usb_transfer_init + 0x0000000000003a00 0x30 zephyr/libzephyr.a(usb_transfer.c.obj) + 0x0000000000003a00 usb_transfer_init + .text.cdc_interface_config + 0x0000000000003a30 0x14 zephyr/libzephyr.a(cdc_acm.c.obj) + .text.cdc_acm_irq_callback_work_handler + 0x0000000000003a44 0xc zephyr/libzephyr.a(cdc_acm.c.obj) + .text.cdc_acm_irq_tx_disable + 0x0000000000003a50 0xc zephyr/libzephyr.a(cdc_acm.c.obj) + .text.cdc_acm_irq_tx_ready + 0x0000000000003a5c 0x20 zephyr/libzephyr.a(cdc_acm.c.obj) + .text.cdc_acm_irq_rx_disable + 0x0000000000003a7c 0xc zephyr/libzephyr.a(cdc_acm.c.obj) + .text.cdc_acm_irq_rx_ready + 0x0000000000003a88 0x10 zephyr/libzephyr.a(cdc_acm.c.obj) + .text.cdc_acm_irq_update + 0x0000000000003a98 0x30 zephyr/libzephyr.a(cdc_acm.c.obj) + .text.cdc_acm_irq_callback_set + 0x0000000000003ac8 0x8 zephyr/libzephyr.a(cdc_acm.c.obj) + .text.cdc_acm_line_ctrl_get + 0x0000000000003ad0 0x38 zephyr/libzephyr.a(cdc_acm.c.obj) + .text.cdc_acm_irq_rx_enable + 0x0000000000003b08 0x20 zephyr/libzephyr.a(cdc_acm.c.obj) + .text.cdc_acm_irq_tx_enable + 0x0000000000003b28 0x20 zephyr/libzephyr.a(cdc_acm.c.obj) + .text.cdc_acm_read_cb + 0x0000000000003b48 0x7c zephyr/libzephyr.a(cdc_acm.c.obj) + .text.cdc_acm_fifo_fill + 0x0000000000003bc4 0x40 zephyr/libzephyr.a(cdc_acm.c.obj) + .text.cdc_acm_write_cb + 0x0000000000003c04 0x78 zephyr/libzephyr.a(cdc_acm.c.obj) + .text.cdc_acm_class_handle_req + 0x0000000000003c7c 0x64 zephyr/libzephyr.a(cdc_acm.c.obj) + 0x0000000000003c7c cdc_acm_class_handle_req + .text.cdc_acm_int_in + 0x0000000000003ce0 0x18 zephyr/libzephyr.a(cdc_acm.c.obj) + .text.cdc_acm_init + 0x0000000000003cf8 0x48 zephyr/libzephyr.a(cdc_acm.c.obj) + .text.tx_work_handler + 0x0000000000003d40 0x68 zephyr/libzephyr.a(cdc_acm.c.obj) + .text.cdc_acm_poll_out + 0x0000000000003da8 0x78 zephyr/libzephyr.a(cdc_acm.c.obj) + .text.cdc_acm_send_notification.isra.0 + 0x0000000000003e20 0x48 zephyr/libzephyr.a(cdc_acm.c.obj) + .text.cdc_acm_line_ctrl_set + 0x0000000000003e68 0xf0 zephyr/libzephyr.a(cdc_acm.c.obj) + .text.cdc_acm_irq_is_pending + 0x0000000000003f58 0x34 zephyr/libzephyr.a(cdc_acm.c.obj) + .text.cdc_acm_fifo_read + 0x0000000000003f8c 0x5c zephyr/libzephyr.a(cdc_acm.c.obj) + .text.cdc_acm_poll_in + 0x0000000000003fe8 0x64 zephyr/libzephyr.a(cdc_acm.c.obj) + .text.cdc_acm_dev_status_cb + 0x000000000000404c 0xcc zephyr/libzephyr.a(cdc_acm.c.obj) + .text.z_usb_work_q_init + 0x0000000000004118 0x34 zephyr/libzephyr.a(usb_work_q.c.obj) + .text.boot_banner + 0x000000000000414c 0x1c zephyr/libzephyr.a(banner.c.obj) + 0x000000000000414c boot_banner + .text.z_arm_fatal_error + 0x0000000000004168 0xc zephyr/arch/arch/arm/core/libarch__arm__core.a(fatal.c.obj) + 0x0000000000004168 z_arm_fatal_error + .text.z_do_kernel_oops + 0x0000000000004174 0x10 zephyr/arch/arch/arm/core/libarch__arm__core.a(fatal.c.obj) + 0x0000000000004174 z_do_kernel_oops + .text.z_arm_nmi + 0x0000000000004184 0x10 zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi.c.obj) + 0x0000000000004184 z_arm_nmi + .text.z_SysNmiOnReset + 0x0000000000004194 0x8 zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi_on_reset.S.obj) + 0x0000000000004194 z_SysNmiOnReset + .text.arch_tls_stack_setup + 0x000000000000419c 0x40 zephyr/arch/arch/arm/core/libarch__arm__core.a(tls.c.obj) + 0x000000000000419c arch_tls_stack_setup + .text._HandlerModeExit + 0x00000000000041dc 0x28 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(exc_exit.c.obj) + 0x00000000000041dc z_arm_exc_exit + 0x00000000000041dc z_arm_int_exit + .text.mem_manage_fault + 0x0000000000004204 0xdc zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault.c.obj) + .text.usage_fault.constprop.0 + 0x00000000000042e0 0x58 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault.c.obj) + .text.bus_fault.constprop.0 + 0x0000000000004338 0x70 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault.c.obj) + .text.z_arm_fault + 0x00000000000043a8 0x1f0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault.c.obj) + 0x00000000000043a8 z_arm_fault + .text.z_arm_fault_init + 0x0000000000004598 0x18 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault.c.obj) + 0x0000000000004598 z_arm_fault_init + .text.__fault 0x00000000000045b0 0x14 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault_s.S.obj) + 0x00000000000045b0 z_arm_bus_fault + 0x00000000000045b0 z_arm_usage_fault + 0x00000000000045b0 z_arm_mpu_fault + 0x00000000000045b0 z_arm_exc_spurious + 0x00000000000045b0 z_arm_debug_monitor + 0x00000000000045b0 z_arm_hard_fault + .text._reset_section + 0x00000000000045c4 0x54 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(reset.S.obj) + 0x00000000000045c4 z_arm_reset + 0x00000000000045c4 __start + .text.z_arm_init_arch_hw_at_boot + 0x0000000000004618 0x84 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(scb.c.obj) + 0x0000000000004618 z_arm_init_arch_hw_at_boot + .text.z_impl_k_thread_abort + 0x000000000000469c 0x34 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread_abort.c.obj) + 0x000000000000469c z_impl_k_thread_abort + .text.z_arm_pendsv + 0x00000000000046d0 0x64 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(swap_helper.S.obj) + 0x00000000000046d0 z_arm_pendsv + .text.z_arm_svc + 0x0000000000004734 0x24 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(swap_helper.S.obj) + 0x0000000000004734 z_arm_svc + .text.arch_irq_enable + 0x0000000000004758 0x1c zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + 0x0000000000004758 arch_irq_enable + .text.arch_irq_disable + 0x0000000000004774 0x28 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + 0x0000000000004774 arch_irq_disable + .text.arch_irq_is_enabled + 0x000000000000479c 0x1c zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + 0x000000000000479c arch_irq_is_enabled + .text.z_arm_irq_priority_set + 0x00000000000047b8 0x64 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + 0x00000000000047b8 z_arm_irq_priority_set + .text.z_irq_spurious + 0x000000000000481c 0x8 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + 0x000000000000481c z_irq_spurious + .text.z_prep_c + 0x0000000000004824 0x38 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(prep_c.c.obj) + 0x0000000000004824 z_prep_c + .text.arch_new_thread + 0x000000000000485c 0x3c zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread.c.obj) + 0x000000000000485c arch_new_thread + .text.z_check_thread_stack_fail + 0x0000000000004898 0x2c zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread.c.obj) + 0x0000000000004898 z_check_thread_stack_fail + .text.arch_switch_to_main_thread + 0x00000000000048c4 0x3c zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread.c.obj) + 0x00000000000048c4 arch_switch_to_main_thread + .text.arch_irq_unlock_outlined + 0x0000000000004900 0x10 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread.c.obj) + 0x0000000000004900 arch_irq_unlock_outlined + .text.z_arm_cpu_idle_init + 0x0000000000004910 0xc zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(cpu_idle.c.obj) + 0x0000000000004910 z_arm_cpu_idle_init + .text.arch_cpu_idle + 0x000000000000491c 0x1c zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(cpu_idle.c.obj) + 0x000000000000491c arch_cpu_idle + .text.arch_cpu_atomic_idle + 0x0000000000004938 0x20 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(cpu_idle.c.obj) + 0x0000000000004938 arch_cpu_atomic_idle + .text.z_arm_interrupt_init + 0x0000000000004958 0x18 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_init.c.obj) + 0x0000000000004958 z_arm_interrupt_init + .text._isr_wrapper + 0x0000000000004970 0x24 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(isr_wrapper.c.obj) + 0x0000000000004970 _isr_wrapper + .text.z_arm_configure_static_mpu_regions + 0x0000000000004994 0x18 zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_core_mpu.c.obj) + 0x0000000000004994 z_arm_configure_static_mpu_regions + .text.z_arm_configure_dynamic_mpu_regions + 0x00000000000049ac 0x24 zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_core_mpu.c.obj) + 0x00000000000049ac z_arm_configure_dynamic_mpu_regions + .text.arm_core_mpu_configure_static_mpu_regions + 0x00000000000049d0 0xdc zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_mpu.c.obj) + 0x00000000000049d0 arm_core_mpu_configure_static_mpu_regions + .text.arm_core_mpu_configure_dynamic_mpu_regions + 0x0000000000004aac 0xec zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_mpu.c.obj) + 0x0000000000004aac arm_core_mpu_configure_dynamic_mpu_regions + .text.z_arm_mpu_init + 0x0000000000004b98 0x354 zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_mpu.c.obj) + 0x0000000000004b98 z_arm_mpu_init + .text.picolibc_put + 0x0000000000004eec 0x10 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .text.__stdout_hook_install + 0x0000000000004efc 0x18 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + 0x0000000000004efc __stdout_hook_install + .text.malloc_prepare + 0x0000000000004f14 0x24 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .text.nordicsemi_nrf52_init + 0x0000000000004f38 0x10 zephyr/soc/soc/nrf52833/libsoc__nordic.a(soc.c.obj) + .text.arch_busy_wait + 0x0000000000004f48 0x14 zephyr/soc/soc/nrf52833/libsoc__nordic.a(soc.c.obj) + 0x0000000000004f48 arch_busy_wait + .text.endpoint_ctx + 0x0000000000004f5c 0x60 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + .text.usb_init + 0x0000000000004fbc 0x70 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + .text.usbd_evt_alloc.part.0 + 0x000000000000502c 0x28 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + .text.eps_ctx_init + 0x0000000000005054 0x134 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + .text.usb_dc_attach.part.0 + 0x0000000000005188 0xf0 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + .text.usb_dc_power_event_handler + 0x0000000000005278 0xb0 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + .text.usbd_work_handler + 0x0000000000005328 0x5a8 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + .text.usbd_event_transfer_data + 0x00000000000058d0 0x1b8 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + .text.usbd_event_handler + 0x0000000000005a88 0x294 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + .text.usb_dc_attach + 0x0000000000005d1c 0x14 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + 0x0000000000005d1c usb_dc_attach + .text.usb_dc_set_address + 0x0000000000005d30 0x60 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + 0x0000000000005d30 usb_dc_set_address + .text.usb_dc_ep_check_cap + 0x0000000000005d90 0x2c zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + 0x0000000000005d90 usb_dc_ep_check_cap + .text.usb_dc_ep_configure + 0x0000000000005dbc 0x48 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + 0x0000000000005dbc usb_dc_ep_configure + .text.usb_dc_ep_set_stall + 0x0000000000005e04 0x50 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + 0x0000000000005e04 usb_dc_ep_set_stall + .text.usb_dc_ep_clear_stall + 0x0000000000005e54 0x40 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + 0x0000000000005e54 usb_dc_ep_clear_stall + .text.usb_dc_ep_is_stalled + 0x0000000000005e94 0x38 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + 0x0000000000005e94 usb_dc_ep_is_stalled + .text.usb_dc_ep_enable + 0x0000000000005ecc 0x58 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + 0x0000000000005ecc usb_dc_ep_enable + .text.usb_dc_ep_disable + 0x0000000000005f24 0x4c zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + 0x0000000000005f24 usb_dc_ep_disable + .text.usb_dc_ep_write + 0x0000000000005f70 0x104 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + 0x0000000000005f70 usb_dc_ep_write + .text.usb_dc_ep_read_wait + 0x0000000000006074 0x98 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + 0x0000000000006074 usb_dc_ep_read_wait + .text.usb_dc_ep_read_continue + 0x000000000000610c 0x100 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + 0x000000000000610c usb_dc_ep_read_continue + .text.usb_dc_ep_read + 0x000000000000620c 0x20 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + 0x000000000000620c usb_dc_ep_read + .text.usb_dc_ep_set_callback + 0x000000000000622c 0x74 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + 0x000000000000622c usb_dc_ep_set_callback + .text.usb_dc_set_status_callback + 0x00000000000062a0 0xc zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + 0x00000000000062a0 usb_dc_set_status_callback + .text.usb_dc_ep_mps + 0x00000000000062ac 0x6c zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + 0x00000000000062ac usb_dc_ep_mps + .text.ep_state_access.part.0 + 0x0000000000006318 0x28 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + .text.ep2bit.part.0 + 0x0000000000006340 0x28 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + .text.nrf_usbd_common_ep_enable_check.part.0 + 0x0000000000006368 0x28 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + .text.usbd_enable + 0x0000000000006390 0xac zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + .text.nrf_usbd_common_irq_handler + 0x000000000000643c 0x710 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + 0x000000000000643c nrf_usbd_common_irq_handler + .text.nrf_usbd_common_uninit + 0x0000000000006b4c 0x40 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + 0x0000000000006b4c nrf_usbd_common_uninit + .text.nrf_usbd_common_enable + 0x0000000000006b8c 0x160 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + 0x0000000000006b8c nrf_usbd_common_enable + .text.nrf_usbd_common_start + 0x0000000000006cec 0x68 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + 0x0000000000006cec nrf_usbd_common_start + .text.nrf_usbd_common_is_enabled + 0x0000000000006d54 0x14 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + 0x0000000000006d54 nrf_usbd_common_is_enabled + .text.nrf_usbd_common_suspend + 0x0000000000006d68 0x6c zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + 0x0000000000006d68 nrf_usbd_common_suspend + .text.nrf_usbd_common_ep_max_packet_size_set + 0x0000000000006dd4 0xcc zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + 0x0000000000006dd4 nrf_usbd_common_ep_max_packet_size_set + .text.nrf_usbd_common_init + 0x0000000000006ea0 0xac zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + 0x0000000000006ea0 nrf_usbd_common_init + .text.nrf_usbd_common_ep_transfer + 0x0000000000006f4c 0x120 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + 0x0000000000006f4c nrf_usbd_common_ep_transfer + .text.nrf_usbd_common_ep_status_get + 0x000000000000706c 0x58 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + 0x000000000000706c nrf_usbd_common_ep_status_get + .text.nrf_usbd_common_ep_stall + 0x00000000000070c4 0x3c zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + 0x00000000000070c4 nrf_usbd_common_ep_stall + .text.nrf_usbd_common_ep_stall_check + 0x0000000000007100 0x3c zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + 0x0000000000007100 nrf_usbd_common_ep_stall_check + .text.nrf_usbd_common_ep_dtoggle_clear + 0x000000000000713c 0x40 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + 0x000000000000713c nrf_usbd_common_ep_dtoggle_clear + .text.nrf_usbd_common_setup_get + 0x000000000000717c 0x44 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + 0x000000000000717c nrf_usbd_common_setup_get + .text.nrf_usbd_common_setup_data_clear + 0x00000000000071c0 0xc zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + 0x00000000000071c0 nrf_usbd_common_setup_data_clear + .text.nrf_usbd_common_setup_clear + 0x00000000000071cc 0xc zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + 0x00000000000071cc nrf_usbd_common_setup_clear + .text.nrf_usbd_common_setup_stall + 0x00000000000071d8 0xc zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + 0x00000000000071d8 nrf_usbd_common_setup_stall + .text.nrf_usbd_common_last_setup_dir_get + 0x00000000000071e4 0xc zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + 0x00000000000071e4 nrf_usbd_common_last_setup_dir_get + .text.nrf_usbd_common_transfer_out_drop + 0x00000000000071f0 0x7c zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + 0x00000000000071f0 nrf_usbd_common_transfer_out_drop + .text.usbd_ep_abort + 0x000000000000726c 0x120 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + .text.nrf_usbd_common_ep_abort + 0x000000000000738c 0x34 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + 0x000000000000738c nrf_usbd_common_ep_abort + .text.nrf_usbd_common_disable + 0x00000000000073c0 0x12c zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + 0x00000000000073c0 nrf_usbd_common_disable + .text.nrf_usbd_common_ep_disable + 0x00000000000074ec 0x5c zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + 0x00000000000074ec nrf_usbd_common_ep_disable + .text.nrf_usbd_common_ep_enable + 0x0000000000007548 0x7c zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + 0x0000000000007548 nrf_usbd_common_ep_enable + .text.nrf_usbd_common_ep_stall_clear + 0x00000000000075c4 0x5c zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + 0x00000000000075c4 nrf_usbd_common_ep_stall_clear + .text.adc_gain_invert + 0x0000000000007620 0x34 zephyr/drivers/adc/libdrivers__adc.a(adc_common.c.obj) + 0x0000000000007620 adc_gain_invert + .text.adc_nrfx_channel_setup + 0x0000000000007654 0x120 zephyr/drivers/adc/libdrivers__adc.a(adc_nrfx_saadc.c.obj) + .text.init_saadc + 0x0000000000007774 0x50 zephyr/drivers/adc/libdrivers__adc.a(adc_nrfx_saadc.c.obj) + .text.adc_context_on_timer_expired + 0x00000000000077c4 0x44 zephyr/drivers/adc/libdrivers__adc.a(adc_nrfx_saadc.c.obj) + .text.adc_nrfx_read + 0x0000000000007808 0x1b8 zephyr/drivers/adc/libdrivers__adc.a(adc_nrfx_saadc.c.obj) + .text.saadc_irq_handler + 0x00000000000079c0 0x11c zephyr/drivers/adc/libdrivers__adc.a(adc_nrfx_saadc.c.obj) + .text.onoff_started_callback + 0x0000000000007adc 0xc zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .text.lfclk_start + 0x0000000000007ae8 0x8 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .text.generic_hfclk_stop + 0x0000000000007af0 0x3c zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .text.lfclk_stop + 0x0000000000007b2c 0x8 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .text.blocking_start_callback + 0x0000000000007b34 0x8 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .text.api_blocking_start + 0x0000000000007b3c 0x8c zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .text.get_status + 0x0000000000007bc8 0x3c zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .text.stop.part.0 + 0x0000000000007c04 0x28 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .text.onoff_stop + 0x0000000000007c2c 0x70 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .text.clk_init + 0x0000000000007c9c 0x58 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .text.clkstarted_handle.constprop.0 + 0x0000000000007cf4 0x50 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .text.generic_hfclk_start + 0x0000000000007d44 0x78 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .text.api_stop + 0x0000000000007dbc 0x54 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .text.api_start + 0x0000000000007e10 0x60 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .text.onoff_start + 0x0000000000007e70 0x7c zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .text.clock_event_handler + 0x0000000000007eec 0xa0 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .text.z_nrf_clock_control_get_onoff + 0x0000000000007f8c 0x10 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + 0x0000000000007f8c z_nrf_clock_control_get_onoff + .text.z_nrf_clock_control_lf_on + 0x0000000000007f9c 0x14c zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + 0x0000000000007f9c z_nrf_clock_control_lf_on + .text.console_out + 0x00000000000080e8 0x2c zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .text.uart_console_init + 0x0000000000008114 0x28 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .text.gpio_nrfx_port_get_raw + 0x000000000000813c 0x10 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + .text.gpio_nrfx_port_set_masked_raw + 0x000000000000814c 0x18 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + .text.gpio_nrfx_port_set_bits_raw + 0x0000000000008164 0xc zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + .text.gpio_nrfx_port_clear_bits_raw + 0x0000000000008170 0xc zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + .text.gpio_nrfx_port_toggle_bits + 0x000000000000817c 0x1c zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + .text.gpio_nrfx_manage_callback + 0x0000000000008198 0xb0 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + .text.gpio_nrfx_init + 0x0000000000008248 0x4c zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + .text.nrf_gpio_pin_port_decode.part.0 + 0x0000000000008294 0x28 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + .text.gpio_nrfx_pin_configure + 0x00000000000082bc 0x1dc zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + .text.nrfx_gpio_handler + 0x0000000000008498 0x7c zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + .text.gpio_nrfx_pin_interrupt_configure + 0x0000000000008514 0x130 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + .text.z_impl_hwinfo_get_device_id + 0x0000000000008644 0x2c zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_nrf.c.obj) + 0x0000000000008644 z_impl_hwinfo_get_device_id + .text.hfclk_on_callback + 0x0000000000008670 0xc zephyr/drivers/sensor/nordic/temp/libdrivers__sensor__nordic__temp.a(temp_nrf5.c.obj) + .text.temp_nrf5_channel_get + 0x000000000000867c 0x40 zephyr/drivers/sensor/nordic/temp/libdrivers__sensor__nordic__temp.a(temp_nrf5.c.obj) + .text.temp_nrf5_init + 0x00000000000086bc 0x64 zephyr/drivers/sensor/nordic/temp/libdrivers__sensor__nordic__temp.a(temp_nrf5.c.obj) + .text.temp_nrf5_isr + 0x0000000000008720 0x18 zephyr/drivers/sensor/nordic/temp/libdrivers__sensor__nordic__temp.a(temp_nrf5.c.obj) + .text.temp_nrf5_sample_fetch + 0x0000000000008738 0xb4 zephyr/drivers/sensor/nordic/temp/libdrivers__sensor__nordic__temp.a(temp_nrf5.c.obj) + .text.sys_clock_timeout_handler + 0x00000000000087ec 0x4c zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .text.compare_set_nolocks.constprop.0.isra.0 + 0x0000000000008838 0x138 zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .text.sys_clock_driver_init + 0x0000000000008970 0xec zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .text.rtc_nrf_isr + 0x0000000000008a5c 0x124 zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + 0x0000000000008a5c rtc_nrf_isr + .text.sys_clock_set_timeout + 0x0000000000008b80 0xf8 zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + 0x0000000000008b80 sys_clock_set_timeout + .text.sys_clock_elapsed + 0x0000000000008c78 0x54 zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + 0x0000000000008c78 sys_clock_elapsed + .text.__NVIC_SystemReset + 0x0000000000008ccc 0x24 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(system_nrf52833.c.obj) + .text.SystemInit + 0x0000000000008cf0 0x18c modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(system_nrf52833.c.obj) + 0x0000000000008cf0 SystemInit + .text.nrfx_isr + 0x0000000000008e7c 0x4 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_glue.c.obj) + 0x0000000000008e7c nrfx_isr + .text.nrfx_busy_wait + 0x0000000000008e80 0x4 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_glue.c.obj) + 0x0000000000008e80 nrfx_busy_wait + .text.nrfx_flag32_alloc + 0x0000000000008e84 0x48 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_flag32_allocator.c.obj) + 0x0000000000008e84 nrfx_flag32_alloc + .text.nrfx_flag32_free + 0x0000000000008ecc 0x60 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_flag32_allocator.c.obj) + 0x0000000000008ecc nrfx_flag32_free + .text.clock_stop + 0x0000000000008f2c 0x104 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_clock.c.obj) + .text.nrfx_clock_init + 0x0000000000009030 0x24 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_clock.c.obj) + 0x0000000000009030 nrfx_clock_init + .text.nrfx_clock_enable + 0x0000000000009054 0x58 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_clock.c.obj) + 0x0000000000009054 nrfx_clock_enable + .text.nrfx_clock_start + 0x00000000000090ac 0xf4 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_clock.c.obj) + 0x00000000000090ac nrfx_clock_start + .text.nrfx_clock_stop + 0x00000000000091a0 0x38 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_clock.c.obj) + 0x00000000000091a0 nrfx_clock_stop + .text.nrfx_clock_irq_handler + 0x00000000000091d8 0x98 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_clock.c.obj) + 0x00000000000091d8 nrfx_clock_irq_handler + .text.nrf_gpio_pin_port_decode.part.0 + 0x0000000000009270 0x28 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .text.call_handler.constprop.0 + 0x0000000000009298 0x4c modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .text.latch_pending_read_and_check + 0x00000000000092e4 0x40 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .text.release_handler.isra.0 + 0x0000000000009324 0x90 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .text.pin_trigger_disable + 0x00000000000093b4 0x88 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .text.pin_uninit + 0x000000000000943c 0xac modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .text.nrfx_gpiote_input_configure + 0x00000000000094e8 0x194 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + 0x00000000000094e8 nrfx_gpiote_input_configure + .text.nrfx_gpiote_output_configure + 0x000000000000967c 0x140 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + 0x000000000000967c nrfx_gpiote_output_configure + .text.nrfx_gpiote_global_callback_set + 0x00000000000097bc 0xc modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + 0x00000000000097bc nrfx_gpiote_global_callback_set + .text.nrfx_gpiote_channel_get + 0x00000000000097c8 0x5c modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + 0x00000000000097c8 nrfx_gpiote_channel_get + .text.nrfx_gpiote_init + 0x0000000000009824 0x80 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + 0x0000000000009824 nrfx_gpiote_init + .text.nrfx_gpiote_init_check + 0x00000000000098a4 0x14 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + 0x00000000000098a4 nrfx_gpiote_init_check + .text.nrfx_gpiote_pin_uninit + 0x00000000000098b8 0x4 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + 0x00000000000098b8 nrfx_gpiote_pin_uninit + .text.nrfx_gpiote_channel_free + 0x00000000000098bc 0xc modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + 0x00000000000098bc nrfx_gpiote_channel_free + .text.nrfx_gpiote_channel_alloc + 0x00000000000098c8 0xc modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + 0x00000000000098c8 nrfx_gpiote_channel_alloc + .text.nrfx_gpiote_trigger_enable + 0x00000000000098d4 0x154 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + 0x00000000000098d4 nrfx_gpiote_trigger_enable + .text.nrfx_gpiote_trigger_disable + 0x0000000000009a28 0x4 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + 0x0000000000009a28 nrfx_gpiote_trigger_disable + .text.nrfx_gpiote_0_irq_handler + 0x0000000000009a2c 0x32c modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + 0x0000000000009a2c nrfx_gpiote_0_irq_handler + .text.nrfx_power_init + 0x0000000000009d58 0x64 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + 0x0000000000009d58 nrfx_power_init + .text.nrfx_power_usbevt_init + 0x0000000000009dbc 0x40 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + 0x0000000000009dbc nrfx_power_usbevt_init + .text.nrfx_power_usbevt_enable + 0x0000000000009dfc 0x10 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + 0x0000000000009dfc nrfx_power_usbevt_enable + .text.nrfx_power_usbevt_disable + 0x0000000000009e0c 0x10 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + 0x0000000000009e0c nrfx_power_usbevt_disable + .text.nrfx_power_irq_handler + 0x0000000000009e1c 0x18c modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + 0x0000000000009e1c nrfx_power_irq_handler + .text.nrfx_power_clock_irq_handler + 0x0000000000009fa8 0x10 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + 0x0000000000009fa8 nrfx_power_clock_irq_handler + .text.nrfx_temp_init + 0x0000000000009fb8 0x68 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_temp.c.obj) + 0x0000000000009fb8 nrfx_temp_init + .text.nrfx_temp_measure + 0x000000000000a020 0x84 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_temp.c.obj) + 0x000000000000a020 nrfx_temp_measure + .text._DoInit 0x000000000000a0a4 0x6c modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .text.SEGGER_RTT_Init + 0x000000000000a110 0x44 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + 0x000000000000a110 SEGGER_RTT_Init + .text.rtt_init + 0x000000000000a154 0xc modules/segger/libmodules__segger.a(SEGGER_RTT_zephyr.c.obj) + .text.z_impl_k_busy_wait + 0x000000000000a160 0x8 zephyr/kernel/libkernel.a(busy_wait.c.obj) + 0x000000000000a160 z_impl_k_busy_wait + .text.z_device_state_init + 0x000000000000a168 0x48 zephyr/kernel/libkernel.a(device.c.obj) + 0x000000000000a168 z_device_state_init + .text.z_impl_device_is_ready + 0x000000000000a1b0 0x18 zephyr/kernel/libkernel.a(device.c.obj) + 0x000000000000a1b0 z_impl_device_is_ready + .text.arch_system_halt + 0x000000000000a1c8 0x10 zephyr/kernel/libkernel.a(fatal.c.obj) + 0x000000000000a1c8 arch_system_halt + .text.k_sys_fatal_error_handler + 0x000000000000a1d8 0x8 zephyr/kernel/libkernel.a(fatal.c.obj) + 0x000000000000a1d8 k_sys_fatal_error_handler + .text.z_fatal_error + 0x000000000000a1e0 0x60 zephyr/kernel/libkernel.a(fatal.c.obj) + 0x000000000000a1e0 z_fatal_error + .text.z_sys_init_run_level + 0x000000000000a240 0x54 zephyr/kernel/libkernel.a(init.c.obj) + .text.bg_thread_main + 0x000000000000a294 0x120 zephyr/kernel/libkernel.a(init.c.obj) + .text.z_early_memset + 0x000000000000a3b4 0x4 zephyr/kernel/libkernel.a(init.c.obj) + 0x000000000000a3b4 z_early_memset + .text.z_early_memcpy + 0x000000000000a3b8 0x4 zephyr/kernel/libkernel.a(init.c.obj) + 0x000000000000a3b8 z_early_memcpy + .text.z_bss_zero + 0x000000000000a3bc 0x18 zephyr/kernel/libkernel.a(init.c.obj) + 0x000000000000a3bc z_bss_zero + .text.z_cstart + 0x000000000000a3d4 0x11c zephyr/kernel/libkernel.a(init.c.obj) + 0x000000000000a3d4 z_cstart + .text.z_init_static + 0x000000000000a4f0 0x4 zephyr/kernel/libkernel.a(init_static.c.obj) + 0x000000000000a4f0 z_init_static + .text.init_mem_slab_obj_core_list + 0x000000000000a4f4 0x9c zephyr/kernel/libkernel.a(mem_slab.c.obj) + .text.k_mem_slab_alloc + 0x000000000000a590 0x128 zephyr/kernel/libkernel.a(mem_slab.c.obj) + 0x000000000000a590 k_mem_slab_alloc + .text.k_mem_slab_free + 0x000000000000a6b8 0x198 zephyr/kernel/libkernel.a(mem_slab.c.obj) + 0x000000000000a6b8 k_mem_slab_free + .text.idle 0x000000000000a850 0x48 zephyr/kernel/libkernel.a(idle.c.obj) + 0x000000000000a850 idle + .text.z_impl_k_mutex_init + 0x000000000000a898 0x10 zephyr/kernel/libkernel.a(mutex.c.obj) + 0x000000000000a898 z_impl_k_mutex_init + .text.z_impl_k_mutex_lock + 0x000000000000a8a8 0x1bc zephyr/kernel/libkernel.a(mutex.c.obj) + 0x000000000000a8a8 z_impl_k_mutex_lock + .text.z_impl_k_mutex_unlock + 0x000000000000aa64 0x1c0 zephyr/kernel/libkernel.a(mutex.c.obj) + 0x000000000000aa64 z_impl_k_mutex_unlock + .text.queue_insert + 0x000000000000ac24 0x1d8 zephyr/kernel/libkernel.a(queue.c.obj) + .text.k_queue_append + 0x000000000000adfc 0x18 zephyr/kernel/libkernel.a(queue.c.obj) + 0x000000000000adfc k_queue_append + .text.z_impl_k_queue_get + 0x000000000000ae14 0xe4 zephyr/kernel/libkernel.a(queue.c.obj) + 0x000000000000ae14 z_impl_k_queue_get + .text.z_impl_k_sem_init + 0x000000000000aef8 0x18 zephyr/kernel/libkernel.a(sem.c.obj) + 0x000000000000aef8 z_impl_k_sem_init + .text.z_impl_k_sem_give + 0x000000000000af10 0x134 zephyr/kernel/libkernel.a(sem.c.obj) + 0x000000000000af10 z_impl_k_sem_give + .text.z_impl_k_sem_take + 0x000000000000b044 0xf8 zephyr/kernel/libkernel.a(sem.c.obj) + 0x000000000000b044 z_impl_k_sem_take + .text.work_queue_main + 0x000000000000b13c 0x230 zephyr/kernel/libkernel.a(work.c.obj) + .text.submit_to_queue_locked + 0x000000000000b36c 0xe8 zephyr/kernel/libkernel.a(work.c.obj) + .text.work_timeout + 0x000000000000b454 0xb4 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_init + 0x000000000000b508 0x4c zephyr/kernel/libkernel.a(work.c.obj) + 0x000000000000b508 k_work_init + .text.z_work_submit_to_queue + 0x000000000000b554 0xe0 zephyr/kernel/libkernel.a(work.c.obj) + 0x000000000000b554 z_work_submit_to_queue + .text.k_work_submit_to_queue + 0x000000000000b634 0x20 zephyr/kernel/libkernel.a(work.c.obj) + 0x000000000000b634 k_work_submit_to_queue + .text.k_work_queue_start + 0x000000000000b654 0xec zephyr/kernel/libkernel.a(work.c.obj) + 0x000000000000b654 k_work_queue_start + .text.k_work_init_delayable + 0x000000000000b740 0x5c zephyr/kernel/libkernel.a(work.c.obj) + 0x000000000000b740 k_work_init_delayable + .text.k_work_schedule_for_queue + 0x000000000000b79c 0x118 zephyr/kernel/libkernel.a(work.c.obj) + 0x000000000000b79c k_work_schedule_for_queue + .text.k_is_in_isr + 0x000000000000b8b4 0xc zephyr/kernel/libkernel.a(thread.c.obj) + 0x000000000000b8b4 k_is_in_isr + .text.z_impl_k_thread_name_set + 0x000000000000b8c0 0x8 zephyr/kernel/libkernel.a(thread.c.obj) + 0x000000000000b8c0 z_impl_k_thread_name_set + .text.z_setup_new_thread + 0x000000000000b8c8 0xec zephyr/kernel/libkernel.a(thread.c.obj) + 0x000000000000b8c8 z_setup_new_thread + .text.z_impl_k_thread_create + 0x000000000000b9b4 0x94 zephyr/kernel/libkernel.a(thread.c.obj) + 0x000000000000b9b4 z_impl_k_thread_create + .text.unready_thread + 0x000000000000ba48 0xb4 zephyr/kernel/libkernel.a(sched.c.obj) + .text.add_to_waitq_locked + 0x000000000000bafc 0x54 zephyr/kernel/libkernel.a(sched.c.obj) + .text.unpend_thread_no_timeout.part.0 + 0x000000000000bb50 0x24 zephyr/kernel/libkernel.a(sched.c.obj) + .text.ready_thread + 0x000000000000bb74 0xe4 zephyr/kernel/libkernel.a(sched.c.obj) + .text.move_thread_to_end_of_prio_q + 0x000000000000bc58 0x124 zephyr/kernel/libkernel.a(sched.c.obj) + 0x000000000000bc58 move_thread_to_end_of_prio_q + .text.z_ready_thread + 0x000000000000bd7c 0x90 zephyr/kernel/libkernel.a(sched.c.obj) + 0x000000000000bd7c z_ready_thread + .text.z_unpend_thread_no_timeout + 0x000000000000be0c 0xac zephyr/kernel/libkernel.a(sched.c.obj) + 0x000000000000be0c z_unpend_thread_no_timeout + .text.z_sched_wake_thread + 0x000000000000beb8 0xbc zephyr/kernel/libkernel.a(sched.c.obj) + 0x000000000000beb8 z_sched_wake_thread + .text.z_thread_timeout + 0x000000000000bf74 0x8 zephyr/kernel/libkernel.a(sched.c.obj) + 0x000000000000bf74 z_thread_timeout + .text.z_pend_curr + 0x000000000000bf7c 0x130 zephyr/kernel/libkernel.a(sched.c.obj) + 0x000000000000bf7c z_pend_curr + .text.z_unpend1_no_timeout + 0x000000000000c0ac 0xc0 zephyr/kernel/libkernel.a(sched.c.obj) + 0x000000000000c0ac z_unpend1_no_timeout + .text.z_thread_prio_set + 0x000000000000c16c 0x14c zephyr/kernel/libkernel.a(sched.c.obj) + 0x000000000000c16c z_thread_prio_set + .text.z_reschedule + 0x000000000000c2b8 0xa8 zephyr/kernel/libkernel.a(sched.c.obj) + 0x000000000000c2b8 z_reschedule + .text.z_reschedule_irqlock + 0x000000000000c360 0x40 zephyr/kernel/libkernel.a(sched.c.obj) + 0x000000000000c360 z_reschedule_irqlock + .text.k_sched_lock + 0x000000000000c3a0 0xe8 zephyr/kernel/libkernel.a(sched.c.obj) + 0x000000000000c3a0 k_sched_lock + .text.k_sched_unlock + 0x000000000000c488 0x16c zephyr/kernel/libkernel.a(sched.c.obj) + 0x000000000000c488 k_sched_unlock + .text.z_unpend_all + 0x000000000000c5f4 0x34 zephyr/kernel/libkernel.a(sched.c.obj) + 0x000000000000c5f4 z_unpend_all + .text.z_sched_init + 0x000000000000c628 0x10 zephyr/kernel/libkernel.a(sched.c.obj) + 0x000000000000c628 z_sched_init + .text.z_impl_k_yield + 0x000000000000c638 0x150 zephyr/kernel/libkernel.a(sched.c.obj) + 0x000000000000c638 z_impl_k_yield + .text.z_tick_sleep + 0x000000000000c788 0x140 zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_impl_k_sleep + 0x000000000000c8c8 0x64 zephyr/kernel/libkernel.a(sched.c.obj) + 0x000000000000c8c8 z_impl_k_sleep + .text.z_impl_k_usleep + 0x000000000000c92c 0x3c zephyr/kernel/libkernel.a(sched.c.obj) + 0x000000000000c92c z_impl_k_usleep + .text.z_impl_k_wakeup + 0x000000000000c968 0xb8 zephyr/kernel/libkernel.a(sched.c.obj) + 0x000000000000c968 z_impl_k_wakeup + .text.z_impl_k_sched_current_thread_query + 0x000000000000ca20 0xc zephyr/kernel/libkernel.a(sched.c.obj) + 0x000000000000ca20 z_impl_k_sched_current_thread_query + .text.z_thread_abort + 0x000000000000ca2c 0x27c zephyr/kernel/libkernel.a(sched.c.obj) + 0x000000000000ca2c z_thread_abort + .text.z_sched_wake + 0x000000000000cca8 0xe0 zephyr/kernel/libkernel.a(sched.c.obj) + 0x000000000000cca8 z_sched_wake + .text.z_sched_wait + 0x000000000000cd88 0x24 zephyr/kernel/libkernel.a(sched.c.obj) + 0x000000000000cd88 z_sched_wait + .text.slice_timeout + 0x000000000000cdac 0x60 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .text.z_reset_time_slice + 0x000000000000ce0c 0x70 zephyr/kernel/libkernel.a(timeslicing.c.obj) + 0x000000000000ce0c z_reset_time_slice + .text.z_time_slice + 0x000000000000ce7c 0xf0 zephyr/kernel/libkernel.a(timeslicing.c.obj) + 0x000000000000ce7c z_time_slice + .text.z_spin_lock_valid + 0x000000000000cf6c 0x1c zephyr/kernel/libkernel.a(spinlock_validate.c.obj) + 0x000000000000cf6c z_spin_lock_valid + .text.z_spin_unlock_valid + 0x000000000000cf88 0x30 zephyr/kernel/libkernel.a(spinlock_validate.c.obj) + 0x000000000000cf88 z_spin_unlock_valid + .text.z_spin_lock_set_owner + 0x000000000000cfb8 0x10 zephyr/kernel/libkernel.a(spinlock_validate.c.obj) + 0x000000000000cfb8 z_spin_lock_set_owner + .text.z_data_copy + 0x000000000000cfc8 0x38 zephyr/kernel/libkernel.a(xip.c.obj) + 0x000000000000cfc8 z_data_copy + .text.remove_timeout + 0x000000000000d000 0x38 zephyr/kernel/libkernel.a(timeout.c.obj) + .text.z_add_timeout + 0x000000000000d038 0x1d0 zephyr/kernel/libkernel.a(timeout.c.obj) + 0x000000000000d038 z_add_timeout + .text.z_abort_timeout + 0x000000000000d208 0x104 zephyr/kernel/libkernel.a(timeout.c.obj) + 0x000000000000d208 z_abort_timeout + .text.sys_clock_announce + 0x000000000000d30c 0x1f8 zephyr/kernel/libkernel.a(timeout.c.obj) + 0x000000000000d30c sys_clock_announce + .text.sys_clock_tick_get + 0x000000000000d504 0xb4 zephyr/kernel/libkernel.a(timeout.c.obj) + 0x000000000000d504 sys_clock_tick_get + .text.sys_clock_tick_get_32 + 0x000000000000d5b8 0x8 zephyr/kernel/libkernel.a(timeout.c.obj) + 0x000000000000d5b8 sys_clock_tick_get_32 + .text.z_impl_k_uptime_ticks + 0x000000000000d5c0 0x4 zephyr/kernel/libkernel.a(timeout.c.obj) + 0x000000000000d5c0 z_impl_k_uptime_ticks + .text.sys_timepoint_calc + 0x000000000000d5c4 0x64 zephyr/kernel/libkernel.a(timeout.c.obj) + 0x000000000000d5c4 sys_timepoint_calc + .text.sys_timepoint_timeout + 0x000000000000d628 0x50 zephyr/kernel/libkernel.a(timeout.c.obj) + 0x000000000000d628 sys_timepoint_timeout + .text.z_timer_expiration_handler + 0x000000000000d678 0x170 zephyr/kernel/libkernel.a(timer.c.obj) + 0x000000000000d678 z_timer_expiration_handler + .text.k_timer_init + 0x000000000000d7e8 0x20 zephyr/kernel/libkernel.a(timer.c.obj) + 0x000000000000d7e8 k_timer_init + .text.z_impl_k_timer_start + 0x000000000000d808 0xe4 zephyr/kernel/libkernel.a(timer.c.obj) + 0x000000000000d808 z_impl_k_timer_start + .text.z_impl_k_timer_stop + 0x000000000000d8ec 0x38 zephyr/kernel/libkernel.a(timer.c.obj) + 0x000000000000d8ec z_impl_k_timer_stop + .text.k_free 0x000000000000d924 0x10 zephyr/kernel/libkernel.a(mempool.c.obj) + 0x000000000000d924 k_free + .text.z_thread_aligned_alloc + 0x000000000000d934 0x7c zephyr/kernel/libkernel.a(mempool.c.obj) + 0x000000000000d934 z_thread_aligned_alloc + .text.statics_init + 0x000000000000d9b0 0x5c zephyr/kernel/libkernel.a(kheap.c.obj) + .text.k_heap_aligned_alloc + 0x000000000000da0c 0x13c zephyr/kernel/libkernel.a(kheap.c.obj) + 0x000000000000da0c k_heap_aligned_alloc + .text.k_heap_free + 0x000000000000db48 0xac zephyr/kernel/libkernel.a(kheap.c.obj) + 0x000000000000db48 k_heap_free + .text.k_sys_work_q_init + 0x000000000000dbf4 0x38 zephyr/kernel/libkernel.a(system_work_q.c.obj) + .text.__l_vfprintf + 0x000000000000dc2c 0x4b8 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_vflprintf.c.o) + 0x000000000000dc2c __l_vfprintf + .text.memcpy 0x000000000000e0e4 0x1c /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(memcpy.c.o) + 0x000000000000e0e4 memcpy + 0x000000000000e0e4 __aeabi_memcpy + 0x000000000000e0e4 __aeabi_memcpy4 + 0x000000000000e0e4 __aeabi_memcpy8 + .text.memset 0x000000000000e100 0x10 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(memset.c.o) + 0x000000000000e100 memset + .text.strnlen 0x000000000000e110 0x18 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_string_strnlen.c.o) + 0x000000000000e110 strnlen + .text.__ultoa_invert + 0x000000000000e128 0xae /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_vflprintf.c.o) + *(SORT_BY_ALIGNMENT(.TEXT.*)) + *fill* 0x000000000000e1d6 0x2 + .TEXT.__aeabi_read_tp + 0x000000000000e1d8 0xc zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(__aeabi_read_tp.S.obj) + 0x000000000000e1d8 __aeabi_read_tp + *(SORT_BY_ALIGNMENT(.gnu.linkonce.t.*)) + *(SORT_BY_ALIGNMENT(.glue_7t)) + .glue_7t 0x000000000000e1e4 0x0 linker stubs + *(SORT_BY_ALIGNMENT(.glue_7)) + .glue_7 0x000000000000e1e4 0x0 linker stubs + *(SORT_BY_ALIGNMENT(.vfp11_veneer)) + .vfp11_veneer 0x000000000000e1e4 0x0 linker stubs + *(SORT_BY_ALIGNMENT(.v4_bx)) + .v4_bx 0x000000000000e1e4 0x0 linker stubs + 0x000000000000e1e4 . = ALIGN (0x4) + 0x000000000000e1e4 __text_region_end = . + +.ARM.exidx 0x000000000000e1e4 0x8 + 0x000000000000e1e4 __exidx_start = . + *(SORT_BY_ALIGNMENT(.ARM.exidx*) SORT_BY_ALIGNMENT(gnu.linkonce.armexidx.*)) + .ARM.exidx 0x000000000000e1e4 0x8 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(strlen.S.o) + .ARM.exidx 0x000000000000e1ec 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_udivmoddi4.o) + 0x8 (size before relaxing) + 0x000000000000e1ec __exidx_end = . + 0x000000000000e1ec __rodata_region_start = . + +initlevel 0x000000000000e1ec 0x80 + 0x000000000000e1ec __init_start = . + 0x000000000000e1ec __init_EARLY_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_EARLY?_*))) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_EARLY??_*))) + 0x000000000000e1ec __init_PRE_KERNEL_1_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_PRE_KERNEL_1?_*))) + .z_init_PRE_KERNEL_10_0_ + 0x000000000000e1ec 0x8 zephyr/soc/soc/nrf52833/libsoc__nordic.a(soc.c.obj) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_PRE_KERNEL_1??_*))) + .z_init_PRE_KERNEL_130_00025_ + 0x000000000000e1f4 0x8 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .z_init_PRE_KERNEL_130_0_ + 0x000000000000e1fc 0x8 modules/segger/libmodules__segger.a(SEGGER_RTT_zephyr.c.obj) + .z_init_PRE_KERNEL_130_0_ + 0x000000000000e204 0x8 zephyr/kernel/libkernel.a(mem_slab.c.obj) + .z_init_PRE_KERNEL_130_0_ + 0x000000000000e20c 0x8 zephyr/kernel/libkernel.a(kheap.c.obj) + .z_init_PRE_KERNEL_140_00012_ + 0x000000000000e214 0x8 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + .z_init_PRE_KERNEL_140_00019_ + 0x000000000000e21c 0x8 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + .z_init_PRE_KERNEL_150_00084_ + 0x000000000000e224 0x8 zephyr/libzephyr.a(cdc_acm.c.obj) + .z_init_PRE_KERNEL_160_0_ + 0x000000000000e22c 0x8 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + 0x000000000000e234 __init_PRE_KERNEL_2_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_PRE_KERNEL_2?_*))) + .z_init_PRE_KERNEL_20_0_ + 0x000000000000e234 0x8 zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_PRE_KERNEL_2??_*))) + 0x000000000000e23c __init_POST_KERNEL_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_POST_KERNEL?_*))) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_POST_KERNEL??_*))) + .z_init_POST_KERNEL35_0_ + 0x000000000000e23c 0x8 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .z_init_POST_KERNEL40_0_ + 0x000000000000e244 0x8 zephyr/libzephyr.a(usb_work_q.c.obj) + .z_init_POST_KERNEL40_0_ + 0x000000000000e24c 0x8 zephyr/kernel/libkernel.a(system_work_q.c.obj) + .z_init_POST_KERNEL50_00010_ + 0x000000000000e254 0x8 zephyr/drivers/adc/libdrivers__adc.a(adc_nrfx_saadc.c.obj) + .z_init_POST_KERNEL50_0_ + 0x000000000000e25c 0x8 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + .z_init_POST_KERNEL90_00056_ + 0x000000000000e264 0x8 zephyr/drivers/sensor/nordic/temp/libdrivers__sensor__nordic__temp.a(temp_nrf5.c.obj) + 0x000000000000e26c __init_APPLICATION_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_APPLICATION?_*))) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_APPLICATION??_*))) + 0x000000000000e26c __init_SMP_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_SMP?_*))) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_SMP??_*))) + 0x000000000000e26c __init_end = . + 0x000000000000e26c __deferred_init_list_start = . + *(SORT_BY_ALIGNMENT(.z_deferred_init*)) + 0x000000000000e26c __deferred_init_list_end = . + +device_area 0x000000000000e26c 0x78 + 0x000000000000e26c _device_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._device.static.*_?_*))) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._device.static.*_??_*))) + ._device.static.1_30_ + 0x000000000000e26c 0x14 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + 0x000000000000e26c __device_dts_ord_25 + ._device.static.1_40_ + 0x000000000000e280 0x28 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + 0x000000000000e280 __device_dts_ord_19 + 0x000000000000e294 __device_dts_ord_12 + ._device.static.1_50_ + 0x000000000000e2a8 0x14 zephyr/libzephyr.a(cdc_acm.c.obj) + 0x000000000000e2a8 __device_dts_ord_84 + ._device.static.3_50_ + 0x000000000000e2bc 0x14 zephyr/drivers/adc/libdrivers__adc.a(adc_nrfx_saadc.c.obj) + 0x000000000000e2bc __device_dts_ord_10 + ._device.static.3_90_ + 0x000000000000e2d0 0x14 zephyr/drivers/sensor/nordic/temp/libdrivers__sensor__nordic__temp.a(temp_nrf5.c.obj) + 0x000000000000e2d0 __device_dts_ord_56 + 0x000000000000e2e4 _device_list_end = . + +sw_isr_table 0x000000000000e2e4 0x180 + 0x000000000000e2e4 . = ALIGN (0x4) + *(SORT_BY_ALIGNMENT(.gnu.linkonce.sw_isr_table*)) + .gnu.linkonce.sw_isr_table + 0x000000000000e2e4 0x180 zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj + 0x000000000000e2e4 _sw_isr_table + +initlevel_error + 0x000000000000e1ec 0x0 + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_[_A-Z0-9]*))) + 0x0000000000000001 ASSERT ((SIZEOF (initlevel_error) == 0x0), Undefined initialization levels used.) + +app_shmem_regions + 0x000000000000e464 0x0 + 0x000000000000e464 __app_shmem_regions_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.app_regions.*))) + 0x000000000000e464 __app_shmem_regions_end = . + +k_p4wq_initparam_area + 0x000000000000e464 0x0 + 0x000000000000e464 _k_p4wq_initparam_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_p4wq_initparam.static.*))) + 0x000000000000e464 _k_p4wq_initparam_list_end = . + +_static_thread_data_area + 0x000000000000e464 0x0 + 0x000000000000e464 __static_thread_data_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.__static_thread_data.static.*))) + 0x000000000000e464 __static_thread_data_list_end = . + +device_deps 0x000000000000e464 0x0 + 0x000000000000e464 __device_deps_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.__device_deps_pass2*))) + 0x000000000000e464 __device_deps_end = . + +adc_driver_api_area + 0x000000000000e464 0xc + 0x000000000000e464 _adc_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._adc_driver_api.static.*))) + ._adc_driver_api.static.adc_nrfx_driver_api_ + 0x000000000000e464 0xc zephyr/drivers/adc/libdrivers__adc.a(adc_nrfx_saadc.c.obj) + 0x000000000000e470 _adc_driver_api_list_end = . + +gpio_driver_api_area + 0x000000000000e470 0x24 + 0x000000000000e470 _gpio_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._gpio_driver_api.static.*))) + ._gpio_driver_api.static.gpio_nrfx_drv_api_funcs_ + 0x000000000000e470 0x24 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + 0x000000000000e494 _gpio_driver_api_list_end = . + +sensor_driver_api_area + 0x000000000000e494 0x1c + 0x000000000000e494 _sensor_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._sensor_driver_api.static.*))) + ._sensor_driver_api.static.temp_nrf5_driver_api_ + 0x000000000000e494 0x1c zephyr/drivers/sensor/nordic/temp/libdrivers__sensor__nordic__temp.a(temp_nrf5.c.obj) + 0x000000000000e4b0 _sensor_driver_api_list_end = . + +shared_irq_driver_api_area + 0x000000000000e4b0 0x0 + 0x000000000000e4b0 _shared_irq_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._shared_irq_driver_api.static.*))) + 0x000000000000e4b0 _shared_irq_driver_api_list_end = . + +crypto_driver_api_area + 0x000000000000e4b0 0x0 + 0x000000000000e4b0 _crypto_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._crypto_driver_api.static.*))) + 0x000000000000e4b0 _crypto_driver_api_list_end = . + +auxdisplay_driver_api_area + 0x000000000000e4b0 0x0 + 0x000000000000e4b0 _auxdisplay_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._auxdisplay_driver_api.static.*))) + 0x000000000000e4b0 _auxdisplay_driver_api_list_end = . + +bbram_driver_api_area + 0x000000000000e4b0 0x0 + 0x000000000000e4b0 _bbram_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._bbram_driver_api.static.*))) + 0x000000000000e4b0 _bbram_driver_api_list_end = . + +bt_hci_driver_api_area + 0x000000000000e4b0 0x0 + 0x000000000000e4b0 _bt_hci_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._bt_hci_driver_api.static.*))) + 0x000000000000e4b0 _bt_hci_driver_api_list_end = . + +can_driver_api_area + 0x000000000000e4b0 0x0 + 0x000000000000e4b0 _can_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._can_driver_api.static.*))) + 0x000000000000e4b0 _can_driver_api_list_end = . + +cellular_driver_api_area + 0x000000000000e4b0 0x0 + 0x000000000000e4b0 _cellular_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._cellular_driver_api.static.*))) + 0x000000000000e4b0 _cellular_driver_api_list_end = . + +charger_driver_api_area + 0x000000000000e4b0 0x0 + 0x000000000000e4b0 _charger_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._charger_driver_api.static.*))) + 0x000000000000e4b0 _charger_driver_api_list_end = . + +clock_control_driver_api_area + 0x000000000000e4b0 0x1c + 0x000000000000e4b0 _clock_control_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._clock_control_driver_api.static.*))) + ._clock_control_driver_api.static.clock_control_api_ + 0x000000000000e4b0 0x1c zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + 0x000000000000e4cc _clock_control_driver_api_list_end = . + +comparator_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _comparator_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._comparator_driver_api.static.*))) + 0x000000000000e4cc _comparator_driver_api_list_end = . + +coredump_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _coredump_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._coredump_driver_api.static.*))) + 0x000000000000e4cc _coredump_driver_api_list_end = . + +counter_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _counter_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._counter_driver_api.static.*))) + 0x000000000000e4cc _counter_driver_api_list_end = . + +dac_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _dac_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._dac_driver_api.static.*))) + 0x000000000000e4cc _dac_driver_api_list_end = . + +dai_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _dai_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._dai_driver_api.static.*))) + 0x000000000000e4cc _dai_driver_api_list_end = . + +display_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _display_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._display_driver_api.static.*))) + 0x000000000000e4cc _display_driver_api_list_end = . + +dma_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _dma_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._dma_driver_api.static.*))) + 0x000000000000e4cc _dma_driver_api_list_end = . + +edac_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _edac_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._edac_driver_api.static.*))) + 0x000000000000e4cc _edac_driver_api_list_end = . + +eeprom_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _eeprom_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._eeprom_driver_api.static.*))) + 0x000000000000e4cc _eeprom_driver_api_list_end = . + +emul_bbram_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _emul_bbram_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._emul_bbram_driver_api.static.*))) + 0x000000000000e4cc _emul_bbram_driver_api_list_end = . + +fuel_gauge_emul_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _fuel_gauge_emul_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._fuel_gauge_emul_driver_api.static.*))) + 0x000000000000e4cc _fuel_gauge_emul_driver_api_list_end = . + +emul_sensor_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _emul_sensor_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._emul_sensor_driver_api.static.*))) + 0x000000000000e4cc _emul_sensor_driver_api_list_end = . + +entropy_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _entropy_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._entropy_driver_api.static.*))) + 0x000000000000e4cc _entropy_driver_api_list_end = . + +espi_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _espi_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._espi_driver_api.static.*))) + 0x000000000000e4cc _espi_driver_api_list_end = . + +espi_saf_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _espi_saf_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._espi_saf_driver_api.static.*))) + 0x000000000000e4cc _espi_saf_driver_api_list_end = . + +flash_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _flash_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._flash_driver_api.static.*))) + 0x000000000000e4cc _flash_driver_api_list_end = . + +fpga_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _fpga_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._fpga_driver_api.static.*))) + 0x000000000000e4cc _fpga_driver_api_list_end = . + +fuel_gauge_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _fuel_gauge_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._fuel_gauge_driver_api.static.*))) + 0x000000000000e4cc _fuel_gauge_driver_api_list_end = . + +gnss_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _gnss_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._gnss_driver_api.static.*))) + 0x000000000000e4cc _gnss_driver_api_list_end = . + +haptics_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _haptics_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._haptics_driver_api.static.*))) + 0x000000000000e4cc _haptics_driver_api_list_end = . + +hwspinlock_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _hwspinlock_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._hwspinlock_driver_api.static.*))) + 0x000000000000e4cc _hwspinlock_driver_api_list_end = . + +i2c_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _i2c_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._i2c_driver_api.static.*))) + 0x000000000000e4cc _i2c_driver_api_list_end = . + +i2c_target_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _i2c_target_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._i2c_target_driver_api.static.*))) + 0x000000000000e4cc _i2c_target_driver_api_list_end = . + +i2s_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _i2s_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._i2s_driver_api.static.*))) + 0x000000000000e4cc _i2s_driver_api_list_end = . + +i3c_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _i3c_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._i3c_driver_api.static.*))) + 0x000000000000e4cc _i3c_driver_api_list_end = . + +ipm_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _ipm_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._ipm_driver_api.static.*))) + 0x000000000000e4cc _ipm_driver_api_list_end = . + +kscan_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _kscan_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._kscan_driver_api.static.*))) + 0x000000000000e4cc _kscan_driver_api_list_end = . + +led_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _led_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._led_driver_api.static.*))) + 0x000000000000e4cc _led_driver_api_list_end = . + +led_strip_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _led_strip_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._led_strip_driver_api.static.*))) + 0x000000000000e4cc _led_strip_driver_api_list_end = . + +lora_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _lora_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._lora_driver_api.static.*))) + 0x000000000000e4cc _lora_driver_api_list_end = . + +mbox_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _mbox_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._mbox_driver_api.static.*))) + 0x000000000000e4cc _mbox_driver_api_list_end = . + +mdio_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _mdio_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._mdio_driver_api.static.*))) + 0x000000000000e4cc _mdio_driver_api_list_end = . + +mipi_dbi_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _mipi_dbi_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._mipi_dbi_driver_api.static.*))) + 0x000000000000e4cc _mipi_dbi_driver_api_list_end = . + +mipi_dsi_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _mipi_dsi_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._mipi_dsi_driver_api.static.*))) + 0x000000000000e4cc _mipi_dsi_driver_api_list_end = . + +mspi_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _mspi_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._mspi_driver_api.static.*))) + 0x000000000000e4cc _mspi_driver_api_list_end = . + +peci_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _peci_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._peci_driver_api.static.*))) + 0x000000000000e4cc _peci_driver_api_list_end = . + +ps2_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _ps2_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._ps2_driver_api.static.*))) + 0x000000000000e4cc _ps2_driver_api_list_end = . + +ptp_clock_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _ptp_clock_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._ptp_clock_driver_api.static.*))) + 0x000000000000e4cc _ptp_clock_driver_api_list_end = . + +pwm_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _pwm_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._pwm_driver_api.static.*))) + 0x000000000000e4cc _pwm_driver_api_list_end = . + +regulator_parent_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _regulator_parent_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._regulator_parent_driver_api.static.*))) + 0x000000000000e4cc _regulator_parent_driver_api_list_end = . + +regulator_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _regulator_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._regulator_driver_api.static.*))) + 0x000000000000e4cc _regulator_driver_api_list_end = . + +reset_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _reset_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._reset_driver_api.static.*))) + 0x000000000000e4cc _reset_driver_api_list_end = . + +retained_mem_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _retained_mem_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._retained_mem_driver_api.static.*))) + 0x000000000000e4cc _retained_mem_driver_api_list_end = . + +rtc_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _rtc_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._rtc_driver_api.static.*))) + 0x000000000000e4cc _rtc_driver_api_list_end = . + +sdhc_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _sdhc_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._sdhc_driver_api.static.*))) + 0x000000000000e4cc _sdhc_driver_api_list_end = . + +smbus_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _smbus_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._smbus_driver_api.static.*))) + 0x000000000000e4cc _smbus_driver_api_list_end = . + +spi_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _spi_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._spi_driver_api.static.*))) + 0x000000000000e4cc _spi_driver_api_list_end = . + +stepper_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _stepper_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._stepper_driver_api.static.*))) + 0x000000000000e4cc _stepper_driver_api_list_end = . + +syscon_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _syscon_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._syscon_driver_api.static.*))) + 0x000000000000e4cc _syscon_driver_api_list_end = . + +tee_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _tee_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._tee_driver_api.static.*))) + 0x000000000000e4cc _tee_driver_api_list_end = . + +video_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _video_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._video_driver_api.static.*))) + 0x000000000000e4cc _video_driver_api_list_end = . + +w1_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _w1_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._w1_driver_api.static.*))) + 0x000000000000e4cc _w1_driver_api_list_end = . + +wdt_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _wdt_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._wdt_driver_api.static.*))) + 0x000000000000e4cc _wdt_driver_api_list_end = . + +can_transceiver_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _can_transceiver_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._can_transceiver_driver_api.static.*))) + 0x000000000000e4cc _can_transceiver_driver_api_list_end = . + +nrf_clock_control_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _nrf_clock_control_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._nrf_clock_control_driver_api.static.*))) + 0x000000000000e4cc _nrf_clock_control_driver_api_list_end = . + +i3c_target_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _i3c_target_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._i3c_target_driver_api.static.*))) + 0x000000000000e4cc _i3c_target_driver_api_list_end = . + +its_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _its_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._its_driver_api.static.*))) + 0x000000000000e4cc _its_driver_api_list_end = . + +vtd_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _vtd_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._vtd_driver_api.static.*))) + 0x000000000000e4cc _vtd_driver_api_list_end = . + +tgpio_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _tgpio_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._tgpio_driver_api.static.*))) + 0x000000000000e4cc _tgpio_driver_api_list_end = . + +pcie_ctrl_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _pcie_ctrl_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._pcie_ctrl_driver_api.static.*))) + 0x000000000000e4cc _pcie_ctrl_driver_api_list_end = . + +pcie_ep_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _pcie_ep_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._pcie_ep_driver_api.static.*))) + 0x000000000000e4cc _pcie_ep_driver_api_list_end = . + +svc_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _svc_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._svc_driver_api.static.*))) + 0x000000000000e4cc _svc_driver_api_list_end = . + +uart_driver_api_area + 0x000000000000e4cc 0x4c + 0x000000000000e4cc _uart_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._uart_driver_api.static.*))) + ._uart_driver_api.static.cdc_acm_driver_api_ + 0x000000000000e4cc 0x4c zephyr/libzephyr.a(cdc_acm.c.obj) + 0x000000000000e518 _uart_driver_api_list_end = . + +bc12_emul_driver_api_area + 0x000000000000e518 0x0 + 0x000000000000e518 _bc12_emul_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._bc12_emul_driver_api.static.*))) + 0x000000000000e518 _bc12_emul_driver_api_list_end = . + +bc12_driver_api_area + 0x000000000000e518 0x0 + 0x000000000000e518 _bc12_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._bc12_driver_api.static.*))) + 0x000000000000e518 _bc12_driver_api_list_end = . + +usbc_ppc_driver_api_area + 0x000000000000e518 0x0 + 0x000000000000e518 _usbc_ppc_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._usbc_ppc_driver_api.static.*))) + 0x000000000000e518 _usbc_ppc_driver_api_list_end = . + +tcpc_driver_api_area + 0x000000000000e518 0x0 + 0x000000000000e518 _tcpc_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._tcpc_driver_api.static.*))) + 0x000000000000e518 _tcpc_driver_api_list_end = . + +usbc_vbus_driver_api_area + 0x000000000000e518 0x0 + 0x000000000000e518 _usbc_vbus_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._usbc_vbus_driver_api.static.*))) + 0x000000000000e518 _usbc_vbus_driver_api_list_end = . + +ivshmem_driver_api_area + 0x000000000000e518 0x0 + 0x000000000000e518 _ivshmem_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._ivshmem_driver_api.static.*))) + 0x000000000000e518 _ivshmem_driver_api_list_end = . + +ethphy_driver_api_area + 0x000000000000e518 0x0 + 0x000000000000e518 _ethphy_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._ethphy_driver_api.static.*))) + 0x000000000000e518 _ethphy_driver_api_list_end = . + +ztest 0x000000000000e518 0x0 + 0x000000000000e518 _ztest_expected_result_entry_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._ztest_expected_result_entry.static.*))) + 0x000000000000e518 _ztest_expected_result_entry_list_end = . + 0x000000000000e518 _ztest_suite_node_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._ztest_suite_node.static.*))) + 0x000000000000e518 _ztest_suite_node_list_end = . + 0x000000000000e518 _ztest_unit_test_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._ztest_unit_test.static.*))) + 0x000000000000e518 _ztest_unit_test_list_end = . + 0x000000000000e518 _ztest_test_rule_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._ztest_test_rule.static.*))) + 0x000000000000e518 _ztest_test_rule_list_end = . + +init_array 0x000000000000e518 0x0 + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.ctors*))) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.init_array*))) + 0x0000000000000001 ASSERT ((SIZEOF (init_array) == 0x0), GNU-style constructors required but STATIC_INIT_GNU not enabled) + +bt_l2cap_fixed_chan_area + 0x000000000000e518 0x0 + 0x000000000000e518 _bt_l2cap_fixed_chan_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._bt_l2cap_fixed_chan.static.*))) + 0x000000000000e518 _bt_l2cap_fixed_chan_list_end = . + +bt_gatt_service_static_area + 0x000000000000e518 0x0 + 0x000000000000e518 _bt_gatt_service_static_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._bt_gatt_service_static.static.*))) + 0x000000000000e518 _bt_gatt_service_static_list_end = . + +log_strings_area + 0x000000000000e518 0x0 + 0x000000000000e518 _log_strings_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._log_strings.static.*))) + 0x000000000000e518 _log_strings_list_end = . + +log_stmesp_ptr_area + 0x000000000000e518 0x0 + 0x000000000000e518 _log_stmesp_ptr_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._log_stmesp_ptr.static.*))) + 0x000000000000e518 _log_stmesp_ptr_list_end = . + +log_stmesp_str_area + 0x000000000000e518 0x0 + 0x000000000000e518 _log_stmesp_str_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._log_stmesp_str.static.*))) + 0x000000000000e518 _log_stmesp_str_list_end = . + +log_const_area 0x000000000000e518 0x0 + 0x000000000000e518 _log_const_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._log_const.static.*))) + 0x000000000000e518 _log_const_list_end = . + +log_backend_area + 0x000000000000e518 0x0 + 0x000000000000e518 _log_backend_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._log_backend.static.*))) + 0x000000000000e518 _log_backend_list_end = . + +log_link_area 0x000000000000e518 0x0 + 0x000000000000e518 _log_link_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._log_link.static.*))) + 0x000000000000e518 _log_link_list_end = . + +tracing_backend_area + 0x000000000000e518 0x0 + 0x000000000000e518 _tracing_backend_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._tracing_backend.static.*))) + 0x000000000000e518 _tracing_backend_list_end = . + +zephyr_dbg_info + *(SORT_BY_ALIGNMENT(.dbg_thread_info)) + +intc_table_area + 0x000000000000e518 0x0 + 0x000000000000e518 _intc_table_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._intc_table.static.*))) + 0x000000000000e518 _intc_table_list_end = . + +symbol_to_keep 0x000000000000e518 0x0 + 0x000000000000e518 __symbol_to_keep_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.symbol_to_keep*))) + 0x000000000000e518 __symbol_to_keep_end = . + +shell_area 0x000000000000e518 0x0 + 0x000000000000e518 _shell_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._shell.static.*))) + 0x000000000000e518 _shell_list_end = . + +shell_root_cmds_area + 0x000000000000e518 0x0 + 0x000000000000e518 _shell_root_cmds_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._shell_root_cmds.static.*))) + 0x000000000000e518 _shell_root_cmds_list_end = . + +shell_subcmds_area + 0x000000000000e518 0x0 + 0x000000000000e518 _shell_subcmds_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._shell_subcmds.static.*))) + 0x000000000000e518 _shell_subcmds_list_end = . + +shell_dynamic_subcmds_area + 0x000000000000e518 0x0 + 0x000000000000e518 _shell_dynamic_subcmds_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._shell_dynamic_subcmds.static.*))) + 0x000000000000e518 _shell_dynamic_subcmds_list_end = . + +cfb_font_area 0x000000000000e518 0x0 + 0x000000000000e518 _cfb_font_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._cfb_font.static.*))) + 0x000000000000e518 _cfb_font_list_end = . + +tdata 0x000000000000e518 0x0 + *(SORT_BY_ALIGNMENT(.tdata) SORT_BY_ALIGNMENT(.tdata.*) SORT_BY_ALIGNMENT(.gnu.linkonce.td.*)) + +tbss 0x000000000000e518 0x4 + *(SORT_BY_ALIGNMENT(.tbss) SORT_BY_ALIGNMENT(.tbss.*) SORT_BY_ALIGNMENT(.gnu.linkonce.tb.*) SORT_BY_ALIGNMENT(.tcommon)) + .tbss.z_tls_current + 0x000000000000e518 0x4 zephyr/libzephyr.a(thread_entry.c.obj) + 0x000000000000e518 z_tls_current + 0x000000000000e518 PROVIDE (__tdata_start = LOADADDR (tdata)) + 0x0000000000000001 PROVIDE (__tdata_align = ALIGNOF (tdata)) + 0x0000000000000000 PROVIDE (__tdata_size = (((SIZEOF (tdata) + __tdata_align) - 0x1) & ~ ((__tdata_align - 0x1)))) + [!provide] PROVIDE (__tdata_end = (__tdata_start + __tdata_size)) + 0x0000000000000004 PROVIDE (__tbss_align = ALIGNOF (tbss)) + [!provide] PROVIDE (__tbss_start = ADDR (tbss)) + 0x0000000000000004 PROVIDE (__tbss_size = (((SIZEOF (tbss) + __tbss_align) - 0x1) & ~ ((__tbss_align - 0x1)))) + [!provide] PROVIDE (__tbss_end = (__tbss_start + __tbss_size)) + [!provide] PROVIDE (__tls_start = __tdata_start) + [!provide] PROVIDE (__tls_end = __tbss_end) + [!provide] PROVIDE (__tls_size = (__tbss_end - __tdata_start)) + +rodata 0x000000000000e520 0x2368 + *(SORT_BY_ALIGNMENT(.rodata)) + .rodata 0x000000000000e520 0x7 zephyr/libzephyr.a(cdc_acm.c.obj) + *fill* 0x000000000000e527 0x1 + .rodata 0x000000000000e528 0x8 zephyr/kernel/libkernel.a(system_work_q.c.obj) + *(SORT_BY_ALIGNMENT(.rodata.*)) + .rodata.delay_machine_code.0 + 0x000000000000e530 0x6 zephyr/soc/soc/nrf52833/libsoc__nordic.a(soc.c.obj) + *fill* 0x000000000000e536 0x2 + .rodata.main.str1.4 + 0x000000000000e538 0xf9 app/libapp.a(main.c.obj) + *fill* 0x000000000000e631 0x3 + .rodata.z_impl_gpio_pin_configure.isra.0.str1.4 + 0x000000000000e634 0x366 app/libapp.a(led.c.obj) + *fill* 0x000000000000e99a 0x2 + .rodata.led_init.str1.4 + 0x000000000000e99c 0x17 app/libapp.a(led.c.obj) + *fill* 0x000000000000e9b3 0x1 + .rodata.button_init.str1.4 + 0x000000000000e9b4 0x19 app/libapp.a(button.c.obj) + 0xc2 (size before relaxing) + .rodata.z_impl_gpio_pin_configure.isra.0.str1.4 + 0x000000000000e9cd 0x366 app/libapp.a(actuator.c.obj) + *fill* 0x000000000000e9cd 0x3 + .rodata.battery_adc_init.str1.4 + 0x000000000000e9d0 0xf app/libapp.a(battery_adc.c.obj) + 0xb6 (size before relaxing) + *fill* 0x000000000000e9df 0x1 + .rodata.adc_channel + 0x000000000000e9e0 0x14 app/libapp.a(battery_adc.c.obj) + .rodata.TIMER1_IRQHandler.str1.4 + 0x000000000000e9f4 0xa6 app/libapp.a(timer_count.c.obj) + .rodata.configure_clock_pin.str1.4 + 0x000000000000e9f4 0x57 app/libapp.a(timer_count.c.obj) + *fill* 0x000000000000ea4b 0x1 + .rodata.configure_measurement.str1.4 + 0x000000000000ea4c 0x38 app/libapp.a(timer_count.c.obj) + .rodata.sys_heap_free.str1.4 + 0x000000000000ea84 0xd4 zephyr/libzephyr.a(heap.c.obj) + 0xf4 (size before relaxing) + .rodata.sys_heap_aligned_alloc.str1.4 + 0x000000000000eb58 0x39 zephyr/libzephyr.a(heap.c.obj) + *fill* 0x000000000000eb91 0x3 + .rodata.sys_heap_init.str1.4 + 0x000000000000eb94 0x97 zephyr/libzephyr.a(heap.c.obj) + *fill* 0x000000000000ec2b 0x1 + .rodata.process_event.str1.4 + 0x000000000000ec2c 0x10a zephyr/libzephyr.a(onoff.c.obj) + 0x12e (size before relaxing) + *fill* 0x000000000000ed36 0x2 + .rodata.onoff_release.str1.4 + 0x000000000000ed38 0xe zephyr/libzephyr.a(onoff.c.obj) + *fill* 0x000000000000ed46 0x2 + .rodata.onoff_cancel.str1.4 + 0x000000000000ed48 0x77 zephyr/libzephyr.a(onoff.c.obj) + *fill* 0x000000000000edbf 0x1 + .rodata.sys_notify_finalize.str1.4 + 0x000000000000edc0 0x26 zephyr/libzephyr.a(notify.c.obj) + 0x49 (size before relaxing) + *fill* 0x000000000000ede6 0x2 + .rodata.ring_buf_put.str1.4 + 0x000000000000ede8 0x35 zephyr/libzephyr.a(ring_buffer.c.obj) + 0x55 (size before relaxing) + *fill* 0x000000000000ee1d 0x3 + .rodata.mem_attr_region + 0x000000000000ee20 0x0 zephyr/libzephyr.a(mem_attr.c.obj) + .rodata.custom_handler.str1.4 + 0x000000000000ee20 0x77 zephyr/libzephyr.a(usb_device.c.obj) + 0x97 (size before relaxing) + .rodata.usb_handle_control_transfer.str1.4 + 0x000000000000ee97 0x2 zephyr/libzephyr.a(usb_device.c.obj) + *fill* 0x000000000000ee97 0x1 + .rodata.usb_update_sn_string_descriptor.str1.4 + 0x000000000000ee98 0x11 zephyr/libzephyr.a(usb_descriptor.c.obj) + *fill* 0x000000000000eea9 0x3 + .rodata.usb_get_device_descriptor.str1.4 + 0x000000000000eeac 0xee zephyr/libzephyr.a(usb_descriptor.c.obj) + 0x152 (size before relaxing) + *fill* 0x000000000000ef9a 0x2 + .rodata.str1.4 + 0x000000000000ef9c 0xe zephyr/libzephyr.a(cdc_acm.c.obj) + *fill* 0x000000000000efaa 0x2 + .rodata.z_usb_work_q_init.str1.4 + 0x000000000000efac 0x9 zephyr/libzephyr.a(usb_work_q.c.obj) + *fill* 0x000000000000efb5 0x3 + .rodata.boot_banner.str1.4 + 0x000000000000efb8 0x66 zephyr/libzephyr.a(banner.c.obj) + *fill* 0x000000000000f01e 0x2 + .rodata.mem_manage_fault.str1.4 + 0x000000000000f020 0xa3 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault.c.obj) + 0xc3 (size before relaxing) + *fill* 0x000000000000f0c3 0x1 + .rodata.z_arm_fault.str1.4 + 0x000000000000f0c4 0xa8 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault.c.obj) + 0xac (size before relaxing) + .rodata.z_arm_irq_priority_set.str1.4 + 0x000000000000f16c 0x94 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + 0xb4 (size before relaxing) + .rodata.static_regions + 0x000000000000f200 0xc zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_core_mpu.c.obj) + .rodata.arm_core_mpu_configure_static_mpu_regions.str1.4 + 0x000000000000f20c 0x5c zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_mpu.c.obj) + 0x80 (size before relaxing) + .rodata.arm_core_mpu_configure_dynamic_mpu_regions.str1.4 + 0x000000000000f268 0x2d zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_mpu.c.obj) + *fill* 0x000000000000f295 0x3 + .rodata.z_arm_mpu_init.str1.4 + 0x000000000000f298 0x129 zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_mpu.c.obj) + *fill* 0x000000000000f3c1 0x3 + .rodata.mpu_config + 0x000000000000f3c4 0x8 zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_mpu_regions.c.obj) + 0x000000000000f3c4 mpu_config + .rodata.str1.4 + 0x000000000000f3cc 0xf zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_mpu_regions.c.obj) + *fill* 0x000000000000f3db 0x1 + .rodata.mpu_regions + 0x000000000000f3dc 0x18 zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_mpu_regions.c.obj) + .rodata.usb_init.str1.4 + 0x000000000000f3f4 0xb zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + *fill* 0x000000000000f3ff 0x1 + .rodata.usbd_evt_alloc.part.0.str1.4 + 0x000000000000f400 0x34 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + 0x55 (size before relaxing) + .rodata.usbd_work_handler.str1.4 + 0x000000000000f434 0x55 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + 0x61 (size before relaxing) + *fill* 0x000000000000f489 0x3 + .rodata.usb_dc_set_address.str1.4 + 0x000000000000f48c 0x55 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + *fill* 0x000000000000f4e1 0x3 + .rodata.CSWTCH.96 + 0x000000000000f4e4 0x3 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + *fill* 0x000000000000f4e7 0x1 + .rodata.usbevt_config.0 + 0x000000000000f4e8 0x4 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + .rodata.power_config.1 + 0x000000000000f4ec 0x1 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + *fill* 0x000000000000f4ed 0x3 + .rodata.ep_state_access.part.0.str1.4 + 0x000000000000f4f0 0xa2 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + 0xc1 (size before relaxing) + *fill* 0x000000000000f592 0x2 + .rodata.nrf_usbd_common_irq_handler.str1.4 + 0x000000000000f594 0xe5 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + *fill* 0x000000000000f679 0x3 + .rodata.nrf_usbd_common_uninit.str1.4 + 0x000000000000f67c 0x2a zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + *fill* 0x000000000000f6a6 0x2 + .rodata.nrf_usbd_common_enable.str1.4 + 0x000000000000f6a8 0x25 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + *fill* 0x000000000000f6cd 0x3 + .rodata.nrf_usbd_common_start.str1.4 + 0x000000000000f6d0 0x29 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + *fill* 0x000000000000f6f9 0x3 + .rodata.nrf_usbd_common_ep_max_packet_size_set.str1.4 + 0x000000000000f6fc 0xba zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + *fill* 0x000000000000f7b6 0x2 + .rodata.nrf_usbd_common_init.str1.4 + 0x000000000000f7b8 0xe zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + *fill* 0x000000000000f7c6 0x2 + .rodata.nrf_usbd_common_ep_transfer.str1.4 + 0x000000000000f7c8 0x87 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + *fill* 0x000000000000f84f 0x1 + .rodata.nrf_usbd_common_ep_stall.str1.4 + 0x000000000000f850 0x13 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + *fill* 0x000000000000f863 0x1 + .rodata.nrf_usbd_common_transfer_out_drop.str1.4 + 0x000000000000f864 0x13 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + *fill* 0x000000000000f877 0x1 + .rodata.nrf_usbd_common_disable.str1.4 + 0x000000000000f878 0x2c zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + .rodata.gains.0 + 0x000000000000f8a4 0x2a zephyr/drivers/adc/libdrivers__adc.a(adc_common.c.obj) + *fill* 0x000000000000f8ce 0x2 + .rodata.str1.4 + 0x000000000000f8d0 0xd zephyr/drivers/adc/libdrivers__adc.a(adc_nrfx_saadc.c.obj) + *fill* 0x000000000000f8dd 0x3 + .rodata.get_status.str1.4 + 0x000000000000f8e0 0x64 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + 0x81 (size before relaxing) + .rodata.clock_event_handler.str1.4 + 0x000000000000f944 0x2 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .rodata.z_nrf_clock_control_lf_on.str1.4 + 0x000000000000f944 0x9 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .rodata.transitions.0 + 0x000000000000f944 0xc zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .rodata.str1.4 + 0x000000000000f950 0xf zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + *fill* 0x000000000000f95f 0x1 + .rodata.config + 0x000000000000f960 0x10 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .rodata.gpio_nrfx_manage_callback.str1.4 + 0x000000000000f970 0x83 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + 0xa3 (size before relaxing) + .rodata.nrf_gpio_pin_port_decode.part.0.str1.4 + 0x000000000000f9f3 0x57 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + *fill* 0x000000000000f9f3 0x1 + .rodata.gpio_nrfx_pin_configure.str1.4 + 0x000000000000f9f4 0x40 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + .rodata.nrfx_gpio_handler.str1.4 + 0x000000000000fa34 0xc zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + .rodata.str1.4 + 0x000000000000fa40 0x1e zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + *fill* 0x000000000000fa5e 0x2 + .rodata.gpio_nrfx_p1_cfg + 0x000000000000fa60 0x18 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + .rodata.gpio_nrfx_p0_cfg + 0x000000000000fa78 0x18 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + .rodata.temp_nrf5_init.str1.4 + 0x000000000000fa90 0x4a zephyr/drivers/sensor/nordic/temp/libdrivers__sensor__nordic__temp.a(temp_nrf5.c.obj) + 0x69 (size before relaxing) + *fill* 0x000000000000fada 0x2 + .rodata.temp_nrf5_sample_fetch.str1.4 + 0x000000000000fadc 0x7 zephyr/drivers/sensor/nordic/temp/libdrivers__sensor__nordic__temp.a(temp_nrf5.c.obj) + *fill* 0x000000000000fae3 0x1 + .rodata.str1.4 + 0x000000000000fae4 0xe zephyr/drivers/sensor/nordic/temp/libdrivers__sensor__nordic__temp.a(temp_nrf5.c.obj) + *fill* 0x000000000000faf2 0x2 + .rodata.clock_stop.str1.4 + 0x000000000000faf4 0x74 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_clock.c.obj) + 0x98 (size before relaxing) + .rodata.nrfx_clock_enable.str1.4 + 0x000000000000fb68 0x1e modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_clock.c.obj) + .rodata.nrf_gpio_pin_port_decode.part.0.str1.4 + 0x000000000000fb86 0x75 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + *fill* 0x000000000000fb86 0x2 + .rodata.release_handler.isra.0.str1.4 + 0x000000000000fb88 0x3e modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + 0x54 (size before relaxing) + *fill* 0x000000000000fbc6 0x2 + .rodata.pin_in_event_get.constprop.0.str1.4 + 0x000000000000fbc8 0x65 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + *fill* 0x000000000000fc2d 0x3 + .rodata.nrfx_gpiote_channel_get.str1.4 + 0x000000000000fc30 0xa modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + *fill* 0x000000000000fc3a 0x2 + .rodata.nrfx_gpiote_init.str1.4 + 0x000000000000fc3c 0x42 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + *fill* 0x000000000000fc7e 0x2 + .rodata.nrfx_gpiote_trigger_enable.str1.4 + 0x000000000000fc80 0xb modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + *fill* 0x000000000000fc8b 0x1 + .rodata.port_offset.1 + 0x000000000000fc8c 0x10 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .rodata.ports 0x000000000000fc9c 0x2 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + *fill* 0x000000000000fc9e 0x2 + .rodata.nrfx_power_init.str1.4 + 0x000000000000fca0 0x49 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + 0x69 (size before relaxing) + *fill* 0x000000000000fce9 0x3 + .rodata.nrfx_power_pof_init.str1.4 + 0x000000000000fcec 0x18 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + .rodata.nrfx_power_irq_handler.str1.4 + 0x000000000000fd04 0x68 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + .rodata.nrfx_temp_init.str1.4 + 0x000000000000fd6c 0x3c modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_temp.c.obj) + 0x65 (size before relaxing) + .rodata.nrfx_temp_uninit.str1.4 + 0x000000000000fda8 0x2b modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_temp.c.obj) + *fill* 0x000000000000fdd3 0x1 + .rodata._DoInit.str1.4 + 0x000000000000fdd4 0x9 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + *fill* 0x000000000000fddd 0x3 + .rodata._aInitStr + 0x000000000000fde0 0x11 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + *fill* 0x000000000000fdf1 0x3 + .rodata.z_device_state_init.str1.4 + 0x000000000000fdf4 0x3c zephyr/kernel/libkernel.a(device.c.obj) + 0x7b (size before relaxing) + .rodata.z_fatal_error.str1.4 + 0x000000000000fe30 0x79 zephyr/kernel/libkernel.a(fatal.c.obj) + 0x99 (size before relaxing) + *fill* 0x000000000000fea9 0x3 + .rodata.bg_thread_main.str1.4 + 0x000000000000feac 0x51 zephyr/kernel/libkernel.a(init.c.obj) + 0x93 (size before relaxing) + *fill* 0x000000000000fefd 0x3 + .rodata.z_cstart.str1.4 + 0x000000000000ff00 0x5 zephyr/kernel/libkernel.a(init.c.obj) + *fill* 0x000000000000ff05 0x3 + .rodata.levels.0 + 0x000000000000ff08 0x18 zephyr/kernel/libkernel.a(init.c.obj) + .rodata.init_mem_slab_obj_core_list.str1.4 + 0x000000000000ff20 0x45 zephyr/kernel/libkernel.a(mem_slab.c.obj) + 0x87 (size before relaxing) + *fill* 0x000000000000ff65 0x3 + .rodata.k_mem_slab_alloc.str1.4 + 0x000000000000ff68 0x97 zephyr/kernel/libkernel.a(mem_slab.c.obj) + 0x125 (size before relaxing) + *fill* 0x000000000000ffff 0x1 + .rodata.k_mem_slab_free.str1.4 + 0x0000000000010000 0x83 zephyr/kernel/libkernel.a(mem_slab.c.obj) + 0x87 (size before relaxing) + *fill* 0x0000000000010083 0x1 + .rodata.idle.str1.4 + 0x0000000000010084 0x4c zephyr/kernel/libkernel.a(idle.c.obj) + 0x69 (size before relaxing) + .rodata.z_impl_k_mutex_lock.str1.4 + 0x00000000000100d0 0x5d zephyr/kernel/libkernel.a(mutex.c.obj) + 0x10d (size before relaxing) + *fill* 0x000000000001012d 0x3 + .rodata.z_impl_k_mutex_unlock.str1.4 + 0x0000000000010130 0x17 zephyr/kernel/libkernel.a(mutex.c.obj) + 0x77 (size before relaxing) + .rodata.queue_insert.str1.4 + 0x0000000000010147 0x10d zephyr/kernel/libkernel.a(queue.c.obj) + .rodata.z_impl_k_sem_give.str1.4 + 0x0000000000010147 0x10d zephyr/kernel/libkernel.a(sem.c.obj) + *fill* 0x0000000000010147 0x1 + .rodata.z_impl_k_sem_take.str1.4 + 0x0000000000010148 0x6e zephyr/kernel/libkernel.a(sem.c.obj) + *fill* 0x00000000000101b6 0x2 + .rodata.work_queue_main.str1.4 + 0x00000000000101b8 0x3b zephyr/kernel/libkernel.a(work.c.obj) + 0xeb (size before relaxing) + *fill* 0x00000000000101f3 0x1 + .rodata.submit_to_queue_locked.str1.4 + 0x00000000000101f4 0x1b zephyr/kernel/libkernel.a(work.c.obj) + *fill* 0x000000000001020f 0x1 + .rodata.work_flush_locked.str1.4 + 0x0000000000010210 0x15 zephyr/kernel/libkernel.a(work.c.obj) + *fill* 0x0000000000010225 0x3 + .rodata.k_work_init.str1.4 + 0x0000000000010228 0x14 zephyr/kernel/libkernel.a(work.c.obj) + .rodata.z_work_submit_to_queue.str1.4 + 0x000000000001023c 0x1d zephyr/kernel/libkernel.a(work.c.obj) + *fill* 0x0000000000010259 0x3 + .rodata.k_work_queue_start.str1.4 + 0x000000000001025c 0x44 zephyr/kernel/libkernel.a(work.c.obj) + .rodata.k_work_init_delayable.str1.4 + 0x00000000000102a0 0x15 zephyr/kernel/libkernel.a(work.c.obj) + *fill* 0x00000000000102b5 0x3 + .rodata.z_setup_new_thread.str1.4 + 0x00000000000102b8 0xd5 zephyr/kernel/libkernel.a(thread.c.obj) + 0xf5 (size before relaxing) + *fill* 0x000000000001038d 0x3 + .rodata.z_impl_k_thread_create.str1.4 + 0x0000000000010390 0x25 zephyr/kernel/libkernel.a(thread.c.obj) + 0x39 (size before relaxing) + *fill* 0x00000000000103b5 0x3 + .rodata.unready_thread.str1.4 + 0x00000000000103b8 0x9b zephyr/kernel/libkernel.a(sched.c.obj) + 0xbf (size before relaxing) + .rodata.unpend_thread_no_timeout.part.0.str1.4 + 0x0000000000010453 0x43 zephyr/kernel/libkernel.a(sched.c.obj) + .rodata.z_ready_thread.str1.4 + 0x0000000000010453 0x8d zephyr/kernel/libkernel.a(sched.c.obj) + *fill* 0x0000000000010453 0x1 + .rodata.z_pend_curr.str1.4 + 0x0000000000010454 0x39 zephyr/kernel/libkernel.a(sched.c.obj) + *fill* 0x000000000001048d 0x3 + .rodata.k_sched_lock.str1.4 + 0x0000000000010490 0x31 zephyr/kernel/libkernel.a(sched.c.obj) + 0x45 (size before relaxing) + *fill* 0x00000000000104c1 0x3 + .rodata.k_sched_unlock.str1.4 + 0x00000000000104c4 0x31 zephyr/kernel/libkernel.a(sched.c.obj) + *fill* 0x00000000000104f5 0x3 + .rodata.z_thread_abort.str1.4 + 0x00000000000104f8 0x4e zephyr/kernel/libkernel.a(sched.c.obj) + 0x52 (size before relaxing) + *fill* 0x0000000000010546 0x2 + .rodata.slice_timeout.str1.4 + 0x0000000000010548 0x1d9 zephyr/kernel/libkernel.a(timeslicing.c.obj) + 0x1f9 (size before relaxing) + .rodata.k_sched_time_slice_set.str1.4 + 0x0000000000010721 0x8d zephyr/kernel/libkernel.a(timeslicing.c.obj) + *fill* 0x0000000000010721 0x3 + .rodata.z_add_timeout.str1.4 + 0x0000000000010724 0x44 zephyr/kernel/libkernel.a(timeout.c.obj) + 0xf5 (size before relaxing) + .rodata.z_timer_expiration_handler.str1.4 + 0x0000000000010768 0xad zephyr/kernel/libkernel.a(timer.c.obj) + .rodata.z_thread_aligned_alloc.str1.4 + 0x0000000000010768 0x80 zephyr/kernel/libkernel.a(mempool.c.obj) + 0xa0 (size before relaxing) + .rodata.statics_init.str1.4 + 0x00000000000107e8 0x3d zephyr/kernel/libkernel.a(kheap.c.obj) + 0x7f (size before relaxing) + *fill* 0x0000000000010825 0x3 + .rodata.k_heap_aligned_alloc.str1.4 + 0x0000000000010828 0x46 zephyr/kernel/libkernel.a(kheap.c.obj) + 0xd9 (size before relaxing) + *fill* 0x000000000001086e 0x2 + .rodata.str1.4 + 0x0000000000010870 0x9 zephyr/kernel/libkernel.a(system_work_q.c.obj) + .rodata.__l_vfprintf.str1.1 + 0x0000000000010879 0xf /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_vflprintf.c.o) + *(SORT_BY_ALIGNMENT(.gnu.linkonce.r.*)) + 0x0000000000010888 . = ALIGN (0x4) + +/DISCARD/ + *(SORT_BY_ALIGNMENT(.eh_frame)) + 0x0000000000010888 __rodata_region_end = . + 0x00000000000108a0 . = ALIGN (_region_min_align) + 0x0000000000020000 . = ALIGN ((0x1 << LOG2CEIL ((__rodata_region_end - ADDR (rom_start))))) + 0x0000000000020000 __rom_region_end = ((__rom_region_start + .) - ADDR (rom_start)) + +/DISCARD/ + *(SORT_BY_ALIGNMENT(.got.plt)) + *(SORT_BY_ALIGNMENT(.igot.plt)) + *(SORT_BY_ALIGNMENT(.got)) + *(SORT_BY_ALIGNMENT(.igot)) + 0x0000000020000000 . = 0x20000000 + 0x0000000020000000 . = ALIGN (_region_min_align) + 0x0000000020000000 _image_ram_start = . + +_RTT_SECTION_NAME + 0x0000000020000000 0x4b8 + 0x0000000020000000 __rtt_buff_data_start = . + *(SORT_BY_ALIGNMENT(.rtt_buff_data)) + .rtt_buff_data + 0x0000000020000000 0x4b8 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + 0x0000000020000410 _SEGGER_RTT + 0x00000000200004b8 __rtt_buff_data_end = ALIGN (0x4) + 0x00000000000004b8 __rtt_buff_data_size = (__rtt_buff_data_end - __rtt_buff_data_start) + +.ramfunc 0x00000000200004b8 0x8 load address 0x0000000000010888 + 0x00000000200004b8 __ramfunc_region_start = . + 0x00000000200004c0 . = ALIGN (_region_min_align) + *fill* 0x00000000200004b8 0x8 + 0x00000000200004c0 . = ALIGN ((0x1 << LOG2CEIL (__ramfunc_size))) + 0x00000000200004c0 __ramfunc_start = . + *(SORT_BY_ALIGNMENT(.ramfunc)) + *(SORT_BY_ALIGNMENT(.ramfunc.*)) + 0x00000000200004c0 . = ALIGN (_region_min_align) + 0x00000000200004c0 . = ALIGN ((0x1 << LOG2CEIL (__ramfunc_size))) + 0x00000000200004c0 __ramfunc_end = . + 0x0000000000000000 __ramfunc_size = (__ramfunc_end - __ramfunc_start) + 0x0000000000010888 __ramfunc_load_start = LOADADDR (.ramfunc) + +datas 0x00000000200004c0 0x251 load address 0x0000000000010890 + 0x00000000200004c0 __data_region_start = . + 0x00000000200004c0 __data_start = . + *(SORT_BY_ALIGNMENT(.data)) + *(SORT_BY_ALIGNMENT(.data.*)) + .data.cdc_acm_dev_data_0 + 0x00000000200004c0 0xb0 zephyr/libzephyr.a(cdc_acm.c.obj) + .data.m_data 0x0000000020000570 0xa0 zephyr/drivers/adc/libdrivers__adc.a(adc_nrfx_saadc.c.obj) + .data.sequence + 0x0000000020000610 0x14 app/libapp.a(battery_adc.c.obj) + 0x0000000020000610 sequence + .data._char_out + 0x0000000020000624 0x4 zephyr/libzephyr.a(printk.c.obj) + .data.cdc_acm_tx_rb_0 + 0x0000000020000628 0x20 zephyr/libzephyr.a(cdc_acm.c.obj) + 0x0000000020000628 cdc_acm_tx_rb_0 + .data.cdc_acm_rx_rb_0 + 0x0000000020000648 0x20 zephyr/libzephyr.a(cdc_acm.c.obj) + 0x0000000020000648 cdc_acm_rx_rb_0 + .data.cdc_acm_ep_data_0 + 0x0000000020000668 0x18 zephyr/libzephyr.a(cdc_acm.c.obj) + .data.__stdout + 0x0000000020000680 0x10 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .data.m_cb 0x0000000020000690 0x78 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .data.timeout_list + 0x0000000020000708 0x8 zephyr/kernel/libkernel.a(timeout.c.obj) + .data.m_first_enable + 0x0000000020000710 0x1 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + *(SORT_BY_ALIGNMENT(.kernel.*)) + 0x0000000020000711 __data_end = . + 0x0000000000000251 __data_size = (__data_end - __data_start) + 0x0000000000010890 __data_load_start = LOADADDR (datas) + 0x0000000000010890 __data_region_load_start = LOADADDR (datas) + +device_states 0x0000000020000711 0xc load address 0x0000000000010ae1 + 0x0000000020000711 __device_states_start = . + *(SORT_BY_ALIGNMENT(.z_devstate)) + .z_devstate 0x0000000020000711 0x2 zephyr/libzephyr.a(cdc_acm.c.obj) + .z_devstate 0x0000000020000713 0x2 zephyr/drivers/adc/libdrivers__adc.a(adc_nrfx_saadc.c.obj) + .z_devstate 0x0000000020000715 0x2 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .z_devstate 0x0000000020000717 0x4 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + .z_devstate 0x000000002000071b 0x2 zephyr/drivers/sensor/nordic/temp/libdrivers__sensor__nordic__temp.a(temp_nrf5.c.obj) + *(SORT_BY_ALIGNMENT(.z_devstate.*)) + 0x000000002000071d __device_states_end = . + +log_mpsc_pbuf_area + 0x000000002000071d 0x0 load address 0x0000000000010aed + 0x000000002000071d _log_mpsc_pbuf_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._log_mpsc_pbuf.static.*))) + 0x000000002000071d _log_mpsc_pbuf_list_end = . + +log_msg_ptr_area + 0x000000002000071d 0x0 load address 0x0000000000010aed + 0x000000002000071d _log_msg_ptr_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._log_msg_ptr.static.*))) + 0x000000002000071d _log_msg_ptr_list_end = . + +log_dynamic_area + 0x000000002000071d 0x0 load address 0x0000000000010aed + 0x000000002000071d _log_dynamic_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._log_dynamic.static.*))) + 0x000000002000071d _log_dynamic_list_end = . + +k_timer_area 0x000000002000071d 0x0 load address 0x0000000000010aed + 0x000000002000071d _k_timer_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_timer.static.*))) + 0x000000002000071d _k_timer_list_end = . + +k_mem_slab_area + 0x0000000020000720 0x20 load address 0x0000000000010af0 + 0x0000000020000720 _k_mem_slab_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_mem_slab.static.*))) + ._k_mem_slab.static.fifo_elem_slab_ + 0x0000000020000720 0x20 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + 0x0000000020000720 fifo_elem_slab + 0x0000000020000740 _k_mem_slab_list_end = . + +k_heap_area 0x0000000020000740 0x0 load address 0x0000000000010b10 + 0x0000000020000740 _k_heap_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_heap.static.*))) + 0x0000000020000740 _k_heap_list_end = . + +k_mutex_area 0x0000000020000740 0x14 load address 0x0000000000010b10 + 0x0000000020000740 _k_mutex_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_mutex.static.*))) + ._k_mutex.static.usb_enable_lock_ + 0x0000000020000740 0x14 zephyr/libzephyr.a(usb_device.c.obj) + 0x0000000020000740 usb_enable_lock + 0x0000000020000754 _k_mutex_list_end = . + +k_stack_area 0x0000000020000754 0x0 load address 0x0000000000010b24 + 0x0000000020000754 _k_stack_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_stack.static.*))) + 0x0000000020000754 _k_stack_list_end = . + +k_msgq_area 0x0000000020000754 0x0 load address 0x0000000000010b24 + 0x0000000020000754 _k_msgq_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_msgq.static.*))) + 0x0000000020000754 _k_msgq_list_end = . + +k_mbox_area 0x0000000020000754 0x0 load address 0x0000000000010b24 + 0x0000000020000754 _k_mbox_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_mbox.static.*))) + 0x0000000020000754 _k_mbox_list_end = . + +k_pipe_area 0x0000000020000754 0x0 load address 0x0000000000010b24 + 0x0000000020000754 _k_pipe_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_pipe.static.*))) + 0x0000000020000754 _k_pipe_list_end = . + +k_sem_area 0x0000000020000754 0x10 load address 0x0000000000010b24 + 0x0000000020000754 _k_sem_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_sem.static.*))) + ._k_sem.static.dma_available_ + 0x0000000020000754 0x10 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + 0x0000000020000764 _k_sem_list_end = . + +k_event_area 0x0000000020000764 0x0 load address 0x0000000000010b34 + 0x0000000020000764 _k_event_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_event.static.*))) + 0x0000000020000764 _k_event_list_end = . + +k_queue_area 0x0000000020000764 0x0 load address 0x0000000000010b34 + 0x0000000020000764 _k_queue_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_queue.static.*))) + 0x0000000020000764 _k_queue_list_end = . + +k_fifo_area 0x0000000020000764 0x14 load address 0x0000000000010b34 + 0x0000000020000764 _k_fifo_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_fifo.static.*))) + ._k_fifo.static.usbd_evt_fifo_ + 0x0000000020000764 0x14 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + 0x0000000020000764 usbd_evt_fifo + 0x0000000020000778 _k_fifo_list_end = . + +k_lifo_area 0x0000000020000778 0x0 load address 0x0000000000010b48 + 0x0000000020000778 _k_lifo_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_lifo.static.*))) + 0x0000000020000778 _k_lifo_list_end = . + +k_condvar_area 0x0000000020000778 0x0 load address 0x0000000000010b48 + 0x0000000020000778 _k_condvar_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_condvar.static.*))) + 0x0000000020000778 _k_condvar_list_end = . + +sys_mem_blocks_ptr_area + 0x0000000020000778 0x0 load address 0x0000000000010b48 + 0x0000000020000778 _sys_mem_blocks_ptr_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._sys_mem_blocks_ptr.static.*))) + 0x0000000020000778 _sys_mem_blocks_ptr_list_end = . + +net_buf_pool_area + 0x0000000020000778 0x0 load address 0x0000000000010b48 + 0x0000000020000778 _net_buf_pool_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._net_buf_pool.static.*))) + 0x0000000020000778 _net_buf_pool_list_end = . + +usb_descriptor 0x0000000020000778 0xc7 load address 0x0000000000010b48 + 0x0000000020000778 __usb_descriptor_start = . + *(SORT_BY_ALIGNMENT(.usb.descriptor)) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.usb.descriptor*))) + .usb.descriptor_primary.0 + 0x0000000020000778 0x1b zephyr/libzephyr.a(usb_descriptor.c.obj) + .usb.descriptor_primary.1.0 + 0x0000000020000793 0x42 zephyr/libzephyr.a(cdc_acm.c.obj) + .usb.descriptor_primary.4 + 0x00000000200007d5 0x68 zephyr/libzephyr.a(usb_descriptor.c.obj) + .usb.descriptor_primary.6 + 0x000000002000083d 0x2 zephyr/libzephyr.a(usb_descriptor.c.obj) + 0x000000002000083f __usb_descriptor_end = . + +usb_cfg_data_area + 0x0000000020000840 0x24 load address 0x0000000000010c10 + 0x0000000020000840 _usb_cfg_data_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._usb_cfg_data.static.*))) + ._usb_cfg_data.static.cdc_acm_config_0_ + 0x0000000020000840 0x24 zephyr/libzephyr.a(cdc_acm.c.obj) + 0x0000000020000864 _usb_cfg_data_list_end = . + 0x0000000020000864 __data_region_end = . + 0x0000000000008cf0 PROVIDE (soc_reset_hook = SystemInit) + +/DISCARD/ + *(SORT_BY_ALIGNMENT(.irq_info*)) + *(SORT_BY_ALIGNMENT(.intList*)) + +.stab + *(SORT_BY_ALIGNMENT(.stab)) + +.stabstr + *(SORT_BY_ALIGNMENT(.stabstr)) + +.stab.excl + *(SORT_BY_ALIGNMENT(.stab.excl)) + +.stab.exclstr + *(SORT_BY_ALIGNMENT(.stab.exclstr)) + +.stab.index + *(SORT_BY_ALIGNMENT(.stab.index)) + +.stab.indexstr + *(SORT_BY_ALIGNMENT(.stab.indexstr)) + +.gnu.build.attributes + *(SORT_BY_ALIGNMENT(.gnu.build.attributes) SORT_BY_ALIGNMENT(.gnu.build.attributes.*)) + +.comment 0x0000000000000000 0x20 + *(SORT_BY_ALIGNMENT(.comment)) + .comment 0x0000000000000000 0x20 zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj + 0x21 (size before relaxing) + .comment 0x0000000000000020 0x21 zephyr/CMakeFiles/offsets.dir/./arch/arm/core/offsets/offsets.c.obj + .comment 0x0000000000000020 0x21 app/libapp.a(main.c.obj) + .comment 0x0000000000000020 0x21 app/libapp.a(led.c.obj) + .comment 0x0000000000000020 0x21 app/libapp.a(button.c.obj) + .comment 0x0000000000000020 0x21 app/libapp.a(actuator.c.obj) + .comment 0x0000000000000020 0x21 app/libapp.a(battery_adc.c.obj) + .comment 0x0000000000000020 0x21 app/libapp.a(temperature.c.obj) + .comment 0x0000000000000020 0x21 app/libapp.a(timer_count.c.obj) + .comment 0x0000000000000020 0x21 zephyr/libzephyr.a(heap.c.obj) + .comment 0x0000000000000020 0x21 zephyr/libzephyr.a(printk.c.obj) + .comment 0x0000000000000020 0x21 zephyr/libzephyr.a(thread_entry.c.obj) + .comment 0x0000000000000020 0x21 zephyr/libzephyr.a(assert.c.obj) + .comment 0x0000000000000020 0x21 zephyr/libzephyr.a(onoff.c.obj) + .comment 0x0000000000000020 0x21 zephyr/libzephyr.a(notify.c.obj) + .comment 0x0000000000000020 0x21 zephyr/libzephyr.a(ring_buffer.c.obj) + .comment 0x0000000000000020 0x21 zephyr/libzephyr.a(last_section_id.c.obj) + .comment 0x0000000000000020 0x21 zephyr/libzephyr.a(configs.c.obj) + .comment 0x0000000000000020 0x21 zephyr/libzephyr.a(mem_attr.c.obj) + .comment 0x0000000000000020 0x21 zephyr/libzephyr.a(usb_device.c.obj) + .comment 0x0000000000000020 0x21 zephyr/libzephyr.a(usb_descriptor.c.obj) + .comment 0x0000000000000020 0x21 zephyr/libzephyr.a(usb_transfer.c.obj) + .comment 0x0000000000000020 0x21 zephyr/libzephyr.a(cdc_acm.c.obj) + .comment 0x0000000000000020 0x21 zephyr/libzephyr.a(usb_work_q.c.obj) + .comment 0x0000000000000020 0x21 zephyr/libzephyr.a(banner.c.obj) + .comment 0x0000000000000020 0x21 zephyr/arch/arch/arm/core/libarch__arm__core.a(fatal.c.obj) + .comment 0x0000000000000020 0x21 zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi.c.obj) + .comment 0x0000000000000020 0x21 zephyr/arch/arch/arm/core/libarch__arm__core.a(tls.c.obj) + .comment 0x0000000000000020 0x21 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(exc_exit.c.obj) + .comment 0x0000000000000020 0x21 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault.c.obj) + .comment 0x0000000000000020 0x21 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(scb.c.obj) + .comment 0x0000000000000020 0x21 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread_abort.c.obj) + .comment 0x0000000000000020 0x21 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + .comment 0x0000000000000020 0x21 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(prep_c.c.obj) + .comment 0x0000000000000020 0x21 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread.c.obj) + .comment 0x0000000000000020 0x21 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(cpu_idle.c.obj) + .comment 0x0000000000000020 0x21 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_init.c.obj) + .comment 0x0000000000000020 0x21 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(isr_wrapper.c.obj) + .comment 0x0000000000000020 0x21 zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_core_mpu.c.obj) + .comment 0x0000000000000020 0x21 zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_mpu.c.obj) + .comment 0x0000000000000020 0x21 zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_mpu_regions.c.obj) + .comment 0x0000000000000020 0x21 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .comment 0x0000000000000020 0x21 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .comment 0x0000000000000020 0x21 zephyr/soc/soc/nrf52833/libsoc__nordic.a(soc.c.obj) + .comment 0x0000000000000020 0x21 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + .comment 0x0000000000000020 0x21 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + .comment 0x0000000000000020 0x21 zephyr/drivers/adc/libdrivers__adc.a(adc_common.c.obj) + .comment 0x0000000000000020 0x21 zephyr/drivers/adc/libdrivers__adc.a(adc_nrfx_saadc.c.obj) + .comment 0x0000000000000020 0x21 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .comment 0x0000000000000020 0x21 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .comment 0x0000000000000020 0x21 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + .comment 0x0000000000000020 0x21 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_nrf.c.obj) + .comment 0x0000000000000020 0x21 zephyr/drivers/sensor/nordic/temp/libdrivers__sensor__nordic__temp.a(temp_nrf5.c.obj) + .comment 0x0000000000000020 0x21 zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .comment 0x0000000000000020 0x21 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(system_nrf52833.c.obj) + .comment 0x0000000000000020 0x21 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_glue.c.obj) + .comment 0x0000000000000020 0x21 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_flag32_allocator.c.obj) + .comment 0x0000000000000020 0x21 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_clock.c.obj) + .comment 0x0000000000000020 0x21 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .comment 0x0000000000000020 0x21 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + .comment 0x0000000000000020 0x21 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_temp.c.obj) + .comment 0x0000000000000020 0x21 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .comment 0x0000000000000020 0x21 modules/segger/libmodules__segger.a(SEGGER_RTT_zephyr.c.obj) + .comment 0x0000000000000020 0x21 zephyr/kernel/libkernel.a(busy_wait.c.obj) + .comment 0x0000000000000020 0x21 zephyr/kernel/libkernel.a(device.c.obj) + .comment 0x0000000000000020 0x21 zephyr/kernel/libkernel.a(fatal.c.obj) + .comment 0x0000000000000020 0x21 zephyr/kernel/libkernel.a(init.c.obj) + .comment 0x0000000000000020 0x21 zephyr/kernel/libkernel.a(init_static.c.obj) + .comment 0x0000000000000020 0x21 zephyr/kernel/libkernel.a(mem_slab.c.obj) + .comment 0x0000000000000020 0x21 zephyr/kernel/libkernel.a(idle.c.obj) + .comment 0x0000000000000020 0x21 zephyr/kernel/libkernel.a(mutex.c.obj) + .comment 0x0000000000000020 0x21 zephyr/kernel/libkernel.a(queue.c.obj) + .comment 0x0000000000000020 0x21 zephyr/kernel/libkernel.a(sem.c.obj) + .comment 0x0000000000000020 0x21 zephyr/kernel/libkernel.a(work.c.obj) + .comment 0x0000000000000020 0x21 zephyr/kernel/libkernel.a(thread.c.obj) + .comment 0x0000000000000020 0x21 zephyr/kernel/libkernel.a(sched.c.obj) + .comment 0x0000000000000020 0x21 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .comment 0x0000000000000020 0x21 zephyr/kernel/libkernel.a(spinlock_validate.c.obj) + .comment 0x0000000000000020 0x21 zephyr/kernel/libkernel.a(xip.c.obj) + .comment 0x0000000000000020 0x21 zephyr/kernel/libkernel.a(timeout.c.obj) + .comment 0x0000000000000020 0x21 zephyr/kernel/libkernel.a(timer.c.obj) + .comment 0x0000000000000020 0x21 zephyr/kernel/libkernel.a(mempool.c.obj) + .comment 0x0000000000000020 0x21 zephyr/kernel/libkernel.a(kheap.c.obj) + .comment 0x0000000000000020 0x21 zephyr/kernel/libkernel.a(system_work_q.c.obj) + +.debug + *(SORT_BY_ALIGNMENT(.debug)) + +.line + *(SORT_BY_ALIGNMENT(.line)) + +.debug_srcinfo + *(SORT_BY_ALIGNMENT(.debug_srcinfo)) + +.debug_sfnames + *(SORT_BY_ALIGNMENT(.debug_sfnames)) + +.debug_aranges 0x0000000000000000 0x1c38 + *(SORT_BY_ALIGNMENT(.debug_aranges)) + .debug_aranges + 0x0000000000000000 0x20 zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi_on_reset.S.obj) + .debug_aranges + 0x0000000000000020 0x20 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault_s.S.obj) + .debug_aranges + 0x0000000000000040 0x20 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(reset.S.obj) + .debug_aranges + 0x0000000000000060 0x28 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(swap_helper.S.obj) + .debug_aranges + 0x0000000000000088 0x20 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(__aeabi_read_tp.S.obj) + .debug_aranges + 0x00000000000000a8 0x18 zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj + .debug_aranges + 0x00000000000000c0 0x20 zephyr/CMakeFiles/offsets.dir/./arch/arm/core/offsets/offsets.c.obj + .debug_aranges + 0x00000000000000e0 0x20 app/libapp.a(main.c.obj) + .debug_aranges + 0x0000000000000100 0x58 app/libapp.a(led.c.obj) + .debug_aranges + 0x0000000000000158 0x28 app/libapp.a(button.c.obj) + .debug_aranges + 0x0000000000000180 0x58 app/libapp.a(actuator.c.obj) + .debug_aranges + 0x00000000000001d8 0x28 app/libapp.a(battery_adc.c.obj) + .debug_aranges + 0x0000000000000200 0x28 app/libapp.a(temperature.c.obj) + .debug_aranges + 0x0000000000000228 0x48 app/libapp.a(timer_count.c.obj) + .debug_aranges + 0x0000000000000270 0x80 zephyr/libzephyr.a(heap.c.obj) + .debug_aranges + 0x00000000000002f0 0x50 zephyr/libzephyr.a(printk.c.obj) + .debug_aranges + 0x0000000000000340 0x20 zephyr/libzephyr.a(thread_entry.c.obj) + .debug_aranges + 0x0000000000000360 0x28 zephyr/libzephyr.a(assert.c.obj) + .debug_aranges + 0x0000000000000388 0x70 zephyr/libzephyr.a(onoff.c.obj) + .debug_aranges + 0x00000000000003f8 0x28 zephyr/libzephyr.a(notify.c.obj) + .debug_aranges + 0x0000000000000420 0x60 zephyr/libzephyr.a(ring_buffer.c.obj) + .debug_aranges + 0x0000000000000480 0x18 zephyr/libzephyr.a(last_section_id.c.obj) + .debug_aranges + 0x0000000000000498 0x20 zephyr/libzephyr.a(configs.c.obj) + .debug_aranges + 0x00000000000004b8 0x28 zephyr/libzephyr.a(mem_attr.c.obj) + .debug_aranges + 0x00000000000004e0 0xd0 zephyr/libzephyr.a(usb_device.c.obj) + .debug_aranges + 0x00000000000005b0 0x48 zephyr/libzephyr.a(usb_descriptor.c.obj) + .debug_aranges + 0x00000000000005f8 0x60 zephyr/libzephyr.a(usb_transfer.c.obj) + .debug_aranges + 0x0000000000000658 0xe0 zephyr/libzephyr.a(cdc_acm.c.obj) + .debug_aranges + 0x0000000000000738 0x20 zephyr/libzephyr.a(usb_work_q.c.obj) + .debug_aranges + 0x0000000000000758 0x20 zephyr/libzephyr.a(banner.c.obj) + .debug_aranges + 0x0000000000000778 0x30 zephyr/arch/arch/arm/core/libarch__arm__core.a(fatal.c.obj) + .debug_aranges + 0x00000000000007a8 0x20 zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi.c.obj) + .debug_aranges + 0x00000000000007c8 0x20 zephyr/arch/arch/arm/core/libarch__arm__core.a(tls.c.obj) + .debug_aranges + 0x00000000000007e8 0x20 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(exc_exit.c.obj) + .debug_aranges + 0x0000000000000808 0x40 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault.c.obj) + .debug_aranges + 0x0000000000000848 0x30 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(scb.c.obj) + .debug_aranges + 0x0000000000000878 0x20 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread_abort.c.obj) + .debug_aranges + 0x0000000000000898 0x40 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + .debug_aranges + 0x00000000000008d8 0x20 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(prep_c.c.obj) + .debug_aranges + 0x00000000000008f8 0x40 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread.c.obj) + .debug_aranges + 0x0000000000000938 0x30 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(cpu_idle.c.obj) + .debug_aranges + 0x0000000000000968 0x20 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_init.c.obj) + .debug_aranges + 0x0000000000000988 0x20 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(isr_wrapper.c.obj) + .debug_aranges + 0x00000000000009a8 0x28 zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_core_mpu.c.obj) + .debug_aranges + 0x00000000000009d0 0x40 zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_mpu.c.obj) + .debug_aranges + 0x0000000000000a10 0x18 zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_mpu_regions.c.obj) + .debug_aranges + 0x0000000000000a28 0x38 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .debug_aranges + 0x0000000000000a60 0x58 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .debug_aranges + 0x0000000000000ab8 0x28 zephyr/soc/soc/nrf52833/libsoc__nordic.a(soc.c.obj) + .debug_aranges + 0x0000000000000ae0 0x108 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + .debug_aranges + 0x0000000000000be8 0x150 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + .debug_aranges + 0x0000000000000d38 0x20 zephyr/drivers/adc/libdrivers__adc.a(adc_common.c.obj) + .debug_aranges + 0x0000000000000d58 0x40 zephyr/drivers/adc/libdrivers__adc.a(adc_nrfx_saadc.c.obj) + .debug_aranges + 0x0000000000000d98 0xb8 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .debug_aranges + 0x0000000000000e50 0x30 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .debug_aranges + 0x0000000000000e80 0x70 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + .debug_aranges + 0x0000000000000ef0 0x38 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_nrf.c.obj) + .debug_aranges + 0x0000000000000f28 0x40 zephyr/drivers/sensor/nordic/temp/libdrivers__sensor__nordic__temp.a(temp_nrf5.c.obj) + .debug_aranges + 0x0000000000000f68 0xc0 zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .debug_aranges + 0x0000000000001028 0x40 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(system_nrf52833.c.obj) + .debug_aranges + 0x0000000000001068 0x30 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_glue.c.obj) + .debug_aranges + 0x0000000000001098 0x30 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_flag32_allocator.c.obj) + .debug_aranges + 0x00000000000010c8 0x60 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_clock.c.obj) + .debug_aranges + 0x0000000000001128 0x168 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .debug_aranges + 0x0000000000001290 0xc8 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + .debug_aranges + 0x0000000000001358 0x48 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_temp.c.obj) + .debug_aranges + 0x00000000000013a0 0x128 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .debug_aranges + 0x00000000000014c8 0x30 modules/segger/libmodules__segger.a(SEGGER_RTT_zephyr.c.obj) + .debug_aranges + 0x00000000000014f8 0x20 zephyr/kernel/libkernel.a(busy_wait.c.obj) + .debug_aranges + 0x0000000000001518 0x38 zephyr/kernel/libkernel.a(device.c.obj) + .debug_aranges + 0x0000000000001550 0x38 zephyr/kernel/libkernel.a(fatal.c.obj) + .debug_aranges + 0x0000000000001588 0x60 zephyr/kernel/libkernel.a(init.c.obj) + .debug_aranges + 0x00000000000015e8 0x20 zephyr/kernel/libkernel.a(init_static.c.obj) + .debug_aranges + 0x0000000000001608 0x40 zephyr/kernel/libkernel.a(mem_slab.c.obj) + .debug_aranges + 0x0000000000001648 0x28 zephyr/kernel/libkernel.a(idle.c.obj) + .debug_aranges + 0x0000000000001670 0x30 zephyr/kernel/libkernel.a(mutex.c.obj) + .debug_aranges + 0x00000000000016a0 0x98 zephyr/kernel/libkernel.a(queue.c.obj) + .debug_aranges + 0x0000000000001738 0x38 zephyr/kernel/libkernel.a(sem.c.obj) + .debug_aranges + 0x0000000000001770 0xf8 zephyr/kernel/libkernel.a(work.c.obj) + .debug_aranges + 0x0000000000001868 0x88 zephyr/kernel/libkernel.a(thread.c.obj) + .debug_aranges + 0x00000000000018f0 0x160 zephyr/kernel/libkernel.a(sched.c.obj) + .debug_aranges + 0x0000000000001a50 0x40 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .debug_aranges + 0x0000000000001a90 0x30 zephyr/kernel/libkernel.a(spinlock_validate.c.obj) + .debug_aranges + 0x0000000000001ac0 0x20 zephyr/kernel/libkernel.a(xip.c.obj) + .debug_aranges + 0x0000000000001ae0 0x78 zephyr/kernel/libkernel.a(timeout.c.obj) + .debug_aranges + 0x0000000000001b58 0x48 zephyr/kernel/libkernel.a(timer.c.obj) + .debug_aranges + 0x0000000000001ba0 0x28 zephyr/kernel/libkernel.a(mempool.c.obj) + .debug_aranges + 0x0000000000001bc8 0x50 zephyr/kernel/libkernel.a(kheap.c.obj) + .debug_aranges + 0x0000000000001c18 0x20 zephyr/kernel/libkernel.a(system_work_q.c.obj) + +.debug_pubnames + *(SORT_BY_ALIGNMENT(.debug_pubnames)) + +.debug_info 0x0000000000000000 0x8186a + *(SORT_BY_ALIGNMENT(.debug_info) SORT_BY_ALIGNMENT(.gnu.linkonce.wi.*)) + .debug_info 0x0000000000000000 0x189 zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj + .debug_info 0x0000000000000189 0xdc zephyr/CMakeFiles/offsets.dir/./arch/arm/core/offsets/offsets.c.obj + .debug_info 0x0000000000000265 0x724 app/libapp.a(main.c.obj) + .debug_info 0x0000000000000989 0x1a7e app/libapp.a(led.c.obj) + .debug_info 0x0000000000002407 0xb1f app/libapp.a(button.c.obj) + .debug_info 0x0000000000002f26 0x1734 app/libapp.a(actuator.c.obj) + .debug_info 0x000000000000465a 0x16d0 app/libapp.a(battery_adc.c.obj) + .debug_info 0x0000000000005d2a 0x5bd app/libapp.a(temperature.c.obj) + .debug_info 0x00000000000062e7 0x1dbd app/libapp.a(timer_count.c.obj) + .debug_info 0x00000000000080a4 0x430f zephyr/libzephyr.a(heap.c.obj) + .debug_info 0x000000000000c3b3 0x5a7 zephyr/libzephyr.a(printk.c.obj) + .debug_info 0x000000000000c95a 0x764 zephyr/libzephyr.a(thread_entry.c.obj) + .debug_info 0x000000000000d0be 0x247 zephyr/libzephyr.a(assert.c.obj) + .debug_info 0x000000000000d305 0x3ded zephyr/libzephyr.a(onoff.c.obj) + .debug_info 0x00000000000110f2 0x39e zephyr/libzephyr.a(notify.c.obj) + .debug_info 0x0000000000011490 0x119f zephyr/libzephyr.a(ring_buffer.c.obj) + .debug_info 0x000000000001262f 0x95 zephyr/libzephyr.a(last_section_id.c.obj) + .debug_info 0x00000000000126c4 0x38 zephyr/libzephyr.a(configs.c.obj) + .debug_info 0x00000000000126fc 0x2ba zephyr/libzephyr.a(mem_attr.c.obj) + .debug_info 0x00000000000129b6 0x3bcd zephyr/libzephyr.a(usb_device.c.obj) + .debug_info 0x0000000000016583 0x1b0f zephyr/libzephyr.a(usb_descriptor.c.obj) + .debug_info 0x0000000000018092 0x17ae zephyr/libzephyr.a(usb_transfer.c.obj) + .debug_info 0x0000000000019840 0x33a1 zephyr/libzephyr.a(cdc_acm.c.obj) + .debug_info 0x000000000001cbe1 0x987 zephyr/libzephyr.a(usb_work_q.c.obj) + .debug_info 0x000000000001d568 0xdc zephyr/libzephyr.a(banner.c.obj) + .debug_info 0x000000000001d644 0x6e3 zephyr/arch/arch/arm/core/libarch__arm__core.a(fatal.c.obj) + .debug_info 0x000000000001dd27 0xb6 zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi.c.obj) + .debug_info 0x000000000001dddd 0x23 zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi_on_reset.S.obj) + .debug_info 0x000000000001de00 0x73d zephyr/arch/arch/arm/core/libarch__arm__core.a(tls.c.obj) + .debug_info 0x000000000001e53d 0x7bc zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(exc_exit.c.obj) + .debug_info 0x000000000001ecf9 0x14de zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault.c.obj) + .debug_info 0x00000000000201d7 0x23 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault_s.S.obj) + .debug_info 0x00000000000201fa 0x23 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(reset.S.obj) + .debug_info 0x000000000002021d 0x742 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(scb.c.obj) + .debug_info 0x000000000002095f 0x86c zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread_abort.c.obj) + .debug_info 0x00000000000211cb 0x22 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(swap_helper.S.obj) + .debug_info 0x00000000000211ed 0x97e zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + .debug_info 0x0000000000021b6b 0x3f6 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(prep_c.c.obj) + .debug_info 0x0000000000021f61 0xb44 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread.c.obj) + .debug_info 0x0000000000022aa5 0x48b zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(cpu_idle.c.obj) + .debug_info 0x0000000000022f30 0x584 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_init.c.obj) + .debug_info 0x00000000000234b4 0x1a3 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(isr_wrapper.c.obj) + .debug_info 0x0000000000023657 0x23 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(__aeabi_read_tp.S.obj) + .debug_info 0x000000000002367a 0x792 zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_core_mpu.c.obj) + .debug_info 0x0000000000023e0c 0x1593 zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_mpu.c.obj) + .debug_info 0x000000000002539f 0x1cc zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_mpu_regions.c.obj) + .debug_info 0x000000000002556b 0x427 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .debug_info 0x0000000000025992 0x11bd zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .debug_info 0x0000000000026b4f 0x524 zephyr/soc/soc/nrf52833/libsoc__nordic.a(soc.c.obj) + .debug_info 0x0000000000027073 0x6f16 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + .debug_info 0x000000000002df89 0x493d zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + .debug_info 0x00000000000328c6 0x218 zephyr/drivers/adc/libdrivers__adc.a(adc_common.c.obj) + .debug_info 0x0000000000032ade 0x3116 zephyr/drivers/adc/libdrivers__adc.a(adc_nrfx_saadc.c.obj) + .debug_info 0x0000000000035bf4 0x4090 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .debug_info 0x0000000000039c84 0x91b zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .debug_info 0x000000000003a59f 0x2aec zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + .debug_info 0x000000000003d08b 0xb57 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_nrf.c.obj) + .debug_info 0x000000000003dbe2 0x21bb zephyr/drivers/sensor/nordic/temp/libdrivers__sensor__nordic__temp.a(temp_nrf5.c.obj) + .debug_info 0x000000000003fd9d 0x3d5b zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .debug_info 0x0000000000043af8 0x14be modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(system_nrf52833.c.obj) + .debug_info 0x0000000000044fb6 0x25d modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_glue.c.obj) + .debug_info 0x0000000000045213 0x354 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_flag32_allocator.c.obj) + .debug_info 0x0000000000045567 0x1a8d modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_clock.c.obj) + .debug_info 0x0000000000046ff4 0x8692 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .debug_info 0x000000000004f686 0x2574 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + .debug_info 0x0000000000051bfa 0x113a modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_temp.c.obj) + .debug_info 0x0000000000052d34 0x23b9 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .debug_info 0x00000000000550ed 0x4ab modules/segger/libmodules__segger.a(SEGGER_RTT_zephyr.c.obj) + .debug_info 0x0000000000055598 0xdb zephyr/kernel/libkernel.a(busy_wait.c.obj) + .debug_info 0x0000000000055673 0x426 zephyr/kernel/libkernel.a(device.c.obj) + .debug_info 0x0000000000055a99 0xd13 zephyr/kernel/libkernel.a(fatal.c.obj) + .debug_info 0x00000000000567ac 0x20dc zephyr/kernel/libkernel.a(init.c.obj) + .debug_info 0x0000000000058888 0x38 zephyr/kernel/libkernel.a(init_static.c.obj) + .debug_info 0x00000000000588c0 0x1eb1 zephyr/kernel/libkernel.a(mem_slab.c.obj) + .debug_info 0x000000000005a771 0x99e zephyr/kernel/libkernel.a(idle.c.obj) + .debug_info 0x000000000005b10f 0x1f0f zephyr/kernel/libkernel.a(mutex.c.obj) + .debug_info 0x000000000005d01e 0x3e3b zephyr/kernel/libkernel.a(queue.c.obj) + .debug_info 0x0000000000060e59 0x1c6a zephyr/kernel/libkernel.a(sem.c.obj) + .debug_info 0x0000000000062ac3 0x8e51 zephyr/kernel/libkernel.a(work.c.obj) + .debug_info 0x000000000006b914 0x17c3 zephyr/kernel/libkernel.a(thread.c.obj) + .debug_info 0x000000000006d0d7 0xb35c zephyr/kernel/libkernel.a(sched.c.obj) + .debug_info 0x0000000000078433 0x144c zephyr/kernel/libkernel.a(timeslicing.c.obj) + .debug_info 0x000000000007987f 0x6f7 zephyr/kernel/libkernel.a(spinlock_validate.c.obj) + .debug_info 0x0000000000079f76 0x12a zephyr/kernel/libkernel.a(xip.c.obj) + .debug_info 0x000000000007a0a0 0x2c42 zephyr/kernel/libkernel.a(timeout.c.obj) + .debug_info 0x000000000007cce2 0x1f3b zephyr/kernel/libkernel.a(timer.c.obj) + .debug_info 0x000000000007ec1d 0x92f zephyr/kernel/libkernel.a(mempool.c.obj) + .debug_info 0x000000000007f54c 0x1a34 zephyr/kernel/libkernel.a(kheap.c.obj) + .debug_info 0x0000000000080f80 0x8ea zephyr/kernel/libkernel.a(system_work_q.c.obj) + +.debug_abbrev 0x0000000000000000 0x11e67 + *(SORT_BY_ALIGNMENT(.debug_abbrev)) + .debug_abbrev 0x0000000000000000 0x118 zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj + .debug_abbrev 0x0000000000000118 0x62 zephyr/CMakeFiles/offsets.dir/./arch/arm/core/offsets/offsets.c.obj + .debug_abbrev 0x000000000000017a 0x288 app/libapp.a(main.c.obj) + .debug_abbrev 0x0000000000000402 0x441 app/libapp.a(led.c.obj) + .debug_abbrev 0x0000000000000843 0x341 app/libapp.a(button.c.obj) + .debug_abbrev 0x0000000000000b84 0x377 app/libapp.a(actuator.c.obj) + .debug_abbrev 0x0000000000000efb 0x3d5 app/libapp.a(battery_adc.c.obj) + .debug_abbrev 0x00000000000012d0 0x27b app/libapp.a(temperature.c.obj) + .debug_abbrev 0x000000000000154b 0x571 app/libapp.a(timer_count.c.obj) + .debug_abbrev 0x0000000000001abc 0x43e zephyr/libzephyr.a(heap.c.obj) + .debug_abbrev 0x0000000000001efa 0x335 zephyr/libzephyr.a(printk.c.obj) + .debug_abbrev 0x000000000000222f 0x2ad zephyr/libzephyr.a(thread_entry.c.obj) + .debug_abbrev 0x00000000000024dc 0x1ca zephyr/libzephyr.a(assert.c.obj) + .debug_abbrev 0x00000000000026a6 0x4bf zephyr/libzephyr.a(onoff.c.obj) + .debug_abbrev 0x0000000000002b65 0x20d zephyr/libzephyr.a(notify.c.obj) + .debug_abbrev 0x0000000000002d72 0x262 zephyr/libzephyr.a(ring_buffer.c.obj) + .debug_abbrev 0x0000000000002fd4 0x46 zephyr/libzephyr.a(last_section_id.c.obj) + .debug_abbrev 0x000000000000301a 0x2e zephyr/libzephyr.a(configs.c.obj) + .debug_abbrev 0x0000000000003048 0x142 zephyr/libzephyr.a(mem_attr.c.obj) + .debug_abbrev 0x000000000000318a 0x6a0 zephyr/libzephyr.a(usb_device.c.obj) + .debug_abbrev 0x000000000000382a 0x4e9 zephyr/libzephyr.a(usb_descriptor.c.obj) + .debug_abbrev 0x0000000000003d13 0x5be zephyr/libzephyr.a(usb_transfer.c.obj) + .debug_abbrev 0x00000000000042d1 0x6a6 zephyr/libzephyr.a(cdc_acm.c.obj) + .debug_abbrev 0x0000000000004977 0x2c8 zephyr/libzephyr.a(usb_work_q.c.obj) + .debug_abbrev 0x0000000000004c3f 0x9c zephyr/libzephyr.a(banner.c.obj) + .debug_abbrev 0x0000000000004cdb 0x2ac zephyr/arch/arch/arm/core/libarch__arm__core.a(fatal.c.obj) + .debug_abbrev 0x0000000000004f87 0x70 zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi.c.obj) + .debug_abbrev 0x0000000000004ff7 0x14 zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi_on_reset.S.obj) + .debug_abbrev 0x000000000000500b 0x27f zephyr/arch/arch/arm/core/libarch__arm__core.a(tls.c.obj) + .debug_abbrev 0x000000000000528a 0x17f zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(exc_exit.c.obj) + .debug_abbrev 0x0000000000005409 0x463 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault.c.obj) + .debug_abbrev 0x000000000000586c 0x14 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault_s.S.obj) + .debug_abbrev 0x0000000000005880 0x14 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(reset.S.obj) + .debug_abbrev 0x0000000000005894 0x262 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(scb.c.obj) + .debug_abbrev 0x0000000000005af6 0x227 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread_abort.c.obj) + .debug_abbrev 0x0000000000005d1d 0x12 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(swap_helper.S.obj) + .debug_abbrev 0x0000000000005d2f 0x29a zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + .debug_abbrev 0x0000000000005fc9 0x17d zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(prep_c.c.obj) + .debug_abbrev 0x0000000000006146 0x3af zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread.c.obj) + .debug_abbrev 0x00000000000064f5 0x16f zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(cpu_idle.c.obj) + .debug_abbrev 0x0000000000006664 0x168 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_init.c.obj) + .debug_abbrev 0x00000000000067cc 0x136 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(isr_wrapper.c.obj) + .debug_abbrev 0x0000000000006902 0x14 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(__aeabi_read_tp.S.obj) + .debug_abbrev 0x0000000000006916 0x22d zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_core_mpu.c.obj) + .debug_abbrev 0x0000000000006b43 0x40c zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_mpu.c.obj) + .debug_abbrev 0x0000000000006f4f 0xca zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_mpu_regions.c.obj) + .debug_abbrev 0x0000000000007019 0x20c zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .debug_abbrev 0x0000000000007225 0x4a4 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .debug_abbrev 0x00000000000076c9 0x273 zephyr/soc/soc/nrf52833/libsoc__nordic.a(soc.c.obj) + .debug_abbrev 0x000000000000793c 0x6d3 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + .debug_abbrev 0x000000000000800f 0x6c2 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + .debug_abbrev 0x00000000000086d1 0x10a zephyr/drivers/adc/libdrivers__adc.a(adc_common.c.obj) + .debug_abbrev 0x00000000000087db 0x621 zephyr/drivers/adc/libdrivers__adc.a(adc_nrfx_saadc.c.obj) + .debug_abbrev 0x0000000000008dfc 0x6da zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .debug_abbrev 0x00000000000094d6 0x362 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .debug_abbrev 0x0000000000009838 0x600 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + .debug_abbrev 0x0000000000009e38 0x2a9 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_nrf.c.obj) + .debug_abbrev 0x000000000000a0e1 0x506 zephyr/drivers/sensor/nordic/temp/libdrivers__sensor__nordic__temp.a(temp_nrf5.c.obj) + .debug_abbrev 0x000000000000a5e7 0x6cf zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .debug_abbrev 0x000000000000acb6 0x33d modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(system_nrf52833.c.obj) + .debug_abbrev 0x000000000000aff3 0x155 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_glue.c.obj) + .debug_abbrev 0x000000000000b148 0x10b modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_flag32_allocator.c.obj) + .debug_abbrev 0x000000000000b253 0x468 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_clock.c.obj) + .debug_abbrev 0x000000000000b6bb 0x558 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .debug_abbrev 0x000000000000bc13 0x5bc modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + .debug_abbrev 0x000000000000c1cf 0x3a5 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_temp.c.obj) + .debug_abbrev 0x000000000000c574 0x39e modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .debug_abbrev 0x000000000000c912 0x2d9 modules/segger/libmodules__segger.a(SEGGER_RTT_zephyr.c.obj) + .debug_abbrev 0x000000000000cbeb 0x91 zephyr/kernel/libkernel.a(busy_wait.c.obj) + .debug_abbrev 0x000000000000cc7c 0x20a zephyr/kernel/libkernel.a(device.c.obj) + .debug_abbrev 0x000000000000ce86 0x3d5 zephyr/kernel/libkernel.a(fatal.c.obj) + .debug_abbrev 0x000000000000d25b 0x6fd zephyr/kernel/libkernel.a(init.c.obj) + .debug_abbrev 0x000000000000d958 0x2e zephyr/kernel/libkernel.a(init_static.c.obj) + .debug_abbrev 0x000000000000d986 0x57d zephyr/kernel/libkernel.a(mem_slab.c.obj) + .debug_abbrev 0x000000000000df03 0x30e zephyr/kernel/libkernel.a(idle.c.obj) + .debug_abbrev 0x000000000000e211 0x459 zephyr/kernel/libkernel.a(mutex.c.obj) + .debug_abbrev 0x000000000000e66a 0x57f zephyr/kernel/libkernel.a(queue.c.obj) + .debug_abbrev 0x000000000000ebe9 0x49a zephyr/kernel/libkernel.a(sem.c.obj) + .debug_abbrev 0x000000000000f083 0x6ae zephyr/kernel/libkernel.a(work.c.obj) + .debug_abbrev 0x000000000000f731 0x536 zephyr/kernel/libkernel.a(thread.c.obj) + .debug_abbrev 0x000000000000fc67 0x674 zephyr/kernel/libkernel.a(sched.c.obj) + .debug_abbrev 0x00000000000102db 0x457 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .debug_abbrev 0x0000000000010732 0x221 zephyr/kernel/libkernel.a(spinlock_validate.c.obj) + .debug_abbrev 0x0000000000010953 0xbe zephyr/kernel/libkernel.a(xip.c.obj) + .debug_abbrev 0x0000000000010a11 0x4f2 zephyr/kernel/libkernel.a(timeout.c.obj) + .debug_abbrev 0x0000000000010f03 0x507 zephyr/kernel/libkernel.a(timer.c.obj) + .debug_abbrev 0x000000000001140a 0x31e zephyr/kernel/libkernel.a(mempool.c.obj) + .debug_abbrev 0x0000000000011728 0x4ea zephyr/kernel/libkernel.a(kheap.c.obj) + .debug_abbrev 0x0000000000011c12 0x255 zephyr/kernel/libkernel.a(system_work_q.c.obj) + +.debug_line 0x0000000000000000 0x3e0de + *(SORT_BY_ALIGNMENT(.debug_line) SORT_BY_ALIGNMENT(.debug_line.*) SORT_BY_ALIGNMENT(.debug_line_end)) + .debug_line 0x0000000000000000 0x1b4 zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj + .debug_line 0x00000000000001b4 0x12f zephyr/CMakeFiles/offsets.dir/./arch/arm/core/offsets/offsets.c.obj + .debug_line 0x00000000000002e3 0x6b6 app/libapp.a(main.c.obj) + .debug_line 0x0000000000000999 0x97f app/libapp.a(led.c.obj) + .debug_line 0x0000000000001318 0x487 app/libapp.a(button.c.obj) + .debug_line 0x000000000000179f 0x8e2 app/libapp.a(actuator.c.obj) + .debug_line 0x0000000000002081 0x780 app/libapp.a(battery_adc.c.obj) + .debug_line 0x0000000000002801 0x360 app/libapp.a(temperature.c.obj) + .debug_line 0x0000000000002b61 0xb02 app/libapp.a(timer_count.c.obj) + .debug_line 0x0000000000003663 0x2044 zephyr/libzephyr.a(heap.c.obj) + .debug_line 0x00000000000056a7 0x4a2 zephyr/libzephyr.a(printk.c.obj) + .debug_line 0x0000000000005b49 0x44f zephyr/libzephyr.a(thread_entry.c.obj) + .debug_line 0x0000000000005f98 0x33f zephyr/libzephyr.a(assert.c.obj) + .debug_line 0x00000000000062d7 0x1a99 zephyr/libzephyr.a(onoff.c.obj) + .debug_line 0x0000000000007d70 0x2e5 zephyr/libzephyr.a(notify.c.obj) + .debug_line 0x0000000000008055 0xf5c zephyr/libzephyr.a(ring_buffer.c.obj) + .debug_line 0x0000000000008fb1 0x136 zephyr/libzephyr.a(last_section_id.c.obj) + .debug_line 0x00000000000090e7 0x2a2 zephyr/libzephyr.a(configs.c.obj) + .debug_line 0x0000000000009389 0x27f zephyr/libzephyr.a(mem_attr.c.obj) + .debug_line 0x0000000000009608 0x19df zephyr/libzephyr.a(usb_device.c.obj) + .debug_line 0x000000000000afe7 0xb3d zephyr/libzephyr.a(usb_descriptor.c.obj) + .debug_line 0x000000000000bb24 0xde6 zephyr/libzephyr.a(usb_transfer.c.obj) + .debug_line 0x000000000000c90a 0x140a zephyr/libzephyr.a(cdc_acm.c.obj) + .debug_line 0x000000000000dd14 0x44e zephyr/libzephyr.a(usb_work_q.c.obj) + .debug_line 0x000000000000e162 0xbd zephyr/libzephyr.a(banner.c.obj) + .debug_line 0x000000000000e21f 0x3e5 zephyr/arch/arch/arm/core/libarch__arm__core.a(fatal.c.obj) + .debug_line 0x000000000000e604 0xb7 zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi.c.obj) + .debug_line 0x000000000000e6bb 0x6d zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi_on_reset.S.obj) + .debug_line 0x000000000000e728 0x45a zephyr/arch/arch/arm/core/libarch__arm__core.a(tls.c.obj) + .debug_line 0x000000000000eb82 0x371 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(exc_exit.c.obj) + .debug_line 0x000000000000eef3 0xb0c zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault.c.obj) + .debug_line 0x000000000000f9ff 0x7a zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault_s.S.obj) + .debug_line 0x000000000000fa79 0x95 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(reset.S.obj) + .debug_line 0x000000000000fb0e 0x58b zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(scb.c.obj) + .debug_line 0x0000000000010099 0x43d zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread_abort.c.obj) + .debug_line 0x00000000000104d6 0xd3 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(swap_helper.S.obj) + .debug_line 0x00000000000105a9 0x465 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + .debug_line 0x0000000000010a0e 0x348 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(prep_c.c.obj) + .debug_line 0x0000000000010d56 0x67b zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread.c.obj) + .debug_line 0x00000000000113d1 0x346 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(cpu_idle.c.obj) + .debug_line 0x0000000000011717 0x266 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_init.c.obj) + .debug_line 0x000000000001197d 0x279 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(isr_wrapper.c.obj) + .debug_line 0x0000000000011bf6 0x7b zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(__aeabi_read_tp.S.obj) + .debug_line 0x0000000000011c71 0x498 zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_core_mpu.c.obj) + .debug_line 0x0000000000012109 0xf97 zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_mpu.c.obj) + .debug_line 0x00000000000130a0 0x24f zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_mpu_regions.c.obj) + .debug_line 0x00000000000132ef 0x336 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .debug_line 0x0000000000013625 0x959 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .debug_line 0x0000000000013f7e 0x2aa zephyr/soc/soc/nrf52833/libsoc__nordic.a(soc.c.obj) + .debug_line 0x0000000000014228 0x3480 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + .debug_line 0x00000000000176a8 0x2d25 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + .debug_line 0x000000000001a3cd 0x25f zephyr/drivers/adc/libdrivers__adc.a(adc_common.c.obj) + .debug_line 0x000000000001a62c 0x11c1 zephyr/drivers/adc/libdrivers__adc.a(adc_nrfx_saadc.c.obj) + .debug_line 0x000000000001b7ed 0x1c7e zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .debug_line 0x000000000001d46b 0x48e zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .debug_line 0x000000000001d8f9 0xf36 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + .debug_line 0x000000000001e82f 0x4d0 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_nrf.c.obj) + .debug_line 0x000000000001ecff 0x9b1 zephyr/drivers/sensor/nordic/temp/libdrivers__sensor__nordic__temp.a(temp_nrf5.c.obj) + .debug_line 0x000000000001f6b0 0x1da8 zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .debug_line 0x0000000000021458 0x678 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(system_nrf52833.c.obj) + .debug_line 0x0000000000021ad0 0x2ce modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_glue.c.obj) + .debug_line 0x0000000000021d9e 0x336 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_flag32_allocator.c.obj) + .debug_line 0x00000000000220d4 0xddb modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_clock.c.obj) + .debug_line 0x0000000000022eaf 0x3495 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .debug_line 0x0000000000026344 0x11fc modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + .debug_line 0x0000000000027540 0x87c modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_temp.c.obj) + .debug_line 0x0000000000027dbc 0x1979 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .debug_line 0x0000000000029735 0x34f modules/segger/libmodules__segger.a(SEGGER_RTT_zephyr.c.obj) + .debug_line 0x0000000000029a84 0x19c zephyr/kernel/libkernel.a(busy_wait.c.obj) + .debug_line 0x0000000000029c20 0x424 zephyr/kernel/libkernel.a(device.c.obj) + .debug_line 0x000000000002a044 0x6fb zephyr/kernel/libkernel.a(fatal.c.obj) + .debug_line 0x000000000002a73f 0xe67 zephyr/kernel/libkernel.a(init.c.obj) + .debug_line 0x000000000002b5a6 0x66 zephyr/kernel/libkernel.a(init_static.c.obj) + .debug_line 0x000000000002b60c 0xd16 zephyr/kernel/libkernel.a(mem_slab.c.obj) + .debug_line 0x000000000002c322 0x559 zephyr/kernel/libkernel.a(idle.c.obj) + .debug_line 0x000000000002c87b 0xda0 zephyr/kernel/libkernel.a(mutex.c.obj) + .debug_line 0x000000000002d61b 0x1a2f zephyr/kernel/libkernel.a(queue.c.obj) + .debug_line 0x000000000002f04a 0xdad zephyr/kernel/libkernel.a(sem.c.obj) + .debug_line 0x000000000002fdf7 0x3cbb zephyr/kernel/libkernel.a(work.c.obj) + .debug_line 0x0000000000033ab2 0xd66 zephyr/kernel/libkernel.a(thread.c.obj) + .debug_line 0x0000000000034818 0x5071 zephyr/kernel/libkernel.a(sched.c.obj) + .debug_line 0x0000000000039889 0x8b0 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .debug_line 0x000000000003a139 0x44d zephyr/kernel/libkernel.a(spinlock_validate.c.obj) + .debug_line 0x000000000003a586 0x182 zephyr/kernel/libkernel.a(xip.c.obj) + .debug_line 0x000000000003a708 0x17f1 zephyr/kernel/libkernel.a(timeout.c.obj) + .debug_line 0x000000000003bef9 0xe8f zephyr/kernel/libkernel.a(timer.c.obj) + .debug_line 0x000000000003cd88 0x3e2 zephyr/kernel/libkernel.a(mempool.c.obj) + .debug_line 0x000000000003d16a 0xbda zephyr/kernel/libkernel.a(kheap.c.obj) + .debug_line 0x000000000003dd44 0x39a zephyr/kernel/libkernel.a(system_work_q.c.obj) + +.debug_frame 0x0000000000000000 0x4bf8 + *(SORT_BY_ALIGNMENT(.debug_frame)) + .debug_frame 0x0000000000000000 0x20 zephyr/CMakeFiles/offsets.dir/./arch/arm/core/offsets/offsets.c.obj + .debug_frame 0x0000000000000020 0x3c app/libapp.a(main.c.obj) + .debug_frame 0x000000000000005c 0x11c app/libapp.a(led.c.obj) + .debug_frame 0x0000000000000178 0x60 app/libapp.a(button.c.obj) + .debug_frame 0x00000000000001d8 0x124 app/libapp.a(actuator.c.obj) + .debug_frame 0x00000000000002fc 0x6c app/libapp.a(battery_adc.c.obj) + .debug_frame 0x0000000000000368 0x44 app/libapp.a(temperature.c.obj) + .debug_frame 0x00000000000003ac 0xcc app/libapp.a(timer_count.c.obj) + .debug_frame 0x0000000000000478 0x1f4 zephyr/libzephyr.a(heap.c.obj) + .debug_frame 0x000000000000066c 0xc4 zephyr/libzephyr.a(printk.c.obj) + .debug_frame 0x0000000000000730 0x28 zephyr/libzephyr.a(thread_entry.c.obj) + .debug_frame 0x0000000000000758 0x54 zephyr/libzephyr.a(assert.c.obj) + .debug_frame 0x00000000000007ac 0x1b0 zephyr/libzephyr.a(onoff.c.obj) + .debug_frame 0x000000000000095c 0x38 zephyr/libzephyr.a(notify.c.obj) + .debug_frame 0x0000000000000994 0x110 zephyr/libzephyr.a(ring_buffer.c.obj) + .debug_frame 0x0000000000000aa4 0x20 zephyr/libzephyr.a(configs.c.obj) + .debug_frame 0x0000000000000ac4 0x30 zephyr/libzephyr.a(mem_attr.c.obj) + .debug_frame 0x0000000000000af4 0x300 zephyr/libzephyr.a(usb_device.c.obj) + .debug_frame 0x0000000000000df4 0xac zephyr/libzephyr.a(usb_descriptor.c.obj) + .debug_frame 0x0000000000000ea0 0x154 zephyr/libzephyr.a(usb_transfer.c.obj) + .debug_frame 0x0000000000000ff4 0x2ac zephyr/libzephyr.a(cdc_acm.c.obj) + .debug_frame 0x00000000000012a0 0x30 zephyr/libzephyr.a(usb_work_q.c.obj) + .debug_frame 0x00000000000012d0 0x2c zephyr/libzephyr.a(banner.c.obj) + .debug_frame 0x00000000000012fc 0x48 zephyr/arch/arch/arm/core/libarch__arm__core.a(fatal.c.obj) + .debug_frame 0x0000000000001344 0x2c zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi.c.obj) + .debug_frame 0x0000000000001370 0x30 zephyr/arch/arch/arm/core/libarch__arm__core.a(tls.c.obj) + .debug_frame 0x00000000000013a0 0x20 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(exc_exit.c.obj) + .debug_frame 0x00000000000013c0 0xa4 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault.c.obj) + .debug_frame 0x0000000000001464 0x40 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(scb.c.obj) + .debug_frame 0x00000000000014a4 0x20 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread_abort.c.obj) + .debug_frame 0x00000000000014c4 0x6c zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + .debug_frame 0x0000000000001530 0x28 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(prep_c.c.obj) + .debug_frame 0x0000000000001558 0x74 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread.c.obj) + .debug_frame 0x00000000000015cc 0x40 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(cpu_idle.c.obj) + .debug_frame 0x000000000000160c 0x20 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_init.c.obj) + .debug_frame 0x000000000000162c 0x2c zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(isr_wrapper.c.obj) + .debug_frame 0x0000000000001658 0x3c zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_core_mpu.c.obj) + .debug_frame 0x0000000000001694 0xa8 zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_mpu.c.obj) + .debug_frame 0x000000000000173c 0x60 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .debug_frame 0x000000000000179c 0xe8 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .debug_frame 0x0000000000001884 0x30 zephyr/soc/soc/nrf52833/libsoc__nordic.a(soc.c.obj) + .debug_frame 0x00000000000018b4 0x3bc zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + .debug_frame 0x0000000000001c70 0x3b0 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + .debug_frame 0x0000000000002020 0x2c zephyr/drivers/adc/libdrivers__adc.a(adc_common.c.obj) + .debug_frame 0x000000000000204c 0xc0 zephyr/drivers/adc/libdrivers__adc.a(adc_nrfx_saadc.c.obj) + .debug_frame 0x000000000000210c 0x21c zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .debug_frame 0x0000000000002328 0x54 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .debug_frame 0x000000000000237c 0x120 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + .debug_frame 0x000000000000249c 0x60 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_nrf.c.obj) + .debug_frame 0x00000000000024fc 0x88 zephyr/drivers/sensor/nordic/temp/libdrivers__sensor__nordic__temp.a(temp_nrf5.c.obj) + .debug_frame 0x0000000000002584 0x258 zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .debug_frame 0x00000000000027dc 0x68 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(system_nrf52833.c.obj) + .debug_frame 0x0000000000002844 0x40 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_glue.c.obj) + .debug_frame 0x0000000000002884 0x58 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_flag32_allocator.c.obj) + .debug_frame 0x00000000000028dc 0x100 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_clock.c.obj) + .debug_frame 0x00000000000029dc 0x40c modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .debug_frame 0x0000000000002de8 0x1d0 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + .debug_frame 0x0000000000002fb8 0x98 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_temp.c.obj) + .debug_frame 0x0000000000003050 0x434 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .debug_frame 0x0000000000003484 0x48 modules/segger/libmodules__segger.a(SEGGER_RTT_zephyr.c.obj) + .debug_frame 0x00000000000034cc 0x20 zephyr/kernel/libkernel.a(busy_wait.c.obj) + .debug_frame 0x00000000000034ec 0x64 zephyr/kernel/libkernel.a(device.c.obj) + .debug_frame 0x0000000000003550 0x78 zephyr/kernel/libkernel.a(fatal.c.obj) + .debug_frame 0x00000000000035c8 0x11c zephyr/kernel/libkernel.a(init.c.obj) + .debug_frame 0x00000000000036e4 0x20 zephyr/kernel/libkernel.a(init_static.c.obj) + .debug_frame 0x0000000000003704 0xf0 zephyr/kernel/libkernel.a(mem_slab.c.obj) + .debug_frame 0x00000000000037f4 0x40 zephyr/kernel/libkernel.a(idle.c.obj) + .debug_frame 0x0000000000003834 0x6c zephyr/kernel/libkernel.a(mutex.c.obj) + .debug_frame 0x00000000000038a0 0x22c zephyr/kernel/libkernel.a(queue.c.obj) + .debug_frame 0x0000000000003acc 0xa4 zephyr/kernel/libkernel.a(sem.c.obj) + .debug_frame 0x0000000000003b70 0x370 zephyr/kernel/libkernel.a(work.c.obj) + .debug_frame 0x0000000000003ee0 0x178 zephyr/kernel/libkernel.a(thread.c.obj) + .debug_frame 0x0000000000004058 0x490 zephyr/kernel/libkernel.a(sched.c.obj) + .debug_frame 0x00000000000044e8 0x9c zephyr/kernel/libkernel.a(timeslicing.c.obj) + .debug_frame 0x0000000000004584 0x40 zephyr/kernel/libkernel.a(spinlock_validate.c.obj) + .debug_frame 0x00000000000045c4 0x2c zephyr/kernel/libkernel.a(xip.c.obj) + .debug_frame 0x00000000000045f0 0x1c0 zephyr/kernel/libkernel.a(timeout.c.obj) + .debug_frame 0x00000000000047b0 0xe0 zephyr/kernel/libkernel.a(timer.c.obj) + .debug_frame 0x0000000000004890 0x4c zephyr/kernel/libkernel.a(mempool.c.obj) + .debug_frame 0x00000000000048dc 0x10c zephyr/kernel/libkernel.a(kheap.c.obj) + .debug_frame 0x00000000000049e8 0x2c zephyr/kernel/libkernel.a(system_work_q.c.obj) + .debug_frame 0x0000000000004a14 0x28 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(memcpy.c.o) + .debug_frame 0x0000000000004a3c 0x20 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(memset.c.o) + .debug_frame 0x0000000000004a5c 0x20 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(strlen.S.o) + .debug_frame 0x0000000000004a7c 0x28 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_string_strnlen.c.o) + .debug_frame 0x0000000000004aa4 0x60 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_vflprintf.c.o) + .debug_frame 0x0000000000004b04 0x24 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_mulsf3.o) + .debug_frame 0x0000000000004b28 0x4c /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_addsubsf3.o) + .debug_frame 0x0000000000004b74 0x24 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_fixsfsi.o) + .debug_frame 0x0000000000004b98 0x2c /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_aeabi_uldivmod.o) + .debug_frame 0x0000000000004bc4 0x34 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_udivmoddi4.o) + +.debug_str 0x0000000000000000 0x1097e + *(SORT_BY_ALIGNMENT(.debug_str)) + .debug_str 0x0000000000000000 0x37b zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj + 0x3be (size before relaxing) + .debug_str 0x000000000000037b 0x2c8 zephyr/CMakeFiles/offsets.dir/./arch/arm/core/offsets/offsets.c.obj + 0x3b7 (size before relaxing) + .debug_str 0x0000000000000643 0x47c app/libapp.a(main.c.obj) + 0x80f (size before relaxing) + .debug_str 0x0000000000000abf 0x450 app/libapp.a(led.c.obj) + 0xb81 (size before relaxing) + .debug_str 0x0000000000000f0f 0xa1 app/libapp.a(button.c.obj) + 0x8e5 (size before relaxing) + .debug_str 0x0000000000000fb0 0x98 app/libapp.a(actuator.c.obj) + 0x9d9 (size before relaxing) + .debug_str 0x0000000000001048 0x456 app/libapp.a(battery_adc.c.obj) + 0xe78 (size before relaxing) + .debug_str 0x000000000000149e 0x337 app/libapp.a(temperature.c.obj) + 0x616 (size before relaxing) + .debug_str 0x00000000000017d5 0x812 app/libapp.a(timer_count.c.obj) + 0x1233 (size before relaxing) + .debug_str 0x0000000000001fe7 0x3d3 zephyr/libzephyr.a(heap.c.obj) + 0x75c (size before relaxing) + .debug_str 0x00000000000023ba 0x12d zephyr/libzephyr.a(printk.c.obj) + 0x623 (size before relaxing) + .debug_str 0x00000000000024e7 0x1bd zephyr/libzephyr.a(thread_entry.c.obj) + 0x7d4 (size before relaxing) + .debug_str 0x00000000000026a4 0x60 zephyr/libzephyr.a(assert.c.obj) + 0x3ba (size before relaxing) + .debug_str 0x0000000000002704 0x4cb zephyr/libzephyr.a(onoff.c.obj) + 0x8e7 (size before relaxing) + .debug_str 0x0000000000002bcf 0x48 zephyr/libzephyr.a(notify.c.obj) + 0x3ac (size before relaxing) + .debug_str 0x0000000000002c17 0x1b2 zephyr/libzephyr.a(ring_buffer.c.obj) + 0x4d7 (size before relaxing) + .debug_str 0x0000000000002dc9 0x43 zephyr/libzephyr.a(last_section_id.c.obj) + 0x2b8 (size before relaxing) + .debug_str 0x0000000000002e0c 0x83 zephyr/libzephyr.a(configs.c.obj) + 0x254 (size before relaxing) + .debug_str 0x0000000000002e8f 0xb5 zephyr/libzephyr.a(mem_attr.c.obj) + 0x589 (size before relaxing) + .debug_str 0x0000000000002f44 0xcfc zephyr/libzephyr.a(usb_device.c.obj) + 0x1492 (size before relaxing) + .debug_str 0x0000000000003c40 0x346 zephyr/libzephyr.a(usb_descriptor.c.obj) + 0xe66 (size before relaxing) + .debug_str 0x0000000000003f86 0x1f7 zephyr/libzephyr.a(usb_transfer.c.obj) + 0x9a9 (size before relaxing) + .debug_str 0x000000000000417d 0x7af zephyr/libzephyr.a(cdc_acm.c.obj) + 0x16f7 (size before relaxing) + .debug_str 0x000000000000492c 0xdb zephyr/libzephyr.a(usb_work_q.c.obj) + 0x8ba (size before relaxing) + .debug_str 0x0000000000004a07 0x41 zephyr/libzephyr.a(banner.c.obj) + 0x2b4 (size before relaxing) + .debug_str 0x0000000000004a48 0x108 zephyr/arch/arch/arm/core/libarch__arm__core.a(fatal.c.obj) + 0x555 (size before relaxing) + .debug_str 0x0000000000004b50 0x5c zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi.c.obj) + 0x2c8 (size before relaxing) + .debug_str 0x0000000000004bac 0x48 zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi_on_reset.S.obj) + 0x9c (size before relaxing) + .debug_str 0x0000000000004bf4 0x9d zephyr/arch/arch/arm/core/libarch__arm__core.a(tls.c.obj) + 0x7ca (size before relaxing) + .debug_str 0x0000000000004c91 0xcd zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(exc_exit.c.obj) + 0x5e6 (size before relaxing) + .debug_str 0x0000000000004d5e 0x6a2 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault.c.obj) + 0xc67 (size before relaxing) + .debug_str 0x0000000000005400 0x40 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault_s.S.obj) + 0xa0 (size before relaxing) + .debug_str 0x0000000000005440 0x3e zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(reset.S.obj) + 0x9e (size before relaxing) + .debug_str 0x000000000000547e 0x11f zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(scb.c.obj) + 0x4ff (size before relaxing) + .debug_str 0x000000000000559d 0x63 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread_abort.c.obj) + 0x630 (size before relaxing) + .debug_str 0x0000000000005600 0x44 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(swap_helper.S.obj) + 0xa4 (size before relaxing) + .debug_str 0x0000000000005644 0xa4 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + 0x7f8 (size before relaxing) + .debug_str 0x00000000000056e8 0xbb zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(prep_c.c.obj) + 0x435 (size before relaxing) + .debug_str 0x00000000000057a3 0x10a zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread.c.obj) + 0x764 (size before relaxing) + .debug_str 0x00000000000058ad 0x78 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(cpu_idle.c.obj) + 0x3b5 (size before relaxing) + .debug_str 0x0000000000005925 0x41 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_init.c.obj) + 0x697 (size before relaxing) + .debug_str 0x0000000000005966 0x44 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(isr_wrapper.c.obj) + 0x334 (size before relaxing) + .debug_str 0x00000000000059aa 0x48 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(__aeabi_read_tp.S.obj) + 0xa8 (size before relaxing) + .debug_str 0x00000000000059f2 0x16f zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_core_mpu.c.obj) + 0x712 (size before relaxing) + .debug_str 0x0000000000005b61 0x26a zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_mpu.c.obj) + 0x8f2 (size before relaxing) + .debug_str 0x0000000000005dcb 0x43 zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_mpu_regions.c.obj) + 0x3e2 (size before relaxing) + .debug_str 0x0000000000005e0e 0xb1 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + 0x5b6 (size before relaxing) + .debug_str 0x0000000000005ebf 0x2c1 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + 0x84c (size before relaxing) + .debug_str 0x0000000000006180 0x130 zephyr/soc/soc/nrf52833/libsoc__nordic.a(soc.c.obj) + 0x50e (size before relaxing) + .debug_str 0x00000000000062b0 0x151e zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + 0x25a6 (size before relaxing) + .debug_str 0x00000000000077ce 0x6f9 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + 0x1bad (size before relaxing) + .debug_str 0x0000000000007ec7 0x48 zephyr/drivers/adc/libdrivers__adc.a(adc_common.c.obj) + 0x403 (size before relaxing) + .debug_str 0x0000000000007f0f 0x1233 zephyr/drivers/adc/libdrivers__adc.a(adc_nrfx_saadc.c.obj) + 0x1d34 (size before relaxing) + .debug_str 0x0000000000009142 0xc0c zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + 0x19c8 (size before relaxing) + .debug_str 0x0000000000009d4e 0xfe zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + 0x6c8 (size before relaxing) + .debug_str 0x0000000000009e4c 0x811 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + 0x1659 (size before relaxing) + .debug_str 0x000000000000a65d 0x2ff zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_nrf.c.obj) + 0x7b8 (size before relaxing) + .debug_str 0x000000000000a95c 0xdf5 zephyr/drivers/sensor/nordic/temp/libdrivers__sensor__nordic__temp.a(temp_nrf5.c.obj) + 0x1911 (size before relaxing) + .debug_str 0x000000000000b751 0x97e zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + 0x15fb (size before relaxing) + .debug_str 0x000000000000c0cf 0x166 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(system_nrf52833.c.obj) + 0x8f9 (size before relaxing) + .debug_str 0x000000000000c235 0x7b modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_glue.c.obj) + 0x4cf (size before relaxing) + .debug_str 0x000000000000c2b0 0xa6 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_flag32_allocator.c.obj) + 0x51a (size before relaxing) + .debug_str 0x000000000000c356 0x1ee modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_clock.c.obj) + 0x118e (size before relaxing) + .debug_str 0x000000000000c544 0x11b0 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + 0x249a (size before relaxing) + .debug_str 0x000000000000d6f4 0x932 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + 0x167d (size before relaxing) + .debug_str 0x000000000000e026 0x172 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_temp.c.obj) + 0xc77 (size before relaxing) + .debug_str 0x000000000000e198 0x525 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + 0x801 (size before relaxing) + .debug_str 0x000000000000e6bd 0x7c modules/segger/libmodules__segger.a(SEGGER_RTT_zephyr.c.obj) + 0x615 (size before relaxing) + .debug_str 0x000000000000e739 0x32 zephyr/kernel/libkernel.a(busy_wait.c.obj) + 0x2e1 (size before relaxing) + .debug_str 0x000000000000e76b 0xb6 zephyr/kernel/libkernel.a(device.c.obj) + 0x3c8 (size before relaxing) + .debug_str 0x000000000000e821 0x8b zephyr/kernel/libkernel.a(fatal.c.obj) + 0x833 (size before relaxing) + .debug_str 0x000000000000e8ac 0x53a zephyr/kernel/libkernel.a(init.c.obj) + 0x110b (size before relaxing) + .debug_str 0x000000000000ede6 0x34 zephyr/kernel/libkernel.a(init_static.c.obj) + 0x213 (size before relaxing) + .debug_str 0x000000000000ee1a 0x26b zephyr/kernel/libkernel.a(mem_slab.c.obj) + 0xc64 (size before relaxing) + .debug_str 0x000000000000f085 0x51 zephyr/kernel/libkernel.a(idle.c.obj) + 0x6aa (size before relaxing) + .debug_str 0x000000000000f0d6 0x12c zephyr/kernel/libkernel.a(mutex.c.obj) + 0xada (size before relaxing) + .debug_str 0x000000000000f202 0x33c zephyr/kernel/libkernel.a(queue.c.obj) + 0xd82 (size before relaxing) + .debug_str 0x000000000000f53e 0x3f zephyr/kernel/libkernel.a(sem.c.obj) + 0xa7c (size before relaxing) + .debug_str 0x000000000000f57d 0x68e zephyr/kernel/libkernel.a(work.c.obj) + 0x139c (size before relaxing) + .debug_str 0x000000000000fc0b 0x22e zephyr/kernel/libkernel.a(thread.c.obj) + 0xbb8 (size before relaxing) + .debug_str 0x000000000000fe39 0x65a zephyr/kernel/libkernel.a(sched.c.obj) + 0x1369 (size before relaxing) + .debug_str 0x0000000000010493 0xbd zephyr/kernel/libkernel.a(timeslicing.c.obj) + 0xac4 (size before relaxing) + .debug_str 0x0000000000010550 0x3f zephyr/kernel/libkernel.a(spinlock_validate.c.obj) + 0x5d4 (size before relaxing) + .debug_str 0x000000000001058f 0xa5 zephyr/kernel/libkernel.a(xip.c.obj) + 0x333 (size before relaxing) + .debug_str 0x0000000000010634 0x133 zephyr/kernel/libkernel.a(timeout.c.obj) + 0x975 (size before relaxing) + .debug_str 0x0000000000010767 0x6c zephyr/kernel/libkernel.a(timer.c.obj) + 0xb01 (size before relaxing) + .debug_str 0x00000000000107d3 0x89 zephyr/kernel/libkernel.a(mempool.c.obj) + 0x634 (size before relaxing) + .debug_str 0x000000000001085c 0xc2 zephyr/kernel/libkernel.a(kheap.c.obj) + 0x934 (size before relaxing) + .debug_str 0x000000000001091e 0x60 zephyr/kernel/libkernel.a(system_work_q.c.obj) + 0x87d (size before relaxing) + +.debug_loc 0x0000000000000000 0x46a1d + *(SORT_BY_ALIGNMENT(.debug_loc)) + .debug_loc 0x0000000000000000 0x19b app/libapp.a(main.c.obj) + .debug_loc 0x000000000000019b 0x9cb app/libapp.a(led.c.obj) + .debug_loc 0x0000000000000b66 0x2cc app/libapp.a(button.c.obj) + .debug_loc 0x0000000000000e32 0x9b1 app/libapp.a(actuator.c.obj) + .debug_loc 0x00000000000017e3 0x63b app/libapp.a(battery_adc.c.obj) + .debug_loc 0x0000000000001e1e 0x7b app/libapp.a(temperature.c.obj) + .debug_loc 0x0000000000001e99 0x65f app/libapp.a(timer_count.c.obj) + .debug_loc 0x00000000000024f8 0x59d0 zephyr/libzephyr.a(heap.c.obj) + .debug_loc 0x0000000000007ec8 0x19e zephyr/libzephyr.a(printk.c.obj) + .debug_loc 0x0000000000008066 0xd7 zephyr/libzephyr.a(thread_entry.c.obj) + .debug_loc 0x000000000000813d 0x51 zephyr/libzephyr.a(assert.c.obj) + .debug_loc 0x000000000000818e 0x3112 zephyr/libzephyr.a(onoff.c.obj) + .debug_loc 0x000000000000b2a0 0x20b zephyr/libzephyr.a(notify.c.obj) + .debug_loc 0x000000000000b4ab 0x15e8 zephyr/libzephyr.a(ring_buffer.c.obj) + .debug_loc 0x000000000000ca93 0x6f zephyr/libzephyr.a(mem_attr.c.obj) + .debug_loc 0x000000000000cb02 0x222b zephyr/libzephyr.a(usb_device.c.obj) + .debug_loc 0x000000000000ed2d 0x9b1 zephyr/libzephyr.a(usb_descriptor.c.obj) + .debug_loc 0x000000000000f6de 0x9f0 zephyr/libzephyr.a(usb_transfer.c.obj) + .debug_loc 0x00000000000100ce 0x1729 zephyr/libzephyr.a(cdc_acm.c.obj) + .debug_loc 0x00000000000117f7 0x34 zephyr/libzephyr.a(usb_work_q.c.obj) + .debug_loc 0x000000000001182b 0x16e zephyr/arch/arch/arm/core/libarch__arm__core.a(fatal.c.obj) + .debug_loc 0x0000000000011999 0x85 zephyr/arch/arch/arm/core/libarch__arm__core.a(tls.c.obj) + .debug_loc 0x0000000000011a1e 0xaa2 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault.c.obj) + .debug_loc 0x00000000000124c0 0x230 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(scb.c.obj) + .debug_loc 0x00000000000126f0 0x57 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread_abort.c.obj) + .debug_loc 0x0000000000012747 0x231 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + .debug_loc 0x0000000000012978 0x218 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread.c.obj) + .debug_loc 0x0000000000012b90 0x56 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(cpu_idle.c.obj) + .debug_loc 0x0000000000012be6 0x6a zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_init.c.obj) + .debug_loc 0x0000000000012c50 0x3f zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(isr_wrapper.c.obj) + .debug_loc 0x0000000000012c8f 0x7b zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_core_mpu.c.obj) + .debug_loc 0x0000000000012d0a 0xdf2 zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_mpu.c.obj) + .debug_loc 0x0000000000013afc 0x112 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .debug_loc 0x0000000000013c0e 0x75f zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .debug_loc 0x000000000001436d 0xd9 zephyr/soc/soc/nrf52833/libsoc__nordic.a(soc.c.obj) + .debug_loc 0x0000000000014446 0x375e zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + .debug_loc 0x0000000000017ba4 0x29f1 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + .debug_loc 0x000000000001a595 0xb9 zephyr/drivers/adc/libdrivers__adc.a(adc_common.c.obj) + .debug_loc 0x000000000001a64e 0x19ef zephyr/drivers/adc/libdrivers__adc.a(adc_nrfx_saadc.c.obj) + .debug_loc 0x000000000001c03d 0x2a48 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .debug_loc 0x000000000001ea85 0x7c zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .debug_loc 0x000000000001eb01 0x1bde zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + .debug_loc 0x00000000000206df 0x1dc zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_nrf.c.obj) + .debug_loc 0x00000000000208bb 0x4b3 zephyr/drivers/sensor/nordic/temp/libdrivers__sensor__nordic__temp.a(temp_nrf5.c.obj) + .debug_loc 0x0000000000020d6e 0x22b7 zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .debug_loc 0x0000000000023025 0x154 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(system_nrf52833.c.obj) + .debug_loc 0x0000000000023179 0x258 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_glue.c.obj) + .debug_loc 0x00000000000233d1 0x357 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_flag32_allocator.c.obj) + .debug_loc 0x0000000000023728 0xbe3 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_clock.c.obj) + .debug_loc 0x000000000002430b 0x8220 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .debug_loc 0x000000000002c52b 0xde3 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + .debug_loc 0x000000000002d30e 0x647 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_temp.c.obj) + .debug_loc 0x000000000002d955 0x2c23 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .debug_loc 0x0000000000030578 0x6b modules/segger/libmodules__segger.a(SEGGER_RTT_zephyr.c.obj) + .debug_loc 0x00000000000305e3 0x25 zephyr/kernel/libkernel.a(busy_wait.c.obj) + .debug_loc 0x0000000000030608 0xc8 zephyr/kernel/libkernel.a(device.c.obj) + .debug_loc 0x00000000000306d0 0x1d5 zephyr/kernel/libkernel.a(fatal.c.obj) + .debug_loc 0x00000000000308a5 0x975 zephyr/kernel/libkernel.a(init.c.obj) + .debug_loc 0x000000000003121a 0xcfb zephyr/kernel/libkernel.a(mem_slab.c.obj) + .debug_loc 0x0000000000031f15 0x11e zephyr/kernel/libkernel.a(idle.c.obj) + .debug_loc 0x0000000000032033 0xcce zephyr/kernel/libkernel.a(mutex.c.obj) + .debug_loc 0x0000000000032d01 0x26e9 zephyr/kernel/libkernel.a(queue.c.obj) + .debug_loc 0x00000000000353ea 0xb77 zephyr/kernel/libkernel.a(sem.c.obj) + .debug_loc 0x0000000000035f61 0x5ba9 zephyr/kernel/libkernel.a(work.c.obj) + .debug_loc 0x000000000003bb0a 0xcd3 zephyr/kernel/libkernel.a(thread.c.obj) + .debug_loc 0x000000000003c7dd 0x65f9 zephyr/kernel/libkernel.a(sched.c.obj) + .debug_loc 0x0000000000042dd6 0x553 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .debug_loc 0x0000000000043329 0xd1 zephyr/kernel/libkernel.a(spinlock_validate.c.obj) + .debug_loc 0x00000000000433fa 0x1c69 zephyr/kernel/libkernel.a(timeout.c.obj) + .debug_loc 0x0000000000045063 0xbad zephyr/kernel/libkernel.a(timer.c.obj) + .debug_loc 0x0000000000045c10 0x2e5 zephyr/kernel/libkernel.a(mempool.c.obj) + .debug_loc 0x0000000000045ef5 0xb28 zephyr/kernel/libkernel.a(kheap.c.obj) + +.debug_macinfo + *(SORT_BY_ALIGNMENT(.debug_macinfo)) + +.debug_weaknames + *(SORT_BY_ALIGNMENT(.debug_weaknames)) + +.debug_funcnames + *(SORT_BY_ALIGNMENT(.debug_funcnames)) + +.debug_typenames + *(SORT_BY_ALIGNMENT(.debug_typenames)) + +.debug_varnames + *(SORT_BY_ALIGNMENT(.debug_varnames)) + +.debug_pubtypes + *(SORT_BY_ALIGNMENT(.debug_pubtypes)) + +.debug_ranges 0x0000000000000000 0xf1b0 + *(SORT_BY_ALIGNMENT(.debug_ranges)) + .debug_ranges 0x0000000000000000 0x20 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(swap_helper.S.obj) + .debug_ranges 0x0000000000000020 0x10 zephyr/CMakeFiles/offsets.dir/./arch/arm/core/offsets/offsets.c.obj + .debug_ranges 0x0000000000000030 0x30 app/libapp.a(main.c.obj) + .debug_ranges 0x0000000000000060 0x190 app/libapp.a(led.c.obj) + .debug_ranges 0x00000000000001f0 0xb0 app/libapp.a(button.c.obj) + .debug_ranges 0x00000000000002a0 0x330 app/libapp.a(actuator.c.obj) + .debug_ranges 0x00000000000005d0 0xf0 app/libapp.a(battery_adc.c.obj) + .debug_ranges 0x00000000000006c0 0x18 app/libapp.a(temperature.c.obj) + .debug_ranges 0x00000000000006d8 0x2c0 app/libapp.a(timer_count.c.obj) + .debug_ranges 0x0000000000000998 0xf70 zephyr/libzephyr.a(heap.c.obj) + .debug_ranges 0x0000000000001908 0x88 zephyr/libzephyr.a(printk.c.obj) + .debug_ranges 0x0000000000001990 0x28 zephyr/libzephyr.a(thread_entry.c.obj) + .debug_ranges 0x00000000000019b8 0x18 zephyr/libzephyr.a(assert.c.obj) + .debug_ranges 0x00000000000019d0 0x788 zephyr/libzephyr.a(onoff.c.obj) + .debug_ranges 0x0000000000002158 0x38 zephyr/libzephyr.a(notify.c.obj) + .debug_ranges 0x0000000000002190 0x250 zephyr/libzephyr.a(ring_buffer.c.obj) + .debug_ranges 0x00000000000023e0 0x10 zephyr/libzephyr.a(configs.c.obj) + .debug_ranges 0x00000000000023f0 0x18 zephyr/libzephyr.a(mem_attr.c.obj) + .debug_ranges 0x0000000000002408 0x618 zephyr/libzephyr.a(usb_device.c.obj) + .debug_ranges 0x0000000000002a20 0x208 zephyr/libzephyr.a(usb_descriptor.c.obj) + .debug_ranges 0x0000000000002c28 0x260 zephyr/libzephyr.a(usb_transfer.c.obj) + .debug_ranges 0x0000000000002e88 0x320 zephyr/libzephyr.a(cdc_acm.c.obj) + .debug_ranges 0x00000000000031a8 0x10 zephyr/libzephyr.a(usb_work_q.c.obj) + .debug_ranges 0x00000000000031b8 0x10 zephyr/libzephyr.a(banner.c.obj) + .debug_ranges 0x00000000000031c8 0x20 zephyr/arch/arch/arm/core/libarch__arm__core.a(fatal.c.obj) + .debug_ranges 0x00000000000031e8 0x10 zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi.c.obj) + .debug_ranges 0x00000000000031f8 0x48 zephyr/arch/arch/arm/core/libarch__arm__core.a(tls.c.obj) + .debug_ranges 0x0000000000003240 0x10 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(exc_exit.c.obj) + .debug_ranges 0x0000000000003250 0x180 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault.c.obj) + .debug_ranges 0x00000000000033d0 0x60 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(scb.c.obj) + .debug_ranges 0x0000000000003430 0x10 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread_abort.c.obj) + .debug_ranges 0x0000000000003440 0x48 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + .debug_ranges 0x0000000000003488 0x28 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(prep_c.c.obj) + .debug_ranges 0x00000000000034b0 0x30 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread.c.obj) + .debug_ranges 0x00000000000034e0 0x20 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(cpu_idle.c.obj) + .debug_ranges 0x0000000000003500 0x38 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_init.c.obj) + .debug_ranges 0x0000000000003538 0x28 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(isr_wrapper.c.obj) + .debug_ranges 0x0000000000003560 0x18 zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_core_mpu.c.obj) + .debug_ranges 0x0000000000003578 0x5e8 zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_mpu.c.obj) + .debug_ranges 0x0000000000003b60 0x40 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .debug_ranges 0x0000000000003ba0 0x200 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .debug_ranges 0x0000000000003da0 0x18 zephyr/soc/soc/nrf52833/libsoc__nordic.a(soc.c.obj) + .debug_ranges 0x0000000000003db8 0xdf0 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + .debug_ranges 0x0000000000004ba8 0xb38 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + .debug_ranges 0x00000000000056e0 0x30 zephyr/drivers/adc/libdrivers__adc.a(adc_common.c.obj) + .debug_ranges 0x0000000000005710 0x528 zephyr/drivers/adc/libdrivers__adc.a(adc_nrfx_saadc.c.obj) + .debug_ranges 0x0000000000005c38 0x780 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .debug_ranges 0x00000000000063b8 0x38 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .debug_ranges 0x00000000000063f0 0x3e8 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + .debug_ranges 0x00000000000067d8 0x48 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_nrf.c.obj) + .debug_ranges 0x0000000000006820 0x70 zephyr/drivers/sensor/nordic/temp/libdrivers__sensor__nordic__temp.a(temp_nrf5.c.obj) + .debug_ranges 0x0000000000006890 0x7d8 zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .debug_ranges 0x0000000000007068 0x108 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(system_nrf52833.c.obj) + .debug_ranges 0x0000000000007170 0x20 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_glue.c.obj) + .debug_ranges 0x0000000000007190 0x68 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_flag32_allocator.c.obj) + .debug_ranges 0x00000000000071f8 0x328 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_clock.c.obj) + .debug_ranges 0x0000000000007520 0x17a0 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .debug_ranges 0x0000000000008cc0 0x580 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + .debug_ranges 0x0000000000009240 0xe8 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_temp.c.obj) + .debug_ranges 0x0000000000009328 0x510 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .debug_ranges 0x0000000000009838 0x20 modules/segger/libmodules__segger.a(SEGGER_RTT_zephyr.c.obj) + .debug_ranges 0x0000000000009858 0x10 zephyr/kernel/libkernel.a(busy_wait.c.obj) + .debug_ranges 0x0000000000009868 0x90 zephyr/kernel/libkernel.a(device.c.obj) + .debug_ranges 0x00000000000098f8 0x70 zephyr/kernel/libkernel.a(fatal.c.obj) + .debug_ranges 0x0000000000009968 0x360 zephyr/kernel/libkernel.a(init.c.obj) + .debug_ranges 0x0000000000009cc8 0x10 zephyr/kernel/libkernel.a(init_static.c.obj) + .debug_ranges 0x0000000000009cd8 0x300 zephyr/kernel/libkernel.a(mem_slab.c.obj) + .debug_ranges 0x0000000000009fd8 0x78 zephyr/kernel/libkernel.a(idle.c.obj) + .debug_ranges 0x000000000000a050 0x238 zephyr/kernel/libkernel.a(mutex.c.obj) + .debug_ranges 0x000000000000a288 0x888 zephyr/kernel/libkernel.a(queue.c.obj) + .debug_ranges 0x000000000000ab10 0x410 zephyr/kernel/libkernel.a(sem.c.obj) + .debug_ranges 0x000000000000af20 0x1018 zephyr/kernel/libkernel.a(work.c.obj) + .debug_ranges 0x000000000000bf38 0x218 zephyr/kernel/libkernel.a(thread.c.obj) + .debug_ranges 0x000000000000c150 0x2040 zephyr/kernel/libkernel.a(sched.c.obj) + .debug_ranges 0x000000000000e190 0x170 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .debug_ranges 0x000000000000e300 0x20 zephyr/kernel/libkernel.a(spinlock_validate.c.obj) + .debug_ranges 0x000000000000e320 0x10 zephyr/kernel/libkernel.a(xip.c.obj) + .debug_ranges 0x000000000000e330 0x980 zephyr/kernel/libkernel.a(timeout.c.obj) + .debug_ranges 0x000000000000ecb0 0x298 zephyr/kernel/libkernel.a(timer.c.obj) + .debug_ranges 0x000000000000ef48 0x30 zephyr/kernel/libkernel.a(mempool.c.obj) + .debug_ranges 0x000000000000ef78 0x228 zephyr/kernel/libkernel.a(kheap.c.obj) + .debug_ranges 0x000000000000f1a0 0x10 zephyr/kernel/libkernel.a(system_work_q.c.obj) + +.debug_addr + *(SORT_BY_ALIGNMENT(.debug_addr)) + +.debug_line_str + *(SORT_BY_ALIGNMENT(.debug_line_str)) + +.debug_loclists + *(SORT_BY_ALIGNMENT(.debug_loclists)) + +.debug_macro + *(SORT_BY_ALIGNMENT(.debug_macro)) + +.debug_names + *(SORT_BY_ALIGNMENT(.debug_names)) + +.debug_rnglists + *(SORT_BY_ALIGNMENT(.debug_rnglists)) + +.debug_str_offsets + *(SORT_BY_ALIGNMENT(.debug_str_offsets)) + +.debug_sup + *(SORT_BY_ALIGNMENT(.debug_sup)) + +/DISCARD/ + *(SORT_BY_ALIGNMENT(.note.GNU-stack)) + +.ARM.attributes + 0x0000000000000000 0x32 + *(SORT_BY_ALIGNMENT(.ARM.attributes)) + .ARM.attributes + 0x0000000000000000 0x30 zephyr/CMakeFiles/zephyr_final.dir/misc/empty_file.c.obj + .ARM.attributes + 0x0000000000000030 0x30 zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj + .ARM.attributes + 0x0000000000000060 0x30 zephyr/CMakeFiles/offsets.dir/./arch/arm/core/offsets/offsets.c.obj + .ARM.attributes + 0x0000000000000090 0x30 app/libapp.a(main.c.obj) + .ARM.attributes + 0x00000000000000c0 0x30 app/libapp.a(led.c.obj) + .ARM.attributes + 0x00000000000000f0 0x30 app/libapp.a(button.c.obj) + .ARM.attributes + 0x0000000000000120 0x30 app/libapp.a(actuator.c.obj) + .ARM.attributes + 0x0000000000000150 0x30 app/libapp.a(battery_adc.c.obj) + .ARM.attributes + 0x0000000000000180 0x30 app/libapp.a(temperature.c.obj) + .ARM.attributes + 0x00000000000001b0 0x30 app/libapp.a(timer_count.c.obj) + .ARM.attributes + 0x00000000000001e0 0x30 zephyr/libzephyr.a(heap.c.obj) + .ARM.attributes + 0x0000000000000210 0x30 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .ARM.attributes + 0x0000000000000240 0x30 zephyr/libzephyr.a(printk.c.obj) + .ARM.attributes + 0x0000000000000270 0x30 zephyr/libzephyr.a(sem.c.obj) + .ARM.attributes + 0x00000000000002a0 0x30 zephyr/libzephyr.a(thread_entry.c.obj) + .ARM.attributes + 0x00000000000002d0 0x30 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .ARM.attributes + 0x0000000000000300 0x30 zephyr/libzephyr.a(assert.c.obj) + .ARM.attributes + 0x0000000000000330 0x30 zephyr/libzephyr.a(dec.c.obj) + .ARM.attributes + 0x0000000000000360 0x30 zephyr/libzephyr.a(hex.c.obj) + .ARM.attributes + 0x0000000000000390 0x30 zephyr/libzephyr.a(rb.c.obj) + .ARM.attributes + 0x00000000000003c0 0x30 zephyr/libzephyr.a(timeutil.c.obj) + .ARM.attributes + 0x00000000000003f0 0x30 zephyr/libzephyr.a(bitarray.c.obj) + .ARM.attributes + 0x0000000000000420 0x30 zephyr/libzephyr.a(onoff.c.obj) + .ARM.attributes + 0x0000000000000450 0x30 zephyr/libzephyr.a(notify.c.obj) + .ARM.attributes + 0x0000000000000480 0x30 zephyr/libzephyr.a(ring_buffer.c.obj) + .ARM.attributes + 0x00000000000004b0 0x30 zephyr/libzephyr.a(last_section_id.c.obj) + .ARM.attributes + 0x00000000000004e0 0x30 zephyr/libzephyr.a(configs.c.obj) + .ARM.attributes + 0x0000000000000510 0x30 zephyr/libzephyr.a(mem_attr.c.obj) + .ARM.attributes + 0x0000000000000540 0x30 zephyr/libzephyr.a(tracing_none.c.obj) + .ARM.attributes + 0x0000000000000570 0x30 zephyr/libzephyr.a(usb_device.c.obj) + .ARM.attributes + 0x00000000000005a0 0x30 zephyr/libzephyr.a(usb_descriptor.c.obj) + .ARM.attributes + 0x00000000000005d0 0x30 zephyr/libzephyr.a(usb_transfer.c.obj) + .ARM.attributes + 0x0000000000000600 0x30 zephyr/libzephyr.a(cdc_acm.c.obj) + .ARM.attributes + 0x0000000000000630 0x30 zephyr/libzephyr.a(usb_work_q.c.obj) + .ARM.attributes + 0x0000000000000660 0x30 zephyr/libzephyr.a(banner.c.obj) + .ARM.attributes + 0x0000000000000690 0x30 zephyr/libzephyr.a(flash_map_partition_manager.c.obj) + .ARM.attributes + 0x00000000000006c0 0x30 zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .ARM.attributes + 0x00000000000006f0 0x30 zephyr/arch/arch/arm/core/libarch__arm__core.a(fatal.c.obj) + .ARM.attributes + 0x0000000000000720 0x30 zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi.c.obj) + .ARM.attributes + 0x0000000000000750 0x1c zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi_on_reset.S.obj) + .ARM.attributes + 0x000000000000076c 0x30 zephyr/arch/arch/arm/core/libarch__arm__core.a(tls.c.obj) + .ARM.attributes + 0x000000000000079c 0x30 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(exc_exit.c.obj) + .ARM.attributes + 0x00000000000007cc 0x30 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault.c.obj) + .ARM.attributes + 0x00000000000007fc 0x1c zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault_s.S.obj) + .ARM.attributes + 0x0000000000000818 0x30 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fpu.c.obj) + .ARM.attributes + 0x0000000000000848 0x1c zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(reset.S.obj) + .ARM.attributes + 0x0000000000000864 0x30 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(scb.c.obj) + .ARM.attributes + 0x0000000000000894 0x30 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread_abort.c.obj) + .ARM.attributes + 0x00000000000008c4 0x1e zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(vector_table.S.obj) + .ARM.attributes + 0x00000000000008e2 0x1c zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(swap_helper.S.obj) + .ARM.attributes + 0x00000000000008fe 0x30 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + .ARM.attributes + 0x000000000000092e 0x30 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(prep_c.c.obj) + .ARM.attributes + 0x000000000000095e 0x30 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread.c.obj) + .ARM.attributes + 0x000000000000098e 0x30 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(cpu_idle.c.obj) + .ARM.attributes + 0x00000000000009be 0x30 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_init.c.obj) + .ARM.attributes + 0x00000000000009ee 0x30 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(isr_wrapper.c.obj) + .ARM.attributes + 0x0000000000000a1e 0x1c zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(__aeabi_read_tp.S.obj) + .ARM.attributes + 0x0000000000000a3a 0x30 zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_core_mpu.c.obj) + .ARM.attributes + 0x0000000000000a6a 0x30 zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_mpu.c.obj) + .ARM.attributes + 0x0000000000000a9a 0x30 zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_mpu_regions.c.obj) + .ARM.attributes + 0x0000000000000aca 0x30 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .ARM.attributes + 0x0000000000000afa 0x30 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .ARM.attributes + 0x0000000000000b2a 0x30 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .ARM.attributes + 0x0000000000000b5a 0x30 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + .ARM.attributes + 0x0000000000000b8a 0x30 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .ARM.attributes + 0x0000000000000bba 0x30 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .ARM.attributes + 0x0000000000000bea 0x30 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .ARM.attributes + 0x0000000000000c1a 0x30 zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .ARM.attributes + 0x0000000000000c4a 0x30 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .ARM.attributes + 0x0000000000000c7a 0x30 zephyr/soc/soc/nrf52833/libsoc__nordic.a(validate_base_addresses.c.obj) + .ARM.attributes + 0x0000000000000caa 0x30 zephyr/soc/soc/nrf52833/libsoc__nordic.a(validate_binding_headers.c.obj) + .ARM.attributes + 0x0000000000000cda 0x30 zephyr/soc/soc/nrf52833/libsoc__nordic.a(validate_enabled_instances.c.obj) + .ARM.attributes + 0x0000000000000d0a 0x30 zephyr/soc/soc/nrf52833/libsoc__nordic.a(soc.c.obj) + .ARM.attributes + 0x0000000000000d3a 0x30 zephyr/soc/soc/nrf52833/libsoc__nordic.a(reboot.c.obj) + .ARM.attributes + 0x0000000000000d6a 0x30 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + .ARM.attributes + 0x0000000000000d9a 0x30 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + .ARM.attributes + 0x0000000000000dca 0x30 zephyr/drivers/adc/libdrivers__adc.a(adc_common.c.obj) + .ARM.attributes + 0x0000000000000dfa 0x30 zephyr/drivers/adc/libdrivers__adc.a(adc_nrfx_saadc.c.obj) + .ARM.attributes + 0x0000000000000e2a 0x30 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .ARM.attributes + 0x0000000000000e5a 0x30 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .ARM.attributes + 0x0000000000000e8a 0x30 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + .ARM.attributes + 0x0000000000000eba 0x30 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_weak_impl.c.obj) + .ARM.attributes + 0x0000000000000eea 0x30 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_nrf.c.obj) + .ARM.attributes + 0x0000000000000f1a 0x30 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .ARM.attributes + 0x0000000000000f4a 0x30 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_nrf.c.obj) + .ARM.attributes + 0x0000000000000f7a 0x30 zephyr/drivers/sensor/nordic/temp/libdrivers__sensor__nordic__temp.a(temp_nrf5.c.obj) + .ARM.attributes + 0x0000000000000faa 0x30 zephyr/drivers/serial/libdrivers__serial.a(empty_file.c.obj) + .ARM.attributes + 0x0000000000000fda 0x30 zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .ARM.attributes + 0x000000000000100a 0x30 zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .ARM.attributes + 0x000000000000103a 0x30 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(system_nrf52833.c.obj) + .ARM.attributes + 0x000000000000106a 0x30 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_glue.c.obj) + .ARM.attributes + 0x000000000000109a 0x30 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_flag32_allocator.c.obj) + .ARM.attributes + 0x00000000000010ca 0x30 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_ram_ctrl.c.obj) + .ARM.attributes + 0x00000000000010fa 0x30 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_clock.c.obj) + .ARM.attributes + 0x000000000000112a 0x30 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .ARM.attributes + 0x000000000000115a 0x30 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + .ARM.attributes + 0x000000000000118a 0x30 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_temp.c.obj) + .ARM.attributes + 0x00000000000011ba 0x30 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .ARM.attributes + 0x00000000000011ea 0x30 modules/segger/libmodules__segger.a(SEGGER_RTT_zephyr.c.obj) + .ARM.attributes + 0x000000000000121a 0x30 zephyr/kernel/libkernel.a(busy_wait.c.obj) + .ARM.attributes + 0x000000000000124a 0x30 zephyr/kernel/libkernel.a(device.c.obj) + .ARM.attributes + 0x000000000000127a 0x30 zephyr/kernel/libkernel.a(fatal.c.obj) + .ARM.attributes + 0x00000000000012aa 0x30 zephyr/kernel/libkernel.a(init.c.obj) + .ARM.attributes + 0x00000000000012da 0x30 zephyr/kernel/libkernel.a(init_static.c.obj) + .ARM.attributes + 0x000000000000130a 0x30 zephyr/kernel/libkernel.a(mem_slab.c.obj) + .ARM.attributes + 0x000000000000133a 0x30 zephyr/kernel/libkernel.a(idle.c.obj) + .ARM.attributes + 0x000000000000136a 0x30 zephyr/kernel/libkernel.a(mutex.c.obj) + .ARM.attributes + 0x000000000000139a 0x30 zephyr/kernel/libkernel.a(queue.c.obj) + .ARM.attributes + 0x00000000000013ca 0x30 zephyr/kernel/libkernel.a(sem.c.obj) + .ARM.attributes + 0x00000000000013fa 0x30 zephyr/kernel/libkernel.a(work.c.obj) + .ARM.attributes + 0x000000000000142a 0x30 zephyr/kernel/libkernel.a(thread.c.obj) + .ARM.attributes + 0x000000000000145a 0x30 zephyr/kernel/libkernel.a(sched.c.obj) + .ARM.attributes + 0x000000000000148a 0x30 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .ARM.attributes + 0x00000000000014ba 0x30 zephyr/kernel/libkernel.a(spinlock_validate.c.obj) + .ARM.attributes + 0x00000000000014ea 0x30 zephyr/kernel/libkernel.a(xip.c.obj) + .ARM.attributes + 0x000000000000151a 0x30 zephyr/kernel/libkernel.a(timeout.c.obj) + .ARM.attributes + 0x000000000000154a 0x30 zephyr/kernel/libkernel.a(timer.c.obj) + .ARM.attributes + 0x000000000000157a 0x30 zephyr/kernel/libkernel.a(mempool.c.obj) + .ARM.attributes + 0x00000000000015aa 0x30 zephyr/kernel/libkernel.a(kheap.c.obj) + .ARM.attributes + 0x00000000000015da 0x30 zephyr/kernel/libkernel.a(system_work_q.c.obj) + .ARM.attributes + 0x000000000000160a 0x1c /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(strcmp.S.o) + .ARM.attributes + 0x0000000000001626 0x32 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(memcpy.c.o) + .ARM.attributes + 0x0000000000001658 0x32 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(memset.c.o) + .ARM.attributes + 0x000000000000168a 0x17 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(strlen.S.o) + .ARM.attributes + 0x00000000000016a1 0x32 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_ctype_ctype_.c.o) + .ARM.attributes + 0x00000000000016d3 0x32 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_errno_errno.c.o) + .ARM.attributes + 0x0000000000001705 0x32 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_string_strnlen.c.o) + .ARM.attributes + 0x0000000000001737 0x32 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_puts.c.o) + .ARM.attributes + 0x0000000000001769 0x32 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_vflprintf.c.o) + .ARM.attributes + 0x000000000000179b 0x32 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_vflscanf.c.o) + .ARM.attributes + 0x00000000000017cd 0x32 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_string_strchr.c.o) + .ARM.attributes + 0x00000000000017ff 0x32 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_fgetc.c.o) + .ARM.attributes + 0x0000000000001831 0x32 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_ungetc.c.o) + .ARM.attributes + 0x0000000000001863 0x1e /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_muldf3.o) + .ARM.attributes + 0x0000000000001881 0x1e /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_mulsf3.o) + .ARM.attributes + 0x000000000000189f 0x1e /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_addsubdf3.o) + .ARM.attributes + 0x00000000000018bd 0x1e /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_muldivdf3.o) + .ARM.attributes + 0x00000000000018db 0x1e /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_truncdfsf2.o) + .ARM.attributes + 0x00000000000018f9 0x1e /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_addsubsf3.o) + .ARM.attributes + 0x0000000000001917 0x1e /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_cmpsf2.o) + .ARM.attributes + 0x0000000000001935 0x1e /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_fixsfsi.o) + .ARM.attributes + 0x0000000000001953 0x1e /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_aeabi_ldivmod.o) + .ARM.attributes + 0x0000000000001971 0x1e /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_aeabi_uldivmod.o) + .ARM.attributes + 0x000000000000198f 0x2e /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_popcountsi2.o) + .ARM.attributes + 0x00000000000019bd 0x2e /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_fixdfdi.o) + .ARM.attributes + 0x00000000000019eb 0x2e /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_fixunsdfdi.o) + .ARM.attributes + 0x0000000000001a19 0x2e /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_udivmoddi4.o) + .ARM.attributes + 0x0000000000001a47 0x1e /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_dvmd_tls.o) + .ARM.attributes + 0x0000000000001a65 0x1e /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_cmpdf2.o) + .ARM.attributes + 0x0000000000001a83 0x1e /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_fixunsdfsi.o) + *(SORT_BY_ALIGNMENT(.gnu.attributes)) + +.last_section 0x0000000000010c34 0x4 + *(SORT_BY_ALIGNMENT(.last_section)) + .last_section 0x0000000000010c34 0x4 zephyr/libzephyr.a(last_section_id.c.obj) + 0x0000000000010c38 _flash_used = ((LOADADDR (.last_section) + SIZEOF (.last_section)) - __rom_region_start) + +bss 0x0000000020000868 0x11ec + 0x0000000020000868 . = ALIGN (0x4) + 0x0000000020000868 __bss_start = . + 0x0000000020000868 __kernel_ram_start = . + *(SORT_BY_ALIGNMENT(.bss)) + *(SORT_BY_ALIGNMENT(.bss.*)) + .bss.led1_timer + 0x0000000020000868 0x38 app/libapp.a(led.c.obj) + .bss.led0_timer + 0x00000000200008a0 0x38 app/libapp.a(led.c.obj) + .bss.usb_dev 0x00000000200008d8 0xcc zephyr/libzephyr.a(usb_device.c.obj) + *fill* 0x00000000200009a4 0x4 + .bss.cdc_acm_data_devlist + 0x00000000200009a8 0x8 zephyr/libzephyr.a(cdc_acm.c.obj) + .bss.z_usb_work_q + 0x00000000200009b0 0xa0 zephyr/libzephyr.a(usb_work_q.c.obj) + 0x00000000200009b0 z_usb_work_q + .bss.usbd_ctx 0x0000000020000a50 0x290 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + .bss.usbd_work_queue + 0x0000000020000ce0 0xa0 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + .bss.cc_data 0x0000000020000d80 0x10 zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .bss.last_count + 0x0000000020000d90 0x8 zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .bss.anchor 0x0000000020000d98 0x8 zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .bss.z_idle_threads + 0x0000000020000da0 0x80 zephyr/kernel/libkernel.a(init.c.obj) + 0x0000000020000da0 z_idle_threads + .bss.z_main_thread + 0x0000000020000e20 0x80 zephyr/kernel/libkernel.a(init.c.obj) + 0x0000000020000e20 z_main_thread + .bss.pending_cancels + 0x0000000020000ea0 0x8 zephyr/kernel/libkernel.a(work.c.obj) + .bss._thread_dummy + 0x0000000020000ea8 0x80 zephyr/kernel/libkernel.a(sched.c.obj) + 0x0000000020000ea8 _thread_dummy + .bss.slice_timeouts + 0x0000000020000f28 0x18 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .bss.curr_tick + 0x0000000020000f40 0x8 zephyr/kernel/libkernel.a(timeout.c.obj) + .bss.k_sys_work_q + 0x0000000020000f48 0xa0 zephyr/kernel/libkernel.a(system_work_q.c.obj) + 0x0000000020000f48 k_sys_work_q + .bss.sample_buffer + 0x0000000020000fe8 0x4 app/libapp.a(battery_adc.c.obj) + .bss.timer_status + 0x0000000020000fec 0x4 app/libapp.a(timer_count.c.obj) + 0x0000000020000fec timer_status + .bss.count 0x0000000020000ff0 0x4 app/libapp.a(timer_count.c.obj) + 0x0000000020000ff0 count + .bss.sn.1 0x0000000020000ff4 0x12 zephyr/libzephyr.a(usb_descriptor.c.obj) + *fill* 0x0000000020001006 0x2 + .bss.ut_data 0x0000000020001008 0x100 zephyr/libzephyr.a(usb_transfer.c.obj) + .bss.z_arm_tls_ptr + 0x0000000020001108 0x4 zephyr/arch/arch/arm/core/libarch__arm__core.a(tls.c.obj) + 0x0000000020001108 z_arm_tls_ptr + .bss.dynamic_regions.0 + 0x000000002000110c 0xc zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_core_mpu.c.obj) + .bss._stdout_hook + 0x0000000020001118 0x4 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .bss.z_malloc_heap + 0x000000002000111c 0xc zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .bss.ep_isoout_bufs + 0x0000000020001128 0x400 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + .bss.ep_out_bufs + 0x0000000020001528 0x200 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + .bss.m_tx_buffer + 0x0000000020001728 0x40 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + .bss.m_ep_state + 0x0000000020001768 0x1b0 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + .bss.m_ep_dma_waiting + 0x0000000020001918 0x4 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + .bss.m_ep_ready + 0x000000002000191c 0x4 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + .bss.m_event_handler + 0x0000000020001920 0x4 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + .bss.cli.1 0x0000000020001924 0x10 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .bss.on.2 0x0000000020001934 0x4 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .bss.data 0x0000000020001938 0x58 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .bss.hfclk_users + 0x0000000020001990 0x4 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .bss.gpio_nrfx_p1_data + 0x0000000020001994 0xc zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + .bss.gpio_nrfx_p0_data + 0x00000000200019a0 0xc zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + .bss.temp_nrf5_data_0 + 0x00000000200019ac 0x2c zephyr/drivers/sensor/nordic/temp/libdrivers__sensor__nordic__temp.a(temp_nrf5.c.obj) + .bss.force_isr_mask + 0x00000000200019d8 0x4 zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .bss.int_mask 0x00000000200019dc 0x4 zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .bss.overflow_cnt + 0x00000000200019e0 0x4 zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .bss.m_clock_cb + 0x00000000200019e4 0x8 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_clock.c.obj) + .bss.m_usbevt_handler + 0x00000000200019ec 0x4 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + .bss.m_sleepevt_handler + 0x00000000200019f0 0x4 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + .bss.m_pofwarn_handler + 0x00000000200019f4 0x4 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + .bss.m_data_handler + 0x00000000200019f8 0x4 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_temp.c.obj) + .bss._kernel 0x00000000200019fc 0x20 zephyr/kernel/libkernel.a(init.c.obj) + 0x00000000200019fc _kernel + .bss.lock 0x0000000020001a1c 0x4 zephyr/kernel/libkernel.a(mutex.c.obj) + .bss.lock 0x0000000020001a20 0x4 zephyr/kernel/libkernel.a(sem.c.obj) + .bss.lock 0x0000000020001a24 0x4 zephyr/kernel/libkernel.a(work.c.obj) + .bss._sched_spinlock + 0x0000000020001a28 0x4 zephyr/kernel/libkernel.a(sched.c.obj) + 0x0000000020001a28 _sched_spinlock + .bss.pending_current + 0x0000000020001a2c 0x4 zephyr/kernel/libkernel.a(timeslicing.c.obj) + 0x0000000020001a2c pending_current + .bss.slice_expired + 0x0000000020001a30 0x1 zephyr/kernel/libkernel.a(timeslicing.c.obj) + *fill* 0x0000000020001a31 0x3 + .bss.slice_max_prio + 0x0000000020001a34 0x4 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .bss.slice_ticks + 0x0000000020001a38 0x4 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .bss.announce_remaining + 0x0000000020001a3c 0x4 zephyr/kernel/libkernel.a(timeout.c.obj) + .bss.timeout_lock + 0x0000000020001a40 0x4 zephyr/kernel/libkernel.a(timeout.c.obj) + .bss.lock 0x0000000020001a44 0x4 zephyr/kernel/libkernel.a(timer.c.obj) + .bss.initialized.0 + 0x0000000020001a48 0x1 zephyr/libzephyr.a(usb_descriptor.c.obj) + .bss.__warned.0 + 0x0000000020001a49 0x1 zephyr/libzephyr.a(cdc_acm.c.obj) + .bss.static_regions_num + 0x0000000020001a4a 0x1 zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_mpu.c.obj) + .bss.m_dma_odd + 0x0000000020001a4b 0x1 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + .bss.dma_ep 0x0000000020001a4c 0x1 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + .bss.m_last_setup_dir + 0x0000000020001a4d 0x1 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + .bss.m_bus_suspend + 0x0000000020001a4e 0x1 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + .bss.m_drv_state + 0x0000000020001a4f 0x1 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + .bss.nrfx_clock_irq_enabled + 0x0000000020001a50 0x1 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_clock.c.obj) + 0x0000000020001a50 nrfx_clock_irq_enabled + .bss.nrfx_power_irq_enabled + 0x0000000020001a51 0x1 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + 0x0000000020001a51 nrfx_power_irq_enabled + .bss.m_temp_state + 0x0000000020001a52 0x1 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_temp.c.obj) + .bss.z_sys_post_kernel + 0x0000000020001a53 0x1 zephyr/kernel/libkernel.a(init.c.obj) + 0x0000000020001a53 z_sys_post_kernel + *(SORT_BY_ALIGNMENT(COMMON)) + *(SORT_BY_ALIGNMENT(.kernel_bss.*)) + 0x0000000020001a54 __bss_end = ALIGN (0x4) + +noinit 0x0000000020001a80 0x2540 + *(SORT_BY_ALIGNMENT(.noinit)) + *(SORT_BY_ALIGNMENT(.noinit.*)) + .noinit."WEST_TOPDIR/zephyr/subsys/usb/device/usb_work_q.c".0 + 0x0000000020001a80 0x440 zephyr/libzephyr.a(usb_work_q.c.obj) + 0x0000000020001a80 z_usb_work_q_stack + .noinit."WEST_TOPDIR/zephyr/drivers/usb/device/usb_dc_nrfx.c".0 + 0x0000000020001ec0 0x440 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + .noinit."WEST_TOPDIR/zephyr/kernel/init.c".2 + 0x0000000020002300 0x840 zephyr/kernel/libkernel.a(init.c.obj) + 0x0000000020002300 z_interrupt_stacks + .noinit."WEST_TOPDIR/zephyr/kernel/init.c".1 + 0x0000000020002b40 0x180 zephyr/kernel/libkernel.a(init.c.obj) + .noinit."WEST_TOPDIR/zephyr/kernel/init.c".0 + 0x0000000020002cc0 0x440 zephyr/kernel/libkernel.a(init.c.obj) + 0x0000000020002cc0 z_main_stack + .noinit."WEST_TOPDIR/zephyr/kernel/system_work_q.c".0 + 0x0000000020003100 0x440 zephyr/kernel/libkernel.a(system_work_q.c.obj) + .noinit."WEST_TOPDIR/zephyr/subsys/usb/device/class/cdc_acm.c".1 + 0x0000000020003540 0x400 zephyr/libzephyr.a(cdc_acm.c.obj) + .noinit."WEST_TOPDIR/zephyr/subsys/usb/device/class/cdc_acm.c".0 + 0x0000000020003940 0x400 zephyr/libzephyr.a(cdc_acm.c.obj) + .noinit."WEST_TOPDIR/zephyr/drivers/usb/device/usb_dc_nrfx.c".k_mem_slab_buf_fifo_elem_slab + 0x0000000020003d40 0x280 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + 0x0000000020003d40 _k_mem_slab_buf_fifo_elem_slab + *(SORT_BY_ALIGNMENT(.kernel_noinit.*)) + 0x0000000020020000 __kernel_ram_end = 0x20020000 + 0x000000000001f798 __kernel_ram_size = (__kernel_ram_end - __kernel_ram_start) + +.last_ram_section + 0x0000000020003fc0 0x0 + 0x0000000020003fc0 _image_ram_end = . + 0x0000000000003fc0 _image_ram_size = (_image_ram_end - _image_ram_start) + 0x0000000020003fc0 _end = . + 0x0000000020003fc0 z_mapped_end = . +OUTPUT(zephyr/zephyr.elf elf32-littlearm) +LOAD linker stubs diff --git a/build/PHF000-Firmware/zephyr/zephyr.stat b/build/PHF000-Firmware/zephyr/zephyr.stat new file mode 100644 index 0000000..2e74d1b --- /dev/null +++ b/build/PHF000-Firmware/zephyr/zephyr.stat @@ -0,0 +1,88 @@ +ELF Header: + Magic: 7f 45 4c 46 01 01 01 00 00 00 00 00 00 00 00 00 + Class: ELF32 + Data: 2's complement, little endian + Version: 1 (current) + OS/ABI: UNIX - System V + ABI Version: 0 + Type: EXEC (Executable file) + Machine: ARM + Version: 0x1 + Entry point address: 0x45c5 + Start of program headers: 52 (bytes into file) + Start of section headers: 1449088 (bytes into file) + Flags: 0x5000200, Version5 EABI, soft-float ABI + Size of this header: 52 (bytes) + Size of program headers: 32 (bytes) + Number of program headers: 7 + Size of section headers: 40 (bytes) + Number of section headers: 40 + Section header string table index: 39 + +Section Headers: + [Nr] Name Type Addr Off Size ES Flg Lk Inf Al + [ 0] NULL 00000000 000000 000000 00 0 0 0 + [ 1] rom_start PROGBITS 00000000 000120 000100 00 WAX 0 0 4 + [ 2] text PROGBITS 00000100 000220 00e0e4 00 AX 0 0 4 + [ 3] .ARM.exidx ARM_EXIDX 0000e1e4 00e304 000008 00 AL 2 0 4 + [ 4] initlevel PROGBITS 0000e1ec 00e30c 000080 00 A 0 0 4 + [ 5] device_area PROGBITS 0000e26c 00e38c 000078 00 A 0 0 4 + [ 6] sw_isr_table PROGBITS 0000e2e4 00e404 000180 00 WA 0 0 4 + [ 7] adc_driver_a[...] PROGBITS 0000e464 00e584 00000c 00 A 0 0 4 + [ 8] gpio_driver_[...] PROGBITS 0000e470 00e590 000024 00 A 0 0 4 + [ 9] sensor_drive[...] PROGBITS 0000e494 00e5b4 00001c 00 A 0 0 4 + [10] clock_contro[...] PROGBITS 0000e4b0 00e5d0 00001c 00 A 0 0 4 + [11] uart_driver_[...] PROGBITS 0000e4cc 00e5ec 00004c 00 A 0 0 4 + [12] tbss NOBITS 0000e518 00e638 000004 00 WAT 0 0 4 + [13] rodata PROGBITS 0000e520 00e640 002368 00 A 0 0 16 + [14] _RTT_SECTION_NAME NOBITS 20000000 010d80 0004b8 00 WA 0 0 4 + [15] .ramfunc NOBITS 200004b8 0109a8 000008 00 WA 0 0 1 + [16] datas PROGBITS 200004c0 0109a8 000251 00 WA 0 0 8 + [17] device_states PROGBITS 20000711 010bf9 00000c 00 WA 0 0 1 + [18] k_mem_slab_area PROGBITS 20000720 010c08 000020 00 WA 0 0 4 + [19] k_mutex_area PROGBITS 20000740 010c28 000014 00 WA 0 0 4 + [20] k_sem_area PROGBITS 20000754 010c3c 000010 00 WA 0 0 4 + [21] k_fifo_area PROGBITS 20000764 010c4c 000014 00 WA 0 0 4 + [22] usb_descriptor PROGBITS 20000778 010c60 0000c7 00 WA 0 0 1 + [23] usb_cfg_data_area PROGBITS 20000840 010d28 000024 00 WA 0 0 4 + [24] .comment PROGBITS 00000000 010d50 000020 01 MS 0 0 1 + [25] .debug_aranges PROGBITS 00000000 010d70 001c38 00 0 0 8 + [26] .debug_info PROGBITS 00000000 0129a8 08186a 00 0 0 1 + [27] .debug_abbrev PROGBITS 00000000 094212 011e67 00 0 0 1 + [28] .debug_line PROGBITS 00000000 0a6079 03e0de 00 0 0 1 + [29] .debug_frame PROGBITS 00000000 0e4158 004bf8 00 0 0 4 + [30] .debug_str PROGBITS 00000000 0e8d50 01097e 01 MS 0 0 1 + [31] .debug_loc PROGBITS 00000000 0f96ce 046a1d 00 0 0 1 + [32] .debug_ranges PROGBITS 00000000 1400f0 00f1b0 00 0 0 8 + [33] .ARM.attributes ARM_ATTRIBUTES 00000000 14f2a0 000032 00 0 0 1 + [34] .last_section PROGBITS 00010c34 010d4c 000004 00 WA 0 0 4 + [35] bss NOBITS 20000868 010d80 0011ec 00 WA 0 0 8 + [36] noinit NOBITS 20001a80 010d80 002540 00 WA 0 0 64 + [37] .symtab SYMTAB 00000000 14f2d4 00a200 10 38 1425 4 + [38] .strtab STRTAB 00000000 1594d4 0085bd 00 0 0 1 + [39] .shstrtab STRTAB 00000000 161a91 0001ef 00 0 0 1 +Key to Flags: + W (write), A (alloc), X (execute), M (merge), S (strings), I (info), + L (link order), O (extra OS processing required), G (group), T (TLS), + C (compressed), x (unknown), o (OS specific), E (exclude), + D (mbind), y (purecode), p (processor specific) + +Program Headers: + Type Offset VirtAddr PhysAddr FileSiz MemSiz Flg Align + EXIDX 0x00e304 0x0000e1e4 0x0000e1e4 0x00008 0x00008 R 0x4 + LOAD 0x000120 0x00000000 0x00000000 0x10888 0x10888 RWE 0x10 + LOAD 0x000000 0x200004b8 0x00010888 0x00000 0x00008 RW 0x1 + LOAD 0x0109a8 0x200004c0 0x00010890 0x003a4 0x003a4 RW 0x8 + LOAD 0x010d4c 0x00010c34 0x00010c34 0x00004 0x00004 RW 0x4 + LOAD 0x000000 0x20000000 0x20000000 0x00000 0x03fc0 RW 0x40 + TLS 0x00e638 0x0000e518 0x0000e518 0x00000 0x00004 R 0x4 + + Section to Segment mapping: + Segment Sections... + 00 .ARM.exidx + 01 rom_start text .ARM.exidx initlevel device_area sw_isr_table adc_driver_api_area gpio_driver_api_area sensor_driver_api_area clock_control_driver_api_area uart_driver_api_area rodata + 02 .ramfunc + 03 datas device_states k_mem_slab_area k_mutex_area k_sem_area k_fifo_area usb_descriptor usb_cfg_data_area + 04 .last_section + 05 _RTT_SECTION_NAME .ramfunc bss noinit + 06 tbss diff --git a/build/PHF000-Firmware/zephyr/zephyr_final.map b/build/PHF000-Firmware/zephyr/zephyr_final.map new file mode 100644 index 0000000..65f85d4 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/zephyr_final.map @@ -0,0 +1,5944 @@ +Archive member included to satisfy reference by file (symbol) + +app/libapp.a(main.c.obj) (--whole-archive) +app/libapp.a(led.c.obj) (--whole-archive) +app/libapp.a(button.c.obj) (--whole-archive) +app/libapp.a(actuator.c.obj) (--whole-archive) +app/libapp.a(battery_adc.c.obj) + (--whole-archive) +app/libapp.a(temperature.c.obj) + (--whole-archive) +app/libapp.a(timer_count.c.obj) + (--whole-archive) +zephyr/libzephyr.a(heap.c.obj) + (--whole-archive) +zephyr/libzephyr.a(cbprintf_packaged.c.obj) + (--whole-archive) +zephyr/libzephyr.a(printk.c.obj) + (--whole-archive) +zephyr/libzephyr.a(sem.c.obj) + (--whole-archive) +zephyr/libzephyr.a(thread_entry.c.obj) + (--whole-archive) +zephyr/libzephyr.a(cbprintf_complete.c.obj) + (--whole-archive) +zephyr/libzephyr.a(assert.c.obj) + (--whole-archive) +zephyr/libzephyr.a(dec.c.obj) + (--whole-archive) +zephyr/libzephyr.a(hex.c.obj) + (--whole-archive) +zephyr/libzephyr.a(rb.c.obj) (--whole-archive) +zephyr/libzephyr.a(timeutil.c.obj) + (--whole-archive) +zephyr/libzephyr.a(bitarray.c.obj) + (--whole-archive) +zephyr/libzephyr.a(onoff.c.obj) + (--whole-archive) +zephyr/libzephyr.a(notify.c.obj) + (--whole-archive) +zephyr/libzephyr.a(ring_buffer.c.obj) + (--whole-archive) +zephyr/libzephyr.a(last_section_id.c.obj) + (--whole-archive) +zephyr/libzephyr.a(configs.c.obj) + (--whole-archive) +zephyr/libzephyr.a(mem_attr.c.obj) + (--whole-archive) +zephyr/libzephyr.a(tracing_none.c.obj) + (--whole-archive) +zephyr/libzephyr.a(usb_device.c.obj) + (--whole-archive) +zephyr/libzephyr.a(usb_descriptor.c.obj) + (--whole-archive) +zephyr/libzephyr.a(usb_transfer.c.obj) + (--whole-archive) +zephyr/libzephyr.a(cdc_acm.c.obj) + (--whole-archive) +zephyr/libzephyr.a(usb_work_q.c.obj) + (--whole-archive) +zephyr/libzephyr.a(banner.c.obj) + (--whole-archive) +zephyr/libzephyr.a(flash_map_partition_manager.c.obj) + (--whole-archive) +zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/libarch__arm__core.a(fatal.c.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi.c.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi_on_reset.S.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/libarch__arm__core.a(tls.c.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(exc_exit.c.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault.c.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault_s.S.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fpu.c.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(reset.S.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(scb.c.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread_abort.c.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(vector_table.S.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(swap_helper.S.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(prep_c.c.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread.c.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(cpu_idle.c.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_init.c.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(isr_wrapper.c.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(__aeabi_read_tp.S.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_core_mpu.c.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_mpu.c.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_mpu_regions.c.obj) + (--whole-archive) +zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + (--whole-archive) +zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + (--whole-archive) +zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + (--whole-archive) +zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + (--whole-archive) +zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + (--whole-archive) +zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + (--whole-archive) +zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + (--whole-archive) +zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + (--whole-archive) +zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + (--whole-archive) +zephyr/soc/soc/nrf52833/libsoc__nordic.a(validate_base_addresses.c.obj) + (--whole-archive) +zephyr/soc/soc/nrf52833/libsoc__nordic.a(validate_binding_headers.c.obj) + (--whole-archive) +zephyr/soc/soc/nrf52833/libsoc__nordic.a(validate_enabled_instances.c.obj) + (--whole-archive) +zephyr/soc/soc/nrf52833/libsoc__nordic.a(soc.c.obj) + (--whole-archive) +zephyr/soc/soc/nrf52833/libsoc__nordic.a(reboot.c.obj) + (--whole-archive) +zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + (--whole-archive) +zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + (--whole-archive) +zephyr/drivers/adc/libdrivers__adc.a(adc_common.c.obj) + (--whole-archive) +zephyr/drivers/adc/libdrivers__adc.a(adc_nrfx_saadc.c.obj) + (--whole-archive) +zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + (--whole-archive) +zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + (--whole-archive) +zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + (--whole-archive) +zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_weak_impl.c.obj) + (--whole-archive) +zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_nrf.c.obj) + (--whole-archive) +zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + (--whole-archive) +zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_nrf.c.obj) + (--whole-archive) +zephyr/drivers/sensor/nordic/temp/libdrivers__sensor__nordic__temp.a(temp_nrf5.c.obj) + (--whole-archive) +zephyr/drivers/serial/libdrivers__serial.a(empty_file.c.obj) + (--whole-archive) +zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + (--whole-archive) +zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + (--whole-archive) +modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(system_nrf52833.c.obj) + (--whole-archive) +modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_glue.c.obj) + (--whole-archive) +modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_flag32_allocator.c.obj) + (--whole-archive) +modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_ram_ctrl.c.obj) + (--whole-archive) +modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_clock.c.obj) + (--whole-archive) +modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + (--whole-archive) +modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + (--whole-archive) +modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_temp.c.obj) + (--whole-archive) +modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + (--whole-archive) +modules/segger/libmodules__segger.a(SEGGER_RTT_zephyr.c.obj) + (--whole-archive) +zephyr/kernel/libkernel.a(busy_wait.c.obj) + zephyr/libzephyr.a(cdc_acm.c.obj) (z_impl_k_busy_wait) +zephyr/kernel/libkernel.a(device.c.obj) + app/libapp.a(led.c.obj) (z_impl_device_is_ready) +zephyr/kernel/libkernel.a(fatal.c.obj) + zephyr/arch/arch/arm/core/libarch__arm__core.a(fatal.c.obj) (z_fatal_error) +zephyr/kernel/libkernel.a(init.c.obj) + zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) (z_sys_post_kernel) +zephyr/kernel/libkernel.a(init_static.c.obj) + zephyr/kernel/libkernel.a(init.c.obj) (z_init_static) +zephyr/kernel/libkernel.a(mem_slab.c.obj) + zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) (k_mem_slab_alloc) +zephyr/kernel/libkernel.a(idle.c.obj) + zephyr/kernel/libkernel.a(init.c.obj) (idle) +zephyr/kernel/libkernel.a(mutex.c.obj) + zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) (z_impl_k_mutex_init) +zephyr/kernel/libkernel.a(queue.c.obj) + zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) (k_queue_append) +zephyr/kernel/libkernel.a(sem.c.obj) + zephyr/libzephyr.a(sem.c.obj) (z_impl_k_sem_init) +zephyr/kernel/libkernel.a(work.c.obj) + zephyr/libzephyr.a(usb_transfer.c.obj) (k_work_init) +zephyr/kernel/libkernel.a(thread.c.obj) + zephyr/libzephyr.a(usb_device.c.obj) (k_is_in_isr) +zephyr/kernel/libkernel.a(sched.c.obj) + zephyr/kernel/libkernel.a(init.c.obj) (z_ready_thread) +zephyr/kernel/libkernel.a(timeslicing.c.obj) + zephyr/kernel/libkernel.a(sched.c.obj) (z_reset_time_slice) +zephyr/kernel/libkernel.a(spinlock_validate.c.obj) + zephyr/libzephyr.a(bitarray.c.obj) (z_spin_lock_valid) +zephyr/kernel/libkernel.a(xip.c.obj) + zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(prep_c.c.obj) (z_data_copy) +zephyr/kernel/libkernel.a(timeout.c.obj) + zephyr/kernel/libkernel.a(init.c.obj) (z_add_timeout) +zephyr/kernel/libkernel.a(timer.c.obj) + zephyr/drivers/adc/libdrivers__adc.a(adc_nrfx_saadc.c.obj) (z_timer_expiration_handler) +zephyr/kernel/libkernel.a(mempool.c.obj) + zephyr/kernel/libkernel.a(queue.c.obj) (k_free) +zephyr/kernel/libkernel.a(kheap.c.obj) + zephyr/kernel/libkernel.a(mempool.c.obj) (k_heap_aligned_alloc) +zephyr/kernel/libkernel.a(system_work_q.c.obj) + zephyr/kernel/libkernel.a(work.c.obj) (k_sys_work_q) +/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(strcmp.S.o) + zephyr/kernel/libkernel.a(device.c.obj) (strcmp) +/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(memcpy.c.o) + zephyr/libzephyr.a(heap.c.obj) (memcpy) +/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(memset.c.o) + zephyr/libzephyr.a(heap.c.obj) (memset) +/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(strlen.S.o) + zephyr/libzephyr.a(cbprintf_packaged.c.obj) (strlen) +/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_ctype_ctype_.c.o) + zephyr/libzephyr.a(cbprintf_complete.c.obj) (_ctype_) +/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_errno_errno.c.o) + zephyr/libzephyr.a(timeutil.c.obj) (errno) +/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_string_strnlen.c.o) + zephyr/libzephyr.a(cbprintf_complete.c.obj) (strnlen) +/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_puts.c.o) + zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) (puts) +/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_vflprintf.c.o) + (__l_vfprintf) +/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_vflscanf.c.o) + (__l_vfscanf) +/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_string_strchr.c.o) + /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_vflscanf.c.o) (strchr) +/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_fgetc.c.o) + /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_vflscanf.c.o) (fgetc) +/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_ungetc.c.o) + /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_vflscanf.c.o) (ungetc) +/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_muldf3.o) + zephyr/libzephyr.a(timeutil.c.obj) (__aeabi_dmul) +/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_mulsf3.o) + app/libapp.a(battery_adc.c.obj) (__aeabi_fmul) +/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_addsubdf3.o) + zephyr/libzephyr.a(timeutil.c.obj) (__aeabi_dsub) +/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_muldivdf3.o) + zephyr/libzephyr.a(timeutil.c.obj) (__aeabi_ddiv) +/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_truncdfsf2.o) + zephyr/libzephyr.a(timeutil.c.obj) (__aeabi_d2f) +/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_addsubsf3.o) + app/libapp.a(battery_adc.c.obj) (__aeabi_ui2f) +/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_cmpsf2.o) + zephyr/libzephyr.a(timeutil.c.obj) (__aeabi_fcmpeq) +/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_fixsfsi.o) + app/libapp.a(battery_adc.c.obj) (__aeabi_f2iz) +/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_aeabi_ldivmod.o) + app/libapp.a(led.c.obj) (__aeabi_ldivmod) +/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_aeabi_uldivmod.o) + app/libapp.a(led.c.obj) (__aeabi_uldivmod) +/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_popcountsi2.o) + zephyr/libzephyr.a(bitarray.c.obj) (__popcountsi2) +/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_fixdfdi.o) + zephyr/libzephyr.a(timeutil.c.obj) (__aeabi_d2lz) +/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_fixunsdfdi.o) + /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_fixdfdi.o) (__aeabi_d2ulz) +/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_udivmoddi4.o) + /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_aeabi_ldivmod.o) (__udivmoddi4) +/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_dvmd_tls.o) + /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_aeabi_ldivmod.o) (__aeabi_ldiv0) +/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_cmpdf2.o) + /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_fixdfdi.o) (__aeabi_dcmplt) +/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_fixunsdfsi.o) + /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_fixunsdfdi.o) (__aeabi_d2uiz) + +Discarded input sections + + .text 0x0000000000000000 0x0 zephyr/CMakeFiles/zephyr_final.dir/misc/empty_file.c.obj + .data 0x0000000000000000 0x0 zephyr/CMakeFiles/zephyr_final.dir/misc/empty_file.c.obj + .bss 0x0000000000000000 0x0 zephyr/CMakeFiles/zephyr_final.dir/misc/empty_file.c.obj + .debug_line 0x0000000000000000 0x0 zephyr/CMakeFiles/zephyr_final.dir/misc/empty_file.c.obj + .debug_str 0x0000000000000000 0x202 zephyr/CMakeFiles/zephyr_final.dir/misc/empty_file.c.obj + .comment 0x0000000000000000 0x21 zephyr/CMakeFiles/zephyr_final.dir/misc/empty_file.c.obj + .text 0x0000000000000000 0x0 zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj + .data 0x0000000000000000 0x0 zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj + .bss 0x0000000000000000 0x0 zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj + .text 0x0000000000000000 0x0 zephyr/CMakeFiles/offsets.dir/./arch/arm/core/offsets/offsets.c.obj + .data 0x0000000000000000 0x0 zephyr/CMakeFiles/offsets.dir/./arch/arm/core/offsets/offsets.c.obj + .bss 0x0000000000000000 0x0 zephyr/CMakeFiles/offsets.dir/./arch/arm/core/offsets/offsets.c.obj + .text 0x0000000000000000 0x0 app/libapp.a(main.c.obj) + .data 0x0000000000000000 0x0 app/libapp.a(main.c.obj) + .bss 0x0000000000000000 0x0 app/libapp.a(main.c.obj) + .rodata.dev 0x0000000000000000 0x4 app/libapp.a(main.c.obj) + .text 0x0000000000000000 0x0 app/libapp.a(led.c.obj) + .data 0x0000000000000000 0x0 app/libapp.a(led.c.obj) + .bss 0x0000000000000000 0x0 app/libapp.a(led.c.obj) + .text.led_set 0x0000000000000000 0xb4 app/libapp.a(led.c.obj) + .text.led_stop_blink + 0x0000000000000000 0x1c app/libapp.a(led.c.obj) + .text 0x0000000000000000 0x0 app/libapp.a(button.c.obj) + .data 0x0000000000000000 0x0 app/libapp.a(button.c.obj) + .bss 0x0000000000000000 0x0 app/libapp.a(button.c.obj) + .text 0x0000000000000000 0x0 app/libapp.a(actuator.c.obj) + .data 0x0000000000000000 0x0 app/libapp.a(actuator.c.obj) + .bss 0x0000000000000000 0x0 app/libapp.a(actuator.c.obj) + .text.digital_out_set_do1 + 0x0000000000000000 0x78 app/libapp.a(actuator.c.obj) + .text.digital_out_set_do2 + 0x0000000000000000 0x74 app/libapp.a(actuator.c.obj) + .text.digital_out_set_do_en + 0x0000000000000000 0x78 app/libapp.a(actuator.c.obj) + .text 0x0000000000000000 0x0 app/libapp.a(battery_adc.c.obj) + .data 0x0000000000000000 0x0 app/libapp.a(battery_adc.c.obj) + .bss 0x0000000000000000 0x0 app/libapp.a(battery_adc.c.obj) + .text 0x0000000000000000 0x0 app/libapp.a(temperature.c.obj) + .data 0x0000000000000000 0x0 app/libapp.a(temperature.c.obj) + .bss 0x0000000000000000 0x0 app/libapp.a(temperature.c.obj) + .text 0x0000000000000000 0x0 app/libapp.a(timer_count.c.obj) + .data 0x0000000000000000 0x0 app/libapp.a(timer_count.c.obj) + .bss 0x0000000000000000 0x0 app/libapp.a(timer_count.c.obj) + .text.timer_init + 0x0000000000000000 0x40 app/libapp.a(timer_count.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(heap.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(heap.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(heap.c.obj) + .text.sys_heap_usable_size + 0x0000000000000000 0x38 zephyr/libzephyr.a(heap.c.obj) + .text.sys_heap_aligned_realloc + 0x0000000000000000 0x1f4 zephyr/libzephyr.a(heap.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .rodata.cbvprintf_package.str1.4 + 0x0000000000000000 0xc3 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .text.cbvprintf_package + 0x0000000000000000 0x52c zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .text.cbprintf_package + 0x0000000000000000 0x20 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .text.cbpprintf_external + 0x0000000000000000 0x5c zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .text.is_ptr 0x0000000000000000 0x64 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .rodata.cbprintf_package_convert.str1.4 + 0x0000000000000000 0x5c zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .text.cbprintf_package_convert + 0x0000000000000000 0x490 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .debug_info 0x0000000000000000 0x1754 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .debug_abbrev 0x0000000000000000 0x4f0 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .debug_loc 0x0000000000000000 0x2d45 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .debug_aranges + 0x0000000000000000 0x40 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .debug_ranges 0x0000000000000000 0x2f0 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .debug_line 0x0000000000000000 0x13eb zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .debug_str 0x0000000000000000 0x7c0 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .comment 0x0000000000000000 0x21 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .debug_frame 0x0000000000000000 0x10c zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(printk.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(printk.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(printk.c.obj) + .text.__printk_get_hook + 0x0000000000000000 0xc zephyr/libzephyr.a(printk.c.obj) + .text.z_impl_k_str_out + 0x0000000000000000 0x20 zephyr/libzephyr.a(printk.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(sem.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(sem.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(sem.c.obj) + .text.sys_sem_init + 0x0000000000000000 0xc zephyr/libzephyr.a(sem.c.obj) + .text.sys_sem_give + 0x0000000000000000 0xc zephyr/libzephyr.a(sem.c.obj) + .text.sys_sem_take + 0x0000000000000000 0x20 zephyr/libzephyr.a(sem.c.obj) + .text.sys_sem_count_get + 0x0000000000000000 0x4 zephyr/libzephyr.a(sem.c.obj) + .debug_info 0x0000000000000000 0x4dd zephyr/libzephyr.a(sem.c.obj) + .debug_abbrev 0x0000000000000000 0x22a zephyr/libzephyr.a(sem.c.obj) + .debug_loc 0x0000000000000000 0x21a zephyr/libzephyr.a(sem.c.obj) + .debug_aranges + 0x0000000000000000 0x38 zephyr/libzephyr.a(sem.c.obj) + .debug_ranges 0x0000000000000000 0x70 zephyr/libzephyr.a(sem.c.obj) + .debug_line 0x0000000000000000 0x37c zephyr/libzephyr.a(sem.c.obj) + .debug_str 0x0000000000000000 0x400 zephyr/libzephyr.a(sem.c.obj) + .comment 0x0000000000000000 0x21 zephyr/libzephyr.a(sem.c.obj) + .debug_frame 0x0000000000000000 0x68 zephyr/libzephyr.a(sem.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(thread_entry.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(thread_entry.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(thread_entry.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .text.encode_uint + 0x0000000000000000 0xd0 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .rodata.z_cbvprintf_impl.str1.4 + 0x0000000000000000 0x6 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .text.z_cbvprintf_impl + 0x0000000000000000 0x9a0 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .debug_info 0x0000000000000000 0x1049 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .debug_abbrev 0x0000000000000000 0x3f2 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .debug_loc 0x0000000000000000 0x1a3f zephyr/libzephyr.a(cbprintf_complete.c.obj) + .debug_aranges + 0x0000000000000000 0x28 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .debug_ranges 0x0000000000000000 0x420 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .debug_line 0x0000000000000000 0x1002 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .debug_str 0x0000000000000000 0x6b9 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .comment 0x0000000000000000 0x21 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .debug_frame 0x0000000000000000 0x68 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(assert.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(assert.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(assert.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(dec.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(dec.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(dec.c.obj) + .text.u8_to_dec + 0x0000000000000000 0x78 zephyr/libzephyr.a(dec.c.obj) + .debug_info 0x0000000000000000 0x12b zephyr/libzephyr.a(dec.c.obj) + .debug_abbrev 0x0000000000000000 0x9c zephyr/libzephyr.a(dec.c.obj) + .debug_loc 0x0000000000000000 0x176 zephyr/libzephyr.a(dec.c.obj) + .debug_aranges + 0x0000000000000000 0x20 zephyr/libzephyr.a(dec.c.obj) + .debug_ranges 0x0000000000000000 0x10 zephyr/libzephyr.a(dec.c.obj) + .debug_line 0x0000000000000000 0x1ee zephyr/libzephyr.a(dec.c.obj) + .debug_str 0x0000000000000000 0x2d7 zephyr/libzephyr.a(dec.c.obj) + .comment 0x0000000000000000 0x21 zephyr/libzephyr.a(dec.c.obj) + .debug_frame 0x0000000000000000 0x44 zephyr/libzephyr.a(dec.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(hex.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(hex.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(hex.c.obj) + .text.char2hex + 0x0000000000000000 0x3c zephyr/libzephyr.a(hex.c.obj) + .text.hex2char + 0x0000000000000000 0x24 zephyr/libzephyr.a(hex.c.obj) + .text.bin2hex 0x0000000000000000 0x58 zephyr/libzephyr.a(hex.c.obj) + .text.hex2bin 0x0000000000000000 0xd4 zephyr/libzephyr.a(hex.c.obj) + .debug_info 0x0000000000000000 0x356 zephyr/libzephyr.a(hex.c.obj) + .debug_abbrev 0x0000000000000000 0x160 zephyr/libzephyr.a(hex.c.obj) + .debug_loc 0x0000000000000000 0x4de zephyr/libzephyr.a(hex.c.obj) + .debug_aranges + 0x0000000000000000 0x38 zephyr/libzephyr.a(hex.c.obj) + .debug_ranges 0x0000000000000000 0xa8 zephyr/libzephyr.a(hex.c.obj) + .debug_line 0x0000000000000000 0x47d zephyr/libzephyr.a(hex.c.obj) + .debug_str 0x0000000000000000 0x2de zephyr/libzephyr.a(hex.c.obj) + .comment 0x0000000000000000 0x21 zephyr/libzephyr.a(hex.c.obj) + .debug_frame 0x0000000000000000 0x68 zephyr/libzephyr.a(hex.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(rb.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(rb.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(rb.c.obj) + .text.find_and_stack + 0x0000000000000000 0x40 zephyr/libzephyr.a(rb.c.obj) + .text.rotate 0x0000000000000000 0xac zephyr/libzephyr.a(rb.c.obj) + .text.z_rb_get_minmax + 0x0000000000000000 0x20 zephyr/libzephyr.a(rb.c.obj) + .text.rb_insert + 0x0000000000000000 0x148 zephyr/libzephyr.a(rb.c.obj) + .rodata.rb_remove.str1.4 + 0x0000000000000000 0x7b zephyr/libzephyr.a(rb.c.obj) + .text.rb_remove + 0x0000000000000000 0x48c zephyr/libzephyr.a(rb.c.obj) + .text.z_rb_walk + 0x0000000000000000 0x128 zephyr/libzephyr.a(rb.c.obj) + .text.z_rb_child + 0x0000000000000000 0x10 zephyr/libzephyr.a(rb.c.obj) + .text.z_rb_is_black + 0x0000000000000000 0x8 zephyr/libzephyr.a(rb.c.obj) + .text.rb_contains + 0x0000000000000000 0x38 zephyr/libzephyr.a(rb.c.obj) + .text.z_rb_foreach_next + 0x0000000000000000 0xec zephyr/libzephyr.a(rb.c.obj) + .debug_info 0x0000000000000000 0x3191 zephyr/libzephyr.a(rb.c.obj) + .debug_abbrev 0x0000000000000000 0x4cc zephyr/libzephyr.a(rb.c.obj) + .debug_loc 0x0000000000000000 0x37ae zephyr/libzephyr.a(rb.c.obj) + .debug_aranges + 0x0000000000000000 0x68 zephyr/libzephyr.a(rb.c.obj) + .debug_ranges 0x0000000000000000 0xae0 zephyr/libzephyr.a(rb.c.obj) + .debug_line 0x0000000000000000 0x1ab2 zephyr/libzephyr.a(rb.c.obj) + .debug_str 0x0000000000000000 0x4ee zephyr/libzephyr.a(rb.c.obj) + .comment 0x0000000000000000 0x21 zephyr/libzephyr.a(rb.c.obj) + .debug_frame 0x0000000000000000 0x188 zephyr/libzephyr.a(rb.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(timeutil.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(timeutil.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(timeutil.c.obj) + .text.timeutil_timegm64 + 0x0000000000000000 0x1fc zephyr/libzephyr.a(timeutil.c.obj) + .text.timeutil_timegm + 0x0000000000000000 0x1c zephyr/libzephyr.a(timeutil.c.obj) + .text.timeutil_sync_state_update + 0x0000000000000000 0x68 zephyr/libzephyr.a(timeutil.c.obj) + .text.timeutil_sync_state_set_skew + 0x0000000000000000 0x38 zephyr/libzephyr.a(timeutil.c.obj) + .text.timeutil_sync_estimate_skew + 0x0000000000000000 0xa4 zephyr/libzephyr.a(timeutil.c.obj) + .text.timeutil_sync_ref_from_local + 0x0000000000000000 0xb0 zephyr/libzephyr.a(timeutil.c.obj) + .text.timeutil_sync_local_from_ref + 0x0000000000000000 0xa8 zephyr/libzephyr.a(timeutil.c.obj) + .text.timeutil_sync_skew_to_ppb + 0x0000000000000000 0x3c zephyr/libzephyr.a(timeutil.c.obj) + .debug_info 0x0000000000000000 0x879 zephyr/libzephyr.a(timeutil.c.obj) + .debug_abbrev 0x0000000000000000 0x1d5 zephyr/libzephyr.a(timeutil.c.obj) + .debug_loc 0x0000000000000000 0x6ee zephyr/libzephyr.a(timeutil.c.obj) + .debug_aranges + 0x0000000000000000 0x58 zephyr/libzephyr.a(timeutil.c.obj) + .debug_ranges 0x0000000000000000 0xe0 zephyr/libzephyr.a(timeutil.c.obj) + .debug_line 0x0000000000000000 0x633 zephyr/libzephyr.a(timeutil.c.obj) + .debug_str 0x0000000000000000 0x58f zephyr/libzephyr.a(timeutil.c.obj) + .comment 0x0000000000000000 0x21 zephyr/libzephyr.a(timeutil.c.obj) + .debug_frame 0x0000000000000000 0x11c zephyr/libzephyr.a(timeutil.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(bitarray.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(bitarray.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(bitarray.c.obj) + .text.set_region + 0x0000000000000000 0xe8 zephyr/libzephyr.a(bitarray.c.obj) + .rodata.set_clear_region.str1.4 + 0x0000000000000000 0x105 zephyr/libzephyr.a(bitarray.c.obj) + .text.set_clear_region + 0x0000000000000000 0x10c zephyr/libzephyr.a(bitarray.c.obj) + .rodata.match_region.str1.4 + 0x0000000000000000 0x15 zephyr/libzephyr.a(bitarray.c.obj) + .text.match_region + 0x0000000000000000 0xec zephyr/libzephyr.a(bitarray.c.obj) + .text.is_region_set_clear + 0x0000000000000000 0x10c zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_popcount_region + 0x0000000000000000 0x184 zephyr/libzephyr.a(bitarray.c.obj) + .rodata.sys_bitarray_xor.str1.4 + 0x0000000000000000 0x54 zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_xor + 0x0000000000000000 0x230 zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_set_bit + 0x0000000000000000 0xf8 zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_clear_bit + 0x0000000000000000 0xfc zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_test_bit + 0x0000000000000000 0x100 zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_test_and_set_bit + 0x0000000000000000 0x110 zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_test_and_clear_bit + 0x0000000000000000 0x114 zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_alloc + 0x0000000000000000 0x17c zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_find_nth_set + 0x0000000000000000 0x1c4 zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_free + 0x0000000000000000 0x128 zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_is_region_set + 0x0000000000000000 0x8 zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_is_region_cleared + 0x0000000000000000 0x8 zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_test_and_set_region + 0x0000000000000000 0x12c zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_set_region + 0x0000000000000000 0x8 zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_clear_region + 0x0000000000000000 0x8 zephyr/libzephyr.a(bitarray.c.obj) + .debug_info 0x0000000000000000 0x41d9 zephyr/libzephyr.a(bitarray.c.obj) + .debug_abbrev 0x0000000000000000 0x435 zephyr/libzephyr.a(bitarray.c.obj) + .debug_loc 0x0000000000000000 0x37ec zephyr/libzephyr.a(bitarray.c.obj) + .debug_aranges + 0x0000000000000000 0xb0 zephyr/libzephyr.a(bitarray.c.obj) + .debug_ranges 0x0000000000000000 0x5d0 zephyr/libzephyr.a(bitarray.c.obj) + .debug_line 0x0000000000000000 0x272d zephyr/libzephyr.a(bitarray.c.obj) + .debug_str 0x0000000000000000 0x72b zephyr/libzephyr.a(bitarray.c.obj) + .comment 0x0000000000000000 0x21 zephyr/libzephyr.a(bitarray.c.obj) + .debug_frame 0x0000000000000000 0x2d4 zephyr/libzephyr.a(bitarray.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(onoff.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(onoff.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(onoff.c.obj) + .text.onoff_reset + 0x0000000000000000 0x100 zephyr/libzephyr.a(onoff.c.obj) + .text.onoff_monitor_register + 0x0000000000000000 0xb4 zephyr/libzephyr.a(onoff.c.obj) + .text.onoff_monitor_unregister + 0x0000000000000000 0xdc zephyr/libzephyr.a(onoff.c.obj) + .text.onoff_sync_lock + 0x0000000000000000 0x54 zephyr/libzephyr.a(onoff.c.obj) + .rodata.onoff_sync_finalize.str1.4 + 0x0000000000000000 0x3 zephyr/libzephyr.a(onoff.c.obj) + .text.onoff_sync_finalize + 0x0000000000000000 0xc4 zephyr/libzephyr.a(onoff.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(notify.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(notify.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(notify.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(ring_buffer.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(ring_buffer.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(ring_buffer.c.obj) + .text.ring_buf_put_claim + 0x0000000000000000 0x40 zephyr/libzephyr.a(ring_buffer.c.obj) + .text.ring_buf_put_finish + 0x0000000000000000 0x2c zephyr/libzephyr.a(ring_buffer.c.obj) + .rodata.ring_buf_peek.str1.4 + 0x0000000000000000 0x14 zephyr/libzephyr.a(ring_buffer.c.obj) + .text.ring_buf_peek + 0x0000000000000000 0xa0 zephyr/libzephyr.a(ring_buffer.c.obj) + .rodata.ring_buf_item_put.str1.4 + 0x0000000000000000 0x2e zephyr/libzephyr.a(ring_buffer.c.obj) + .text.ring_buf_item_put + 0x0000000000000000 0x12c zephyr/libzephyr.a(ring_buffer.c.obj) + .text.ring_buf_item_get + 0x0000000000000000 0x130 zephyr/libzephyr.a(ring_buffer.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(last_section_id.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(last_section_id.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(last_section_id.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(configs.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(configs.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(configs.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(mem_attr.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(mem_attr.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(mem_attr.c.obj) + .text.mem_attr_check_buf + 0x0000000000000000 0x10 zephyr/libzephyr.a(mem_attr.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(tracing_none.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(tracing_none.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(tracing_none.c.obj) + .text.sys_trace_isr_enter + 0x0000000000000000 0x4 zephyr/libzephyr.a(tracing_none.c.obj) + .text.sys_trace_isr_exit + 0x0000000000000000 0x4 zephyr/libzephyr.a(tracing_none.c.obj) + .text.sys_trace_isr_exit_to_scheduler + 0x0000000000000000 0x4 zephyr/libzephyr.a(tracing_none.c.obj) + .text.sys_trace_idle + 0x0000000000000000 0x4 zephyr/libzephyr.a(tracing_none.c.obj) + .debug_info 0x0000000000000000 0x56 zephyr/libzephyr.a(tracing_none.c.obj) + .debug_abbrev 0x0000000000000000 0x48 zephyr/libzephyr.a(tracing_none.c.obj) + .debug_aranges + 0x0000000000000000 0x38 zephyr/libzephyr.a(tracing_none.c.obj) + .debug_ranges 0x0000000000000000 0x28 zephyr/libzephyr.a(tracing_none.c.obj) + .debug_line 0x0000000000000000 0xa2 zephyr/libzephyr.a(tracing_none.c.obj) + .debug_str 0x0000000000000000 0x264 zephyr/libzephyr.a(tracing_none.c.obj) + .comment 0x0000000000000000 0x21 zephyr/libzephyr.a(tracing_none.c.obj) + .debug_frame 0x0000000000000000 0x50 zephyr/libzephyr.a(tracing_none.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(usb_device.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(usb_device.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(usb_device.c.obj) + .text.usb_deconfig + 0x0000000000000000 0x24 zephyr/libzephyr.a(usb_device.c.obj) + .text.usb_disable + 0x0000000000000000 0x6c zephyr/libzephyr.a(usb_device.c.obj) + .text.usb_read + 0x0000000000000000 0x4 zephyr/libzephyr.a(usb_device.c.obj) + .text.usb_ep_set_stall + 0x0000000000000000 0x4 zephyr/libzephyr.a(usb_device.c.obj) + .text.usb_ep_clear_stall + 0x0000000000000000 0x4 zephyr/libzephyr.a(usb_device.c.obj) + .text.usb_ep_read_wait + 0x0000000000000000 0x4 zephyr/libzephyr.a(usb_device.c.obj) + .text.usb_ep_read_continue + 0x0000000000000000 0x4 zephyr/libzephyr.a(usb_device.c.obj) + .text.usb_get_remote_wakeup_status + 0x0000000000000000 0xc zephyr/libzephyr.a(usb_device.c.obj) + .text.usb_wakeup_request + 0x0000000000000000 0x18 zephyr/libzephyr.a(usb_device.c.obj) + .text.usb_set_config + 0x0000000000000000 0x30 zephyr/libzephyr.a(usb_device.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(usb_descriptor.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(usb_descriptor.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(usb_descriptor.c.obj) + .text.usb_get_str_descriptor_idx + 0x0000000000000000 0x30 zephyr/libzephyr.a(usb_descriptor.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(usb_transfer.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(usb_transfer.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(usb_transfer.c.obj) + .text.usb_transfer_sync_cb + 0x0000000000000000 0xc zephyr/libzephyr.a(usb_transfer.c.obj) + .text.usb_transfer_sync + 0x0000000000000000 0x4c zephyr/libzephyr.a(usb_transfer.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(cdc_acm.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(cdc_acm.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(cdc_acm.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(usb_work_q.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(usb_work_q.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(usb_work_q.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(banner.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(banner.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(banner.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(flash_map_partition_manager.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(flash_map_partition_manager.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(flash_map_partition_manager.c.obj) + .bss.flash_map + 0x0000000000000000 0x4 zephyr/libzephyr.a(flash_map_partition_manager.c.obj) + .rodata.flash_map_entries + 0x0000000000000000 0x4 zephyr/libzephyr.a(flash_map_partition_manager.c.obj) + .debug_info 0x0000000000000000 0x204 zephyr/libzephyr.a(flash_map_partition_manager.c.obj) + .debug_abbrev 0x0000000000000000 0xd0 zephyr/libzephyr.a(flash_map_partition_manager.c.obj) + .debug_aranges + 0x0000000000000000 0x18 zephyr/libzephyr.a(flash_map_partition_manager.c.obj) + .debug_line 0x0000000000000000 0x25d zephyr/libzephyr.a(flash_map_partition_manager.c.obj) + .debug_str 0x0000000000000000 0x38a zephyr/libzephyr.a(flash_map_partition_manager.c.obj) + .comment 0x0000000000000000 0x21 zephyr/libzephyr.a(flash_map_partition_manager.c.obj) + .text 0x0000000000000000 0x0 zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .data 0x0000000000000000 0x0 zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .rodata.z_get_sw_isr_table_idx.str1.4 + 0x0000000000000000 0x65 zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .text.z_get_sw_isr_table_idx + 0x0000000000000000 0x28 zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .debug_info 0x0000000000000000 0x13b zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .debug_abbrev 0x0000000000000000 0xc3 zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .debug_loc 0x0000000000000000 0x4a zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .debug_aranges + 0x0000000000000000 0x20 zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .debug_ranges 0x0000000000000000 0x10 zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .debug_line 0x0000000000000000 0xea zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .debug_str 0x0000000000000000 0x2e8 zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .comment 0x0000000000000000 0x21 zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .debug_frame 0x0000000000000000 0x28 zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/libarch__arm__core.a(fatal.c.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/libarch__arm__core.a(fatal.c.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/libarch__arm__core.a(fatal.c.obj) + .text.arch_syscall_oops + 0x0000000000000000 0x1c zephyr/arch/arch/arm/core/libarch__arm__core.a(fatal.c.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi.c.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi.c.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi.c.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi_on_reset.S.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi_on_reset.S.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi_on_reset.S.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/libarch__arm__core.a(tls.c.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/libarch__arm__core.a(tls.c.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/libarch__arm__core.a(tls.c.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(exc_exit.c.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(exc_exit.c.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(exc_exit.c.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault.c.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault.c.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault.c.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault_s.S.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault_s.S.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault_s.S.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fpu.c.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fpu.c.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fpu.c.obj) + .text.z_arm_save_fp_context + 0x0000000000000000 0x4 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fpu.c.obj) + .text.z_arm_restore_fp_context + 0x0000000000000000 0x4 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fpu.c.obj) + .debug_info 0x0000000000000000 0x146 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fpu.c.obj) + .debug_abbrev 0x0000000000000000 0xcd zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fpu.c.obj) + .debug_aranges + 0x0000000000000000 0x28 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fpu.c.obj) + .debug_ranges 0x0000000000000000 0x18 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fpu.c.obj) + .debug_line 0x0000000000000000 0x1a5 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fpu.c.obj) + .debug_str 0x0000000000000000 0x329 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fpu.c.obj) + .comment 0x0000000000000000 0x21 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fpu.c.obj) + .debug_frame 0x0000000000000000 0x30 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fpu.c.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(reset.S.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(reset.S.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(reset.S.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(scb.c.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(scb.c.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(scb.c.obj) + .text.sys_arch_reboot + 0x0000000000000000 0x24 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(scb.c.obj) + .text.z_arm_clear_arm_mpu_config + 0x0000000000000000 0x28 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(scb.c.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread_abort.c.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread_abort.c.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread_abort.c.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(vector_table.S.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(vector_table.S.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(vector_table.S.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(swap_helper.S.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(swap_helper.S.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(swap_helper.S.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(prep_c.c.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(prep_c.c.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(prep_c.c.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread.c.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread.c.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread.c.obj) + .text.arch_irq_lock_outlined + 0x0000000000000000 0x10 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread.c.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(cpu_idle.c.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(cpu_idle.c.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(cpu_idle.c.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_init.c.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_init.c.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_init.c.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(isr_wrapper.c.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(isr_wrapper.c.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(isr_wrapper.c.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(__aeabi_read_tp.S.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(__aeabi_read_tp.S.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(__aeabi_read_tp.S.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_core_mpu.c.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_core_mpu.c.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_core_mpu.c.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_mpu.c.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_mpu.c.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_mpu.c.obj) + .text.arm_core_mpu_enable + 0x0000000000000000 0x18 zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_mpu.c.obj) + .text.arm_core_mpu_disable + 0x0000000000000000 0x14 zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_mpu.c.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_mpu_regions.c.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_mpu_regions.c.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_mpu_regions.c.obj) + .text 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .data 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .bss 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .rodata.__assert_no_args.str1.4 + 0x0000000000000000 0x51 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .text.__assert_no_args + 0x0000000000000000 0x24 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .debug_info 0x0000000000000000 0x109 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .debug_abbrev 0x0000000000000000 0x9c zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .debug_aranges + 0x0000000000000000 0x20 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .debug_ranges 0x0000000000000000 0x10 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .debug_line 0x0000000000000000 0xba zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .debug_str 0x0000000000000000 0x2e0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .comment 0x0000000000000000 0x21 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .debug_frame 0x0000000000000000 0x28 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .text 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .data 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .bss 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .text.cbputc 0x0000000000000000 0xc zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .text.cbvprintf + 0x0000000000000000 0x34 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .debug_info 0x0000000000000000 0x2d9 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .debug_abbrev 0x0000000000000000 0x16f zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .debug_loc 0x0000000000000000 0x128 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .debug_aranges + 0x0000000000000000 0x28 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .debug_ranges 0x0000000000000000 0x18 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .debug_line 0x0000000000000000 0x257 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .debug_str 0x0000000000000000 0x34a zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .comment 0x0000000000000000 0x21 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .debug_frame 0x0000000000000000 0x48 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .text 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .data 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .bss 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .rodata.__chk_fail.str1.4 + 0x0000000000000000 0x1e zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .text.__chk_fail + 0x0000000000000000 0x1c zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .debug_info 0x0000000000000000 0x1bb zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .debug_abbrev 0x0000000000000000 0x14d zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .debug_loc 0x0000000000000000 0x2c zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .debug_aranges + 0x0000000000000000 0x20 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .debug_ranges 0x0000000000000000 0x10 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .debug_line 0x0000000000000000 0x2a4 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .debug_str 0x0000000000000000 0x38a zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .comment 0x0000000000000000 0x21 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .debug_frame 0x0000000000000000 0x28 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .text 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + .data 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + .bss 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + .debug_info 0x0000000000000000 0x79 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + .debug_abbrev 0x0000000000000000 0x26 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + .debug_aranges + 0x0000000000000000 0x18 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + .debug_line 0x0000000000000000 0x5e zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + .debug_str 0x0000000000000000 0x2b3 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + .comment 0x0000000000000000 0x21 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + .text 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .data 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .bss 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .rodata._exit.str1.4 + 0x0000000000000000 0x5 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .text._exit 0x0000000000000000 0x10 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .debug_info 0x0000000000000000 0xca zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .debug_abbrev 0x0000000000000000 0x82 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .debug_loc 0x0000000000000000 0x25 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .debug_aranges + 0x0000000000000000 0x20 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .debug_ranges 0x0000000000000000 0x10 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .debug_line 0x0000000000000000 0xab zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .debug_str 0x0000000000000000 0x2ce zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .comment 0x0000000000000000 0x21 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .debug_frame 0x0000000000000000 0x28 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .text 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .data 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .bss 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .rodata.__retarget_lock_init_recursive.part.0.str1.4 + 0x0000000000000000 0x8b zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .text.__retarget_lock_init_recursive.part.0 + 0x0000000000000000 0x30 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .rodata.__retarget_lock_close_recursive.part.0.str1.4 + 0x0000000000000000 0x14 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .text.__retarget_lock_close_recursive.part.0 + 0x0000000000000000 0x24 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .text.__retarget_lock_acquire_recursive.part.0 + 0x0000000000000000 0x24 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .text.__retarget_lock_try_acquire_recursive.part.0 + 0x0000000000000000 0x24 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .text.__retarget_lock_release_recursive.part.0 + 0x0000000000000000 0x24 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .text.__retarget_lock_init_recursive + 0x0000000000000000 0x3c zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .text.__retarget_lock_init + 0x0000000000000000 0x3c zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .text.__retarget_lock_close_recursive + 0x0000000000000000 0xc zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .text.__retarget_lock_close + 0x0000000000000000 0xc zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .text.__retarget_lock_acquire_recursive + 0x0000000000000000 0x14 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .text.__retarget_lock_acquire + 0x0000000000000000 0x14 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .text.__retarget_lock_try_acquire_recursive + 0x0000000000000000 0x18 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .text.__retarget_lock_try_acquire + 0x0000000000000000 0x18 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .text.__retarget_lock_release_recursive + 0x0000000000000000 0xc zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .text.__retarget_lock_release + 0x0000000000000000 0xc zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + ._k_mutex.static.__lock___libc_recursive_mutex_ + 0x0000000000000000 0x14 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .debug_info 0x0000000000000000 0xf65 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .debug_abbrev 0x0000000000000000 0x34d zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .debug_loc 0x0000000000000000 0x5b6 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .debug_aranges + 0x0000000000000000 0x90 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .debug_ranges 0x0000000000000000 0x138 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .debug_line 0x0000000000000000 0x7cb zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .debug_str 0x0000000000000000 0x946 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .comment 0x0000000000000000 0x21 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .debug_frame 0x0000000000000000 0x188 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .text 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .data 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .bss 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .text.z_impl_zephyr_fputc + 0x0000000000000000 0x10 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .text.__stdin_hook_install + 0x0000000000000000 0x14 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .rodata.stdout + 0x0000000000000000 0x4 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .rodata.stdin 0x0000000000000000 0x4 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .bss.__stdin 0x0000000000000000 0x10 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .text 0x0000000000000000 0x0 zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .data 0x0000000000000000 0x0 zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .bss 0x0000000000000000 0x0 zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .rodata.abort.str1.4 + 0x0000000000000000 0x9 zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .text.abort 0x0000000000000000 0x1c zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .debug_info 0x0000000000000000 0x1bb zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .debug_abbrev 0x0000000000000000 0x14d zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .debug_loc 0x0000000000000000 0x2c zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .debug_aranges + 0x0000000000000000 0x20 zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .debug_ranges 0x0000000000000000 0x10 zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .debug_line 0x0000000000000000 0x310 zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .debug_str 0x0000000000000000 0x399 zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .comment 0x0000000000000000 0x21 zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .debug_frame 0x0000000000000000 0x28 zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .text 0x0000000000000000 0x0 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .data 0x0000000000000000 0x0 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .bss 0x0000000000000000 0x0 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .rodata.malloc_lock.part.0.str1.4 + 0x0000000000000000 0x69 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .text.malloc_lock.part.0 + 0x0000000000000000 0x24 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .text.malloc 0x0000000000000000 0x54 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .text.aligned_alloc + 0x0000000000000000 0x58 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .text.realloc 0x0000000000000000 0x58 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .text.free 0x0000000000000000 0x34 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .text.calloc 0x0000000000000000 0x34 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .text.reallocarray + 0x0000000000000000 0x24 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .data.z_malloc_heap_mutex + 0x0000000000000000 0x14 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .text 0x0000000000000000 0x0 zephyr/soc/soc/nrf52833/libsoc__nordic.a(validate_base_addresses.c.obj) + .data 0x0000000000000000 0x0 zephyr/soc/soc/nrf52833/libsoc__nordic.a(validate_base_addresses.c.obj) + .bss 0x0000000000000000 0x0 zephyr/soc/soc/nrf52833/libsoc__nordic.a(validate_base_addresses.c.obj) + .debug_info 0x0000000000000000 0x79 zephyr/soc/soc/nrf52833/libsoc__nordic.a(validate_base_addresses.c.obj) + .debug_abbrev 0x0000000000000000 0x26 zephyr/soc/soc/nrf52833/libsoc__nordic.a(validate_base_addresses.c.obj) + .debug_aranges + 0x0000000000000000 0x18 zephyr/soc/soc/nrf52833/libsoc__nordic.a(validate_base_addresses.c.obj) + .debug_line 0x0000000000000000 0x64 zephyr/soc/soc/nrf52833/libsoc__nordic.a(validate_base_addresses.c.obj) + .debug_str 0x0000000000000000 0x2b0 zephyr/soc/soc/nrf52833/libsoc__nordic.a(validate_base_addresses.c.obj) + .comment 0x0000000000000000 0x21 zephyr/soc/soc/nrf52833/libsoc__nordic.a(validate_base_addresses.c.obj) + .text 0x0000000000000000 0x0 zephyr/soc/soc/nrf52833/libsoc__nordic.a(validate_binding_headers.c.obj) + .data 0x0000000000000000 0x0 zephyr/soc/soc/nrf52833/libsoc__nordic.a(validate_binding_headers.c.obj) + .bss 0x0000000000000000 0x0 zephyr/soc/soc/nrf52833/libsoc__nordic.a(validate_binding_headers.c.obj) + .debug_info 0x0000000000000000 0x64 zephyr/soc/soc/nrf52833/libsoc__nordic.a(validate_binding_headers.c.obj) + .debug_abbrev 0x0000000000000000 0x26 zephyr/soc/soc/nrf52833/libsoc__nordic.a(validate_binding_headers.c.obj) + .debug_aranges + 0x0000000000000000 0x18 zephyr/soc/soc/nrf52833/libsoc__nordic.a(validate_binding_headers.c.obj) + .debug_line 0x0000000000000000 0x65 zephyr/soc/soc/nrf52833/libsoc__nordic.a(validate_binding_headers.c.obj) + .debug_str 0x0000000000000000 0x29a zephyr/soc/soc/nrf52833/libsoc__nordic.a(validate_binding_headers.c.obj) + .comment 0x0000000000000000 0x21 zephyr/soc/soc/nrf52833/libsoc__nordic.a(validate_binding_headers.c.obj) + .text 0x0000000000000000 0x0 zephyr/soc/soc/nrf52833/libsoc__nordic.a(validate_enabled_instances.c.obj) + .data 0x0000000000000000 0x0 zephyr/soc/soc/nrf52833/libsoc__nordic.a(validate_enabled_instances.c.obj) + .bss 0x0000000000000000 0x0 zephyr/soc/soc/nrf52833/libsoc__nordic.a(validate_enabled_instances.c.obj) + .debug_info 0x0000000000000000 0x79 zephyr/soc/soc/nrf52833/libsoc__nordic.a(validate_enabled_instances.c.obj) + .debug_abbrev 0x0000000000000000 0x26 zephyr/soc/soc/nrf52833/libsoc__nordic.a(validate_enabled_instances.c.obj) + .debug_aranges + 0x0000000000000000 0x18 zephyr/soc/soc/nrf52833/libsoc__nordic.a(validate_enabled_instances.c.obj) + .debug_line 0x0000000000000000 0x67 zephyr/soc/soc/nrf52833/libsoc__nordic.a(validate_enabled_instances.c.obj) + .debug_str 0x0000000000000000 0x2b3 zephyr/soc/soc/nrf52833/libsoc__nordic.a(validate_enabled_instances.c.obj) + .comment 0x0000000000000000 0x21 zephyr/soc/soc/nrf52833/libsoc__nordic.a(validate_enabled_instances.c.obj) + .text 0x0000000000000000 0x0 zephyr/soc/soc/nrf52833/libsoc__nordic.a(soc.c.obj) + .data 0x0000000000000000 0x0 zephyr/soc/soc/nrf52833/libsoc__nordic.a(soc.c.obj) + .bss 0x0000000000000000 0x0 zephyr/soc/soc/nrf52833/libsoc__nordic.a(soc.c.obj) + .text 0x0000000000000000 0x0 zephyr/soc/soc/nrf52833/libsoc__nordic.a(reboot.c.obj) + .data 0x0000000000000000 0x0 zephyr/soc/soc/nrf52833/libsoc__nordic.a(reboot.c.obj) + .bss 0x0000000000000000 0x0 zephyr/soc/soc/nrf52833/libsoc__nordic.a(reboot.c.obj) + .text.sys_arch_reboot + 0x0000000000000000 0x24 zephyr/soc/soc/nrf52833/libsoc__nordic.a(reboot.c.obj) + .debug_info 0x0000000000000000 0x2ec zephyr/soc/soc/nrf52833/libsoc__nordic.a(reboot.c.obj) + .debug_abbrev 0x0000000000000000 0x117 zephyr/soc/soc/nrf52833/libsoc__nordic.a(reboot.c.obj) + .debug_aranges + 0x0000000000000000 0x20 zephyr/soc/soc/nrf52833/libsoc__nordic.a(reboot.c.obj) + .debug_ranges 0x0000000000000000 0x10 zephyr/soc/soc/nrf52833/libsoc__nordic.a(reboot.c.obj) + .debug_line 0x0000000000000000 0x1f0 zephyr/soc/soc/nrf52833/libsoc__nordic.a(reboot.c.obj) + .debug_str 0x0000000000000000 0x358 zephyr/soc/soc/nrf52833/libsoc__nordic.a(reboot.c.obj) + .comment 0x0000000000000000 0x21 zephyr/soc/soc/nrf52833/libsoc__nordic.a(reboot.c.obj) + .debug_frame 0x0000000000000000 0x20 zephyr/soc/soc/nrf52833/libsoc__nordic.a(reboot.c.obj) + .text 0x0000000000000000 0x0 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + .data 0x0000000000000000 0x0 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + .bss 0x0000000000000000 0x0 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + .text.usb_dc_detach + 0x0000000000000000 0x9c zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + .text.usb_dc_reset + 0x0000000000000000 0x30 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + .text.usb_dc_ep_halt + 0x0000000000000000 0x4 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + .text.usb_dc_ep_flush + 0x0000000000000000 0x3c zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + .text.usb_dc_wakeup_request + 0x0000000000000000 0x14 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + .text 0x0000000000000000 0x0 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + .data 0x0000000000000000 0x0 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + .bss 0x0000000000000000 0x0 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + .text.nrf_usbd_common_is_initialized + 0x0000000000000000 0x10 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + .text.nrf_usbd_common_is_started + 0x0000000000000000 0x20 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + .text.nrf_usbd_common_wakeup_req + 0x0000000000000000 0x44 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + .text.nrf_usbd_common_suspend_check + 0x0000000000000000 0x14 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + .text.nrf_usbd_common_bus_suspend_check + 0x0000000000000000 0xc zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + .text.nrf_usbd_common_force_bus_wakeup + 0x0000000000000000 0xc zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + .text.nrf_usbd_common_ep_max_packet_size_get + 0x0000000000000000 0x2c zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + .text.nrf_usbd_common_ep_enable_check + 0x0000000000000000 0x30 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + .text.nrf_usbd_common_epout_size_get + 0x0000000000000000 0x28 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + .text.nrf_usbd_common_ep_is_busy + 0x0000000000000000 0x40 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + .text 0x0000000000000000 0x0 zephyr/drivers/adc/libdrivers__adc.a(adc_common.c.obj) + .data 0x0000000000000000 0x0 zephyr/drivers/adc/libdrivers__adc.a(adc_common.c.obj) + .bss 0x0000000000000000 0x0 zephyr/drivers/adc/libdrivers__adc.a(adc_common.c.obj) + .text 0x0000000000000000 0x0 zephyr/drivers/adc/libdrivers__adc.a(adc_nrfx_saadc.c.obj) + .data 0x0000000000000000 0x0 zephyr/drivers/adc/libdrivers__adc.a(adc_nrfx_saadc.c.obj) + .bss 0x0000000000000000 0x0 zephyr/drivers/adc/libdrivers__adc.a(adc_nrfx_saadc.c.obj) + .text 0x0000000000000000 0x0 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .data 0x0000000000000000 0x0 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .bss 0x0000000000000000 0x0 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .text.z_nrf_clock_bt_ctlr_hf_request + 0x0000000000000000 0x2c zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .text.z_nrf_clock_bt_ctlr_hf_release + 0x0000000000000000 0x3c zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .text 0x0000000000000000 0x0 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .data 0x0000000000000000 0x0 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .bss 0x0000000000000000 0x0 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .text.uart_register_input + 0x0000000000000000 0x4 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .text 0x0000000000000000 0x0 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + .data 0x0000000000000000 0x0 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + .bss 0x0000000000000000 0x0 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + .text 0x0000000000000000 0x0 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_weak_impl.c.obj) + .data 0x0000000000000000 0x0 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_weak_impl.c.obj) + .bss 0x0000000000000000 0x0 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_weak_impl.c.obj) + .text.z_impl_hwinfo_get_device_id + 0x0000000000000000 0x8 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_weak_impl.c.obj) + .text.z_impl_hwinfo_get_device_eui64 + 0x0000000000000000 0x8 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_weak_impl.c.obj) + .text.z_impl_hwinfo_get_reset_cause + 0x0000000000000000 0x8 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_weak_impl.c.obj) + .text.z_impl_hwinfo_clear_reset_cause + 0x0000000000000000 0x8 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_weak_impl.c.obj) + .text.z_impl_hwinfo_get_supported_reset_cause + 0x0000000000000000 0x8 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_weak_impl.c.obj) + .debug_info 0x0000000000000000 0x1a9 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_weak_impl.c.obj) + .debug_abbrev 0x0000000000000000 0xf8 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_weak_impl.c.obj) + .debug_loc 0x0000000000000000 0x4a zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_weak_impl.c.obj) + .debug_aranges + 0x0000000000000000 0x40 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_weak_impl.c.obj) + .debug_ranges 0x0000000000000000 0x30 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_weak_impl.c.obj) + .debug_line 0x0000000000000000 0x238 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_weak_impl.c.obj) + .debug_str 0x0000000000000000 0x3aa zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_weak_impl.c.obj) + .comment 0x0000000000000000 0x21 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_weak_impl.c.obj) + .debug_frame 0x0000000000000000 0x60 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_weak_impl.c.obj) + .text 0x0000000000000000 0x0 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_nrf.c.obj) + .data 0x0000000000000000 0x0 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_nrf.c.obj) + .bss 0x0000000000000000 0x0 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_nrf.c.obj) + .text.z_impl_hwinfo_get_reset_cause + 0x0000000000000000 0x54 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_nrf.c.obj) + .text.z_impl_hwinfo_clear_reset_cause + 0x0000000000000000 0x10 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_nrf.c.obj) + .text.z_impl_hwinfo_get_supported_reset_cause + 0x0000000000000000 0xc zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_nrf.c.obj) + .text 0x0000000000000000 0x0 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .data 0x0000000000000000 0x0 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .bss 0x0000000000000000 0x0 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .text.pinctrl_lookup_state + 0x0000000000000000 0x58 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .debug_info 0x0000000000000000 0x1af zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .debug_abbrev 0x0000000000000000 0xd0 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .debug_loc 0x0000000000000000 0x7c zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .debug_aranges + 0x0000000000000000 0x20 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .debug_ranges 0x0000000000000000 0x10 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .debug_line 0x0000000000000000 0x232 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .debug_str 0x0000000000000000 0x353 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .comment 0x0000000000000000 0x21 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .debug_frame 0x0000000000000000 0x2c zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .text 0x0000000000000000 0x0 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_nrf.c.obj) + .data 0x0000000000000000 0x0 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_nrf.c.obj) + .bss 0x0000000000000000 0x0 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_nrf.c.obj) + .text.pinctrl_configure_pins + 0x0000000000000000 0x18 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_nrf.c.obj) + .debug_info 0x0000000000000000 0x302 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_nrf.c.obj) + .debug_abbrev 0x0000000000000000 0x14f zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_nrf.c.obj) + .debug_loc 0x0000000000000000 0xb7 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_nrf.c.obj) + .debug_aranges + 0x0000000000000000 0x20 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_nrf.c.obj) + .debug_ranges 0x0000000000000000 0x10 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_nrf.c.obj) + .debug_line 0x0000000000000000 0x2b0 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_nrf.c.obj) + .debug_str 0x0000000000000000 0x58d zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_nrf.c.obj) + .comment 0x0000000000000000 0x21 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_nrf.c.obj) + .debug_frame 0x0000000000000000 0x20 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_nrf.c.obj) + .text 0x0000000000000000 0x0 zephyr/drivers/sensor/nordic/temp/libdrivers__sensor__nordic__temp.a(temp_nrf5.c.obj) + .data 0x0000000000000000 0x0 zephyr/drivers/sensor/nordic/temp/libdrivers__sensor__nordic__temp.a(temp_nrf5.c.obj) + .bss 0x0000000000000000 0x0 zephyr/drivers/sensor/nordic/temp/libdrivers__sensor__nordic__temp.a(temp_nrf5.c.obj) + .text 0x0000000000000000 0x0 zephyr/drivers/serial/libdrivers__serial.a(empty_file.c.obj) + .data 0x0000000000000000 0x0 zephyr/drivers/serial/libdrivers__serial.a(empty_file.c.obj) + .bss 0x0000000000000000 0x0 zephyr/drivers/serial/libdrivers__serial.a(empty_file.c.obj) + .debug_line 0x0000000000000000 0x0 zephyr/drivers/serial/libdrivers__serial.a(empty_file.c.obj) + .debug_str 0x0000000000000000 0x202 zephyr/drivers/serial/libdrivers__serial.a(empty_file.c.obj) + .comment 0x0000000000000000 0x21 zephyr/drivers/serial/libdrivers__serial.a(empty_file.c.obj) + .text 0x0000000000000000 0x0 zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .data 0x0000000000000000 0x0 zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .bss 0x0000000000000000 0x0 zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .text.sys_clock_set_timeout + 0x0000000000000000 0x4 zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .text.sys_clock_idle_exit + 0x0000000000000000 0x4 zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .debug_info 0x0000000000000000 0xda zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .debug_abbrev 0x0000000000000000 0x7e zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .debug_aranges + 0x0000000000000000 0x28 zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .debug_ranges 0x0000000000000000 0x18 zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .debug_line 0x0000000000000000 0x15d zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .debug_str 0x0000000000000000 0x2f1 zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .comment 0x0000000000000000 0x21 zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .debug_frame 0x0000000000000000 0x30 zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .text 0x0000000000000000 0x0 zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .data 0x0000000000000000 0x0 zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .bss 0x0000000000000000 0x0 zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .rodata.z_nrf_rtc_timer_compare_evt_address_get.str1.4 + 0x0000000000000000 0x6d zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .text.z_nrf_rtc_timer_compare_evt_address_get + 0x0000000000000000 0x2c zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .text.z_nrf_rtc_timer_capture_task_address_get + 0x0000000000000000 0x4 zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .rodata.z_nrf_rtc_timer_compare_int_lock.str1.4 + 0x0000000000000000 0x1b zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .text.z_nrf_rtc_timer_compare_int_lock + 0x0000000000000000 0x24 zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .text.z_nrf_rtc_timer_compare_int_unlock + 0x0000000000000000 0x24 zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .text.z_nrf_rtc_timer_compare_read + 0x0000000000000000 0x30 zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .text.z_nrf_rtc_timer_get_ticks + 0x0000000000000000 0xf8 zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .text.z_nrf_rtc_timer_set + 0x0000000000000000 0x28 zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .text.z_nrf_rtc_timer_exact_set + 0x0000000000000000 0x28 zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .text.z_nrf_rtc_timer_abort + 0x0000000000000000 0x28 zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .text.z_nrf_rtc_timer_read + 0x0000000000000000 0x44 zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .text.z_nrf_rtc_timer_chan_alloc + 0x0000000000000000 0x48 zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .text.z_nrf_rtc_timer_chan_free + 0x0000000000000000 0x28 zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .text.z_nrf_rtc_timer_trigger_overflow + 0x0000000000000000 0x8 zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .text.sys_clock_cycle_get_32 + 0x0000000000000000 0x44 zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .text.sys_clock_disable + 0x0000000000000000 0x30 zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .bss.alloc_mask + 0x0000000000000000 0x4 zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .text 0x0000000000000000 0x0 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(system_nrf52833.c.obj) + .data 0x0000000000000000 0x0 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(system_nrf52833.c.obj) + .bss 0x0000000000000000 0x0 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(system_nrf52833.c.obj) + .text.nvmc_wait + 0x0000000000000000 0x10 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(system_nrf52833.c.obj) + .text.nvmc_config + 0x0000000000000000 0x14 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(system_nrf52833.c.obj) + .text.SystemCoreClockUpdate + 0x0000000000000000 0x10 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(system_nrf52833.c.obj) + .data.SystemCoreClock + 0x0000000000000000 0x4 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(system_nrf52833.c.obj) + .text 0x0000000000000000 0x0 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_glue.c.obj) + .data 0x0000000000000000 0x0 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_glue.c.obj) + .bss 0x0000000000000000 0x0 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_glue.c.obj) + .rodata.nrfx_error_string_get.str1.4 + 0x0000000000000000 0x194 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_glue.c.obj) + .text.nrfx_error_string_get + 0x0000000000000000 0xd4 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_glue.c.obj) + .text 0x0000000000000000 0x0 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_flag32_allocator.c.obj) + .data 0x0000000000000000 0x0 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_flag32_allocator.c.obj) + .bss 0x0000000000000000 0x0 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_flag32_allocator.c.obj) + .text.nrfx_flag32_is_allocated + 0x0000000000000000 0xc modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_flag32_allocator.c.obj) + .text 0x0000000000000000 0x0 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_ram_ctrl.c.obj) + .data 0x0000000000000000 0x0 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_ram_ctrl.c.obj) + .bss 0x0000000000000000 0x0 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_ram_ctrl.c.obj) + .text.ram_ctrl_block_section_power_enable_set + 0x0000000000000000 0x14 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_ram_ctrl.c.obj) + .text.ram_ctrl_block_section_retention_enable_set + 0x0000000000000000 0x18 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_ram_ctrl.c.obj) + .rodata.ram_ctrl_block_section_iterate.str1.4 + 0x0000000000000000 0x7f modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_ram_ctrl.c.obj) + .text.ram_ctrl_block_section_iterate + 0x0000000000000000 0x9c modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_ram_ctrl.c.obj) + .text.nrfx_ram_ctrl_power_enable_set + 0x0000000000000000 0xc modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_ram_ctrl.c.obj) + .text.nrfx_ram_ctrl_retention_enable_set + 0x0000000000000000 0xc modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_ram_ctrl.c.obj) + .rodata.unit_to_block_section_lut + 0x0000000000000000 0x20 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_ram_ctrl.c.obj) + .debug_info 0x0000000000000000 0xb8a modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_ram_ctrl.c.obj) + .debug_abbrev 0x0000000000000000 0x2fe modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_ram_ctrl.c.obj) + .debug_loc 0x0000000000000000 0x629 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_ram_ctrl.c.obj) + .debug_aranges + 0x0000000000000000 0x40 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_ram_ctrl.c.obj) + .debug_ranges 0x0000000000000000 0xb8 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_ram_ctrl.c.obj) + .debug_line 0x0000000000000000 0x5a5 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_ram_ctrl.c.obj) + .debug_str 0x0000000000000000 0x834 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_ram_ctrl.c.obj) + .comment 0x0000000000000000 0x21 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_ram_ctrl.c.obj) + .debug_frame 0x0000000000000000 0x78 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_ram_ctrl.c.obj) + .text 0x0000000000000000 0x0 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_clock.c.obj) + .data 0x0000000000000000 0x0 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_clock.c.obj) + .bss 0x0000000000000000 0x0 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_clock.c.obj) + .rodata.nrfx_clock_disable.str1.4 + 0x0000000000000000 0x17 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_clock.c.obj) + .text.nrfx_clock_disable + 0x0000000000000000 0x7c modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_clock.c.obj) + .text.nrfx_clock_uninit + 0x0000000000000000 0x44 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_clock.c.obj) + .text.nrfx_clock_init_check + 0x0000000000000000 0xc modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_clock.c.obj) + .text 0x0000000000000000 0x0 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .data 0x0000000000000000 0x0 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .bss 0x0000000000000000 0x0 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .text.pin_in_event_get.constprop.0 + 0x0000000000000000 0xb0 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .rodata.pin_out_task_get.isra.0.str1.4 + 0x0000000000000000 0x24 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .text.pin_out_task_get.isra.0 + 0x0000000000000000 0x84 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .text.pin_clr_task_get.isra.0 + 0x0000000000000000 0x88 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .text.pin_set_task_get.isra.0 + 0x0000000000000000 0x88 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .text.nrfx_gpiote_in_is_set + 0x0000000000000000 0x70 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .text.nrfx_gpiote_channels_number_get + 0x0000000000000000 0xc modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .rodata.nrfx_gpiote_uninit.str1.4 + 0x0000000000000000 0x48 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .text.nrfx_gpiote_uninit + 0x0000000000000000 0x98 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .rodata.nrfx_gpiote_out_set.str1.4 + 0x0000000000000000 0x45 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .text.nrfx_gpiote_out_set + 0x0000000000000000 0xb4 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .text.nrfx_gpiote_out_clear + 0x0000000000000000 0xb4 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .text.nrfx_gpiote_out_toggle + 0x0000000000000000 0xc8 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .text.nrfx_gpiote_out_task_enable + 0x0000000000000000 0x94 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .text.nrfx_gpiote_out_task_disable + 0x0000000000000000 0x94 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .text.nrfx_gpiote_out_task_get + 0x0000000000000000 0x8 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .text.nrfx_gpiote_out_task_address_get + 0x0000000000000000 0x10 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .text.nrfx_gpiote_set_task_get + 0x0000000000000000 0x8 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .text.nrfx_gpiote_set_task_address_get + 0x0000000000000000 0x10 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .text.nrfx_gpiote_clr_task_get + 0x0000000000000000 0x8 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .text.nrfx_gpiote_clr_task_address_get + 0x0000000000000000 0x10 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .text.nrfx_gpiote_out_task_force + 0x0000000000000000 0xa4 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .rodata.nrfx_gpiote_out_task_trigger.str1.4 + 0x0000000000000000 0x3b modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .text.nrfx_gpiote_out_task_trigger + 0x0000000000000000 0x8c modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .rodata.nrfx_gpiote_set_task_trigger.str1.4 + 0x0000000000000000 0x3e modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .text.nrfx_gpiote_set_task_trigger + 0x0000000000000000 0xa8 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .text.nrfx_gpiote_clr_task_trigger + 0x0000000000000000 0xa8 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .text.nrfx_gpiote_in_event_get + 0x0000000000000000 0x8 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .text.nrfx_gpiote_in_event_address_get + 0x0000000000000000 0x10 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .text 0x0000000000000000 0x0 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + .data 0x0000000000000000 0x0 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + .bss 0x0000000000000000 0x0 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + .text.nrfx_power_pof_handler_get + 0x0000000000000000 0xc modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + .text.nrfx_power_usb_handler_get + 0x0000000000000000 0xc modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + .rodata.nrfx_power_uninit.str1.4 + 0x0000000000000000 0x17 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + .text.nrfx_power_uninit + 0x0000000000000000 0x68 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + .text.nrfx_power_init_check + 0x0000000000000000 0xc modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + .text.nrfx_power_pof_init + 0x0000000000000000 0x30 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + .rodata.nrfx_power_pof_enable.str1.4 + 0x0000000000000000 0x8b modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + .text.nrfx_power_pof_enable + 0x0000000000000000 0x88 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + .text.nrfx_power_pof_disable + 0x0000000000000000 0x1c modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + .text.nrfx_power_pof_uninit + 0x0000000000000000 0xc modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + .text.nrfx_power_sleepevt_init + 0x0000000000000000 0x30 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + .text.nrfx_power_sleepevt_enable + 0x0000000000000000 0x3c modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + .text.nrfx_power_sleepevt_disable + 0x0000000000000000 0xc modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + .text.nrfx_power_sleepevt_uninit + 0x0000000000000000 0xc modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + .rodata.nrfx_power_constlat_mode_request.str1.4 + 0x0000000000000000 0x1c modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + .text.nrfx_power_constlat_mode_request + 0x0000000000000000 0x68 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + .rodata.nrfx_power_constlat_mode_free.str1.4 + 0x0000000000000000 0x17 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + .text.nrfx_power_constlat_mode_free + 0x0000000000000000 0x70 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + .text.nrfx_power_mode_get + 0x0000000000000000 0x10 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + .text.nrfx_power_usbevt_uninit + 0x0000000000000000 0x18 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + .bss.m_power_mode_refs + 0x0000000000000000 0x1 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + .text 0x0000000000000000 0x0 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_temp.c.obj) + .data 0x0000000000000000 0x0 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_temp.c.obj) + .bss 0x0000000000000000 0x0 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_temp.c.obj) + .text.nrfx_temp_uninit + 0x0000000000000000 0x50 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_temp.c.obj) + .text.nrfx_temp_init_check + 0x0000000000000000 0x10 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_temp.c.obj) + .text.nrfx_temp_calculate + 0x0000000000000000 0xc modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_temp.c.obj) + .rodata.nrfx_temp_irq_handler.str1.4 + 0x0000000000000000 0xf modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_temp.c.obj) + .text.nrfx_temp_irq_handler + 0x0000000000000000 0x48 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_temp.c.obj) + .text 0x0000000000000000 0x0 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .data 0x0000000000000000 0x0 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .bss 0x0000000000000000 0x0 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .text._WriteNoCheck + 0x0000000000000000 0x34 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .text._WriteBlocking + 0x0000000000000000 0x64 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .text.SEGGER_RTT_ReadUpBufferNoLock + 0x0000000000000000 0xc4 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .text.SEGGER_RTT_ReadNoLock + 0x0000000000000000 0xb0 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .text.SEGGER_RTT_ReadUpBuffer + 0x0000000000000000 0x1c modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .text.SEGGER_RTT_Read + 0x0000000000000000 0x1c modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .text.SEGGER_RTT_WriteWithOverwriteNoLock + 0x0000000000000000 0xc4 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .text.SEGGER_RTT_WriteDownBufferNoLock + 0x0000000000000000 0x70 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .text.SEGGER_RTT_WriteNoLock + 0x0000000000000000 0x88 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .text.SEGGER_RTT_WriteDownBuffer + 0x0000000000000000 0x34 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .text.SEGGER_RTT_Write + 0x0000000000000000 0x34 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .text.SEGGER_RTT_WriteString + 0x0000000000000000 0x3c modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .text.SEGGER_RTT_PutCharSkipNoLock + 0x0000000000000000 0x44 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .text.SEGGER_RTT_PutCharSkip + 0x0000000000000000 0x60 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .text.SEGGER_RTT_PutChar + 0x0000000000000000 0x80 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .text.SEGGER_RTT_GetKey + 0x0000000000000000 0x30 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .text.SEGGER_RTT_WaitKey + 0x0000000000000000 0x2c modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .text.SEGGER_RTT_HasKey + 0x0000000000000000 0x20 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .text.SEGGER_RTT_HasData + 0x0000000000000000 0x18 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .text.SEGGER_RTT_HasDataUp + 0x0000000000000000 0x18 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .text.SEGGER_RTT_AllocDownBuffer + 0x0000000000000000 0x78 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .text.SEGGER_RTT_AllocUpBuffer + 0x0000000000000000 0x84 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .text.SEGGER_RTT_ConfigUpBuffer + 0x0000000000000000 0x70 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .text.SEGGER_RTT_ConfigDownBuffer + 0x0000000000000000 0x68 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .text.SEGGER_RTT_SetNameUpBuffer + 0x0000000000000000 0x40 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .text.SEGGER_RTT_SetNameDownBuffer + 0x0000000000000000 0x40 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .text.SEGGER_RTT_SetFlagsUpBuffer + 0x0000000000000000 0x40 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .text.SEGGER_RTT_SetFlagsDownBuffer + 0x0000000000000000 0x40 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .text.SEGGER_RTT_SetTerminal + 0x0000000000000000 0x90 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .text.SEGGER_RTT_TerminalOut + 0x0000000000000000 0x144 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .text.SEGGER_RTT_GetAvailWriteSpace + 0x0000000000000000 0x20 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .text.SEGGER_RTT_GetBytesInBuffer + 0x0000000000000000 0x20 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .bss._ActiveTerminal + 0x0000000000000000 0x1 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .rodata._aTerminalId + 0x0000000000000000 0x10 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .text 0x0000000000000000 0x0 modules/segger/libmodules__segger.a(SEGGER_RTT_zephyr.c.obj) + .data 0x0000000000000000 0x0 modules/segger/libmodules__segger.a(SEGGER_RTT_zephyr.c.obj) + .bss 0x0000000000000000 0x0 modules/segger/libmodules__segger.a(SEGGER_RTT_zephyr.c.obj) + .text.zephyr_rtt_irq_lock + 0x0000000000000000 0x10 modules/segger/libmodules__segger.a(SEGGER_RTT_zephyr.c.obj) + .text.zephyr_rtt_irq_unlock + 0x0000000000000000 0xc modules/segger/libmodules__segger.a(SEGGER_RTT_zephyr.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(busy_wait.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(busy_wait.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(busy_wait.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(device.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(device.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(device.c.obj) + .text.z_impl_device_get_binding + 0x0000000000000000 0x78 zephyr/kernel/libkernel.a(device.c.obj) + .text.z_device_get_all_static + 0x0000000000000000 0x20 zephyr/kernel/libkernel.a(device.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(fatal.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(fatal.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(fatal.c.obj) + .text.k_fatal_halt + 0x0000000000000000 0x8 zephyr/kernel/libkernel.a(fatal.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(init.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(init.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(init.c.obj) + .rodata.z_impl_device_init.str1.4 + 0x0000000000000000 0x22 zephyr/kernel/libkernel.a(init.c.obj) + .text.z_impl_device_init + 0x0000000000000000 0xa8 zephyr/kernel/libkernel.a(init.c.obj) + .text.z_init_cpu + 0x0000000000000000 0x70 zephyr/kernel/libkernel.a(init.c.obj) + .text.z_early_rand_get + 0x0000000000000000 0x74 zephyr/kernel/libkernel.a(init.c.obj) + .data.state.1 0x0000000000000000 0x8 zephyr/kernel/libkernel.a(init.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(init_static.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(init_static.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(init_static.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(mem_slab.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(mem_slab.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(mem_slab.c.obj) + .text.k_mem_slab_init + 0x0000000000000000 0x4c zephyr/kernel/libkernel.a(mem_slab.c.obj) + .text.k_mem_slab_runtime_stats_get + 0x0000000000000000 0xbc zephyr/kernel/libkernel.a(mem_slab.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(idle.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(idle.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(idle.c.obj) + .rodata.arch_spin_relax.str1.4 + 0x0000000000000000 0x54 zephyr/kernel/libkernel.a(idle.c.obj) + .text.arch_spin_relax + 0x0000000000000000 0x40 zephyr/kernel/libkernel.a(idle.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(mutex.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(mutex.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(mutex.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(queue.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(queue.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(queue.c.obj) + .text.z_queue_node_peek + 0x0000000000000000 0x1c zephyr/kernel/libkernel.a(queue.c.obj) + .text.z_impl_k_queue_init + 0x0000000000000000 0x14 zephyr/kernel/libkernel.a(queue.c.obj) + .text.z_impl_k_queue_cancel_wait + 0x0000000000000000 0x100 zephyr/kernel/libkernel.a(queue.c.obj) + .text.k_queue_insert + 0x0000000000000000 0x14 zephyr/kernel/libkernel.a(queue.c.obj) + .text.k_queue_prepend + 0x0000000000000000 0x18 zephyr/kernel/libkernel.a(queue.c.obj) + .text.z_impl_k_queue_alloc_append + 0x0000000000000000 0x18 zephyr/kernel/libkernel.a(queue.c.obj) + .text.z_impl_k_queue_alloc_prepend + 0x0000000000000000 0x18 zephyr/kernel/libkernel.a(queue.c.obj) + .text.k_queue_append_list + 0x0000000000000000 0x198 zephyr/kernel/libkernel.a(queue.c.obj) + .text.k_queue_merge_slist + 0x0000000000000000 0x1c zephyr/kernel/libkernel.a(queue.c.obj) + .text.k_queue_remove + 0x0000000000000000 0x60 zephyr/kernel/libkernel.a(queue.c.obj) + .text.k_queue_unique_append + 0x0000000000000000 0x34 zephyr/kernel/libkernel.a(queue.c.obj) + .text.z_impl_k_queue_peek_head + 0x0000000000000000 0x10 zephyr/kernel/libkernel.a(queue.c.obj) + .text.z_impl_k_queue_peek_tail + 0x0000000000000000 0x10 zephyr/kernel/libkernel.a(queue.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(sem.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(sem.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(sem.c.obj) + .text.z_impl_k_sem_reset + 0x0000000000000000 0x11c zephyr/kernel/libkernel.a(sem.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(work.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(work.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(work.c.obj) + .text.handle_flush + 0x0000000000000000 0x4 zephyr/kernel/libkernel.a(work.c.obj) + .text.cancel_async_locked + 0x0000000000000000 0x88 zephyr/kernel/libkernel.a(work.c.obj) + .text.work_flush_locked + 0x0000000000000000 0xac zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_busy_get + 0x0000000000000000 0x94 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_submit + 0x0000000000000000 0x28 zephyr/kernel/libkernel.a(work.c.obj) + .rodata.k_work_flush.str1.4 + 0x0000000000000000 0x54 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_flush + 0x0000000000000000 0x138 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_cancel + 0x0000000000000000 0xd8 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_cancel_sync + 0x0000000000000000 0x198 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_queue_init + 0x0000000000000000 0x34 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_queue_drain + 0x0000000000000000 0x138 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_queue_unplug + 0x0000000000000000 0xc8 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_queue_stop + 0x0000000000000000 0x158 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_delayable_busy_get + 0x0000000000000000 0xb4 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_schedule + 0x0000000000000000 0xc zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_reschedule_for_queue + 0x0000000000000000 0x124 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_reschedule + 0x0000000000000000 0xc zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_cancel_delayable + 0x0000000000000000 0xd0 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_cancel_delayable_sync + 0x0000000000000000 0x188 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_flush_delayable + 0x0000000000000000 0x164 zephyr/kernel/libkernel.a(work.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(thread.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(thread.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(thread.c.obj) + .text.z_impl_k_is_preempt_thread + 0x0000000000000000 0x20 zephyr/kernel/libkernel.a(thread.c.obj) + .text.z_impl_k_thread_priority_get + 0x0000000000000000 0x8 zephyr/kernel/libkernel.a(thread.c.obj) + .text.k_thread_name_get + 0x0000000000000000 0x4 zephyr/kernel/libkernel.a(thread.c.obj) + .text.z_impl_k_thread_name_copy + 0x0000000000000000 0x8 zephyr/kernel/libkernel.a(thread.c.obj) + .rodata.k_thread_state_str.str1.4 + 0x0000000000000000 0x6 zephyr/kernel/libkernel.a(thread.c.obj) + .text.k_thread_state_str + 0x0000000000000000 0x84 zephyr/kernel/libkernel.a(thread.c.obj) + .text.z_init_thread_base + 0x0000000000000000 0x1c zephyr/kernel/libkernel.a(thread.c.obj) + .text.k_thread_user_mode_enter + 0x0000000000000000 0x20 zephyr/kernel/libkernel.a(thread.c.obj) + .text.k_thread_runtime_stats_get + 0x0000000000000000 0x14 zephyr/kernel/libkernel.a(thread.c.obj) + .text.k_thread_runtime_stats_all_get + 0x0000000000000000 0xc zephyr/kernel/libkernel.a(thread.c.obj) + .text.k_thread_runtime_stats_cpu_get + 0x0000000000000000 0xc zephyr/kernel/libkernel.a(thread.c.obj) + .rodata.str1.4 + 0x0000000000000000 0x4f zephyr/kernel/libkernel.a(thread.c.obj) + .rodata.state_string.0 + 0x0000000000000000 0x40 zephyr/kernel/libkernel.a(thread.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_requeue_current + 0x0000000000000000 0x80 zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_move_thread_to_end_of_prio_q + 0x0000000000000000 0x90 zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_impl_k_thread_suspend + 0x0000000000000000 0x20c zephyr/kernel/libkernel.a(sched.c.obj) + .rodata.z_pend_thread.str1.4 + 0x0000000000000000 0x3d zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_pend_thread + 0x0000000000000000 0xec zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_unpend_thread + 0x0000000000000000 0x14 zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_impl_k_thread_resume + 0x0000000000000000 0xa8 zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_swap_next_thread + 0x0000000000000000 0xc zephyr/kernel/libkernel.a(sched.c.obj) + .text.init_ready_q + 0x0000000000000000 0x8 zephyr/kernel/libkernel.a(sched.c.obj) + .rodata.z_impl_k_thread_priority_set.str1.4 + 0x0000000000000000 0xb9 zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_impl_k_thread_priority_set + 0x0000000000000000 0xa0 zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_impl_k_reschedule + 0x0000000000000000 0xbc zephyr/kernel/libkernel.a(sched.c.obj) + .text.k_can_yield + 0x0000000000000000 0x30 zephyr/kernel/libkernel.a(sched.c.obj) + .rodata.z_impl_k_thread_join.str1.4 + 0x0000000000000000 0x15 zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_impl_k_thread_join + 0x0000000000000000 0x180 zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_sched_waitq_walk + 0x0000000000000000 0xb4 zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_unready_thread + 0x0000000000000000 0x90 zephyr/kernel/libkernel.a(sched.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .text.thread_is_sliceable + 0x0000000000000000 0x38 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .text.k_sched_time_slice_set + 0x0000000000000000 0xc0 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(spinlock_validate.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(spinlock_validate.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(spinlock_validate.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(xip.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(xip.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(xip.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(timeout.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(timeout.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(timeout.c.obj) + .text.z_timeout_remaining + 0x0000000000000000 0xf4 zephyr/kernel/libkernel.a(timeout.c.obj) + .text.z_timeout_expires + 0x0000000000000000 0xdc zephyr/kernel/libkernel.a(timeout.c.obj) + .text.z_get_next_timeout_expiry + 0x0000000000000000 0xd4 zephyr/kernel/libkernel.a(timeout.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(timer.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(timer.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(timer.c.obj) + .text.z_impl_k_timer_status_get + 0x0000000000000000 0x94 zephyr/kernel/libkernel.a(timer.c.obj) + .rodata.z_impl_k_timer_status_sync.str1.4 + 0x0000000000000000 0x3b zephyr/kernel/libkernel.a(timer.c.obj) + .text.z_impl_k_timer_status_sync + 0x0000000000000000 0x100 zephyr/kernel/libkernel.a(timer.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(mempool.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(mempool.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(mempool.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(kheap.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(kheap.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(kheap.c.obj) + .text.k_heap_init + 0x0000000000000000 0x10 zephyr/kernel/libkernel.a(kheap.c.obj) + .text.k_heap_alloc + 0x0000000000000000 0x18 zephyr/kernel/libkernel.a(kheap.c.obj) + .text.k_heap_calloc + 0x0000000000000000 0x34 zephyr/kernel/libkernel.a(kheap.c.obj) + .text.k_heap_realloc + 0x0000000000000000 0x140 zephyr/kernel/libkernel.a(kheap.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(system_work_q.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(system_work_q.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(system_work_q.c.obj) + .text 0x0000000000000000 0x14 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(strcmp.S.o) + .data 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(strcmp.S.o) + .bss 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(strcmp.S.o) + .ARM.extab 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(strcmp.S.o) + .ARM.exidx 0x0000000000000000 0x8 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(strcmp.S.o) + .debug_frame 0x0000000000000000 0x20 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(strcmp.S.o) + .text 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(memcpy.c.o) + .data 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(memcpy.c.o) + .bss 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(memcpy.c.o) + .text 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(memset.c.o) + .data 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(memset.c.o) + .bss 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(memset.c.o) + .data 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(strlen.S.o) + .bss 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(strlen.S.o) + .ARM.extab 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(strlen.S.o) + .text 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_ctype_ctype_.c.o) + .data 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_ctype_ctype_.c.o) + .bss 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_ctype_ctype_.c.o) + .rodata._ctype_ + 0x0000000000000000 0x101 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_ctype_ctype_.c.o) + .text 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_errno_errno.c.o) + .data 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_errno_errno.c.o) + .bss 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_errno_errno.c.o) + .tbss.errno 0x0000000000000000 0x4 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_errno_errno.c.o) + .text 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_string_strnlen.c.o) + .data 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_string_strnlen.c.o) + .bss 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_string_strnlen.c.o) + .text 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_puts.c.o) + .data 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_puts.c.o) + .bss 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_puts.c.o) + .text.puts 0x0000000000000000 0x40 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_puts.c.o) + .debug_frame 0x0000000000000000 0x30 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_puts.c.o) + .text 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_vflprintf.c.o) + .data 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_vflprintf.c.o) + .bss 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_vflprintf.c.o) + .text 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_vflscanf.c.o) + .data 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_vflscanf.c.o) + .bss 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_vflscanf.c.o) + .text.scanf_getc + 0x0000000000000000 0x14 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_vflscanf.c.o) + .text.scanf_ungetc + 0x0000000000000000 0x10 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_vflscanf.c.o) + .text.skip_spaces + 0x0000000000000000 0x2a /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_vflscanf.c.o) + .text.putval 0x0000000000000000 0x2c /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_vflscanf.c.o) + .rodata.__l_vfscanf.str1.1 + 0x0000000000000000 0xc /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_vflscanf.c.o) + .text.__l_vfscanf + 0x0000000000000000 0x364 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_vflscanf.c.o) + .debug_frame 0x0000000000000000 0x94 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_vflscanf.c.o) + .text 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_string_strchr.c.o) + .data 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_string_strchr.c.o) + .bss 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_string_strchr.c.o) + .text.strchr 0x0000000000000000 0x1a /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_string_strchr.c.o) + .debug_frame 0x0000000000000000 0x20 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_string_strchr.c.o) + .text 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_fgetc.c.o) + .data 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_fgetc.c.o) + .bss 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_fgetc.c.o) + .text.fgetc 0x0000000000000000 0x46 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_fgetc.c.o) + .debug_frame 0x0000000000000000 0x28 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_fgetc.c.o) + .text 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_ungetc.c.o) + .data 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_ungetc.c.o) + .bss 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_ungetc.c.o) + .text.ungetc 0x0000000000000000 0x3a /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_ungetc.c.o) + .debug_frame 0x0000000000000000 0x20 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_ungetc.c.o) + .text 0x0000000000000000 0x254 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_muldf3.o) + .data 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_muldf3.o) + .bss 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_muldf3.o) + .debug_frame 0x0000000000000000 0x30 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_muldf3.o) + .data 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_mulsf3.o) + .bss 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_mulsf3.o) + .text 0x0000000000000000 0x378 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_addsubdf3.o) + .data 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_addsubdf3.o) + .bss 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_addsubdf3.o) + .debug_frame 0x0000000000000000 0xac /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_addsubdf3.o) + .text 0x0000000000000000 0x424 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_muldivdf3.o) + .data 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_muldivdf3.o) + .bss 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_muldivdf3.o) + .debug_frame 0x0000000000000000 0x50 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_muldivdf3.o) + .text 0x0000000000000000 0xa0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_truncdfsf2.o) + .data 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_truncdfsf2.o) + .bss 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_truncdfsf2.o) + .debug_frame 0x0000000000000000 0x24 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_truncdfsf2.o) + .data 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_addsubsf3.o) + .bss 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_addsubsf3.o) + .text 0x0000000000000000 0xec /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_cmpsf2.o) + .data 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_cmpsf2.o) + .bss 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_cmpsf2.o) + .debug_frame 0x0000000000000000 0xc8 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_cmpsf2.o) + .data 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_fixsfsi.o) + .bss 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_fixsfsi.o) + .text 0x0000000000000000 0xa0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_aeabi_ldivmod.o) + .data 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_aeabi_ldivmod.o) + .bss 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_aeabi_ldivmod.o) + .debug_frame 0x0000000000000000 0x44 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_aeabi_ldivmod.o) + .data 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_aeabi_uldivmod.o) + .bss 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_aeabi_uldivmod.o) + .text 0x0000000000000000 0x26 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_popcountsi2.o) + .data 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_popcountsi2.o) + .bss 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_popcountsi2.o) + .debug_frame 0x0000000000000000 0x20 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_popcountsi2.o) + .text 0x0000000000000000 0x2e /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_fixdfdi.o) + .data 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_fixdfdi.o) + .bss 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_fixdfdi.o) + .debug_frame 0x0000000000000000 0x38 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_fixdfdi.o) + .text 0x0000000000000000 0x3c /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_fixunsdfdi.o) + .data 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_fixunsdfdi.o) + .bss 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_fixunsdfdi.o) + .debug_frame 0x0000000000000000 0x2c /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_fixunsdfdi.o) + .data 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_udivmoddi4.o) + .bss 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_udivmoddi4.o) + .ARM.extab 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_udivmoddi4.o) + .data 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_dvmd_tls.o) + .bss 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_dvmd_tls.o) + .text 0x0000000000000000 0x110 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_cmpdf2.o) + .data 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_cmpdf2.o) + .bss 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_cmpdf2.o) + .debug_frame 0x0000000000000000 0xc4 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_cmpdf2.o) + .text 0x0000000000000000 0x40 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_fixunsdfsi.o) + .data 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_fixunsdfsi.o) + .bss 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_fixunsdfsi.o) + .debug_frame 0x0000000000000000 0x24 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_fixunsdfsi.o) + +Memory Configuration + +Name Origin Length Attributes +FLASH 0x0000000000000000 0x0000000000080000 xr +RAM 0x0000000020000000 0x0000000000020000 xw +IDT_LIST 0x00000000ffff7fff 0x0000000000008000 xw +*default* 0x0000000000000000 0xffffffffffffffff + +Linker script and memory map + + 0x000000000000dc2c vfprintf = __l_vfprintf + 0x0000000000000000 vfscanf = __l_vfscanf +LOAD zephyr/CMakeFiles/zephyr_final.dir/misc/empty_file.c.obj +LOAD zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj +LOAD zephyr/CMakeFiles/offsets.dir/./arch/arm/core/offsets/offsets.c.obj +LOAD app/libapp.a +LOAD zephyr/libzephyr.a +LOAD zephyr/arch/common/libarch__common.a +LOAD zephyr/arch/arch/arm/core/libarch__arm__core.a +LOAD zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a +LOAD zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a +LOAD zephyr/lib/libc/picolibc/liblib__libc__picolibc.a +LOAD zephyr/lib/libc/common/liblib__libc__common.a +LOAD zephyr/soc/soc/nrf52833/libsoc__nordic.a +LOAD zephyr/drivers/usb/device/libdrivers__usb__device.a +LOAD zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a +LOAD zephyr/drivers/adc/libdrivers__adc.a +LOAD zephyr/drivers/clock_control/libdrivers__clock_control.a +LOAD zephyr/drivers/console/libdrivers__console.a +LOAD zephyr/drivers/gpio/libdrivers__gpio.a +LOAD zephyr/drivers/hwinfo/libdrivers__hwinfo.a +LOAD zephyr/drivers/pinctrl/libdrivers__pinctrl.a +LOAD zephyr/drivers/sensor/nordic/temp/libdrivers__sensor__nordic__temp.a +LOAD zephyr/drivers/serial/libdrivers__serial.a +LOAD zephyr/drivers/timer/libdrivers__timer.a +LOAD modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a +LOAD modules/segger/libmodules__segger.a +LOAD zephyr/kernel/libkernel.a +LOAD zephyr/arch/common/libisr_tables.a +LOAD /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a +LOAD /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a + 0x0000000000000020 _region_min_align = 0x20 + +.rel.plt 0x0000000000000000 0x0 + *(SORT_BY_ALIGNMENT(.rel.plt)) + [!provide] PROVIDE (__rel_iplt_start = .) + *(SORT_BY_ALIGNMENT(.rel.iplt)) + .rel.iplt 0x0000000000000000 0x0 zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj + [!provide] PROVIDE (__rel_iplt_end = .) + +.rela.plt 0x0000000000000000 0x0 + *(SORT_BY_ALIGNMENT(.rela.plt)) + [!provide] PROVIDE (__rela_iplt_start = .) + *(SORT_BY_ALIGNMENT(.rela.iplt)) + [!provide] PROVIDE (__rela_iplt_end = .) + +.rel.dyn + *(SORT_BY_ALIGNMENT(.rel.*)) + +.rela.dyn + *(SORT_BY_ALIGNMENT(.rela.*)) + +/DISCARD/ + *(SORT_BY_ALIGNMENT(.plt)) + +/DISCARD/ + *(SORT_BY_ALIGNMENT(.iplt)) + 0x0000000000000000 __rom_region_start = 0x0 + +rom_start 0x0000000000000000 0x100 + 0x0000000000000000 __rom_start_address = . + FILL mask 0x00 + 0x0000000000000000 . = (. + (0x0 - (. - __rom_start_address))) + 0x0000000000000000 . = ALIGN (0x4) + 0x0000000000000000 . = ALIGN (0x80) + 0x0000000000000000 . = ALIGN (0x100) + 0x0000000000000000 _vector_start = . + *(SORT_BY_ALIGNMENT(.exc_vector_table)) + *(SORT_BY_ALIGNMENT(.exc_vector_table.*)) + .exc_vector_table._vector_table_section + 0x0000000000000000 0x40 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(vector_table.S.obj) + 0x0000000000000000 _vector_table + *(SORT_BY_ALIGNMENT(.vectors)) + 0x0000000000000100 _vector_end = . + 0x0000000000000040 . = ALIGN (0x4) + *(SORT_BY_ALIGNMENT(.gnu.linkonce.irq_vector_table*)) + .gnu.linkonce.irq_vector_table + 0x0000000000000040 0xc0 zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj + 0x0000000000000040 _irq_vector_table + 0x0000000000000100 _vector_end = . + +text 0x0000000000000100 0xe0e4 + 0x0000000000000100 __text_region_start = . + *(SORT_BY_ALIGNMENT(.text)) + .text 0x0000000000000100 0x168 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_mulsf3.o) + 0x0000000000000100 __mulsf3 + 0x0000000000000100 __aeabi_fmul + .text 0x0000000000000268 0x21c /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_addsubsf3.o) + 0x0000000000000268 __aeabi_frsub + 0x0000000000000270 __subsf3 + 0x0000000000000270 __aeabi_fsub + 0x0000000000000274 __aeabi_fadd + 0x0000000000000274 __addsf3 + 0x00000000000003d4 __aeabi_ui2f + 0x00000000000003d4 __floatunsisf + 0x00000000000003dc __aeabi_i2f + 0x00000000000003dc __floatsisf + 0x00000000000003f8 __floatundisf + 0x00000000000003f8 __aeabi_ul2f + 0x0000000000000408 __floatdisf + 0x0000000000000408 __aeabi_l2f + .text 0x0000000000000484 0x4c /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_fixsfsi.o) + 0x0000000000000484 __fixsfsi + 0x0000000000000484 __aeabi_f2iz + .text 0x00000000000004d0 0x30 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_aeabi_uldivmod.o) + 0x00000000000004d0 __aeabi_uldivmod + .text 0x0000000000000500 0x4 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_dvmd_tls.o) + 0x0000000000000500 __aeabi_ldiv0 + 0x0000000000000500 __aeabi_idiv0 + .text 0x0000000000000504 0x10 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(strlen.S.o) + 0x0000000000000504 strlen + .text 0x0000000000000514 0x2a0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_udivmoddi4.o) + 0x0000000000000514 __udivmoddi4 + *(SORT_BY_ALIGNMENT(.text.*)) + .text._OffsetAbsSyms + 0x00000000000007b4 0x4 zephyr/CMakeFiles/offsets.dir/./arch/arm/core/offsets/offsets.c.obj + 0x00000000000007b4 _OffsetAbsSyms + .text.main 0x00000000000007b8 0x128 app/libapp.a(main.c.obj) + 0x00000000000007b8 main + .text.z_impl_gpio_pin_configure.isra.0 + 0x00000000000008e0 0x188 app/libapp.a(led.c.obj) + .text.led1_timer_handler + 0x0000000000000a68 0x48 app/libapp.a(led.c.obj) + .text.led0_timer_handler + 0x0000000000000ab0 0x48 app/libapp.a(led.c.obj) + .text.led_init + 0x0000000000000af8 0x68 app/libapp.a(led.c.obj) + 0x0000000000000af8 led_init + .text.led_toggle + 0x0000000000000b60 0x68 app/libapp.a(led.c.obj) + 0x0000000000000b60 led_toggle + .text.led_start_blink + 0x0000000000000bc8 0x7c app/libapp.a(led.c.obj) + 0x0000000000000bc8 led_start_blink + .text.button_init + 0x0000000000000c44 0x7c app/libapp.a(button.c.obj) + 0x0000000000000c44 button_init + .text.button_read + 0x0000000000000cc0 0x60 app/libapp.a(button.c.obj) + 0x0000000000000cc0 button_read + .text.z_impl_gpio_pin_configure.isra.0 + 0x0000000000000d20 0x188 app/libapp.a(actuator.c.obj) + .text.digital_out_init + 0x0000000000000ea8 0x34 app/libapp.a(actuator.c.obj) + 0x0000000000000ea8 digital_out_init + .text.digital_out_toggle_do1 + 0x0000000000000edc 0x48 app/libapp.a(actuator.c.obj) + 0x0000000000000edc digital_out_toggle_do1 + .text.digital_out_toggle_do2 + 0x0000000000000f24 0x48 app/libapp.a(actuator.c.obj) + 0x0000000000000f24 digital_out_toggle_do2 + .text.digital_out_toggle_do_en + 0x0000000000000f6c 0x48 app/libapp.a(actuator.c.obj) + 0x0000000000000f6c digital_out_toggle_do_en + .text.battery_adc_init + 0x0000000000000fb4 0x9c app/libapp.a(battery_adc.c.obj) + 0x0000000000000fb4 battery_adc_init + .text.battery_measure_mv + 0x0000000000001050 0xfc app/libapp.a(battery_adc.c.obj) + 0x0000000000001050 battery_measure_mv + .text.temperature_init + 0x000000000000114c 0x18 app/libapp.a(temperature.c.obj) + 0x000000000000114c temperature_init + .text.temperature_get_celsius + 0x0000000000001164 0x20 app/libapp.a(temperature.c.obj) + 0x0000000000001164 temperature_get_celsius + .text.TIMER1_IRQHandler + 0x0000000000001184 0x9c app/libapp.a(timer_count.c.obj) + 0x0000000000001184 TIMER1_IRQHandler + .text.configure_clock_pin + 0x0000000000001220 0x7c app/libapp.a(timer_count.c.obj) + 0x0000000000001220 configure_clock_pin + .text.configure_measurement + 0x000000000000129c 0x1a0 app/libapp.a(timer_count.c.obj) + 0x000000000000129c configure_measurement + .text.make_measurement + 0x000000000000143c 0x74 app/libapp.a(timer_count.c.obj) + 0x000000000000143c make_measurement + .text.read_measurement + 0x00000000000014b0 0x18 app/libapp.a(timer_count.c.obj) + 0x00000000000014b0 read_measurement + .text.free_list_remove_bidx + 0x00000000000014c8 0x6c zephyr/libzephyr.a(heap.c.obj) + .text.split_chunks + 0x0000000000001534 0x74 zephyr/libzephyr.a(heap.c.obj) + .text.merge_chunks + 0x00000000000015a8 0x5c zephyr/libzephyr.a(heap.c.obj) + .text.free_list_remove + 0x0000000000001604 0x30 zephyr/libzephyr.a(heap.c.obj) + .text.free_list_add + 0x0000000000001634 0xa8 zephyr/libzephyr.a(heap.c.obj) + .text.free_chunk + 0x00000000000016dc 0xc8 zephyr/libzephyr.a(heap.c.obj) + .text.alloc_chunk + 0x00000000000017a4 0x8c zephyr/libzephyr.a(heap.c.obj) + .text.sys_heap_free + 0x0000000000001830 0xc8 zephyr/libzephyr.a(heap.c.obj) + 0x0000000000001830 sys_heap_free + .text.sys_heap_alloc + 0x00000000000018f8 0x90 zephyr/libzephyr.a(heap.c.obj) + 0x00000000000018f8 sys_heap_alloc + .text.sys_heap_aligned_alloc + 0x0000000000001988 0x180 zephyr/libzephyr.a(heap.c.obj) + 0x0000000000001988 sys_heap_aligned_alloc + .text.sys_heap_init + 0x0000000000001b08 0x174 zephyr/libzephyr.a(heap.c.obj) + 0x0000000000001b08 sys_heap_init + .text.arch_printk_char_out + 0x0000000000001c7c 0x4 zephyr/libzephyr.a(printk.c.obj) + 0x0000000000001c7c arch_printk_char_out + .text.char_out + 0x0000000000001c80 0xc zephyr/libzephyr.a(printk.c.obj) + .text.__printk_hook_install + 0x0000000000001c8c 0xc zephyr/libzephyr.a(printk.c.obj) + 0x0000000000001c8c __printk_hook_install + .text.vprintk 0x0000000000001c98 0x2c zephyr/libzephyr.a(printk.c.obj) + 0x0000000000001c98 vprintk + .text.printk 0x0000000000001cc4 0x38 zephyr/libzephyr.a(printk.c.obj) + 0x0000000000001cc4 printk + .text.z_thread_entry + 0x0000000000001cfc 0x2c zephyr/libzephyr.a(thread_entry.c.obj) + 0x0000000000001cfc z_thread_entry + .text.assert_post_action + 0x0000000000001d28 0x14 zephyr/libzephyr.a(assert.c.obj) + 0x0000000000001d28 assert_post_action + .text.assert_print + 0x0000000000001d3c 0x1c zephyr/libzephyr.a(assert.c.obj) + 0x0000000000001d3c assert_print + .text.process_event + 0x0000000000001d58 0x408 zephyr/libzephyr.a(onoff.c.obj) + .text.transition_complete + 0x0000000000002160 0x64 zephyr/libzephyr.a(onoff.c.obj) + .text.onoff_manager_init + 0x00000000000021c4 0x2c zephyr/libzephyr.a(onoff.c.obj) + 0x00000000000021c4 onoff_manager_init + .text.onoff_request + 0x00000000000021f0 0x178 zephyr/libzephyr.a(onoff.c.obj) + 0x00000000000021f0 onoff_request + .text.onoff_release + 0x0000000000002368 0xe0 zephyr/libzephyr.a(onoff.c.obj) + 0x0000000000002368 onoff_release + .text.onoff_cancel + 0x0000000000002448 0x10c zephyr/libzephyr.a(onoff.c.obj) + 0x0000000000002448 onoff_cancel + .text.sys_notify_validate + 0x0000000000002554 0x24 zephyr/libzephyr.a(notify.c.obj) + 0x0000000000002554 sys_notify_validate + .text.sys_notify_finalize + 0x0000000000002578 0x44 zephyr/libzephyr.a(notify.c.obj) + 0x0000000000002578 sys_notify_finalize + .text.ring_buf_put + 0x00000000000025bc 0xa0 zephyr/libzephyr.a(ring_buffer.c.obj) + 0x00000000000025bc ring_buf_put + .text.ring_buf_get_claim + 0x000000000000265c 0x48 zephyr/libzephyr.a(ring_buffer.c.obj) + 0x000000000000265c ring_buf_get_claim + .text.ring_buf_get_finish + 0x00000000000026a4 0x2c zephyr/libzephyr.a(ring_buffer.c.obj) + 0x00000000000026a4 ring_buf_get_finish + .text.ring_buf_get + 0x00000000000026d0 0xa0 zephyr/libzephyr.a(ring_buffer.c.obj) + 0x00000000000026d0 ring_buf_get + .text._ConfigAbsSyms + 0x0000000000002770 0x4 zephyr/libzephyr.a(configs.c.obj) + 0x0000000000002770 _ConfigAbsSyms + .text.mem_attr_get_regions + 0x0000000000002774 0xc zephyr/libzephyr.a(mem_attr.c.obj) + 0x0000000000002774 mem_attr_get_regions + .text.disable_endpoint + 0x0000000000002780 0x40 zephyr/libzephyr.a(usb_device.c.obj) + .text.custom_handler + 0x00000000000027c0 0x94 zephyr/libzephyr.a(usb_device.c.obj) + .text.class_handler + 0x0000000000002854 0x78 zephyr/libzephyr.a(usb_device.c.obj) + .text.vendor_handler + 0x00000000000028cc 0x68 zephyr/libzephyr.a(usb_device.c.obj) + .text.is_ep_valid + 0x0000000000002934 0x80 zephyr/libzephyr.a(usb_device.c.obj) + .text.usb_halt_endpoint_req.isra.0 + 0x00000000000029b4 0x64 zephyr/libzephyr.a(usb_device.c.obj) + .text.set_endpoint + 0x0000000000002a18 0x9c zephyr/libzephyr.a(usb_device.c.obj) + .text.usb_handle_standard_request + 0x0000000000002ab4 0x358 zephyr/libzephyr.a(usb_device.c.obj) + .text.usb_data_to_host + 0x0000000000002e0c 0x74 zephyr/libzephyr.a(usb_device.c.obj) + .text.usb_handle_control_transfer + 0x0000000000002e80 0x138 zephyr/libzephyr.a(usb_device.c.obj) + .text.forward_status_cb + 0x0000000000002fb8 0x150 zephyr/libzephyr.a(usb_device.c.obj) + .text.usb_write + 0x0000000000003108 0x30 zephyr/libzephyr.a(usb_device.c.obj) + 0x0000000000003108 usb_write + .text.usb_enable + 0x0000000000003138 0x198 zephyr/libzephyr.a(usb_device.c.obj) + 0x0000000000003138 usb_enable + .text.usb_update_sn_string_descriptor + 0x00000000000032d0 0x80 zephyr/libzephyr.a(usb_descriptor.c.obj) + 0x00000000000032d0 usb_update_sn_string_descriptor + .text.usb_get_device_descriptor + 0x0000000000003350 0x2e4 zephyr/libzephyr.a(usb_descriptor.c.obj) + 0x0000000000003350 usb_get_device_descriptor + .text.usb_get_dev_data_by_cfg + 0x0000000000003634 0x1c zephyr/libzephyr.a(usb_descriptor.c.obj) + 0x0000000000003634 usb_get_dev_data_by_cfg + .text.usb_get_dev_data_by_iface + 0x0000000000003650 0x20 zephyr/libzephyr.a(usb_descriptor.c.obj) + 0x0000000000003650 usb_get_dev_data_by_iface + .text.usb_get_dev_data_by_ep + 0x0000000000003670 0x3c zephyr/libzephyr.a(usb_descriptor.c.obj) + 0x0000000000003670 usb_get_dev_data_by_ep + .text.usb_transfer_work + 0x00000000000036ac 0x100 zephyr/libzephyr.a(usb_transfer.c.obj) + .text.usb_transfer_is_busy + 0x00000000000037ac 0x2c zephyr/libzephyr.a(usb_transfer.c.obj) + 0x00000000000037ac usb_transfer_is_busy + .text.usb_transfer_ep_callback + 0x00000000000037d8 0x78 zephyr/libzephyr.a(usb_transfer.c.obj) + 0x00000000000037d8 usb_transfer_ep_callback + .text.usb_transfer + 0x0000000000003850 0x104 zephyr/libzephyr.a(usb_transfer.c.obj) + 0x0000000000003850 usb_transfer + .text.usb_cancel_transfer + 0x0000000000003954 0x64 zephyr/libzephyr.a(usb_transfer.c.obj) + 0x0000000000003954 usb_cancel_transfer + .text.usb_cancel_transfers + 0x00000000000039b8 0x48 zephyr/libzephyr.a(usb_transfer.c.obj) + 0x00000000000039b8 usb_cancel_transfers + .text.usb_transfer_init + 0x0000000000003a00 0x30 zephyr/libzephyr.a(usb_transfer.c.obj) + 0x0000000000003a00 usb_transfer_init + .text.cdc_interface_config + 0x0000000000003a30 0x14 zephyr/libzephyr.a(cdc_acm.c.obj) + .text.cdc_acm_irq_callback_work_handler + 0x0000000000003a44 0xc zephyr/libzephyr.a(cdc_acm.c.obj) + .text.cdc_acm_irq_tx_disable + 0x0000000000003a50 0xc zephyr/libzephyr.a(cdc_acm.c.obj) + .text.cdc_acm_irq_tx_ready + 0x0000000000003a5c 0x20 zephyr/libzephyr.a(cdc_acm.c.obj) + .text.cdc_acm_irq_rx_disable + 0x0000000000003a7c 0xc zephyr/libzephyr.a(cdc_acm.c.obj) + .text.cdc_acm_irq_rx_ready + 0x0000000000003a88 0x10 zephyr/libzephyr.a(cdc_acm.c.obj) + .text.cdc_acm_irq_update + 0x0000000000003a98 0x30 zephyr/libzephyr.a(cdc_acm.c.obj) + .text.cdc_acm_irq_callback_set + 0x0000000000003ac8 0x8 zephyr/libzephyr.a(cdc_acm.c.obj) + .text.cdc_acm_line_ctrl_get + 0x0000000000003ad0 0x38 zephyr/libzephyr.a(cdc_acm.c.obj) + .text.cdc_acm_irq_rx_enable + 0x0000000000003b08 0x20 zephyr/libzephyr.a(cdc_acm.c.obj) + .text.cdc_acm_irq_tx_enable + 0x0000000000003b28 0x20 zephyr/libzephyr.a(cdc_acm.c.obj) + .text.cdc_acm_read_cb + 0x0000000000003b48 0x7c zephyr/libzephyr.a(cdc_acm.c.obj) + .text.cdc_acm_fifo_fill + 0x0000000000003bc4 0x40 zephyr/libzephyr.a(cdc_acm.c.obj) + .text.cdc_acm_write_cb + 0x0000000000003c04 0x78 zephyr/libzephyr.a(cdc_acm.c.obj) + .text.cdc_acm_class_handle_req + 0x0000000000003c7c 0x64 zephyr/libzephyr.a(cdc_acm.c.obj) + 0x0000000000003c7c cdc_acm_class_handle_req + .text.cdc_acm_int_in + 0x0000000000003ce0 0x18 zephyr/libzephyr.a(cdc_acm.c.obj) + .text.cdc_acm_init + 0x0000000000003cf8 0x48 zephyr/libzephyr.a(cdc_acm.c.obj) + .text.tx_work_handler + 0x0000000000003d40 0x68 zephyr/libzephyr.a(cdc_acm.c.obj) + .text.cdc_acm_poll_out + 0x0000000000003da8 0x78 zephyr/libzephyr.a(cdc_acm.c.obj) + .text.cdc_acm_send_notification.isra.0 + 0x0000000000003e20 0x48 zephyr/libzephyr.a(cdc_acm.c.obj) + .text.cdc_acm_line_ctrl_set + 0x0000000000003e68 0xf0 zephyr/libzephyr.a(cdc_acm.c.obj) + .text.cdc_acm_irq_is_pending + 0x0000000000003f58 0x34 zephyr/libzephyr.a(cdc_acm.c.obj) + .text.cdc_acm_fifo_read + 0x0000000000003f8c 0x5c zephyr/libzephyr.a(cdc_acm.c.obj) + .text.cdc_acm_poll_in + 0x0000000000003fe8 0x64 zephyr/libzephyr.a(cdc_acm.c.obj) + .text.cdc_acm_dev_status_cb + 0x000000000000404c 0xcc zephyr/libzephyr.a(cdc_acm.c.obj) + .text.z_usb_work_q_init + 0x0000000000004118 0x34 zephyr/libzephyr.a(usb_work_q.c.obj) + .text.boot_banner + 0x000000000000414c 0x1c zephyr/libzephyr.a(banner.c.obj) + 0x000000000000414c boot_banner + .text.z_arm_fatal_error + 0x0000000000004168 0xc zephyr/arch/arch/arm/core/libarch__arm__core.a(fatal.c.obj) + 0x0000000000004168 z_arm_fatal_error + .text.z_do_kernel_oops + 0x0000000000004174 0x10 zephyr/arch/arch/arm/core/libarch__arm__core.a(fatal.c.obj) + 0x0000000000004174 z_do_kernel_oops + .text.z_arm_nmi + 0x0000000000004184 0x10 zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi.c.obj) + 0x0000000000004184 z_arm_nmi + .text.z_SysNmiOnReset + 0x0000000000004194 0x8 zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi_on_reset.S.obj) + 0x0000000000004194 z_SysNmiOnReset + .text.arch_tls_stack_setup + 0x000000000000419c 0x40 zephyr/arch/arch/arm/core/libarch__arm__core.a(tls.c.obj) + 0x000000000000419c arch_tls_stack_setup + .text._HandlerModeExit + 0x00000000000041dc 0x28 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(exc_exit.c.obj) + 0x00000000000041dc z_arm_exc_exit + 0x00000000000041dc z_arm_int_exit + .text.mem_manage_fault + 0x0000000000004204 0xdc zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault.c.obj) + .text.usage_fault.constprop.0 + 0x00000000000042e0 0x58 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault.c.obj) + .text.bus_fault.constprop.0 + 0x0000000000004338 0x70 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault.c.obj) + .text.z_arm_fault + 0x00000000000043a8 0x1f0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault.c.obj) + 0x00000000000043a8 z_arm_fault + .text.z_arm_fault_init + 0x0000000000004598 0x18 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault.c.obj) + 0x0000000000004598 z_arm_fault_init + .text.__fault 0x00000000000045b0 0x14 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault_s.S.obj) + 0x00000000000045b0 z_arm_bus_fault + 0x00000000000045b0 z_arm_usage_fault + 0x00000000000045b0 z_arm_mpu_fault + 0x00000000000045b0 z_arm_exc_spurious + 0x00000000000045b0 z_arm_debug_monitor + 0x00000000000045b0 z_arm_hard_fault + .text._reset_section + 0x00000000000045c4 0x54 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(reset.S.obj) + 0x00000000000045c4 z_arm_reset + 0x00000000000045c4 __start + .text.z_arm_init_arch_hw_at_boot + 0x0000000000004618 0x84 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(scb.c.obj) + 0x0000000000004618 z_arm_init_arch_hw_at_boot + .text.z_impl_k_thread_abort + 0x000000000000469c 0x34 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread_abort.c.obj) + 0x000000000000469c z_impl_k_thread_abort + .text.z_arm_pendsv + 0x00000000000046d0 0x64 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(swap_helper.S.obj) + 0x00000000000046d0 z_arm_pendsv + .text.z_arm_svc + 0x0000000000004734 0x24 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(swap_helper.S.obj) + 0x0000000000004734 z_arm_svc + .text.arch_irq_enable + 0x0000000000004758 0x1c zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + 0x0000000000004758 arch_irq_enable + .text.arch_irq_disable + 0x0000000000004774 0x28 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + 0x0000000000004774 arch_irq_disable + .text.arch_irq_is_enabled + 0x000000000000479c 0x1c zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + 0x000000000000479c arch_irq_is_enabled + .text.z_arm_irq_priority_set + 0x00000000000047b8 0x64 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + 0x00000000000047b8 z_arm_irq_priority_set + .text.z_irq_spurious + 0x000000000000481c 0x8 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + 0x000000000000481c z_irq_spurious + .text.z_prep_c + 0x0000000000004824 0x38 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(prep_c.c.obj) + 0x0000000000004824 z_prep_c + .text.arch_new_thread + 0x000000000000485c 0x3c zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread.c.obj) + 0x000000000000485c arch_new_thread + .text.z_check_thread_stack_fail + 0x0000000000004898 0x2c zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread.c.obj) + 0x0000000000004898 z_check_thread_stack_fail + .text.arch_switch_to_main_thread + 0x00000000000048c4 0x3c zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread.c.obj) + 0x00000000000048c4 arch_switch_to_main_thread + .text.arch_irq_unlock_outlined + 0x0000000000004900 0x10 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread.c.obj) + 0x0000000000004900 arch_irq_unlock_outlined + .text.z_arm_cpu_idle_init + 0x0000000000004910 0xc zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(cpu_idle.c.obj) + 0x0000000000004910 z_arm_cpu_idle_init + .text.arch_cpu_idle + 0x000000000000491c 0x1c zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(cpu_idle.c.obj) + 0x000000000000491c arch_cpu_idle + .text.arch_cpu_atomic_idle + 0x0000000000004938 0x20 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(cpu_idle.c.obj) + 0x0000000000004938 arch_cpu_atomic_idle + .text.z_arm_interrupt_init + 0x0000000000004958 0x18 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_init.c.obj) + 0x0000000000004958 z_arm_interrupt_init + .text._isr_wrapper + 0x0000000000004970 0x24 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(isr_wrapper.c.obj) + 0x0000000000004970 _isr_wrapper + .text.z_arm_configure_static_mpu_regions + 0x0000000000004994 0x18 zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_core_mpu.c.obj) + 0x0000000000004994 z_arm_configure_static_mpu_regions + .text.z_arm_configure_dynamic_mpu_regions + 0x00000000000049ac 0x24 zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_core_mpu.c.obj) + 0x00000000000049ac z_arm_configure_dynamic_mpu_regions + .text.arm_core_mpu_configure_static_mpu_regions + 0x00000000000049d0 0xdc zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_mpu.c.obj) + 0x00000000000049d0 arm_core_mpu_configure_static_mpu_regions + .text.arm_core_mpu_configure_dynamic_mpu_regions + 0x0000000000004aac 0xec zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_mpu.c.obj) + 0x0000000000004aac arm_core_mpu_configure_dynamic_mpu_regions + .text.z_arm_mpu_init + 0x0000000000004b98 0x354 zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_mpu.c.obj) + 0x0000000000004b98 z_arm_mpu_init + .text.picolibc_put + 0x0000000000004eec 0x10 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .text.__stdout_hook_install + 0x0000000000004efc 0x18 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + 0x0000000000004efc __stdout_hook_install + .text.malloc_prepare + 0x0000000000004f14 0x24 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .text.nordicsemi_nrf52_init + 0x0000000000004f38 0x10 zephyr/soc/soc/nrf52833/libsoc__nordic.a(soc.c.obj) + .text.arch_busy_wait + 0x0000000000004f48 0x14 zephyr/soc/soc/nrf52833/libsoc__nordic.a(soc.c.obj) + 0x0000000000004f48 arch_busy_wait + .text.endpoint_ctx + 0x0000000000004f5c 0x60 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + .text.usb_init + 0x0000000000004fbc 0x70 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + .text.usbd_evt_alloc.part.0 + 0x000000000000502c 0x28 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + .text.eps_ctx_init + 0x0000000000005054 0x134 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + .text.usb_dc_attach.part.0 + 0x0000000000005188 0xf0 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + .text.usb_dc_power_event_handler + 0x0000000000005278 0xb0 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + .text.usbd_work_handler + 0x0000000000005328 0x5a8 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + .text.usbd_event_transfer_data + 0x00000000000058d0 0x1b8 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + .text.usbd_event_handler + 0x0000000000005a88 0x294 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + .text.usb_dc_attach + 0x0000000000005d1c 0x14 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + 0x0000000000005d1c usb_dc_attach + .text.usb_dc_set_address + 0x0000000000005d30 0x60 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + 0x0000000000005d30 usb_dc_set_address + .text.usb_dc_ep_check_cap + 0x0000000000005d90 0x2c zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + 0x0000000000005d90 usb_dc_ep_check_cap + .text.usb_dc_ep_configure + 0x0000000000005dbc 0x48 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + 0x0000000000005dbc usb_dc_ep_configure + .text.usb_dc_ep_set_stall + 0x0000000000005e04 0x50 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + 0x0000000000005e04 usb_dc_ep_set_stall + .text.usb_dc_ep_clear_stall + 0x0000000000005e54 0x40 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + 0x0000000000005e54 usb_dc_ep_clear_stall + .text.usb_dc_ep_is_stalled + 0x0000000000005e94 0x38 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + 0x0000000000005e94 usb_dc_ep_is_stalled + .text.usb_dc_ep_enable + 0x0000000000005ecc 0x58 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + 0x0000000000005ecc usb_dc_ep_enable + .text.usb_dc_ep_disable + 0x0000000000005f24 0x4c zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + 0x0000000000005f24 usb_dc_ep_disable + .text.usb_dc_ep_write + 0x0000000000005f70 0x104 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + 0x0000000000005f70 usb_dc_ep_write + .text.usb_dc_ep_read_wait + 0x0000000000006074 0x98 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + 0x0000000000006074 usb_dc_ep_read_wait + .text.usb_dc_ep_read_continue + 0x000000000000610c 0x100 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + 0x000000000000610c usb_dc_ep_read_continue + .text.usb_dc_ep_read + 0x000000000000620c 0x20 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + 0x000000000000620c usb_dc_ep_read + .text.usb_dc_ep_set_callback + 0x000000000000622c 0x74 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + 0x000000000000622c usb_dc_ep_set_callback + .text.usb_dc_set_status_callback + 0x00000000000062a0 0xc zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + 0x00000000000062a0 usb_dc_set_status_callback + .text.usb_dc_ep_mps + 0x00000000000062ac 0x6c zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + 0x00000000000062ac usb_dc_ep_mps + .text.ep_state_access.part.0 + 0x0000000000006318 0x28 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + .text.ep2bit.part.0 + 0x0000000000006340 0x28 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + .text.nrf_usbd_common_ep_enable_check.part.0 + 0x0000000000006368 0x28 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + .text.usbd_enable + 0x0000000000006390 0xac zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + .text.nrf_usbd_common_irq_handler + 0x000000000000643c 0x710 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + 0x000000000000643c nrf_usbd_common_irq_handler + .text.nrf_usbd_common_uninit + 0x0000000000006b4c 0x40 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + 0x0000000000006b4c nrf_usbd_common_uninit + .text.nrf_usbd_common_enable + 0x0000000000006b8c 0x160 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + 0x0000000000006b8c nrf_usbd_common_enable + .text.nrf_usbd_common_start + 0x0000000000006cec 0x68 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + 0x0000000000006cec nrf_usbd_common_start + .text.nrf_usbd_common_is_enabled + 0x0000000000006d54 0x14 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + 0x0000000000006d54 nrf_usbd_common_is_enabled + .text.nrf_usbd_common_suspend + 0x0000000000006d68 0x6c zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + 0x0000000000006d68 nrf_usbd_common_suspend + .text.nrf_usbd_common_ep_max_packet_size_set + 0x0000000000006dd4 0xcc zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + 0x0000000000006dd4 nrf_usbd_common_ep_max_packet_size_set + .text.nrf_usbd_common_init + 0x0000000000006ea0 0xac zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + 0x0000000000006ea0 nrf_usbd_common_init + .text.nrf_usbd_common_ep_transfer + 0x0000000000006f4c 0x120 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + 0x0000000000006f4c nrf_usbd_common_ep_transfer + .text.nrf_usbd_common_ep_status_get + 0x000000000000706c 0x58 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + 0x000000000000706c nrf_usbd_common_ep_status_get + .text.nrf_usbd_common_ep_stall + 0x00000000000070c4 0x3c zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + 0x00000000000070c4 nrf_usbd_common_ep_stall + .text.nrf_usbd_common_ep_stall_check + 0x0000000000007100 0x3c zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + 0x0000000000007100 nrf_usbd_common_ep_stall_check + .text.nrf_usbd_common_ep_dtoggle_clear + 0x000000000000713c 0x40 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + 0x000000000000713c nrf_usbd_common_ep_dtoggle_clear + .text.nrf_usbd_common_setup_get + 0x000000000000717c 0x44 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + 0x000000000000717c nrf_usbd_common_setup_get + .text.nrf_usbd_common_setup_data_clear + 0x00000000000071c0 0xc zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + 0x00000000000071c0 nrf_usbd_common_setup_data_clear + .text.nrf_usbd_common_setup_clear + 0x00000000000071cc 0xc zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + 0x00000000000071cc nrf_usbd_common_setup_clear + .text.nrf_usbd_common_setup_stall + 0x00000000000071d8 0xc zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + 0x00000000000071d8 nrf_usbd_common_setup_stall + .text.nrf_usbd_common_last_setup_dir_get + 0x00000000000071e4 0xc zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + 0x00000000000071e4 nrf_usbd_common_last_setup_dir_get + .text.nrf_usbd_common_transfer_out_drop + 0x00000000000071f0 0x7c zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + 0x00000000000071f0 nrf_usbd_common_transfer_out_drop + .text.usbd_ep_abort + 0x000000000000726c 0x120 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + .text.nrf_usbd_common_ep_abort + 0x000000000000738c 0x34 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + 0x000000000000738c nrf_usbd_common_ep_abort + .text.nrf_usbd_common_disable + 0x00000000000073c0 0x12c zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + 0x00000000000073c0 nrf_usbd_common_disable + .text.nrf_usbd_common_ep_disable + 0x00000000000074ec 0x5c zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + 0x00000000000074ec nrf_usbd_common_ep_disable + .text.nrf_usbd_common_ep_enable + 0x0000000000007548 0x7c zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + 0x0000000000007548 nrf_usbd_common_ep_enable + .text.nrf_usbd_common_ep_stall_clear + 0x00000000000075c4 0x5c zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + 0x00000000000075c4 nrf_usbd_common_ep_stall_clear + .text.adc_gain_invert + 0x0000000000007620 0x34 zephyr/drivers/adc/libdrivers__adc.a(adc_common.c.obj) + 0x0000000000007620 adc_gain_invert + .text.adc_nrfx_channel_setup + 0x0000000000007654 0x120 zephyr/drivers/adc/libdrivers__adc.a(adc_nrfx_saadc.c.obj) + .text.init_saadc + 0x0000000000007774 0x50 zephyr/drivers/adc/libdrivers__adc.a(adc_nrfx_saadc.c.obj) + .text.adc_context_on_timer_expired + 0x00000000000077c4 0x44 zephyr/drivers/adc/libdrivers__adc.a(adc_nrfx_saadc.c.obj) + .text.adc_nrfx_read + 0x0000000000007808 0x1b8 zephyr/drivers/adc/libdrivers__adc.a(adc_nrfx_saadc.c.obj) + .text.saadc_irq_handler + 0x00000000000079c0 0x11c zephyr/drivers/adc/libdrivers__adc.a(adc_nrfx_saadc.c.obj) + .text.onoff_started_callback + 0x0000000000007adc 0xc zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .text.lfclk_start + 0x0000000000007ae8 0x8 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .text.generic_hfclk_stop + 0x0000000000007af0 0x3c zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .text.lfclk_stop + 0x0000000000007b2c 0x8 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .text.blocking_start_callback + 0x0000000000007b34 0x8 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .text.api_blocking_start + 0x0000000000007b3c 0x8c zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .text.get_status + 0x0000000000007bc8 0x3c zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .text.stop.part.0 + 0x0000000000007c04 0x28 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .text.onoff_stop + 0x0000000000007c2c 0x70 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .text.clk_init + 0x0000000000007c9c 0x58 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .text.clkstarted_handle.constprop.0 + 0x0000000000007cf4 0x50 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .text.generic_hfclk_start + 0x0000000000007d44 0x78 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .text.api_stop + 0x0000000000007dbc 0x54 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .text.api_start + 0x0000000000007e10 0x60 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .text.onoff_start + 0x0000000000007e70 0x7c zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .text.clock_event_handler + 0x0000000000007eec 0xa0 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .text.z_nrf_clock_control_get_onoff + 0x0000000000007f8c 0x10 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + 0x0000000000007f8c z_nrf_clock_control_get_onoff + .text.z_nrf_clock_control_lf_on + 0x0000000000007f9c 0x14c zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + 0x0000000000007f9c z_nrf_clock_control_lf_on + .text.console_out + 0x00000000000080e8 0x2c zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .text.uart_console_init + 0x0000000000008114 0x28 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .text.gpio_nrfx_port_get_raw + 0x000000000000813c 0x10 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + .text.gpio_nrfx_port_set_masked_raw + 0x000000000000814c 0x18 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + .text.gpio_nrfx_port_set_bits_raw + 0x0000000000008164 0xc zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + .text.gpio_nrfx_port_clear_bits_raw + 0x0000000000008170 0xc zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + .text.gpio_nrfx_port_toggle_bits + 0x000000000000817c 0x1c zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + .text.gpio_nrfx_manage_callback + 0x0000000000008198 0xb0 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + .text.gpio_nrfx_init + 0x0000000000008248 0x4c zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + .text.nrf_gpio_pin_port_decode.part.0 + 0x0000000000008294 0x28 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + .text.gpio_nrfx_pin_configure + 0x00000000000082bc 0x1dc zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + .text.nrfx_gpio_handler + 0x0000000000008498 0x7c zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + .text.gpio_nrfx_pin_interrupt_configure + 0x0000000000008514 0x130 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + .text.z_impl_hwinfo_get_device_id + 0x0000000000008644 0x2c zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_nrf.c.obj) + 0x0000000000008644 z_impl_hwinfo_get_device_id + .text.hfclk_on_callback + 0x0000000000008670 0xc zephyr/drivers/sensor/nordic/temp/libdrivers__sensor__nordic__temp.a(temp_nrf5.c.obj) + .text.temp_nrf5_channel_get + 0x000000000000867c 0x40 zephyr/drivers/sensor/nordic/temp/libdrivers__sensor__nordic__temp.a(temp_nrf5.c.obj) + .text.temp_nrf5_init + 0x00000000000086bc 0x64 zephyr/drivers/sensor/nordic/temp/libdrivers__sensor__nordic__temp.a(temp_nrf5.c.obj) + .text.temp_nrf5_isr + 0x0000000000008720 0x18 zephyr/drivers/sensor/nordic/temp/libdrivers__sensor__nordic__temp.a(temp_nrf5.c.obj) + .text.temp_nrf5_sample_fetch + 0x0000000000008738 0xb4 zephyr/drivers/sensor/nordic/temp/libdrivers__sensor__nordic__temp.a(temp_nrf5.c.obj) + .text.sys_clock_timeout_handler + 0x00000000000087ec 0x4c zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .text.compare_set_nolocks.constprop.0.isra.0 + 0x0000000000008838 0x138 zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .text.sys_clock_driver_init + 0x0000000000008970 0xec zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .text.rtc_nrf_isr + 0x0000000000008a5c 0x124 zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + 0x0000000000008a5c rtc_nrf_isr + .text.sys_clock_set_timeout + 0x0000000000008b80 0xf8 zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + 0x0000000000008b80 sys_clock_set_timeout + .text.sys_clock_elapsed + 0x0000000000008c78 0x54 zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + 0x0000000000008c78 sys_clock_elapsed + .text.__NVIC_SystemReset + 0x0000000000008ccc 0x24 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(system_nrf52833.c.obj) + .text.SystemInit + 0x0000000000008cf0 0x18c modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(system_nrf52833.c.obj) + 0x0000000000008cf0 SystemInit + .text.nrfx_isr + 0x0000000000008e7c 0x4 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_glue.c.obj) + 0x0000000000008e7c nrfx_isr + .text.nrfx_busy_wait + 0x0000000000008e80 0x4 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_glue.c.obj) + 0x0000000000008e80 nrfx_busy_wait + .text.nrfx_flag32_alloc + 0x0000000000008e84 0x48 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_flag32_allocator.c.obj) + 0x0000000000008e84 nrfx_flag32_alloc + .text.nrfx_flag32_free + 0x0000000000008ecc 0x60 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_flag32_allocator.c.obj) + 0x0000000000008ecc nrfx_flag32_free + .text.clock_stop + 0x0000000000008f2c 0x104 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_clock.c.obj) + .text.nrfx_clock_init + 0x0000000000009030 0x24 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_clock.c.obj) + 0x0000000000009030 nrfx_clock_init + .text.nrfx_clock_enable + 0x0000000000009054 0x58 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_clock.c.obj) + 0x0000000000009054 nrfx_clock_enable + .text.nrfx_clock_start + 0x00000000000090ac 0xf4 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_clock.c.obj) + 0x00000000000090ac nrfx_clock_start + .text.nrfx_clock_stop + 0x00000000000091a0 0x38 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_clock.c.obj) + 0x00000000000091a0 nrfx_clock_stop + .text.nrfx_clock_irq_handler + 0x00000000000091d8 0x98 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_clock.c.obj) + 0x00000000000091d8 nrfx_clock_irq_handler + .text.nrf_gpio_pin_port_decode.part.0 + 0x0000000000009270 0x28 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .text.call_handler.constprop.0 + 0x0000000000009298 0x4c modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .text.latch_pending_read_and_check + 0x00000000000092e4 0x40 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .text.release_handler.isra.0 + 0x0000000000009324 0x90 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .text.pin_trigger_disable + 0x00000000000093b4 0x88 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .text.pin_uninit + 0x000000000000943c 0xac modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .text.nrfx_gpiote_input_configure + 0x00000000000094e8 0x194 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + 0x00000000000094e8 nrfx_gpiote_input_configure + .text.nrfx_gpiote_output_configure + 0x000000000000967c 0x140 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + 0x000000000000967c nrfx_gpiote_output_configure + .text.nrfx_gpiote_global_callback_set + 0x00000000000097bc 0xc modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + 0x00000000000097bc nrfx_gpiote_global_callback_set + .text.nrfx_gpiote_channel_get + 0x00000000000097c8 0x5c modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + 0x00000000000097c8 nrfx_gpiote_channel_get + .text.nrfx_gpiote_init + 0x0000000000009824 0x80 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + 0x0000000000009824 nrfx_gpiote_init + .text.nrfx_gpiote_init_check + 0x00000000000098a4 0x14 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + 0x00000000000098a4 nrfx_gpiote_init_check + .text.nrfx_gpiote_pin_uninit + 0x00000000000098b8 0x4 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + 0x00000000000098b8 nrfx_gpiote_pin_uninit + .text.nrfx_gpiote_channel_free + 0x00000000000098bc 0xc modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + 0x00000000000098bc nrfx_gpiote_channel_free + .text.nrfx_gpiote_channel_alloc + 0x00000000000098c8 0xc modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + 0x00000000000098c8 nrfx_gpiote_channel_alloc + .text.nrfx_gpiote_trigger_enable + 0x00000000000098d4 0x154 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + 0x00000000000098d4 nrfx_gpiote_trigger_enable + .text.nrfx_gpiote_trigger_disable + 0x0000000000009a28 0x4 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + 0x0000000000009a28 nrfx_gpiote_trigger_disable + .text.nrfx_gpiote_0_irq_handler + 0x0000000000009a2c 0x32c modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + 0x0000000000009a2c nrfx_gpiote_0_irq_handler + .text.nrfx_power_init + 0x0000000000009d58 0x64 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + 0x0000000000009d58 nrfx_power_init + .text.nrfx_power_usbevt_init + 0x0000000000009dbc 0x40 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + 0x0000000000009dbc nrfx_power_usbevt_init + .text.nrfx_power_usbevt_enable + 0x0000000000009dfc 0x10 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + 0x0000000000009dfc nrfx_power_usbevt_enable + .text.nrfx_power_usbevt_disable + 0x0000000000009e0c 0x10 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + 0x0000000000009e0c nrfx_power_usbevt_disable + .text.nrfx_power_irq_handler + 0x0000000000009e1c 0x18c modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + 0x0000000000009e1c nrfx_power_irq_handler + .text.nrfx_power_clock_irq_handler + 0x0000000000009fa8 0x10 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + 0x0000000000009fa8 nrfx_power_clock_irq_handler + .text.nrfx_temp_init + 0x0000000000009fb8 0x68 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_temp.c.obj) + 0x0000000000009fb8 nrfx_temp_init + .text.nrfx_temp_measure + 0x000000000000a020 0x84 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_temp.c.obj) + 0x000000000000a020 nrfx_temp_measure + .text._DoInit 0x000000000000a0a4 0x6c modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .text.SEGGER_RTT_Init + 0x000000000000a110 0x44 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + 0x000000000000a110 SEGGER_RTT_Init + .text.rtt_init + 0x000000000000a154 0xc modules/segger/libmodules__segger.a(SEGGER_RTT_zephyr.c.obj) + .text.z_impl_k_busy_wait + 0x000000000000a160 0x8 zephyr/kernel/libkernel.a(busy_wait.c.obj) + 0x000000000000a160 z_impl_k_busy_wait + .text.z_device_state_init + 0x000000000000a168 0x48 zephyr/kernel/libkernel.a(device.c.obj) + 0x000000000000a168 z_device_state_init + .text.z_impl_device_is_ready + 0x000000000000a1b0 0x18 zephyr/kernel/libkernel.a(device.c.obj) + 0x000000000000a1b0 z_impl_device_is_ready + .text.arch_system_halt + 0x000000000000a1c8 0x10 zephyr/kernel/libkernel.a(fatal.c.obj) + 0x000000000000a1c8 arch_system_halt + .text.k_sys_fatal_error_handler + 0x000000000000a1d8 0x8 zephyr/kernel/libkernel.a(fatal.c.obj) + 0x000000000000a1d8 k_sys_fatal_error_handler + .text.z_fatal_error + 0x000000000000a1e0 0x60 zephyr/kernel/libkernel.a(fatal.c.obj) + 0x000000000000a1e0 z_fatal_error + .text.z_sys_init_run_level + 0x000000000000a240 0x54 zephyr/kernel/libkernel.a(init.c.obj) + .text.bg_thread_main + 0x000000000000a294 0x120 zephyr/kernel/libkernel.a(init.c.obj) + .text.z_early_memset + 0x000000000000a3b4 0x4 zephyr/kernel/libkernel.a(init.c.obj) + 0x000000000000a3b4 z_early_memset + .text.z_early_memcpy + 0x000000000000a3b8 0x4 zephyr/kernel/libkernel.a(init.c.obj) + 0x000000000000a3b8 z_early_memcpy + .text.z_bss_zero + 0x000000000000a3bc 0x18 zephyr/kernel/libkernel.a(init.c.obj) + 0x000000000000a3bc z_bss_zero + .text.z_cstart + 0x000000000000a3d4 0x11c zephyr/kernel/libkernel.a(init.c.obj) + 0x000000000000a3d4 z_cstart + .text.z_init_static + 0x000000000000a4f0 0x4 zephyr/kernel/libkernel.a(init_static.c.obj) + 0x000000000000a4f0 z_init_static + .text.init_mem_slab_obj_core_list + 0x000000000000a4f4 0x9c zephyr/kernel/libkernel.a(mem_slab.c.obj) + .text.k_mem_slab_alloc + 0x000000000000a590 0x128 zephyr/kernel/libkernel.a(mem_slab.c.obj) + 0x000000000000a590 k_mem_slab_alloc + .text.k_mem_slab_free + 0x000000000000a6b8 0x198 zephyr/kernel/libkernel.a(mem_slab.c.obj) + 0x000000000000a6b8 k_mem_slab_free + .text.idle 0x000000000000a850 0x48 zephyr/kernel/libkernel.a(idle.c.obj) + 0x000000000000a850 idle + .text.z_impl_k_mutex_init + 0x000000000000a898 0x10 zephyr/kernel/libkernel.a(mutex.c.obj) + 0x000000000000a898 z_impl_k_mutex_init + .text.z_impl_k_mutex_lock + 0x000000000000a8a8 0x1bc zephyr/kernel/libkernel.a(mutex.c.obj) + 0x000000000000a8a8 z_impl_k_mutex_lock + .text.z_impl_k_mutex_unlock + 0x000000000000aa64 0x1c0 zephyr/kernel/libkernel.a(mutex.c.obj) + 0x000000000000aa64 z_impl_k_mutex_unlock + .text.queue_insert + 0x000000000000ac24 0x1d8 zephyr/kernel/libkernel.a(queue.c.obj) + .text.k_queue_append + 0x000000000000adfc 0x18 zephyr/kernel/libkernel.a(queue.c.obj) + 0x000000000000adfc k_queue_append + .text.z_impl_k_queue_get + 0x000000000000ae14 0xe4 zephyr/kernel/libkernel.a(queue.c.obj) + 0x000000000000ae14 z_impl_k_queue_get + .text.z_impl_k_sem_init + 0x000000000000aef8 0x18 zephyr/kernel/libkernel.a(sem.c.obj) + 0x000000000000aef8 z_impl_k_sem_init + .text.z_impl_k_sem_give + 0x000000000000af10 0x134 zephyr/kernel/libkernel.a(sem.c.obj) + 0x000000000000af10 z_impl_k_sem_give + .text.z_impl_k_sem_take + 0x000000000000b044 0xf8 zephyr/kernel/libkernel.a(sem.c.obj) + 0x000000000000b044 z_impl_k_sem_take + .text.work_queue_main + 0x000000000000b13c 0x230 zephyr/kernel/libkernel.a(work.c.obj) + .text.submit_to_queue_locked + 0x000000000000b36c 0xe8 zephyr/kernel/libkernel.a(work.c.obj) + .text.work_timeout + 0x000000000000b454 0xb4 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_init + 0x000000000000b508 0x4c zephyr/kernel/libkernel.a(work.c.obj) + 0x000000000000b508 k_work_init + .text.z_work_submit_to_queue + 0x000000000000b554 0xe0 zephyr/kernel/libkernel.a(work.c.obj) + 0x000000000000b554 z_work_submit_to_queue + .text.k_work_submit_to_queue + 0x000000000000b634 0x20 zephyr/kernel/libkernel.a(work.c.obj) + 0x000000000000b634 k_work_submit_to_queue + .text.k_work_queue_start + 0x000000000000b654 0xec zephyr/kernel/libkernel.a(work.c.obj) + 0x000000000000b654 k_work_queue_start + .text.k_work_init_delayable + 0x000000000000b740 0x5c zephyr/kernel/libkernel.a(work.c.obj) + 0x000000000000b740 k_work_init_delayable + .text.k_work_schedule_for_queue + 0x000000000000b79c 0x118 zephyr/kernel/libkernel.a(work.c.obj) + 0x000000000000b79c k_work_schedule_for_queue + .text.k_is_in_isr + 0x000000000000b8b4 0xc zephyr/kernel/libkernel.a(thread.c.obj) + 0x000000000000b8b4 k_is_in_isr + .text.z_impl_k_thread_name_set + 0x000000000000b8c0 0x8 zephyr/kernel/libkernel.a(thread.c.obj) + 0x000000000000b8c0 z_impl_k_thread_name_set + .text.z_setup_new_thread + 0x000000000000b8c8 0xec zephyr/kernel/libkernel.a(thread.c.obj) + 0x000000000000b8c8 z_setup_new_thread + .text.z_impl_k_thread_create + 0x000000000000b9b4 0x94 zephyr/kernel/libkernel.a(thread.c.obj) + 0x000000000000b9b4 z_impl_k_thread_create + .text.unready_thread + 0x000000000000ba48 0xb4 zephyr/kernel/libkernel.a(sched.c.obj) + .text.add_to_waitq_locked + 0x000000000000bafc 0x54 zephyr/kernel/libkernel.a(sched.c.obj) + .text.unpend_thread_no_timeout.part.0 + 0x000000000000bb50 0x24 zephyr/kernel/libkernel.a(sched.c.obj) + .text.ready_thread + 0x000000000000bb74 0xe4 zephyr/kernel/libkernel.a(sched.c.obj) + .text.move_thread_to_end_of_prio_q + 0x000000000000bc58 0x124 zephyr/kernel/libkernel.a(sched.c.obj) + 0x000000000000bc58 move_thread_to_end_of_prio_q + .text.z_ready_thread + 0x000000000000bd7c 0x90 zephyr/kernel/libkernel.a(sched.c.obj) + 0x000000000000bd7c z_ready_thread + .text.z_unpend_thread_no_timeout + 0x000000000000be0c 0xac zephyr/kernel/libkernel.a(sched.c.obj) + 0x000000000000be0c z_unpend_thread_no_timeout + .text.z_sched_wake_thread + 0x000000000000beb8 0xbc zephyr/kernel/libkernel.a(sched.c.obj) + 0x000000000000beb8 z_sched_wake_thread + .text.z_thread_timeout + 0x000000000000bf74 0x8 zephyr/kernel/libkernel.a(sched.c.obj) + 0x000000000000bf74 z_thread_timeout + .text.z_pend_curr + 0x000000000000bf7c 0x130 zephyr/kernel/libkernel.a(sched.c.obj) + 0x000000000000bf7c z_pend_curr + .text.z_unpend1_no_timeout + 0x000000000000c0ac 0xc0 zephyr/kernel/libkernel.a(sched.c.obj) + 0x000000000000c0ac z_unpend1_no_timeout + .text.z_thread_prio_set + 0x000000000000c16c 0x14c zephyr/kernel/libkernel.a(sched.c.obj) + 0x000000000000c16c z_thread_prio_set + .text.z_reschedule + 0x000000000000c2b8 0xa8 zephyr/kernel/libkernel.a(sched.c.obj) + 0x000000000000c2b8 z_reschedule + .text.z_reschedule_irqlock + 0x000000000000c360 0x40 zephyr/kernel/libkernel.a(sched.c.obj) + 0x000000000000c360 z_reschedule_irqlock + .text.k_sched_lock + 0x000000000000c3a0 0xe8 zephyr/kernel/libkernel.a(sched.c.obj) + 0x000000000000c3a0 k_sched_lock + .text.k_sched_unlock + 0x000000000000c488 0x16c zephyr/kernel/libkernel.a(sched.c.obj) + 0x000000000000c488 k_sched_unlock + .text.z_unpend_all + 0x000000000000c5f4 0x34 zephyr/kernel/libkernel.a(sched.c.obj) + 0x000000000000c5f4 z_unpend_all + .text.z_sched_init + 0x000000000000c628 0x10 zephyr/kernel/libkernel.a(sched.c.obj) + 0x000000000000c628 z_sched_init + .text.z_impl_k_yield + 0x000000000000c638 0x150 zephyr/kernel/libkernel.a(sched.c.obj) + 0x000000000000c638 z_impl_k_yield + .text.z_tick_sleep + 0x000000000000c788 0x140 zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_impl_k_sleep + 0x000000000000c8c8 0x64 zephyr/kernel/libkernel.a(sched.c.obj) + 0x000000000000c8c8 z_impl_k_sleep + .text.z_impl_k_usleep + 0x000000000000c92c 0x3c zephyr/kernel/libkernel.a(sched.c.obj) + 0x000000000000c92c z_impl_k_usleep + .text.z_impl_k_wakeup + 0x000000000000c968 0xb8 zephyr/kernel/libkernel.a(sched.c.obj) + 0x000000000000c968 z_impl_k_wakeup + .text.z_impl_k_sched_current_thread_query + 0x000000000000ca20 0xc zephyr/kernel/libkernel.a(sched.c.obj) + 0x000000000000ca20 z_impl_k_sched_current_thread_query + .text.z_thread_abort + 0x000000000000ca2c 0x27c zephyr/kernel/libkernel.a(sched.c.obj) + 0x000000000000ca2c z_thread_abort + .text.z_sched_wake + 0x000000000000cca8 0xe0 zephyr/kernel/libkernel.a(sched.c.obj) + 0x000000000000cca8 z_sched_wake + .text.z_sched_wait + 0x000000000000cd88 0x24 zephyr/kernel/libkernel.a(sched.c.obj) + 0x000000000000cd88 z_sched_wait + .text.slice_timeout + 0x000000000000cdac 0x60 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .text.z_reset_time_slice + 0x000000000000ce0c 0x70 zephyr/kernel/libkernel.a(timeslicing.c.obj) + 0x000000000000ce0c z_reset_time_slice + .text.z_time_slice + 0x000000000000ce7c 0xf0 zephyr/kernel/libkernel.a(timeslicing.c.obj) + 0x000000000000ce7c z_time_slice + .text.z_spin_lock_valid + 0x000000000000cf6c 0x1c zephyr/kernel/libkernel.a(spinlock_validate.c.obj) + 0x000000000000cf6c z_spin_lock_valid + .text.z_spin_unlock_valid + 0x000000000000cf88 0x30 zephyr/kernel/libkernel.a(spinlock_validate.c.obj) + 0x000000000000cf88 z_spin_unlock_valid + .text.z_spin_lock_set_owner + 0x000000000000cfb8 0x10 zephyr/kernel/libkernel.a(spinlock_validate.c.obj) + 0x000000000000cfb8 z_spin_lock_set_owner + .text.z_data_copy + 0x000000000000cfc8 0x38 zephyr/kernel/libkernel.a(xip.c.obj) + 0x000000000000cfc8 z_data_copy + .text.remove_timeout + 0x000000000000d000 0x38 zephyr/kernel/libkernel.a(timeout.c.obj) + .text.z_add_timeout + 0x000000000000d038 0x1d0 zephyr/kernel/libkernel.a(timeout.c.obj) + 0x000000000000d038 z_add_timeout + .text.z_abort_timeout + 0x000000000000d208 0x104 zephyr/kernel/libkernel.a(timeout.c.obj) + 0x000000000000d208 z_abort_timeout + .text.sys_clock_announce + 0x000000000000d30c 0x1f8 zephyr/kernel/libkernel.a(timeout.c.obj) + 0x000000000000d30c sys_clock_announce + .text.sys_clock_tick_get + 0x000000000000d504 0xb4 zephyr/kernel/libkernel.a(timeout.c.obj) + 0x000000000000d504 sys_clock_tick_get + .text.sys_clock_tick_get_32 + 0x000000000000d5b8 0x8 zephyr/kernel/libkernel.a(timeout.c.obj) + 0x000000000000d5b8 sys_clock_tick_get_32 + .text.z_impl_k_uptime_ticks + 0x000000000000d5c0 0x4 zephyr/kernel/libkernel.a(timeout.c.obj) + 0x000000000000d5c0 z_impl_k_uptime_ticks + .text.sys_timepoint_calc + 0x000000000000d5c4 0x64 zephyr/kernel/libkernel.a(timeout.c.obj) + 0x000000000000d5c4 sys_timepoint_calc + .text.sys_timepoint_timeout + 0x000000000000d628 0x50 zephyr/kernel/libkernel.a(timeout.c.obj) + 0x000000000000d628 sys_timepoint_timeout + .text.z_timer_expiration_handler + 0x000000000000d678 0x170 zephyr/kernel/libkernel.a(timer.c.obj) + 0x000000000000d678 z_timer_expiration_handler + .text.k_timer_init + 0x000000000000d7e8 0x20 zephyr/kernel/libkernel.a(timer.c.obj) + 0x000000000000d7e8 k_timer_init + .text.z_impl_k_timer_start + 0x000000000000d808 0xe4 zephyr/kernel/libkernel.a(timer.c.obj) + 0x000000000000d808 z_impl_k_timer_start + .text.z_impl_k_timer_stop + 0x000000000000d8ec 0x38 zephyr/kernel/libkernel.a(timer.c.obj) + 0x000000000000d8ec z_impl_k_timer_stop + .text.k_free 0x000000000000d924 0x10 zephyr/kernel/libkernel.a(mempool.c.obj) + 0x000000000000d924 k_free + .text.z_thread_aligned_alloc + 0x000000000000d934 0x7c zephyr/kernel/libkernel.a(mempool.c.obj) + 0x000000000000d934 z_thread_aligned_alloc + .text.statics_init + 0x000000000000d9b0 0x5c zephyr/kernel/libkernel.a(kheap.c.obj) + .text.k_heap_aligned_alloc + 0x000000000000da0c 0x13c zephyr/kernel/libkernel.a(kheap.c.obj) + 0x000000000000da0c k_heap_aligned_alloc + .text.k_heap_free + 0x000000000000db48 0xac zephyr/kernel/libkernel.a(kheap.c.obj) + 0x000000000000db48 k_heap_free + .text.k_sys_work_q_init + 0x000000000000dbf4 0x38 zephyr/kernel/libkernel.a(system_work_q.c.obj) + .text.__l_vfprintf + 0x000000000000dc2c 0x4b8 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_vflprintf.c.o) + 0x000000000000dc2c __l_vfprintf + .text.memcpy 0x000000000000e0e4 0x1c /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(memcpy.c.o) + 0x000000000000e0e4 memcpy + 0x000000000000e0e4 __aeabi_memcpy + 0x000000000000e0e4 __aeabi_memcpy4 + 0x000000000000e0e4 __aeabi_memcpy8 + .text.memset 0x000000000000e100 0x10 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(memset.c.o) + 0x000000000000e100 memset + .text.strnlen 0x000000000000e110 0x18 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_string_strnlen.c.o) + 0x000000000000e110 strnlen + .text.__ultoa_invert + 0x000000000000e128 0xae /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_vflprintf.c.o) + *(SORT_BY_ALIGNMENT(.TEXT.*)) + *fill* 0x000000000000e1d6 0x2 + .TEXT.__aeabi_read_tp + 0x000000000000e1d8 0xc zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(__aeabi_read_tp.S.obj) + 0x000000000000e1d8 __aeabi_read_tp + *(SORT_BY_ALIGNMENT(.gnu.linkonce.t.*)) + *(SORT_BY_ALIGNMENT(.glue_7t)) + .glue_7t 0x000000000000e1e4 0x0 linker stubs + *(SORT_BY_ALIGNMENT(.glue_7)) + .glue_7 0x000000000000e1e4 0x0 linker stubs + *(SORT_BY_ALIGNMENT(.vfp11_veneer)) + .vfp11_veneer 0x000000000000e1e4 0x0 linker stubs + *(SORT_BY_ALIGNMENT(.v4_bx)) + .v4_bx 0x000000000000e1e4 0x0 linker stubs + 0x000000000000e1e4 . = ALIGN (0x4) + 0x000000000000e1e4 __text_region_end = . + +.ARM.exidx 0x000000000000e1e4 0x8 + 0x000000000000e1e4 __exidx_start = . + *(SORT_BY_ALIGNMENT(.ARM.exidx*) SORT_BY_ALIGNMENT(gnu.linkonce.armexidx.*)) + .ARM.exidx 0x000000000000e1e4 0x8 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(strlen.S.o) + .ARM.exidx 0x000000000000e1ec 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_udivmoddi4.o) + 0x8 (size before relaxing) + 0x000000000000e1ec __exidx_end = . + 0x000000000000e1ec __rodata_region_start = . + +initlevel 0x000000000000e1ec 0x80 + 0x000000000000e1ec __init_start = . + 0x000000000000e1ec __init_EARLY_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_EARLY?_*))) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_EARLY??_*))) + 0x000000000000e1ec __init_PRE_KERNEL_1_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_PRE_KERNEL_1?_*))) + .z_init_PRE_KERNEL_10_0_ + 0x000000000000e1ec 0x8 zephyr/soc/soc/nrf52833/libsoc__nordic.a(soc.c.obj) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_PRE_KERNEL_1??_*))) + .z_init_PRE_KERNEL_130_00025_ + 0x000000000000e1f4 0x8 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .z_init_PRE_KERNEL_130_0_ + 0x000000000000e1fc 0x8 modules/segger/libmodules__segger.a(SEGGER_RTT_zephyr.c.obj) + .z_init_PRE_KERNEL_130_0_ + 0x000000000000e204 0x8 zephyr/kernel/libkernel.a(mem_slab.c.obj) + .z_init_PRE_KERNEL_130_0_ + 0x000000000000e20c 0x8 zephyr/kernel/libkernel.a(kheap.c.obj) + .z_init_PRE_KERNEL_140_00012_ + 0x000000000000e214 0x8 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + .z_init_PRE_KERNEL_140_00019_ + 0x000000000000e21c 0x8 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + .z_init_PRE_KERNEL_150_00084_ + 0x000000000000e224 0x8 zephyr/libzephyr.a(cdc_acm.c.obj) + .z_init_PRE_KERNEL_160_0_ + 0x000000000000e22c 0x8 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + 0x000000000000e234 __init_PRE_KERNEL_2_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_PRE_KERNEL_2?_*))) + .z_init_PRE_KERNEL_20_0_ + 0x000000000000e234 0x8 zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_PRE_KERNEL_2??_*))) + 0x000000000000e23c __init_POST_KERNEL_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_POST_KERNEL?_*))) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_POST_KERNEL??_*))) + .z_init_POST_KERNEL35_0_ + 0x000000000000e23c 0x8 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .z_init_POST_KERNEL40_0_ + 0x000000000000e244 0x8 zephyr/libzephyr.a(usb_work_q.c.obj) + .z_init_POST_KERNEL40_0_ + 0x000000000000e24c 0x8 zephyr/kernel/libkernel.a(system_work_q.c.obj) + .z_init_POST_KERNEL50_00010_ + 0x000000000000e254 0x8 zephyr/drivers/adc/libdrivers__adc.a(adc_nrfx_saadc.c.obj) + .z_init_POST_KERNEL50_0_ + 0x000000000000e25c 0x8 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + .z_init_POST_KERNEL90_00056_ + 0x000000000000e264 0x8 zephyr/drivers/sensor/nordic/temp/libdrivers__sensor__nordic__temp.a(temp_nrf5.c.obj) + 0x000000000000e26c __init_APPLICATION_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_APPLICATION?_*))) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_APPLICATION??_*))) + 0x000000000000e26c __init_SMP_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_SMP?_*))) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_SMP??_*))) + 0x000000000000e26c __init_end = . + 0x000000000000e26c __deferred_init_list_start = . + *(SORT_BY_ALIGNMENT(.z_deferred_init*)) + 0x000000000000e26c __deferred_init_list_end = . + +device_area 0x000000000000e26c 0x78 + 0x000000000000e26c _device_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._device.static.*_?_*))) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._device.static.*_??_*))) + ._device.static.1_30_ + 0x000000000000e26c 0x14 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + 0x000000000000e26c __device_dts_ord_25 + ._device.static.1_40_ + 0x000000000000e280 0x28 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + 0x000000000000e280 __device_dts_ord_19 + 0x000000000000e294 __device_dts_ord_12 + ._device.static.1_50_ + 0x000000000000e2a8 0x14 zephyr/libzephyr.a(cdc_acm.c.obj) + 0x000000000000e2a8 __device_dts_ord_84 + ._device.static.3_50_ + 0x000000000000e2bc 0x14 zephyr/drivers/adc/libdrivers__adc.a(adc_nrfx_saadc.c.obj) + 0x000000000000e2bc __device_dts_ord_10 + ._device.static.3_90_ + 0x000000000000e2d0 0x14 zephyr/drivers/sensor/nordic/temp/libdrivers__sensor__nordic__temp.a(temp_nrf5.c.obj) + 0x000000000000e2d0 __device_dts_ord_56 + 0x000000000000e2e4 _device_list_end = . + +sw_isr_table 0x000000000000e2e4 0x180 + 0x000000000000e2e4 . = ALIGN (0x4) + *(SORT_BY_ALIGNMENT(.gnu.linkonce.sw_isr_table*)) + .gnu.linkonce.sw_isr_table + 0x000000000000e2e4 0x180 zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj + 0x000000000000e2e4 _sw_isr_table + +initlevel_error + 0x000000000000e1ec 0x0 + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_[_A-Z0-9]*))) + 0x0000000000000001 ASSERT ((SIZEOF (initlevel_error) == 0x0), Undefined initialization levels used.) + +app_shmem_regions + 0x000000000000e464 0x0 + 0x000000000000e464 __app_shmem_regions_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.app_regions.*))) + 0x000000000000e464 __app_shmem_regions_end = . + +k_p4wq_initparam_area + 0x000000000000e464 0x0 + 0x000000000000e464 _k_p4wq_initparam_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_p4wq_initparam.static.*))) + 0x000000000000e464 _k_p4wq_initparam_list_end = . + +_static_thread_data_area + 0x000000000000e464 0x0 + 0x000000000000e464 __static_thread_data_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.__static_thread_data.static.*))) + 0x000000000000e464 __static_thread_data_list_end = . + +device_deps 0x000000000000e464 0x0 + 0x000000000000e464 __device_deps_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.__device_deps_pass2*))) + 0x000000000000e464 __device_deps_end = . + +adc_driver_api_area + 0x000000000000e464 0xc + 0x000000000000e464 _adc_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._adc_driver_api.static.*))) + ._adc_driver_api.static.adc_nrfx_driver_api_ + 0x000000000000e464 0xc zephyr/drivers/adc/libdrivers__adc.a(adc_nrfx_saadc.c.obj) + 0x000000000000e470 _adc_driver_api_list_end = . + +gpio_driver_api_area + 0x000000000000e470 0x24 + 0x000000000000e470 _gpio_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._gpio_driver_api.static.*))) + ._gpio_driver_api.static.gpio_nrfx_drv_api_funcs_ + 0x000000000000e470 0x24 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + 0x000000000000e494 _gpio_driver_api_list_end = . + +sensor_driver_api_area + 0x000000000000e494 0x1c + 0x000000000000e494 _sensor_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._sensor_driver_api.static.*))) + ._sensor_driver_api.static.temp_nrf5_driver_api_ + 0x000000000000e494 0x1c zephyr/drivers/sensor/nordic/temp/libdrivers__sensor__nordic__temp.a(temp_nrf5.c.obj) + 0x000000000000e4b0 _sensor_driver_api_list_end = . + +shared_irq_driver_api_area + 0x000000000000e4b0 0x0 + 0x000000000000e4b0 _shared_irq_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._shared_irq_driver_api.static.*))) + 0x000000000000e4b0 _shared_irq_driver_api_list_end = . + +crypto_driver_api_area + 0x000000000000e4b0 0x0 + 0x000000000000e4b0 _crypto_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._crypto_driver_api.static.*))) + 0x000000000000e4b0 _crypto_driver_api_list_end = . + +auxdisplay_driver_api_area + 0x000000000000e4b0 0x0 + 0x000000000000e4b0 _auxdisplay_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._auxdisplay_driver_api.static.*))) + 0x000000000000e4b0 _auxdisplay_driver_api_list_end = . + +bbram_driver_api_area + 0x000000000000e4b0 0x0 + 0x000000000000e4b0 _bbram_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._bbram_driver_api.static.*))) + 0x000000000000e4b0 _bbram_driver_api_list_end = . + +bt_hci_driver_api_area + 0x000000000000e4b0 0x0 + 0x000000000000e4b0 _bt_hci_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._bt_hci_driver_api.static.*))) + 0x000000000000e4b0 _bt_hci_driver_api_list_end = . + +can_driver_api_area + 0x000000000000e4b0 0x0 + 0x000000000000e4b0 _can_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._can_driver_api.static.*))) + 0x000000000000e4b0 _can_driver_api_list_end = . + +cellular_driver_api_area + 0x000000000000e4b0 0x0 + 0x000000000000e4b0 _cellular_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._cellular_driver_api.static.*))) + 0x000000000000e4b0 _cellular_driver_api_list_end = . + +charger_driver_api_area + 0x000000000000e4b0 0x0 + 0x000000000000e4b0 _charger_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._charger_driver_api.static.*))) + 0x000000000000e4b0 _charger_driver_api_list_end = . + +clock_control_driver_api_area + 0x000000000000e4b0 0x1c + 0x000000000000e4b0 _clock_control_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._clock_control_driver_api.static.*))) + ._clock_control_driver_api.static.clock_control_api_ + 0x000000000000e4b0 0x1c zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + 0x000000000000e4cc _clock_control_driver_api_list_end = . + +comparator_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _comparator_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._comparator_driver_api.static.*))) + 0x000000000000e4cc _comparator_driver_api_list_end = . + +coredump_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _coredump_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._coredump_driver_api.static.*))) + 0x000000000000e4cc _coredump_driver_api_list_end = . + +counter_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _counter_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._counter_driver_api.static.*))) + 0x000000000000e4cc _counter_driver_api_list_end = . + +dac_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _dac_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._dac_driver_api.static.*))) + 0x000000000000e4cc _dac_driver_api_list_end = . + +dai_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _dai_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._dai_driver_api.static.*))) + 0x000000000000e4cc _dai_driver_api_list_end = . + +display_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _display_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._display_driver_api.static.*))) + 0x000000000000e4cc _display_driver_api_list_end = . + +dma_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _dma_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._dma_driver_api.static.*))) + 0x000000000000e4cc _dma_driver_api_list_end = . + +edac_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _edac_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._edac_driver_api.static.*))) + 0x000000000000e4cc _edac_driver_api_list_end = . + +eeprom_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _eeprom_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._eeprom_driver_api.static.*))) + 0x000000000000e4cc _eeprom_driver_api_list_end = . + +emul_bbram_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _emul_bbram_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._emul_bbram_driver_api.static.*))) + 0x000000000000e4cc _emul_bbram_driver_api_list_end = . + +fuel_gauge_emul_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _fuel_gauge_emul_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._fuel_gauge_emul_driver_api.static.*))) + 0x000000000000e4cc _fuel_gauge_emul_driver_api_list_end = . + +emul_sensor_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _emul_sensor_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._emul_sensor_driver_api.static.*))) + 0x000000000000e4cc _emul_sensor_driver_api_list_end = . + +entropy_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _entropy_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._entropy_driver_api.static.*))) + 0x000000000000e4cc _entropy_driver_api_list_end = . + +espi_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _espi_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._espi_driver_api.static.*))) + 0x000000000000e4cc _espi_driver_api_list_end = . + +espi_saf_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _espi_saf_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._espi_saf_driver_api.static.*))) + 0x000000000000e4cc _espi_saf_driver_api_list_end = . + +flash_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _flash_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._flash_driver_api.static.*))) + 0x000000000000e4cc _flash_driver_api_list_end = . + +fpga_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _fpga_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._fpga_driver_api.static.*))) + 0x000000000000e4cc _fpga_driver_api_list_end = . + +fuel_gauge_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _fuel_gauge_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._fuel_gauge_driver_api.static.*))) + 0x000000000000e4cc _fuel_gauge_driver_api_list_end = . + +gnss_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _gnss_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._gnss_driver_api.static.*))) + 0x000000000000e4cc _gnss_driver_api_list_end = . + +haptics_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _haptics_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._haptics_driver_api.static.*))) + 0x000000000000e4cc _haptics_driver_api_list_end = . + +hwspinlock_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _hwspinlock_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._hwspinlock_driver_api.static.*))) + 0x000000000000e4cc _hwspinlock_driver_api_list_end = . + +i2c_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _i2c_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._i2c_driver_api.static.*))) + 0x000000000000e4cc _i2c_driver_api_list_end = . + +i2c_target_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _i2c_target_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._i2c_target_driver_api.static.*))) + 0x000000000000e4cc _i2c_target_driver_api_list_end = . + +i2s_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _i2s_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._i2s_driver_api.static.*))) + 0x000000000000e4cc _i2s_driver_api_list_end = . + +i3c_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _i3c_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._i3c_driver_api.static.*))) + 0x000000000000e4cc _i3c_driver_api_list_end = . + +ipm_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _ipm_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._ipm_driver_api.static.*))) + 0x000000000000e4cc _ipm_driver_api_list_end = . + +kscan_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _kscan_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._kscan_driver_api.static.*))) + 0x000000000000e4cc _kscan_driver_api_list_end = . + +led_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _led_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._led_driver_api.static.*))) + 0x000000000000e4cc _led_driver_api_list_end = . + +led_strip_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _led_strip_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._led_strip_driver_api.static.*))) + 0x000000000000e4cc _led_strip_driver_api_list_end = . + +lora_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _lora_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._lora_driver_api.static.*))) + 0x000000000000e4cc _lora_driver_api_list_end = . + +mbox_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _mbox_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._mbox_driver_api.static.*))) + 0x000000000000e4cc _mbox_driver_api_list_end = . + +mdio_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _mdio_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._mdio_driver_api.static.*))) + 0x000000000000e4cc _mdio_driver_api_list_end = . + +mipi_dbi_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _mipi_dbi_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._mipi_dbi_driver_api.static.*))) + 0x000000000000e4cc _mipi_dbi_driver_api_list_end = . + +mipi_dsi_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _mipi_dsi_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._mipi_dsi_driver_api.static.*))) + 0x000000000000e4cc _mipi_dsi_driver_api_list_end = . + +mspi_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _mspi_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._mspi_driver_api.static.*))) + 0x000000000000e4cc _mspi_driver_api_list_end = . + +peci_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _peci_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._peci_driver_api.static.*))) + 0x000000000000e4cc _peci_driver_api_list_end = . + +ps2_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _ps2_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._ps2_driver_api.static.*))) + 0x000000000000e4cc _ps2_driver_api_list_end = . + +ptp_clock_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _ptp_clock_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._ptp_clock_driver_api.static.*))) + 0x000000000000e4cc _ptp_clock_driver_api_list_end = . + +pwm_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _pwm_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._pwm_driver_api.static.*))) + 0x000000000000e4cc _pwm_driver_api_list_end = . + +regulator_parent_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _regulator_parent_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._regulator_parent_driver_api.static.*))) + 0x000000000000e4cc _regulator_parent_driver_api_list_end = . + +regulator_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _regulator_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._regulator_driver_api.static.*))) + 0x000000000000e4cc _regulator_driver_api_list_end = . + +reset_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _reset_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._reset_driver_api.static.*))) + 0x000000000000e4cc _reset_driver_api_list_end = . + +retained_mem_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _retained_mem_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._retained_mem_driver_api.static.*))) + 0x000000000000e4cc _retained_mem_driver_api_list_end = . + +rtc_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _rtc_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._rtc_driver_api.static.*))) + 0x000000000000e4cc _rtc_driver_api_list_end = . + +sdhc_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _sdhc_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._sdhc_driver_api.static.*))) + 0x000000000000e4cc _sdhc_driver_api_list_end = . + +smbus_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _smbus_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._smbus_driver_api.static.*))) + 0x000000000000e4cc _smbus_driver_api_list_end = . + +spi_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _spi_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._spi_driver_api.static.*))) + 0x000000000000e4cc _spi_driver_api_list_end = . + +stepper_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _stepper_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._stepper_driver_api.static.*))) + 0x000000000000e4cc _stepper_driver_api_list_end = . + +syscon_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _syscon_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._syscon_driver_api.static.*))) + 0x000000000000e4cc _syscon_driver_api_list_end = . + +tee_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _tee_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._tee_driver_api.static.*))) + 0x000000000000e4cc _tee_driver_api_list_end = . + +video_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _video_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._video_driver_api.static.*))) + 0x000000000000e4cc _video_driver_api_list_end = . + +w1_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _w1_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._w1_driver_api.static.*))) + 0x000000000000e4cc _w1_driver_api_list_end = . + +wdt_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _wdt_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._wdt_driver_api.static.*))) + 0x000000000000e4cc _wdt_driver_api_list_end = . + +can_transceiver_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _can_transceiver_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._can_transceiver_driver_api.static.*))) + 0x000000000000e4cc _can_transceiver_driver_api_list_end = . + +nrf_clock_control_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _nrf_clock_control_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._nrf_clock_control_driver_api.static.*))) + 0x000000000000e4cc _nrf_clock_control_driver_api_list_end = . + +i3c_target_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _i3c_target_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._i3c_target_driver_api.static.*))) + 0x000000000000e4cc _i3c_target_driver_api_list_end = . + +its_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _its_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._its_driver_api.static.*))) + 0x000000000000e4cc _its_driver_api_list_end = . + +vtd_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _vtd_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._vtd_driver_api.static.*))) + 0x000000000000e4cc _vtd_driver_api_list_end = . + +tgpio_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _tgpio_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._tgpio_driver_api.static.*))) + 0x000000000000e4cc _tgpio_driver_api_list_end = . + +pcie_ctrl_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _pcie_ctrl_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._pcie_ctrl_driver_api.static.*))) + 0x000000000000e4cc _pcie_ctrl_driver_api_list_end = . + +pcie_ep_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _pcie_ep_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._pcie_ep_driver_api.static.*))) + 0x000000000000e4cc _pcie_ep_driver_api_list_end = . + +svc_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _svc_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._svc_driver_api.static.*))) + 0x000000000000e4cc _svc_driver_api_list_end = . + +uart_driver_api_area + 0x000000000000e4cc 0x4c + 0x000000000000e4cc _uart_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._uart_driver_api.static.*))) + ._uart_driver_api.static.cdc_acm_driver_api_ + 0x000000000000e4cc 0x4c zephyr/libzephyr.a(cdc_acm.c.obj) + 0x000000000000e518 _uart_driver_api_list_end = . + +bc12_emul_driver_api_area + 0x000000000000e518 0x0 + 0x000000000000e518 _bc12_emul_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._bc12_emul_driver_api.static.*))) + 0x000000000000e518 _bc12_emul_driver_api_list_end = . + +bc12_driver_api_area + 0x000000000000e518 0x0 + 0x000000000000e518 _bc12_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._bc12_driver_api.static.*))) + 0x000000000000e518 _bc12_driver_api_list_end = . + +usbc_ppc_driver_api_area + 0x000000000000e518 0x0 + 0x000000000000e518 _usbc_ppc_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._usbc_ppc_driver_api.static.*))) + 0x000000000000e518 _usbc_ppc_driver_api_list_end = . + +tcpc_driver_api_area + 0x000000000000e518 0x0 + 0x000000000000e518 _tcpc_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._tcpc_driver_api.static.*))) + 0x000000000000e518 _tcpc_driver_api_list_end = . + +usbc_vbus_driver_api_area + 0x000000000000e518 0x0 + 0x000000000000e518 _usbc_vbus_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._usbc_vbus_driver_api.static.*))) + 0x000000000000e518 _usbc_vbus_driver_api_list_end = . + +ivshmem_driver_api_area + 0x000000000000e518 0x0 + 0x000000000000e518 _ivshmem_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._ivshmem_driver_api.static.*))) + 0x000000000000e518 _ivshmem_driver_api_list_end = . + +ethphy_driver_api_area + 0x000000000000e518 0x0 + 0x000000000000e518 _ethphy_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._ethphy_driver_api.static.*))) + 0x000000000000e518 _ethphy_driver_api_list_end = . + +ztest 0x000000000000e518 0x0 + 0x000000000000e518 _ztest_expected_result_entry_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._ztest_expected_result_entry.static.*))) + 0x000000000000e518 _ztest_expected_result_entry_list_end = . + 0x000000000000e518 _ztest_suite_node_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._ztest_suite_node.static.*))) + 0x000000000000e518 _ztest_suite_node_list_end = . + 0x000000000000e518 _ztest_unit_test_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._ztest_unit_test.static.*))) + 0x000000000000e518 _ztest_unit_test_list_end = . + 0x000000000000e518 _ztest_test_rule_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._ztest_test_rule.static.*))) + 0x000000000000e518 _ztest_test_rule_list_end = . + +init_array 0x000000000000e518 0x0 + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.ctors*))) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.init_array*))) + 0x0000000000000001 ASSERT ((SIZEOF (init_array) == 0x0), GNU-style constructors required but STATIC_INIT_GNU not enabled) + +bt_l2cap_fixed_chan_area + 0x000000000000e518 0x0 + 0x000000000000e518 _bt_l2cap_fixed_chan_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._bt_l2cap_fixed_chan.static.*))) + 0x000000000000e518 _bt_l2cap_fixed_chan_list_end = . + +bt_gatt_service_static_area + 0x000000000000e518 0x0 + 0x000000000000e518 _bt_gatt_service_static_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._bt_gatt_service_static.static.*))) + 0x000000000000e518 _bt_gatt_service_static_list_end = . + +log_strings_area + 0x000000000000e518 0x0 + 0x000000000000e518 _log_strings_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._log_strings.static.*))) + 0x000000000000e518 _log_strings_list_end = . + +log_stmesp_ptr_area + 0x000000000000e518 0x0 + 0x000000000000e518 _log_stmesp_ptr_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._log_stmesp_ptr.static.*))) + 0x000000000000e518 _log_stmesp_ptr_list_end = . + +log_stmesp_str_area + 0x000000000000e518 0x0 + 0x000000000000e518 _log_stmesp_str_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._log_stmesp_str.static.*))) + 0x000000000000e518 _log_stmesp_str_list_end = . + +log_const_area 0x000000000000e518 0x0 + 0x000000000000e518 _log_const_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._log_const.static.*))) + 0x000000000000e518 _log_const_list_end = . + +log_backend_area + 0x000000000000e518 0x0 + 0x000000000000e518 _log_backend_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._log_backend.static.*))) + 0x000000000000e518 _log_backend_list_end = . + +log_link_area 0x000000000000e518 0x0 + 0x000000000000e518 _log_link_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._log_link.static.*))) + 0x000000000000e518 _log_link_list_end = . + +tracing_backend_area + 0x000000000000e518 0x0 + 0x000000000000e518 _tracing_backend_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._tracing_backend.static.*))) + 0x000000000000e518 _tracing_backend_list_end = . + +zephyr_dbg_info + *(SORT_BY_ALIGNMENT(.dbg_thread_info)) + +intc_table_area + 0x000000000000e518 0x0 + 0x000000000000e518 _intc_table_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._intc_table.static.*))) + 0x000000000000e518 _intc_table_list_end = . + +symbol_to_keep 0x000000000000e518 0x0 + 0x000000000000e518 __symbol_to_keep_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.symbol_to_keep*))) + 0x000000000000e518 __symbol_to_keep_end = . + +shell_area 0x000000000000e518 0x0 + 0x000000000000e518 _shell_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._shell.static.*))) + 0x000000000000e518 _shell_list_end = . + +shell_root_cmds_area + 0x000000000000e518 0x0 + 0x000000000000e518 _shell_root_cmds_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._shell_root_cmds.static.*))) + 0x000000000000e518 _shell_root_cmds_list_end = . + +shell_subcmds_area + 0x000000000000e518 0x0 + 0x000000000000e518 _shell_subcmds_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._shell_subcmds.static.*))) + 0x000000000000e518 _shell_subcmds_list_end = . + +shell_dynamic_subcmds_area + 0x000000000000e518 0x0 + 0x000000000000e518 _shell_dynamic_subcmds_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._shell_dynamic_subcmds.static.*))) + 0x000000000000e518 _shell_dynamic_subcmds_list_end = . + +cfb_font_area 0x000000000000e518 0x0 + 0x000000000000e518 _cfb_font_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._cfb_font.static.*))) + 0x000000000000e518 _cfb_font_list_end = . + +tdata 0x000000000000e518 0x0 + *(SORT_BY_ALIGNMENT(.tdata) SORT_BY_ALIGNMENT(.tdata.*) SORT_BY_ALIGNMENT(.gnu.linkonce.td.*)) + +tbss 0x000000000000e518 0x4 + *(SORT_BY_ALIGNMENT(.tbss) SORT_BY_ALIGNMENT(.tbss.*) SORT_BY_ALIGNMENT(.gnu.linkonce.tb.*) SORT_BY_ALIGNMENT(.tcommon)) + .tbss.z_tls_current + 0x000000000000e518 0x4 zephyr/libzephyr.a(thread_entry.c.obj) + 0x000000000000e518 z_tls_current + 0x000000000000e518 PROVIDE (__tdata_start = LOADADDR (tdata)) + 0x0000000000000001 PROVIDE (__tdata_align = ALIGNOF (tdata)) + 0x0000000000000000 PROVIDE (__tdata_size = (((SIZEOF (tdata) + __tdata_align) - 0x1) & ~ ((__tdata_align - 0x1)))) + [!provide] PROVIDE (__tdata_end = (__tdata_start + __tdata_size)) + 0x0000000000000004 PROVIDE (__tbss_align = ALIGNOF (tbss)) + [!provide] PROVIDE (__tbss_start = ADDR (tbss)) + 0x0000000000000004 PROVIDE (__tbss_size = (((SIZEOF (tbss) + __tbss_align) - 0x1) & ~ ((__tbss_align - 0x1)))) + [!provide] PROVIDE (__tbss_end = (__tbss_start + __tbss_size)) + [!provide] PROVIDE (__tls_start = __tdata_start) + [!provide] PROVIDE (__tls_end = __tbss_end) + [!provide] PROVIDE (__tls_size = (__tbss_end - __tdata_start)) + +rodata 0x000000000000e520 0x2368 + *(SORT_BY_ALIGNMENT(.rodata)) + .rodata 0x000000000000e520 0x7 zephyr/libzephyr.a(cdc_acm.c.obj) + *fill* 0x000000000000e527 0x1 + .rodata 0x000000000000e528 0x8 zephyr/kernel/libkernel.a(system_work_q.c.obj) + *(SORT_BY_ALIGNMENT(.rodata.*)) + .rodata.delay_machine_code.0 + 0x000000000000e530 0x6 zephyr/soc/soc/nrf52833/libsoc__nordic.a(soc.c.obj) + *fill* 0x000000000000e536 0x2 + .rodata.main.str1.4 + 0x000000000000e538 0xf9 app/libapp.a(main.c.obj) + *fill* 0x000000000000e631 0x3 + .rodata.z_impl_gpio_pin_configure.isra.0.str1.4 + 0x000000000000e634 0x366 app/libapp.a(led.c.obj) + *fill* 0x000000000000e99a 0x2 + .rodata.led_init.str1.4 + 0x000000000000e99c 0x17 app/libapp.a(led.c.obj) + *fill* 0x000000000000e9b3 0x1 + .rodata.button_init.str1.4 + 0x000000000000e9b4 0x19 app/libapp.a(button.c.obj) + 0xc2 (size before relaxing) + .rodata.z_impl_gpio_pin_configure.isra.0.str1.4 + 0x000000000000e9cd 0x366 app/libapp.a(actuator.c.obj) + *fill* 0x000000000000e9cd 0x3 + .rodata.battery_adc_init.str1.4 + 0x000000000000e9d0 0xf app/libapp.a(battery_adc.c.obj) + 0xb6 (size before relaxing) + *fill* 0x000000000000e9df 0x1 + .rodata.adc_channel + 0x000000000000e9e0 0x14 app/libapp.a(battery_adc.c.obj) + .rodata.TIMER1_IRQHandler.str1.4 + 0x000000000000e9f4 0xa6 app/libapp.a(timer_count.c.obj) + .rodata.configure_clock_pin.str1.4 + 0x000000000000e9f4 0x57 app/libapp.a(timer_count.c.obj) + *fill* 0x000000000000ea4b 0x1 + .rodata.configure_measurement.str1.4 + 0x000000000000ea4c 0x38 app/libapp.a(timer_count.c.obj) + .rodata.sys_heap_free.str1.4 + 0x000000000000ea84 0xd4 zephyr/libzephyr.a(heap.c.obj) + 0xf4 (size before relaxing) + .rodata.sys_heap_aligned_alloc.str1.4 + 0x000000000000eb58 0x39 zephyr/libzephyr.a(heap.c.obj) + *fill* 0x000000000000eb91 0x3 + .rodata.sys_heap_init.str1.4 + 0x000000000000eb94 0x97 zephyr/libzephyr.a(heap.c.obj) + *fill* 0x000000000000ec2b 0x1 + .rodata.process_event.str1.4 + 0x000000000000ec2c 0x10a zephyr/libzephyr.a(onoff.c.obj) + 0x12e (size before relaxing) + *fill* 0x000000000000ed36 0x2 + .rodata.onoff_release.str1.4 + 0x000000000000ed38 0xe zephyr/libzephyr.a(onoff.c.obj) + *fill* 0x000000000000ed46 0x2 + .rodata.onoff_cancel.str1.4 + 0x000000000000ed48 0x77 zephyr/libzephyr.a(onoff.c.obj) + *fill* 0x000000000000edbf 0x1 + .rodata.sys_notify_finalize.str1.4 + 0x000000000000edc0 0x26 zephyr/libzephyr.a(notify.c.obj) + 0x49 (size before relaxing) + *fill* 0x000000000000ede6 0x2 + .rodata.ring_buf_put.str1.4 + 0x000000000000ede8 0x35 zephyr/libzephyr.a(ring_buffer.c.obj) + 0x55 (size before relaxing) + *fill* 0x000000000000ee1d 0x3 + .rodata.mem_attr_region + 0x000000000000ee20 0x0 zephyr/libzephyr.a(mem_attr.c.obj) + .rodata.custom_handler.str1.4 + 0x000000000000ee20 0x77 zephyr/libzephyr.a(usb_device.c.obj) + 0x97 (size before relaxing) + .rodata.usb_handle_control_transfer.str1.4 + 0x000000000000ee97 0x2 zephyr/libzephyr.a(usb_device.c.obj) + *fill* 0x000000000000ee97 0x1 + .rodata.usb_update_sn_string_descriptor.str1.4 + 0x000000000000ee98 0x11 zephyr/libzephyr.a(usb_descriptor.c.obj) + *fill* 0x000000000000eea9 0x3 + .rodata.usb_get_device_descriptor.str1.4 + 0x000000000000eeac 0xee zephyr/libzephyr.a(usb_descriptor.c.obj) + 0x152 (size before relaxing) + *fill* 0x000000000000ef9a 0x2 + .rodata.str1.4 + 0x000000000000ef9c 0xe zephyr/libzephyr.a(cdc_acm.c.obj) + *fill* 0x000000000000efaa 0x2 + .rodata.z_usb_work_q_init.str1.4 + 0x000000000000efac 0x9 zephyr/libzephyr.a(usb_work_q.c.obj) + *fill* 0x000000000000efb5 0x3 + .rodata.boot_banner.str1.4 + 0x000000000000efb8 0x66 zephyr/libzephyr.a(banner.c.obj) + *fill* 0x000000000000f01e 0x2 + .rodata.mem_manage_fault.str1.4 + 0x000000000000f020 0xa3 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault.c.obj) + 0xc3 (size before relaxing) + *fill* 0x000000000000f0c3 0x1 + .rodata.z_arm_fault.str1.4 + 0x000000000000f0c4 0xa8 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault.c.obj) + 0xac (size before relaxing) + .rodata.z_arm_irq_priority_set.str1.4 + 0x000000000000f16c 0x94 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + 0xb4 (size before relaxing) + .rodata.static_regions + 0x000000000000f200 0xc zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_core_mpu.c.obj) + .rodata.arm_core_mpu_configure_static_mpu_regions.str1.4 + 0x000000000000f20c 0x5c zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_mpu.c.obj) + 0x80 (size before relaxing) + .rodata.arm_core_mpu_configure_dynamic_mpu_regions.str1.4 + 0x000000000000f268 0x2d zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_mpu.c.obj) + *fill* 0x000000000000f295 0x3 + .rodata.z_arm_mpu_init.str1.4 + 0x000000000000f298 0x129 zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_mpu.c.obj) + *fill* 0x000000000000f3c1 0x3 + .rodata.mpu_config + 0x000000000000f3c4 0x8 zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_mpu_regions.c.obj) + 0x000000000000f3c4 mpu_config + .rodata.str1.4 + 0x000000000000f3cc 0xf zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_mpu_regions.c.obj) + *fill* 0x000000000000f3db 0x1 + .rodata.mpu_regions + 0x000000000000f3dc 0x18 zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_mpu_regions.c.obj) + .rodata.usb_init.str1.4 + 0x000000000000f3f4 0xb zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + *fill* 0x000000000000f3ff 0x1 + .rodata.usbd_evt_alloc.part.0.str1.4 + 0x000000000000f400 0x34 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + 0x55 (size before relaxing) + .rodata.usbd_work_handler.str1.4 + 0x000000000000f434 0x55 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + 0x61 (size before relaxing) + *fill* 0x000000000000f489 0x3 + .rodata.usb_dc_set_address.str1.4 + 0x000000000000f48c 0x55 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + *fill* 0x000000000000f4e1 0x3 + .rodata.CSWTCH.96 + 0x000000000000f4e4 0x3 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + *fill* 0x000000000000f4e7 0x1 + .rodata.usbevt_config.0 + 0x000000000000f4e8 0x4 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + .rodata.power_config.1 + 0x000000000000f4ec 0x1 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + *fill* 0x000000000000f4ed 0x3 + .rodata.ep_state_access.part.0.str1.4 + 0x000000000000f4f0 0xa2 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + 0xc1 (size before relaxing) + *fill* 0x000000000000f592 0x2 + .rodata.nrf_usbd_common_irq_handler.str1.4 + 0x000000000000f594 0xe5 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + *fill* 0x000000000000f679 0x3 + .rodata.nrf_usbd_common_uninit.str1.4 + 0x000000000000f67c 0x2a zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + *fill* 0x000000000000f6a6 0x2 + .rodata.nrf_usbd_common_enable.str1.4 + 0x000000000000f6a8 0x25 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + *fill* 0x000000000000f6cd 0x3 + .rodata.nrf_usbd_common_start.str1.4 + 0x000000000000f6d0 0x29 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + *fill* 0x000000000000f6f9 0x3 + .rodata.nrf_usbd_common_ep_max_packet_size_set.str1.4 + 0x000000000000f6fc 0xba zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + *fill* 0x000000000000f7b6 0x2 + .rodata.nrf_usbd_common_init.str1.4 + 0x000000000000f7b8 0xe zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + *fill* 0x000000000000f7c6 0x2 + .rodata.nrf_usbd_common_ep_transfer.str1.4 + 0x000000000000f7c8 0x87 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + *fill* 0x000000000000f84f 0x1 + .rodata.nrf_usbd_common_ep_stall.str1.4 + 0x000000000000f850 0x13 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + *fill* 0x000000000000f863 0x1 + .rodata.nrf_usbd_common_transfer_out_drop.str1.4 + 0x000000000000f864 0x13 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + *fill* 0x000000000000f877 0x1 + .rodata.nrf_usbd_common_disable.str1.4 + 0x000000000000f878 0x2c zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + .rodata.gains.0 + 0x000000000000f8a4 0x2a zephyr/drivers/adc/libdrivers__adc.a(adc_common.c.obj) + *fill* 0x000000000000f8ce 0x2 + .rodata.str1.4 + 0x000000000000f8d0 0xd zephyr/drivers/adc/libdrivers__adc.a(adc_nrfx_saadc.c.obj) + *fill* 0x000000000000f8dd 0x3 + .rodata.get_status.str1.4 + 0x000000000000f8e0 0x64 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + 0x81 (size before relaxing) + .rodata.clock_event_handler.str1.4 + 0x000000000000f944 0x2 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .rodata.z_nrf_clock_control_lf_on.str1.4 + 0x000000000000f944 0x9 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .rodata.transitions.0 + 0x000000000000f944 0xc zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .rodata.str1.4 + 0x000000000000f950 0xf zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + *fill* 0x000000000000f95f 0x1 + .rodata.config + 0x000000000000f960 0x10 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .rodata.gpio_nrfx_manage_callback.str1.4 + 0x000000000000f970 0x83 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + 0xa3 (size before relaxing) + .rodata.nrf_gpio_pin_port_decode.part.0.str1.4 + 0x000000000000f9f3 0x57 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + *fill* 0x000000000000f9f3 0x1 + .rodata.gpio_nrfx_pin_configure.str1.4 + 0x000000000000f9f4 0x40 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + .rodata.nrfx_gpio_handler.str1.4 + 0x000000000000fa34 0xc zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + .rodata.str1.4 + 0x000000000000fa40 0x1e zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + *fill* 0x000000000000fa5e 0x2 + .rodata.gpio_nrfx_p1_cfg + 0x000000000000fa60 0x18 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + .rodata.gpio_nrfx_p0_cfg + 0x000000000000fa78 0x18 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + .rodata.temp_nrf5_init.str1.4 + 0x000000000000fa90 0x4a zephyr/drivers/sensor/nordic/temp/libdrivers__sensor__nordic__temp.a(temp_nrf5.c.obj) + 0x69 (size before relaxing) + *fill* 0x000000000000fada 0x2 + .rodata.temp_nrf5_sample_fetch.str1.4 + 0x000000000000fadc 0x7 zephyr/drivers/sensor/nordic/temp/libdrivers__sensor__nordic__temp.a(temp_nrf5.c.obj) + *fill* 0x000000000000fae3 0x1 + .rodata.str1.4 + 0x000000000000fae4 0xe zephyr/drivers/sensor/nordic/temp/libdrivers__sensor__nordic__temp.a(temp_nrf5.c.obj) + *fill* 0x000000000000faf2 0x2 + .rodata.clock_stop.str1.4 + 0x000000000000faf4 0x74 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_clock.c.obj) + 0x98 (size before relaxing) + .rodata.nrfx_clock_enable.str1.4 + 0x000000000000fb68 0x1e modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_clock.c.obj) + .rodata.nrf_gpio_pin_port_decode.part.0.str1.4 + 0x000000000000fb86 0x75 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + *fill* 0x000000000000fb86 0x2 + .rodata.release_handler.isra.0.str1.4 + 0x000000000000fb88 0x3e modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + 0x54 (size before relaxing) + *fill* 0x000000000000fbc6 0x2 + .rodata.pin_in_event_get.constprop.0.str1.4 + 0x000000000000fbc8 0x65 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + *fill* 0x000000000000fc2d 0x3 + .rodata.nrfx_gpiote_channel_get.str1.4 + 0x000000000000fc30 0xa modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + *fill* 0x000000000000fc3a 0x2 + .rodata.nrfx_gpiote_init.str1.4 + 0x000000000000fc3c 0x42 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + *fill* 0x000000000000fc7e 0x2 + .rodata.nrfx_gpiote_trigger_enable.str1.4 + 0x000000000000fc80 0xb modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + *fill* 0x000000000000fc8b 0x1 + .rodata.port_offset.1 + 0x000000000000fc8c 0x10 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .rodata.ports 0x000000000000fc9c 0x2 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + *fill* 0x000000000000fc9e 0x2 + .rodata.nrfx_power_init.str1.4 + 0x000000000000fca0 0x49 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + 0x69 (size before relaxing) + *fill* 0x000000000000fce9 0x3 + .rodata.nrfx_power_pof_init.str1.4 + 0x000000000000fcec 0x18 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + .rodata.nrfx_power_irq_handler.str1.4 + 0x000000000000fd04 0x68 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + .rodata.nrfx_temp_init.str1.4 + 0x000000000000fd6c 0x3c modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_temp.c.obj) + 0x65 (size before relaxing) + .rodata.nrfx_temp_uninit.str1.4 + 0x000000000000fda8 0x2b modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_temp.c.obj) + *fill* 0x000000000000fdd3 0x1 + .rodata._DoInit.str1.4 + 0x000000000000fdd4 0x9 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + *fill* 0x000000000000fddd 0x3 + .rodata._aInitStr + 0x000000000000fde0 0x11 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + *fill* 0x000000000000fdf1 0x3 + .rodata.z_device_state_init.str1.4 + 0x000000000000fdf4 0x3c zephyr/kernel/libkernel.a(device.c.obj) + 0x7b (size before relaxing) + .rodata.z_fatal_error.str1.4 + 0x000000000000fe30 0x79 zephyr/kernel/libkernel.a(fatal.c.obj) + 0x99 (size before relaxing) + *fill* 0x000000000000fea9 0x3 + .rodata.bg_thread_main.str1.4 + 0x000000000000feac 0x51 zephyr/kernel/libkernel.a(init.c.obj) + 0x93 (size before relaxing) + *fill* 0x000000000000fefd 0x3 + .rodata.z_cstart.str1.4 + 0x000000000000ff00 0x5 zephyr/kernel/libkernel.a(init.c.obj) + *fill* 0x000000000000ff05 0x3 + .rodata.levels.0 + 0x000000000000ff08 0x18 zephyr/kernel/libkernel.a(init.c.obj) + .rodata.init_mem_slab_obj_core_list.str1.4 + 0x000000000000ff20 0x45 zephyr/kernel/libkernel.a(mem_slab.c.obj) + 0x87 (size before relaxing) + *fill* 0x000000000000ff65 0x3 + .rodata.k_mem_slab_alloc.str1.4 + 0x000000000000ff68 0x97 zephyr/kernel/libkernel.a(mem_slab.c.obj) + 0x125 (size before relaxing) + *fill* 0x000000000000ffff 0x1 + .rodata.k_mem_slab_free.str1.4 + 0x0000000000010000 0x83 zephyr/kernel/libkernel.a(mem_slab.c.obj) + 0x87 (size before relaxing) + *fill* 0x0000000000010083 0x1 + .rodata.idle.str1.4 + 0x0000000000010084 0x4c zephyr/kernel/libkernel.a(idle.c.obj) + 0x69 (size before relaxing) + .rodata.z_impl_k_mutex_lock.str1.4 + 0x00000000000100d0 0x5d zephyr/kernel/libkernel.a(mutex.c.obj) + 0x10d (size before relaxing) + *fill* 0x000000000001012d 0x3 + .rodata.z_impl_k_mutex_unlock.str1.4 + 0x0000000000010130 0x17 zephyr/kernel/libkernel.a(mutex.c.obj) + 0x77 (size before relaxing) + .rodata.queue_insert.str1.4 + 0x0000000000010147 0x10d zephyr/kernel/libkernel.a(queue.c.obj) + .rodata.z_impl_k_sem_give.str1.4 + 0x0000000000010147 0x10d zephyr/kernel/libkernel.a(sem.c.obj) + *fill* 0x0000000000010147 0x1 + .rodata.z_impl_k_sem_take.str1.4 + 0x0000000000010148 0x6e zephyr/kernel/libkernel.a(sem.c.obj) + *fill* 0x00000000000101b6 0x2 + .rodata.work_queue_main.str1.4 + 0x00000000000101b8 0x3b zephyr/kernel/libkernel.a(work.c.obj) + 0xeb (size before relaxing) + *fill* 0x00000000000101f3 0x1 + .rodata.submit_to_queue_locked.str1.4 + 0x00000000000101f4 0x1b zephyr/kernel/libkernel.a(work.c.obj) + *fill* 0x000000000001020f 0x1 + .rodata.work_flush_locked.str1.4 + 0x0000000000010210 0x15 zephyr/kernel/libkernel.a(work.c.obj) + *fill* 0x0000000000010225 0x3 + .rodata.k_work_init.str1.4 + 0x0000000000010228 0x14 zephyr/kernel/libkernel.a(work.c.obj) + .rodata.z_work_submit_to_queue.str1.4 + 0x000000000001023c 0x1d zephyr/kernel/libkernel.a(work.c.obj) + *fill* 0x0000000000010259 0x3 + .rodata.k_work_queue_start.str1.4 + 0x000000000001025c 0x44 zephyr/kernel/libkernel.a(work.c.obj) + .rodata.k_work_init_delayable.str1.4 + 0x00000000000102a0 0x15 zephyr/kernel/libkernel.a(work.c.obj) + *fill* 0x00000000000102b5 0x3 + .rodata.z_setup_new_thread.str1.4 + 0x00000000000102b8 0xd5 zephyr/kernel/libkernel.a(thread.c.obj) + 0xf5 (size before relaxing) + *fill* 0x000000000001038d 0x3 + .rodata.z_impl_k_thread_create.str1.4 + 0x0000000000010390 0x25 zephyr/kernel/libkernel.a(thread.c.obj) + 0x39 (size before relaxing) + *fill* 0x00000000000103b5 0x3 + .rodata.unready_thread.str1.4 + 0x00000000000103b8 0x9b zephyr/kernel/libkernel.a(sched.c.obj) + 0xbf (size before relaxing) + .rodata.unpend_thread_no_timeout.part.0.str1.4 + 0x0000000000010453 0x43 zephyr/kernel/libkernel.a(sched.c.obj) + .rodata.z_ready_thread.str1.4 + 0x0000000000010453 0x8d zephyr/kernel/libkernel.a(sched.c.obj) + *fill* 0x0000000000010453 0x1 + .rodata.z_pend_curr.str1.4 + 0x0000000000010454 0x39 zephyr/kernel/libkernel.a(sched.c.obj) + *fill* 0x000000000001048d 0x3 + .rodata.k_sched_lock.str1.4 + 0x0000000000010490 0x31 zephyr/kernel/libkernel.a(sched.c.obj) + 0x45 (size before relaxing) + *fill* 0x00000000000104c1 0x3 + .rodata.k_sched_unlock.str1.4 + 0x00000000000104c4 0x31 zephyr/kernel/libkernel.a(sched.c.obj) + *fill* 0x00000000000104f5 0x3 + .rodata.z_thread_abort.str1.4 + 0x00000000000104f8 0x4e zephyr/kernel/libkernel.a(sched.c.obj) + 0x52 (size before relaxing) + *fill* 0x0000000000010546 0x2 + .rodata.slice_timeout.str1.4 + 0x0000000000010548 0x1d9 zephyr/kernel/libkernel.a(timeslicing.c.obj) + 0x1f9 (size before relaxing) + .rodata.k_sched_time_slice_set.str1.4 + 0x0000000000010721 0x8d zephyr/kernel/libkernel.a(timeslicing.c.obj) + *fill* 0x0000000000010721 0x3 + .rodata.z_add_timeout.str1.4 + 0x0000000000010724 0x44 zephyr/kernel/libkernel.a(timeout.c.obj) + 0xf5 (size before relaxing) + .rodata.z_timer_expiration_handler.str1.4 + 0x0000000000010768 0xad zephyr/kernel/libkernel.a(timer.c.obj) + .rodata.z_thread_aligned_alloc.str1.4 + 0x0000000000010768 0x80 zephyr/kernel/libkernel.a(mempool.c.obj) + 0xa0 (size before relaxing) + .rodata.statics_init.str1.4 + 0x00000000000107e8 0x3d zephyr/kernel/libkernel.a(kheap.c.obj) + 0x7f (size before relaxing) + *fill* 0x0000000000010825 0x3 + .rodata.k_heap_aligned_alloc.str1.4 + 0x0000000000010828 0x46 zephyr/kernel/libkernel.a(kheap.c.obj) + 0xd9 (size before relaxing) + *fill* 0x000000000001086e 0x2 + .rodata.str1.4 + 0x0000000000010870 0x9 zephyr/kernel/libkernel.a(system_work_q.c.obj) + .rodata.__l_vfprintf.str1.1 + 0x0000000000010879 0xf /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_vflprintf.c.o) + *(SORT_BY_ALIGNMENT(.gnu.linkonce.r.*)) + 0x0000000000010888 . = ALIGN (0x4) + +/DISCARD/ + *(SORT_BY_ALIGNMENT(.eh_frame)) + 0x0000000000010888 __rodata_region_end = . + 0x00000000000108a0 . = ALIGN (_region_min_align) + 0x0000000000020000 . = ALIGN ((0x1 << LOG2CEIL ((__rodata_region_end - ADDR (rom_start))))) + 0x0000000000020000 __rom_region_end = ((__rom_region_start + .) - ADDR (rom_start)) + +/DISCARD/ + *(SORT_BY_ALIGNMENT(.got.plt)) + *(SORT_BY_ALIGNMENT(.igot.plt)) + *(SORT_BY_ALIGNMENT(.got)) + *(SORT_BY_ALIGNMENT(.igot)) + 0x0000000020000000 . = 0x20000000 + 0x0000000020000000 . = ALIGN (_region_min_align) + 0x0000000020000000 _image_ram_start = . + +_RTT_SECTION_NAME + 0x0000000020000000 0x4b8 + 0x0000000020000000 __rtt_buff_data_start = . + *(SORT_BY_ALIGNMENT(.rtt_buff_data)) + .rtt_buff_data + 0x0000000020000000 0x4b8 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + 0x0000000020000410 _SEGGER_RTT + 0x00000000200004b8 __rtt_buff_data_end = ALIGN (0x4) + 0x00000000000004b8 __rtt_buff_data_size = (__rtt_buff_data_end - __rtt_buff_data_start) + +.ramfunc 0x00000000200004b8 0x8 load address 0x0000000000010888 + 0x00000000200004b8 __ramfunc_region_start = . + 0x00000000200004c0 . = ALIGN (_region_min_align) + *fill* 0x00000000200004b8 0x8 + 0x00000000200004c0 . = ALIGN ((0x1 << LOG2CEIL (__ramfunc_size))) + 0x00000000200004c0 __ramfunc_start = . + *(SORT_BY_ALIGNMENT(.ramfunc)) + *(SORT_BY_ALIGNMENT(.ramfunc.*)) + 0x00000000200004c0 . = ALIGN (_region_min_align) + 0x00000000200004c0 . = ALIGN ((0x1 << LOG2CEIL (__ramfunc_size))) + 0x00000000200004c0 __ramfunc_end = . + 0x0000000000000000 __ramfunc_size = (__ramfunc_end - __ramfunc_start) + 0x0000000000010888 __ramfunc_load_start = LOADADDR (.ramfunc) + +datas 0x00000000200004c0 0x251 load address 0x0000000000010890 + 0x00000000200004c0 __data_region_start = . + 0x00000000200004c0 __data_start = . + *(SORT_BY_ALIGNMENT(.data)) + *(SORT_BY_ALIGNMENT(.data.*)) + .data.cdc_acm_dev_data_0 + 0x00000000200004c0 0xb0 zephyr/libzephyr.a(cdc_acm.c.obj) + .data.m_data 0x0000000020000570 0xa0 zephyr/drivers/adc/libdrivers__adc.a(adc_nrfx_saadc.c.obj) + .data.sequence + 0x0000000020000610 0x14 app/libapp.a(battery_adc.c.obj) + 0x0000000020000610 sequence + .data._char_out + 0x0000000020000624 0x4 zephyr/libzephyr.a(printk.c.obj) + .data.cdc_acm_tx_rb_0 + 0x0000000020000628 0x20 zephyr/libzephyr.a(cdc_acm.c.obj) + 0x0000000020000628 cdc_acm_tx_rb_0 + .data.cdc_acm_rx_rb_0 + 0x0000000020000648 0x20 zephyr/libzephyr.a(cdc_acm.c.obj) + 0x0000000020000648 cdc_acm_rx_rb_0 + .data.cdc_acm_ep_data_0 + 0x0000000020000668 0x18 zephyr/libzephyr.a(cdc_acm.c.obj) + .data.__stdout + 0x0000000020000680 0x10 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .data.m_cb 0x0000000020000690 0x78 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .data.timeout_list + 0x0000000020000708 0x8 zephyr/kernel/libkernel.a(timeout.c.obj) + .data.m_first_enable + 0x0000000020000710 0x1 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + *(SORT_BY_ALIGNMENT(.kernel.*)) + 0x0000000020000711 __data_end = . + 0x0000000000000251 __data_size = (__data_end - __data_start) + 0x0000000000010890 __data_load_start = LOADADDR (datas) + 0x0000000000010890 __data_region_load_start = LOADADDR (datas) + +device_states 0x0000000020000711 0xc load address 0x0000000000010ae1 + 0x0000000020000711 __device_states_start = . + *(SORT_BY_ALIGNMENT(.z_devstate)) + .z_devstate 0x0000000020000711 0x2 zephyr/libzephyr.a(cdc_acm.c.obj) + .z_devstate 0x0000000020000713 0x2 zephyr/drivers/adc/libdrivers__adc.a(adc_nrfx_saadc.c.obj) + .z_devstate 0x0000000020000715 0x2 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .z_devstate 0x0000000020000717 0x4 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + .z_devstate 0x000000002000071b 0x2 zephyr/drivers/sensor/nordic/temp/libdrivers__sensor__nordic__temp.a(temp_nrf5.c.obj) + *(SORT_BY_ALIGNMENT(.z_devstate.*)) + 0x000000002000071d __device_states_end = . + +log_mpsc_pbuf_area + 0x000000002000071d 0x0 load address 0x0000000000010aed + 0x000000002000071d _log_mpsc_pbuf_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._log_mpsc_pbuf.static.*))) + 0x000000002000071d _log_mpsc_pbuf_list_end = . + +log_msg_ptr_area + 0x000000002000071d 0x0 load address 0x0000000000010aed + 0x000000002000071d _log_msg_ptr_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._log_msg_ptr.static.*))) + 0x000000002000071d _log_msg_ptr_list_end = . + +log_dynamic_area + 0x000000002000071d 0x0 load address 0x0000000000010aed + 0x000000002000071d _log_dynamic_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._log_dynamic.static.*))) + 0x000000002000071d _log_dynamic_list_end = . + +k_timer_area 0x000000002000071d 0x0 load address 0x0000000000010aed + 0x000000002000071d _k_timer_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_timer.static.*))) + 0x000000002000071d _k_timer_list_end = . + +k_mem_slab_area + 0x0000000020000720 0x20 load address 0x0000000000010af0 + 0x0000000020000720 _k_mem_slab_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_mem_slab.static.*))) + ._k_mem_slab.static.fifo_elem_slab_ + 0x0000000020000720 0x20 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + 0x0000000020000720 fifo_elem_slab + 0x0000000020000740 _k_mem_slab_list_end = . + +k_heap_area 0x0000000020000740 0x0 load address 0x0000000000010b10 + 0x0000000020000740 _k_heap_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_heap.static.*))) + 0x0000000020000740 _k_heap_list_end = . + +k_mutex_area 0x0000000020000740 0x14 load address 0x0000000000010b10 + 0x0000000020000740 _k_mutex_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_mutex.static.*))) + ._k_mutex.static.usb_enable_lock_ + 0x0000000020000740 0x14 zephyr/libzephyr.a(usb_device.c.obj) + 0x0000000020000740 usb_enable_lock + 0x0000000020000754 _k_mutex_list_end = . + +k_stack_area 0x0000000020000754 0x0 load address 0x0000000000010b24 + 0x0000000020000754 _k_stack_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_stack.static.*))) + 0x0000000020000754 _k_stack_list_end = . + +k_msgq_area 0x0000000020000754 0x0 load address 0x0000000000010b24 + 0x0000000020000754 _k_msgq_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_msgq.static.*))) + 0x0000000020000754 _k_msgq_list_end = . + +k_mbox_area 0x0000000020000754 0x0 load address 0x0000000000010b24 + 0x0000000020000754 _k_mbox_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_mbox.static.*))) + 0x0000000020000754 _k_mbox_list_end = . + +k_pipe_area 0x0000000020000754 0x0 load address 0x0000000000010b24 + 0x0000000020000754 _k_pipe_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_pipe.static.*))) + 0x0000000020000754 _k_pipe_list_end = . + +k_sem_area 0x0000000020000754 0x10 load address 0x0000000000010b24 + 0x0000000020000754 _k_sem_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_sem.static.*))) + ._k_sem.static.dma_available_ + 0x0000000020000754 0x10 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + 0x0000000020000764 _k_sem_list_end = . + +k_event_area 0x0000000020000764 0x0 load address 0x0000000000010b34 + 0x0000000020000764 _k_event_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_event.static.*))) + 0x0000000020000764 _k_event_list_end = . + +k_queue_area 0x0000000020000764 0x0 load address 0x0000000000010b34 + 0x0000000020000764 _k_queue_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_queue.static.*))) + 0x0000000020000764 _k_queue_list_end = . + +k_fifo_area 0x0000000020000764 0x14 load address 0x0000000000010b34 + 0x0000000020000764 _k_fifo_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_fifo.static.*))) + ._k_fifo.static.usbd_evt_fifo_ + 0x0000000020000764 0x14 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + 0x0000000020000764 usbd_evt_fifo + 0x0000000020000778 _k_fifo_list_end = . + +k_lifo_area 0x0000000020000778 0x0 load address 0x0000000000010b48 + 0x0000000020000778 _k_lifo_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_lifo.static.*))) + 0x0000000020000778 _k_lifo_list_end = . + +k_condvar_area 0x0000000020000778 0x0 load address 0x0000000000010b48 + 0x0000000020000778 _k_condvar_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_condvar.static.*))) + 0x0000000020000778 _k_condvar_list_end = . + +sys_mem_blocks_ptr_area + 0x0000000020000778 0x0 load address 0x0000000000010b48 + 0x0000000020000778 _sys_mem_blocks_ptr_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._sys_mem_blocks_ptr.static.*))) + 0x0000000020000778 _sys_mem_blocks_ptr_list_end = . + +net_buf_pool_area + 0x0000000020000778 0x0 load address 0x0000000000010b48 + 0x0000000020000778 _net_buf_pool_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._net_buf_pool.static.*))) + 0x0000000020000778 _net_buf_pool_list_end = . + +usb_descriptor 0x0000000020000778 0xc7 load address 0x0000000000010b48 + 0x0000000020000778 __usb_descriptor_start = . + *(SORT_BY_ALIGNMENT(.usb.descriptor)) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.usb.descriptor*))) + .usb.descriptor_primary.0 + 0x0000000020000778 0x1b zephyr/libzephyr.a(usb_descriptor.c.obj) + .usb.descriptor_primary.1.0 + 0x0000000020000793 0x42 zephyr/libzephyr.a(cdc_acm.c.obj) + .usb.descriptor_primary.4 + 0x00000000200007d5 0x68 zephyr/libzephyr.a(usb_descriptor.c.obj) + .usb.descriptor_primary.6 + 0x000000002000083d 0x2 zephyr/libzephyr.a(usb_descriptor.c.obj) + 0x000000002000083f __usb_descriptor_end = . + +usb_cfg_data_area + 0x0000000020000840 0x24 load address 0x0000000000010c10 + 0x0000000020000840 _usb_cfg_data_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._usb_cfg_data.static.*))) + ._usb_cfg_data.static.cdc_acm_config_0_ + 0x0000000020000840 0x24 zephyr/libzephyr.a(cdc_acm.c.obj) + 0x0000000020000864 _usb_cfg_data_list_end = . + 0x0000000020000864 __data_region_end = . + 0x0000000000008cf0 PROVIDE (soc_reset_hook = SystemInit) + +/DISCARD/ + *(SORT_BY_ALIGNMENT(.irq_info*)) + *(SORT_BY_ALIGNMENT(.intList*)) + +.stab + *(SORT_BY_ALIGNMENT(.stab)) + +.stabstr + *(SORT_BY_ALIGNMENT(.stabstr)) + +.stab.excl + *(SORT_BY_ALIGNMENT(.stab.excl)) + +.stab.exclstr + *(SORT_BY_ALIGNMENT(.stab.exclstr)) + +.stab.index + *(SORT_BY_ALIGNMENT(.stab.index)) + +.stab.indexstr + *(SORT_BY_ALIGNMENT(.stab.indexstr)) + +.gnu.build.attributes + *(SORT_BY_ALIGNMENT(.gnu.build.attributes) SORT_BY_ALIGNMENT(.gnu.build.attributes.*)) + +.comment 0x0000000000000000 0x20 + *(SORT_BY_ALIGNMENT(.comment)) + .comment 0x0000000000000000 0x20 zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj + 0x21 (size before relaxing) + .comment 0x0000000000000020 0x21 zephyr/CMakeFiles/offsets.dir/./arch/arm/core/offsets/offsets.c.obj + .comment 0x0000000000000020 0x21 app/libapp.a(main.c.obj) + .comment 0x0000000000000020 0x21 app/libapp.a(led.c.obj) + .comment 0x0000000000000020 0x21 app/libapp.a(button.c.obj) + .comment 0x0000000000000020 0x21 app/libapp.a(actuator.c.obj) + .comment 0x0000000000000020 0x21 app/libapp.a(battery_adc.c.obj) + .comment 0x0000000000000020 0x21 app/libapp.a(temperature.c.obj) + .comment 0x0000000000000020 0x21 app/libapp.a(timer_count.c.obj) + .comment 0x0000000000000020 0x21 zephyr/libzephyr.a(heap.c.obj) + .comment 0x0000000000000020 0x21 zephyr/libzephyr.a(printk.c.obj) + .comment 0x0000000000000020 0x21 zephyr/libzephyr.a(thread_entry.c.obj) + .comment 0x0000000000000020 0x21 zephyr/libzephyr.a(assert.c.obj) + .comment 0x0000000000000020 0x21 zephyr/libzephyr.a(onoff.c.obj) + .comment 0x0000000000000020 0x21 zephyr/libzephyr.a(notify.c.obj) + .comment 0x0000000000000020 0x21 zephyr/libzephyr.a(ring_buffer.c.obj) + .comment 0x0000000000000020 0x21 zephyr/libzephyr.a(last_section_id.c.obj) + .comment 0x0000000000000020 0x21 zephyr/libzephyr.a(configs.c.obj) + .comment 0x0000000000000020 0x21 zephyr/libzephyr.a(mem_attr.c.obj) + .comment 0x0000000000000020 0x21 zephyr/libzephyr.a(usb_device.c.obj) + .comment 0x0000000000000020 0x21 zephyr/libzephyr.a(usb_descriptor.c.obj) + .comment 0x0000000000000020 0x21 zephyr/libzephyr.a(usb_transfer.c.obj) + .comment 0x0000000000000020 0x21 zephyr/libzephyr.a(cdc_acm.c.obj) + .comment 0x0000000000000020 0x21 zephyr/libzephyr.a(usb_work_q.c.obj) + .comment 0x0000000000000020 0x21 zephyr/libzephyr.a(banner.c.obj) + .comment 0x0000000000000020 0x21 zephyr/arch/arch/arm/core/libarch__arm__core.a(fatal.c.obj) + .comment 0x0000000000000020 0x21 zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi.c.obj) + .comment 0x0000000000000020 0x21 zephyr/arch/arch/arm/core/libarch__arm__core.a(tls.c.obj) + .comment 0x0000000000000020 0x21 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(exc_exit.c.obj) + .comment 0x0000000000000020 0x21 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault.c.obj) + .comment 0x0000000000000020 0x21 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(scb.c.obj) + .comment 0x0000000000000020 0x21 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread_abort.c.obj) + .comment 0x0000000000000020 0x21 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + .comment 0x0000000000000020 0x21 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(prep_c.c.obj) + .comment 0x0000000000000020 0x21 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread.c.obj) + .comment 0x0000000000000020 0x21 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(cpu_idle.c.obj) + .comment 0x0000000000000020 0x21 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_init.c.obj) + .comment 0x0000000000000020 0x21 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(isr_wrapper.c.obj) + .comment 0x0000000000000020 0x21 zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_core_mpu.c.obj) + .comment 0x0000000000000020 0x21 zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_mpu.c.obj) + .comment 0x0000000000000020 0x21 zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_mpu_regions.c.obj) + .comment 0x0000000000000020 0x21 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .comment 0x0000000000000020 0x21 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .comment 0x0000000000000020 0x21 zephyr/soc/soc/nrf52833/libsoc__nordic.a(soc.c.obj) + .comment 0x0000000000000020 0x21 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + .comment 0x0000000000000020 0x21 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + .comment 0x0000000000000020 0x21 zephyr/drivers/adc/libdrivers__adc.a(adc_common.c.obj) + .comment 0x0000000000000020 0x21 zephyr/drivers/adc/libdrivers__adc.a(adc_nrfx_saadc.c.obj) + .comment 0x0000000000000020 0x21 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .comment 0x0000000000000020 0x21 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .comment 0x0000000000000020 0x21 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + .comment 0x0000000000000020 0x21 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_nrf.c.obj) + .comment 0x0000000000000020 0x21 zephyr/drivers/sensor/nordic/temp/libdrivers__sensor__nordic__temp.a(temp_nrf5.c.obj) + .comment 0x0000000000000020 0x21 zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .comment 0x0000000000000020 0x21 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(system_nrf52833.c.obj) + .comment 0x0000000000000020 0x21 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_glue.c.obj) + .comment 0x0000000000000020 0x21 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_flag32_allocator.c.obj) + .comment 0x0000000000000020 0x21 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_clock.c.obj) + .comment 0x0000000000000020 0x21 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .comment 0x0000000000000020 0x21 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + .comment 0x0000000000000020 0x21 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_temp.c.obj) + .comment 0x0000000000000020 0x21 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .comment 0x0000000000000020 0x21 modules/segger/libmodules__segger.a(SEGGER_RTT_zephyr.c.obj) + .comment 0x0000000000000020 0x21 zephyr/kernel/libkernel.a(busy_wait.c.obj) + .comment 0x0000000000000020 0x21 zephyr/kernel/libkernel.a(device.c.obj) + .comment 0x0000000000000020 0x21 zephyr/kernel/libkernel.a(fatal.c.obj) + .comment 0x0000000000000020 0x21 zephyr/kernel/libkernel.a(init.c.obj) + .comment 0x0000000000000020 0x21 zephyr/kernel/libkernel.a(init_static.c.obj) + .comment 0x0000000000000020 0x21 zephyr/kernel/libkernel.a(mem_slab.c.obj) + .comment 0x0000000000000020 0x21 zephyr/kernel/libkernel.a(idle.c.obj) + .comment 0x0000000000000020 0x21 zephyr/kernel/libkernel.a(mutex.c.obj) + .comment 0x0000000000000020 0x21 zephyr/kernel/libkernel.a(queue.c.obj) + .comment 0x0000000000000020 0x21 zephyr/kernel/libkernel.a(sem.c.obj) + .comment 0x0000000000000020 0x21 zephyr/kernel/libkernel.a(work.c.obj) + .comment 0x0000000000000020 0x21 zephyr/kernel/libkernel.a(thread.c.obj) + .comment 0x0000000000000020 0x21 zephyr/kernel/libkernel.a(sched.c.obj) + .comment 0x0000000000000020 0x21 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .comment 0x0000000000000020 0x21 zephyr/kernel/libkernel.a(spinlock_validate.c.obj) + .comment 0x0000000000000020 0x21 zephyr/kernel/libkernel.a(xip.c.obj) + .comment 0x0000000000000020 0x21 zephyr/kernel/libkernel.a(timeout.c.obj) + .comment 0x0000000000000020 0x21 zephyr/kernel/libkernel.a(timer.c.obj) + .comment 0x0000000000000020 0x21 zephyr/kernel/libkernel.a(mempool.c.obj) + .comment 0x0000000000000020 0x21 zephyr/kernel/libkernel.a(kheap.c.obj) + .comment 0x0000000000000020 0x21 zephyr/kernel/libkernel.a(system_work_q.c.obj) + +.debug + *(SORT_BY_ALIGNMENT(.debug)) + +.line + *(SORT_BY_ALIGNMENT(.line)) + +.debug_srcinfo + *(SORT_BY_ALIGNMENT(.debug_srcinfo)) + +.debug_sfnames + *(SORT_BY_ALIGNMENT(.debug_sfnames)) + +.debug_aranges 0x0000000000000000 0x1c38 + *(SORT_BY_ALIGNMENT(.debug_aranges)) + .debug_aranges + 0x0000000000000000 0x20 zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi_on_reset.S.obj) + .debug_aranges + 0x0000000000000020 0x20 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault_s.S.obj) + .debug_aranges + 0x0000000000000040 0x20 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(reset.S.obj) + .debug_aranges + 0x0000000000000060 0x28 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(swap_helper.S.obj) + .debug_aranges + 0x0000000000000088 0x20 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(__aeabi_read_tp.S.obj) + .debug_aranges + 0x00000000000000a8 0x18 zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj + .debug_aranges + 0x00000000000000c0 0x20 zephyr/CMakeFiles/offsets.dir/./arch/arm/core/offsets/offsets.c.obj + .debug_aranges + 0x00000000000000e0 0x20 app/libapp.a(main.c.obj) + .debug_aranges + 0x0000000000000100 0x58 app/libapp.a(led.c.obj) + .debug_aranges + 0x0000000000000158 0x28 app/libapp.a(button.c.obj) + .debug_aranges + 0x0000000000000180 0x58 app/libapp.a(actuator.c.obj) + .debug_aranges + 0x00000000000001d8 0x28 app/libapp.a(battery_adc.c.obj) + .debug_aranges + 0x0000000000000200 0x28 app/libapp.a(temperature.c.obj) + .debug_aranges + 0x0000000000000228 0x48 app/libapp.a(timer_count.c.obj) + .debug_aranges + 0x0000000000000270 0x80 zephyr/libzephyr.a(heap.c.obj) + .debug_aranges + 0x00000000000002f0 0x50 zephyr/libzephyr.a(printk.c.obj) + .debug_aranges + 0x0000000000000340 0x20 zephyr/libzephyr.a(thread_entry.c.obj) + .debug_aranges + 0x0000000000000360 0x28 zephyr/libzephyr.a(assert.c.obj) + .debug_aranges + 0x0000000000000388 0x70 zephyr/libzephyr.a(onoff.c.obj) + .debug_aranges + 0x00000000000003f8 0x28 zephyr/libzephyr.a(notify.c.obj) + .debug_aranges + 0x0000000000000420 0x60 zephyr/libzephyr.a(ring_buffer.c.obj) + .debug_aranges + 0x0000000000000480 0x18 zephyr/libzephyr.a(last_section_id.c.obj) + .debug_aranges + 0x0000000000000498 0x20 zephyr/libzephyr.a(configs.c.obj) + .debug_aranges + 0x00000000000004b8 0x28 zephyr/libzephyr.a(mem_attr.c.obj) + .debug_aranges + 0x00000000000004e0 0xd0 zephyr/libzephyr.a(usb_device.c.obj) + .debug_aranges + 0x00000000000005b0 0x48 zephyr/libzephyr.a(usb_descriptor.c.obj) + .debug_aranges + 0x00000000000005f8 0x60 zephyr/libzephyr.a(usb_transfer.c.obj) + .debug_aranges + 0x0000000000000658 0xe0 zephyr/libzephyr.a(cdc_acm.c.obj) + .debug_aranges + 0x0000000000000738 0x20 zephyr/libzephyr.a(usb_work_q.c.obj) + .debug_aranges + 0x0000000000000758 0x20 zephyr/libzephyr.a(banner.c.obj) + .debug_aranges + 0x0000000000000778 0x30 zephyr/arch/arch/arm/core/libarch__arm__core.a(fatal.c.obj) + .debug_aranges + 0x00000000000007a8 0x20 zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi.c.obj) + .debug_aranges + 0x00000000000007c8 0x20 zephyr/arch/arch/arm/core/libarch__arm__core.a(tls.c.obj) + .debug_aranges + 0x00000000000007e8 0x20 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(exc_exit.c.obj) + .debug_aranges + 0x0000000000000808 0x40 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault.c.obj) + .debug_aranges + 0x0000000000000848 0x30 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(scb.c.obj) + .debug_aranges + 0x0000000000000878 0x20 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread_abort.c.obj) + .debug_aranges + 0x0000000000000898 0x40 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + .debug_aranges + 0x00000000000008d8 0x20 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(prep_c.c.obj) + .debug_aranges + 0x00000000000008f8 0x40 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread.c.obj) + .debug_aranges + 0x0000000000000938 0x30 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(cpu_idle.c.obj) + .debug_aranges + 0x0000000000000968 0x20 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_init.c.obj) + .debug_aranges + 0x0000000000000988 0x20 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(isr_wrapper.c.obj) + .debug_aranges + 0x00000000000009a8 0x28 zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_core_mpu.c.obj) + .debug_aranges + 0x00000000000009d0 0x40 zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_mpu.c.obj) + .debug_aranges + 0x0000000000000a10 0x18 zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_mpu_regions.c.obj) + .debug_aranges + 0x0000000000000a28 0x38 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .debug_aranges + 0x0000000000000a60 0x58 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .debug_aranges + 0x0000000000000ab8 0x28 zephyr/soc/soc/nrf52833/libsoc__nordic.a(soc.c.obj) + .debug_aranges + 0x0000000000000ae0 0x108 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + .debug_aranges + 0x0000000000000be8 0x150 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + .debug_aranges + 0x0000000000000d38 0x20 zephyr/drivers/adc/libdrivers__adc.a(adc_common.c.obj) + .debug_aranges + 0x0000000000000d58 0x40 zephyr/drivers/adc/libdrivers__adc.a(adc_nrfx_saadc.c.obj) + .debug_aranges + 0x0000000000000d98 0xb8 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .debug_aranges + 0x0000000000000e50 0x30 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .debug_aranges + 0x0000000000000e80 0x70 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + .debug_aranges + 0x0000000000000ef0 0x38 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_nrf.c.obj) + .debug_aranges + 0x0000000000000f28 0x40 zephyr/drivers/sensor/nordic/temp/libdrivers__sensor__nordic__temp.a(temp_nrf5.c.obj) + .debug_aranges + 0x0000000000000f68 0xc0 zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .debug_aranges + 0x0000000000001028 0x40 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(system_nrf52833.c.obj) + .debug_aranges + 0x0000000000001068 0x30 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_glue.c.obj) + .debug_aranges + 0x0000000000001098 0x30 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_flag32_allocator.c.obj) + .debug_aranges + 0x00000000000010c8 0x60 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_clock.c.obj) + .debug_aranges + 0x0000000000001128 0x168 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .debug_aranges + 0x0000000000001290 0xc8 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + .debug_aranges + 0x0000000000001358 0x48 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_temp.c.obj) + .debug_aranges + 0x00000000000013a0 0x128 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .debug_aranges + 0x00000000000014c8 0x30 modules/segger/libmodules__segger.a(SEGGER_RTT_zephyr.c.obj) + .debug_aranges + 0x00000000000014f8 0x20 zephyr/kernel/libkernel.a(busy_wait.c.obj) + .debug_aranges + 0x0000000000001518 0x38 zephyr/kernel/libkernel.a(device.c.obj) + .debug_aranges + 0x0000000000001550 0x38 zephyr/kernel/libkernel.a(fatal.c.obj) + .debug_aranges + 0x0000000000001588 0x60 zephyr/kernel/libkernel.a(init.c.obj) + .debug_aranges + 0x00000000000015e8 0x20 zephyr/kernel/libkernel.a(init_static.c.obj) + .debug_aranges + 0x0000000000001608 0x40 zephyr/kernel/libkernel.a(mem_slab.c.obj) + .debug_aranges + 0x0000000000001648 0x28 zephyr/kernel/libkernel.a(idle.c.obj) + .debug_aranges + 0x0000000000001670 0x30 zephyr/kernel/libkernel.a(mutex.c.obj) + .debug_aranges + 0x00000000000016a0 0x98 zephyr/kernel/libkernel.a(queue.c.obj) + .debug_aranges + 0x0000000000001738 0x38 zephyr/kernel/libkernel.a(sem.c.obj) + .debug_aranges + 0x0000000000001770 0xf8 zephyr/kernel/libkernel.a(work.c.obj) + .debug_aranges + 0x0000000000001868 0x88 zephyr/kernel/libkernel.a(thread.c.obj) + .debug_aranges + 0x00000000000018f0 0x160 zephyr/kernel/libkernel.a(sched.c.obj) + .debug_aranges + 0x0000000000001a50 0x40 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .debug_aranges + 0x0000000000001a90 0x30 zephyr/kernel/libkernel.a(spinlock_validate.c.obj) + .debug_aranges + 0x0000000000001ac0 0x20 zephyr/kernel/libkernel.a(xip.c.obj) + .debug_aranges + 0x0000000000001ae0 0x78 zephyr/kernel/libkernel.a(timeout.c.obj) + .debug_aranges + 0x0000000000001b58 0x48 zephyr/kernel/libkernel.a(timer.c.obj) + .debug_aranges + 0x0000000000001ba0 0x28 zephyr/kernel/libkernel.a(mempool.c.obj) + .debug_aranges + 0x0000000000001bc8 0x50 zephyr/kernel/libkernel.a(kheap.c.obj) + .debug_aranges + 0x0000000000001c18 0x20 zephyr/kernel/libkernel.a(system_work_q.c.obj) + +.debug_pubnames + *(SORT_BY_ALIGNMENT(.debug_pubnames)) + +.debug_info 0x0000000000000000 0x8186a + *(SORT_BY_ALIGNMENT(.debug_info) SORT_BY_ALIGNMENT(.gnu.linkonce.wi.*)) + .debug_info 0x0000000000000000 0x189 zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj + .debug_info 0x0000000000000189 0xdc zephyr/CMakeFiles/offsets.dir/./arch/arm/core/offsets/offsets.c.obj + .debug_info 0x0000000000000265 0x724 app/libapp.a(main.c.obj) + .debug_info 0x0000000000000989 0x1a7e app/libapp.a(led.c.obj) + .debug_info 0x0000000000002407 0xb1f app/libapp.a(button.c.obj) + .debug_info 0x0000000000002f26 0x1734 app/libapp.a(actuator.c.obj) + .debug_info 0x000000000000465a 0x16d0 app/libapp.a(battery_adc.c.obj) + .debug_info 0x0000000000005d2a 0x5bd app/libapp.a(temperature.c.obj) + .debug_info 0x00000000000062e7 0x1dbd app/libapp.a(timer_count.c.obj) + .debug_info 0x00000000000080a4 0x430f zephyr/libzephyr.a(heap.c.obj) + .debug_info 0x000000000000c3b3 0x5a7 zephyr/libzephyr.a(printk.c.obj) + .debug_info 0x000000000000c95a 0x764 zephyr/libzephyr.a(thread_entry.c.obj) + .debug_info 0x000000000000d0be 0x247 zephyr/libzephyr.a(assert.c.obj) + .debug_info 0x000000000000d305 0x3ded zephyr/libzephyr.a(onoff.c.obj) + .debug_info 0x00000000000110f2 0x39e zephyr/libzephyr.a(notify.c.obj) + .debug_info 0x0000000000011490 0x119f zephyr/libzephyr.a(ring_buffer.c.obj) + .debug_info 0x000000000001262f 0x95 zephyr/libzephyr.a(last_section_id.c.obj) + .debug_info 0x00000000000126c4 0x38 zephyr/libzephyr.a(configs.c.obj) + .debug_info 0x00000000000126fc 0x2ba zephyr/libzephyr.a(mem_attr.c.obj) + .debug_info 0x00000000000129b6 0x3bcd zephyr/libzephyr.a(usb_device.c.obj) + .debug_info 0x0000000000016583 0x1b0f zephyr/libzephyr.a(usb_descriptor.c.obj) + .debug_info 0x0000000000018092 0x17ae zephyr/libzephyr.a(usb_transfer.c.obj) + .debug_info 0x0000000000019840 0x33a1 zephyr/libzephyr.a(cdc_acm.c.obj) + .debug_info 0x000000000001cbe1 0x987 zephyr/libzephyr.a(usb_work_q.c.obj) + .debug_info 0x000000000001d568 0xdc zephyr/libzephyr.a(banner.c.obj) + .debug_info 0x000000000001d644 0x6e3 zephyr/arch/arch/arm/core/libarch__arm__core.a(fatal.c.obj) + .debug_info 0x000000000001dd27 0xb6 zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi.c.obj) + .debug_info 0x000000000001dddd 0x23 zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi_on_reset.S.obj) + .debug_info 0x000000000001de00 0x73d zephyr/arch/arch/arm/core/libarch__arm__core.a(tls.c.obj) + .debug_info 0x000000000001e53d 0x7bc zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(exc_exit.c.obj) + .debug_info 0x000000000001ecf9 0x14de zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault.c.obj) + .debug_info 0x00000000000201d7 0x23 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault_s.S.obj) + .debug_info 0x00000000000201fa 0x23 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(reset.S.obj) + .debug_info 0x000000000002021d 0x742 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(scb.c.obj) + .debug_info 0x000000000002095f 0x86c zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread_abort.c.obj) + .debug_info 0x00000000000211cb 0x22 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(swap_helper.S.obj) + .debug_info 0x00000000000211ed 0x97e zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + .debug_info 0x0000000000021b6b 0x3f6 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(prep_c.c.obj) + .debug_info 0x0000000000021f61 0xb44 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread.c.obj) + .debug_info 0x0000000000022aa5 0x48b zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(cpu_idle.c.obj) + .debug_info 0x0000000000022f30 0x584 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_init.c.obj) + .debug_info 0x00000000000234b4 0x1a3 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(isr_wrapper.c.obj) + .debug_info 0x0000000000023657 0x23 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(__aeabi_read_tp.S.obj) + .debug_info 0x000000000002367a 0x792 zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_core_mpu.c.obj) + .debug_info 0x0000000000023e0c 0x1593 zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_mpu.c.obj) + .debug_info 0x000000000002539f 0x1cc zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_mpu_regions.c.obj) + .debug_info 0x000000000002556b 0x427 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .debug_info 0x0000000000025992 0x11bd zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .debug_info 0x0000000000026b4f 0x524 zephyr/soc/soc/nrf52833/libsoc__nordic.a(soc.c.obj) + .debug_info 0x0000000000027073 0x6f16 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + .debug_info 0x000000000002df89 0x493d zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + .debug_info 0x00000000000328c6 0x218 zephyr/drivers/adc/libdrivers__adc.a(adc_common.c.obj) + .debug_info 0x0000000000032ade 0x3116 zephyr/drivers/adc/libdrivers__adc.a(adc_nrfx_saadc.c.obj) + .debug_info 0x0000000000035bf4 0x4090 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .debug_info 0x0000000000039c84 0x91b zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .debug_info 0x000000000003a59f 0x2aec zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + .debug_info 0x000000000003d08b 0xb57 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_nrf.c.obj) + .debug_info 0x000000000003dbe2 0x21bb zephyr/drivers/sensor/nordic/temp/libdrivers__sensor__nordic__temp.a(temp_nrf5.c.obj) + .debug_info 0x000000000003fd9d 0x3d5b zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .debug_info 0x0000000000043af8 0x14be modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(system_nrf52833.c.obj) + .debug_info 0x0000000000044fb6 0x25d modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_glue.c.obj) + .debug_info 0x0000000000045213 0x354 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_flag32_allocator.c.obj) + .debug_info 0x0000000000045567 0x1a8d modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_clock.c.obj) + .debug_info 0x0000000000046ff4 0x8692 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .debug_info 0x000000000004f686 0x2574 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + .debug_info 0x0000000000051bfa 0x113a modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_temp.c.obj) + .debug_info 0x0000000000052d34 0x23b9 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .debug_info 0x00000000000550ed 0x4ab modules/segger/libmodules__segger.a(SEGGER_RTT_zephyr.c.obj) + .debug_info 0x0000000000055598 0xdb zephyr/kernel/libkernel.a(busy_wait.c.obj) + .debug_info 0x0000000000055673 0x426 zephyr/kernel/libkernel.a(device.c.obj) + .debug_info 0x0000000000055a99 0xd13 zephyr/kernel/libkernel.a(fatal.c.obj) + .debug_info 0x00000000000567ac 0x20dc zephyr/kernel/libkernel.a(init.c.obj) + .debug_info 0x0000000000058888 0x38 zephyr/kernel/libkernel.a(init_static.c.obj) + .debug_info 0x00000000000588c0 0x1eb1 zephyr/kernel/libkernel.a(mem_slab.c.obj) + .debug_info 0x000000000005a771 0x99e zephyr/kernel/libkernel.a(idle.c.obj) + .debug_info 0x000000000005b10f 0x1f0f zephyr/kernel/libkernel.a(mutex.c.obj) + .debug_info 0x000000000005d01e 0x3e3b zephyr/kernel/libkernel.a(queue.c.obj) + .debug_info 0x0000000000060e59 0x1c6a zephyr/kernel/libkernel.a(sem.c.obj) + .debug_info 0x0000000000062ac3 0x8e51 zephyr/kernel/libkernel.a(work.c.obj) + .debug_info 0x000000000006b914 0x17c3 zephyr/kernel/libkernel.a(thread.c.obj) + .debug_info 0x000000000006d0d7 0xb35c zephyr/kernel/libkernel.a(sched.c.obj) + .debug_info 0x0000000000078433 0x144c zephyr/kernel/libkernel.a(timeslicing.c.obj) + .debug_info 0x000000000007987f 0x6f7 zephyr/kernel/libkernel.a(spinlock_validate.c.obj) + .debug_info 0x0000000000079f76 0x12a zephyr/kernel/libkernel.a(xip.c.obj) + .debug_info 0x000000000007a0a0 0x2c42 zephyr/kernel/libkernel.a(timeout.c.obj) + .debug_info 0x000000000007cce2 0x1f3b zephyr/kernel/libkernel.a(timer.c.obj) + .debug_info 0x000000000007ec1d 0x92f zephyr/kernel/libkernel.a(mempool.c.obj) + .debug_info 0x000000000007f54c 0x1a34 zephyr/kernel/libkernel.a(kheap.c.obj) + .debug_info 0x0000000000080f80 0x8ea zephyr/kernel/libkernel.a(system_work_q.c.obj) + +.debug_abbrev 0x0000000000000000 0x11e67 + *(SORT_BY_ALIGNMENT(.debug_abbrev)) + .debug_abbrev 0x0000000000000000 0x118 zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj + .debug_abbrev 0x0000000000000118 0x62 zephyr/CMakeFiles/offsets.dir/./arch/arm/core/offsets/offsets.c.obj + .debug_abbrev 0x000000000000017a 0x288 app/libapp.a(main.c.obj) + .debug_abbrev 0x0000000000000402 0x441 app/libapp.a(led.c.obj) + .debug_abbrev 0x0000000000000843 0x341 app/libapp.a(button.c.obj) + .debug_abbrev 0x0000000000000b84 0x377 app/libapp.a(actuator.c.obj) + .debug_abbrev 0x0000000000000efb 0x3d5 app/libapp.a(battery_adc.c.obj) + .debug_abbrev 0x00000000000012d0 0x27b app/libapp.a(temperature.c.obj) + .debug_abbrev 0x000000000000154b 0x571 app/libapp.a(timer_count.c.obj) + .debug_abbrev 0x0000000000001abc 0x43e zephyr/libzephyr.a(heap.c.obj) + .debug_abbrev 0x0000000000001efa 0x335 zephyr/libzephyr.a(printk.c.obj) + .debug_abbrev 0x000000000000222f 0x2ad zephyr/libzephyr.a(thread_entry.c.obj) + .debug_abbrev 0x00000000000024dc 0x1ca zephyr/libzephyr.a(assert.c.obj) + .debug_abbrev 0x00000000000026a6 0x4bf zephyr/libzephyr.a(onoff.c.obj) + .debug_abbrev 0x0000000000002b65 0x20d zephyr/libzephyr.a(notify.c.obj) + .debug_abbrev 0x0000000000002d72 0x262 zephyr/libzephyr.a(ring_buffer.c.obj) + .debug_abbrev 0x0000000000002fd4 0x46 zephyr/libzephyr.a(last_section_id.c.obj) + .debug_abbrev 0x000000000000301a 0x2e zephyr/libzephyr.a(configs.c.obj) + .debug_abbrev 0x0000000000003048 0x142 zephyr/libzephyr.a(mem_attr.c.obj) + .debug_abbrev 0x000000000000318a 0x6a0 zephyr/libzephyr.a(usb_device.c.obj) + .debug_abbrev 0x000000000000382a 0x4e9 zephyr/libzephyr.a(usb_descriptor.c.obj) + .debug_abbrev 0x0000000000003d13 0x5be zephyr/libzephyr.a(usb_transfer.c.obj) + .debug_abbrev 0x00000000000042d1 0x6a6 zephyr/libzephyr.a(cdc_acm.c.obj) + .debug_abbrev 0x0000000000004977 0x2c8 zephyr/libzephyr.a(usb_work_q.c.obj) + .debug_abbrev 0x0000000000004c3f 0x9c zephyr/libzephyr.a(banner.c.obj) + .debug_abbrev 0x0000000000004cdb 0x2ac zephyr/arch/arch/arm/core/libarch__arm__core.a(fatal.c.obj) + .debug_abbrev 0x0000000000004f87 0x70 zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi.c.obj) + .debug_abbrev 0x0000000000004ff7 0x14 zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi_on_reset.S.obj) + .debug_abbrev 0x000000000000500b 0x27f zephyr/arch/arch/arm/core/libarch__arm__core.a(tls.c.obj) + .debug_abbrev 0x000000000000528a 0x17f zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(exc_exit.c.obj) + .debug_abbrev 0x0000000000005409 0x463 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault.c.obj) + .debug_abbrev 0x000000000000586c 0x14 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault_s.S.obj) + .debug_abbrev 0x0000000000005880 0x14 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(reset.S.obj) + .debug_abbrev 0x0000000000005894 0x262 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(scb.c.obj) + .debug_abbrev 0x0000000000005af6 0x227 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread_abort.c.obj) + .debug_abbrev 0x0000000000005d1d 0x12 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(swap_helper.S.obj) + .debug_abbrev 0x0000000000005d2f 0x29a zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + .debug_abbrev 0x0000000000005fc9 0x17d zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(prep_c.c.obj) + .debug_abbrev 0x0000000000006146 0x3af zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread.c.obj) + .debug_abbrev 0x00000000000064f5 0x16f zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(cpu_idle.c.obj) + .debug_abbrev 0x0000000000006664 0x168 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_init.c.obj) + .debug_abbrev 0x00000000000067cc 0x136 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(isr_wrapper.c.obj) + .debug_abbrev 0x0000000000006902 0x14 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(__aeabi_read_tp.S.obj) + .debug_abbrev 0x0000000000006916 0x22d zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_core_mpu.c.obj) + .debug_abbrev 0x0000000000006b43 0x40c zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_mpu.c.obj) + .debug_abbrev 0x0000000000006f4f 0xca zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_mpu_regions.c.obj) + .debug_abbrev 0x0000000000007019 0x20c zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .debug_abbrev 0x0000000000007225 0x4a4 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .debug_abbrev 0x00000000000076c9 0x273 zephyr/soc/soc/nrf52833/libsoc__nordic.a(soc.c.obj) + .debug_abbrev 0x000000000000793c 0x6d3 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + .debug_abbrev 0x000000000000800f 0x6c2 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + .debug_abbrev 0x00000000000086d1 0x10a zephyr/drivers/adc/libdrivers__adc.a(adc_common.c.obj) + .debug_abbrev 0x00000000000087db 0x621 zephyr/drivers/adc/libdrivers__adc.a(adc_nrfx_saadc.c.obj) + .debug_abbrev 0x0000000000008dfc 0x6da zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .debug_abbrev 0x00000000000094d6 0x362 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .debug_abbrev 0x0000000000009838 0x600 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + .debug_abbrev 0x0000000000009e38 0x2a9 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_nrf.c.obj) + .debug_abbrev 0x000000000000a0e1 0x506 zephyr/drivers/sensor/nordic/temp/libdrivers__sensor__nordic__temp.a(temp_nrf5.c.obj) + .debug_abbrev 0x000000000000a5e7 0x6cf zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .debug_abbrev 0x000000000000acb6 0x33d modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(system_nrf52833.c.obj) + .debug_abbrev 0x000000000000aff3 0x155 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_glue.c.obj) + .debug_abbrev 0x000000000000b148 0x10b modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_flag32_allocator.c.obj) + .debug_abbrev 0x000000000000b253 0x468 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_clock.c.obj) + .debug_abbrev 0x000000000000b6bb 0x558 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .debug_abbrev 0x000000000000bc13 0x5bc modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + .debug_abbrev 0x000000000000c1cf 0x3a5 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_temp.c.obj) + .debug_abbrev 0x000000000000c574 0x39e modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .debug_abbrev 0x000000000000c912 0x2d9 modules/segger/libmodules__segger.a(SEGGER_RTT_zephyr.c.obj) + .debug_abbrev 0x000000000000cbeb 0x91 zephyr/kernel/libkernel.a(busy_wait.c.obj) + .debug_abbrev 0x000000000000cc7c 0x20a zephyr/kernel/libkernel.a(device.c.obj) + .debug_abbrev 0x000000000000ce86 0x3d5 zephyr/kernel/libkernel.a(fatal.c.obj) + .debug_abbrev 0x000000000000d25b 0x6fd zephyr/kernel/libkernel.a(init.c.obj) + .debug_abbrev 0x000000000000d958 0x2e zephyr/kernel/libkernel.a(init_static.c.obj) + .debug_abbrev 0x000000000000d986 0x57d zephyr/kernel/libkernel.a(mem_slab.c.obj) + .debug_abbrev 0x000000000000df03 0x30e zephyr/kernel/libkernel.a(idle.c.obj) + .debug_abbrev 0x000000000000e211 0x459 zephyr/kernel/libkernel.a(mutex.c.obj) + .debug_abbrev 0x000000000000e66a 0x57f zephyr/kernel/libkernel.a(queue.c.obj) + .debug_abbrev 0x000000000000ebe9 0x49a zephyr/kernel/libkernel.a(sem.c.obj) + .debug_abbrev 0x000000000000f083 0x6ae zephyr/kernel/libkernel.a(work.c.obj) + .debug_abbrev 0x000000000000f731 0x536 zephyr/kernel/libkernel.a(thread.c.obj) + .debug_abbrev 0x000000000000fc67 0x674 zephyr/kernel/libkernel.a(sched.c.obj) + .debug_abbrev 0x00000000000102db 0x457 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .debug_abbrev 0x0000000000010732 0x221 zephyr/kernel/libkernel.a(spinlock_validate.c.obj) + .debug_abbrev 0x0000000000010953 0xbe zephyr/kernel/libkernel.a(xip.c.obj) + .debug_abbrev 0x0000000000010a11 0x4f2 zephyr/kernel/libkernel.a(timeout.c.obj) + .debug_abbrev 0x0000000000010f03 0x507 zephyr/kernel/libkernel.a(timer.c.obj) + .debug_abbrev 0x000000000001140a 0x31e zephyr/kernel/libkernel.a(mempool.c.obj) + .debug_abbrev 0x0000000000011728 0x4ea zephyr/kernel/libkernel.a(kheap.c.obj) + .debug_abbrev 0x0000000000011c12 0x255 zephyr/kernel/libkernel.a(system_work_q.c.obj) + +.debug_line 0x0000000000000000 0x3e0de + *(SORT_BY_ALIGNMENT(.debug_line) SORT_BY_ALIGNMENT(.debug_line.*) SORT_BY_ALIGNMENT(.debug_line_end)) + .debug_line 0x0000000000000000 0x1b4 zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj + .debug_line 0x00000000000001b4 0x12f zephyr/CMakeFiles/offsets.dir/./arch/arm/core/offsets/offsets.c.obj + .debug_line 0x00000000000002e3 0x6b6 app/libapp.a(main.c.obj) + .debug_line 0x0000000000000999 0x97f app/libapp.a(led.c.obj) + .debug_line 0x0000000000001318 0x487 app/libapp.a(button.c.obj) + .debug_line 0x000000000000179f 0x8e2 app/libapp.a(actuator.c.obj) + .debug_line 0x0000000000002081 0x780 app/libapp.a(battery_adc.c.obj) + .debug_line 0x0000000000002801 0x360 app/libapp.a(temperature.c.obj) + .debug_line 0x0000000000002b61 0xb02 app/libapp.a(timer_count.c.obj) + .debug_line 0x0000000000003663 0x2044 zephyr/libzephyr.a(heap.c.obj) + .debug_line 0x00000000000056a7 0x4a2 zephyr/libzephyr.a(printk.c.obj) + .debug_line 0x0000000000005b49 0x44f zephyr/libzephyr.a(thread_entry.c.obj) + .debug_line 0x0000000000005f98 0x33f zephyr/libzephyr.a(assert.c.obj) + .debug_line 0x00000000000062d7 0x1a99 zephyr/libzephyr.a(onoff.c.obj) + .debug_line 0x0000000000007d70 0x2e5 zephyr/libzephyr.a(notify.c.obj) + .debug_line 0x0000000000008055 0xf5c zephyr/libzephyr.a(ring_buffer.c.obj) + .debug_line 0x0000000000008fb1 0x136 zephyr/libzephyr.a(last_section_id.c.obj) + .debug_line 0x00000000000090e7 0x2a2 zephyr/libzephyr.a(configs.c.obj) + .debug_line 0x0000000000009389 0x27f zephyr/libzephyr.a(mem_attr.c.obj) + .debug_line 0x0000000000009608 0x19df zephyr/libzephyr.a(usb_device.c.obj) + .debug_line 0x000000000000afe7 0xb3d zephyr/libzephyr.a(usb_descriptor.c.obj) + .debug_line 0x000000000000bb24 0xde6 zephyr/libzephyr.a(usb_transfer.c.obj) + .debug_line 0x000000000000c90a 0x140a zephyr/libzephyr.a(cdc_acm.c.obj) + .debug_line 0x000000000000dd14 0x44e zephyr/libzephyr.a(usb_work_q.c.obj) + .debug_line 0x000000000000e162 0xbd zephyr/libzephyr.a(banner.c.obj) + .debug_line 0x000000000000e21f 0x3e5 zephyr/arch/arch/arm/core/libarch__arm__core.a(fatal.c.obj) + .debug_line 0x000000000000e604 0xb7 zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi.c.obj) + .debug_line 0x000000000000e6bb 0x6d zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi_on_reset.S.obj) + .debug_line 0x000000000000e728 0x45a zephyr/arch/arch/arm/core/libarch__arm__core.a(tls.c.obj) + .debug_line 0x000000000000eb82 0x371 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(exc_exit.c.obj) + .debug_line 0x000000000000eef3 0xb0c zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault.c.obj) + .debug_line 0x000000000000f9ff 0x7a zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault_s.S.obj) + .debug_line 0x000000000000fa79 0x95 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(reset.S.obj) + .debug_line 0x000000000000fb0e 0x58b zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(scb.c.obj) + .debug_line 0x0000000000010099 0x43d zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread_abort.c.obj) + .debug_line 0x00000000000104d6 0xd3 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(swap_helper.S.obj) + .debug_line 0x00000000000105a9 0x465 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + .debug_line 0x0000000000010a0e 0x348 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(prep_c.c.obj) + .debug_line 0x0000000000010d56 0x67b zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread.c.obj) + .debug_line 0x00000000000113d1 0x346 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(cpu_idle.c.obj) + .debug_line 0x0000000000011717 0x266 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_init.c.obj) + .debug_line 0x000000000001197d 0x279 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(isr_wrapper.c.obj) + .debug_line 0x0000000000011bf6 0x7b zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(__aeabi_read_tp.S.obj) + .debug_line 0x0000000000011c71 0x498 zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_core_mpu.c.obj) + .debug_line 0x0000000000012109 0xf97 zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_mpu.c.obj) + .debug_line 0x00000000000130a0 0x24f zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_mpu_regions.c.obj) + .debug_line 0x00000000000132ef 0x336 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .debug_line 0x0000000000013625 0x959 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .debug_line 0x0000000000013f7e 0x2aa zephyr/soc/soc/nrf52833/libsoc__nordic.a(soc.c.obj) + .debug_line 0x0000000000014228 0x3480 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + .debug_line 0x00000000000176a8 0x2d25 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + .debug_line 0x000000000001a3cd 0x25f zephyr/drivers/adc/libdrivers__adc.a(adc_common.c.obj) + .debug_line 0x000000000001a62c 0x11c1 zephyr/drivers/adc/libdrivers__adc.a(adc_nrfx_saadc.c.obj) + .debug_line 0x000000000001b7ed 0x1c7e zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .debug_line 0x000000000001d46b 0x48e zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .debug_line 0x000000000001d8f9 0xf36 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + .debug_line 0x000000000001e82f 0x4d0 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_nrf.c.obj) + .debug_line 0x000000000001ecff 0x9b1 zephyr/drivers/sensor/nordic/temp/libdrivers__sensor__nordic__temp.a(temp_nrf5.c.obj) + .debug_line 0x000000000001f6b0 0x1da8 zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .debug_line 0x0000000000021458 0x678 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(system_nrf52833.c.obj) + .debug_line 0x0000000000021ad0 0x2ce modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_glue.c.obj) + .debug_line 0x0000000000021d9e 0x336 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_flag32_allocator.c.obj) + .debug_line 0x00000000000220d4 0xddb modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_clock.c.obj) + .debug_line 0x0000000000022eaf 0x3495 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .debug_line 0x0000000000026344 0x11fc modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + .debug_line 0x0000000000027540 0x87c modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_temp.c.obj) + .debug_line 0x0000000000027dbc 0x1979 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .debug_line 0x0000000000029735 0x34f modules/segger/libmodules__segger.a(SEGGER_RTT_zephyr.c.obj) + .debug_line 0x0000000000029a84 0x19c zephyr/kernel/libkernel.a(busy_wait.c.obj) + .debug_line 0x0000000000029c20 0x424 zephyr/kernel/libkernel.a(device.c.obj) + .debug_line 0x000000000002a044 0x6fb zephyr/kernel/libkernel.a(fatal.c.obj) + .debug_line 0x000000000002a73f 0xe67 zephyr/kernel/libkernel.a(init.c.obj) + .debug_line 0x000000000002b5a6 0x66 zephyr/kernel/libkernel.a(init_static.c.obj) + .debug_line 0x000000000002b60c 0xd16 zephyr/kernel/libkernel.a(mem_slab.c.obj) + .debug_line 0x000000000002c322 0x559 zephyr/kernel/libkernel.a(idle.c.obj) + .debug_line 0x000000000002c87b 0xda0 zephyr/kernel/libkernel.a(mutex.c.obj) + .debug_line 0x000000000002d61b 0x1a2f zephyr/kernel/libkernel.a(queue.c.obj) + .debug_line 0x000000000002f04a 0xdad zephyr/kernel/libkernel.a(sem.c.obj) + .debug_line 0x000000000002fdf7 0x3cbb zephyr/kernel/libkernel.a(work.c.obj) + .debug_line 0x0000000000033ab2 0xd66 zephyr/kernel/libkernel.a(thread.c.obj) + .debug_line 0x0000000000034818 0x5071 zephyr/kernel/libkernel.a(sched.c.obj) + .debug_line 0x0000000000039889 0x8b0 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .debug_line 0x000000000003a139 0x44d zephyr/kernel/libkernel.a(spinlock_validate.c.obj) + .debug_line 0x000000000003a586 0x182 zephyr/kernel/libkernel.a(xip.c.obj) + .debug_line 0x000000000003a708 0x17f1 zephyr/kernel/libkernel.a(timeout.c.obj) + .debug_line 0x000000000003bef9 0xe8f zephyr/kernel/libkernel.a(timer.c.obj) + .debug_line 0x000000000003cd88 0x3e2 zephyr/kernel/libkernel.a(mempool.c.obj) + .debug_line 0x000000000003d16a 0xbda zephyr/kernel/libkernel.a(kheap.c.obj) + .debug_line 0x000000000003dd44 0x39a zephyr/kernel/libkernel.a(system_work_q.c.obj) + +.debug_frame 0x0000000000000000 0x4bf8 + *(SORT_BY_ALIGNMENT(.debug_frame)) + .debug_frame 0x0000000000000000 0x20 zephyr/CMakeFiles/offsets.dir/./arch/arm/core/offsets/offsets.c.obj + .debug_frame 0x0000000000000020 0x3c app/libapp.a(main.c.obj) + .debug_frame 0x000000000000005c 0x11c app/libapp.a(led.c.obj) + .debug_frame 0x0000000000000178 0x60 app/libapp.a(button.c.obj) + .debug_frame 0x00000000000001d8 0x124 app/libapp.a(actuator.c.obj) + .debug_frame 0x00000000000002fc 0x6c app/libapp.a(battery_adc.c.obj) + .debug_frame 0x0000000000000368 0x44 app/libapp.a(temperature.c.obj) + .debug_frame 0x00000000000003ac 0xcc app/libapp.a(timer_count.c.obj) + .debug_frame 0x0000000000000478 0x1f4 zephyr/libzephyr.a(heap.c.obj) + .debug_frame 0x000000000000066c 0xc4 zephyr/libzephyr.a(printk.c.obj) + .debug_frame 0x0000000000000730 0x28 zephyr/libzephyr.a(thread_entry.c.obj) + .debug_frame 0x0000000000000758 0x54 zephyr/libzephyr.a(assert.c.obj) + .debug_frame 0x00000000000007ac 0x1b0 zephyr/libzephyr.a(onoff.c.obj) + .debug_frame 0x000000000000095c 0x38 zephyr/libzephyr.a(notify.c.obj) + .debug_frame 0x0000000000000994 0x110 zephyr/libzephyr.a(ring_buffer.c.obj) + .debug_frame 0x0000000000000aa4 0x20 zephyr/libzephyr.a(configs.c.obj) + .debug_frame 0x0000000000000ac4 0x30 zephyr/libzephyr.a(mem_attr.c.obj) + .debug_frame 0x0000000000000af4 0x300 zephyr/libzephyr.a(usb_device.c.obj) + .debug_frame 0x0000000000000df4 0xac zephyr/libzephyr.a(usb_descriptor.c.obj) + .debug_frame 0x0000000000000ea0 0x154 zephyr/libzephyr.a(usb_transfer.c.obj) + .debug_frame 0x0000000000000ff4 0x2ac zephyr/libzephyr.a(cdc_acm.c.obj) + .debug_frame 0x00000000000012a0 0x30 zephyr/libzephyr.a(usb_work_q.c.obj) + .debug_frame 0x00000000000012d0 0x2c zephyr/libzephyr.a(banner.c.obj) + .debug_frame 0x00000000000012fc 0x48 zephyr/arch/arch/arm/core/libarch__arm__core.a(fatal.c.obj) + .debug_frame 0x0000000000001344 0x2c zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi.c.obj) + .debug_frame 0x0000000000001370 0x30 zephyr/arch/arch/arm/core/libarch__arm__core.a(tls.c.obj) + .debug_frame 0x00000000000013a0 0x20 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(exc_exit.c.obj) + .debug_frame 0x00000000000013c0 0xa4 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault.c.obj) + .debug_frame 0x0000000000001464 0x40 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(scb.c.obj) + .debug_frame 0x00000000000014a4 0x20 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread_abort.c.obj) + .debug_frame 0x00000000000014c4 0x6c zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + .debug_frame 0x0000000000001530 0x28 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(prep_c.c.obj) + .debug_frame 0x0000000000001558 0x74 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread.c.obj) + .debug_frame 0x00000000000015cc 0x40 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(cpu_idle.c.obj) + .debug_frame 0x000000000000160c 0x20 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_init.c.obj) + .debug_frame 0x000000000000162c 0x2c zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(isr_wrapper.c.obj) + .debug_frame 0x0000000000001658 0x3c zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_core_mpu.c.obj) + .debug_frame 0x0000000000001694 0xa8 zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_mpu.c.obj) + .debug_frame 0x000000000000173c 0x60 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .debug_frame 0x000000000000179c 0xe8 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .debug_frame 0x0000000000001884 0x30 zephyr/soc/soc/nrf52833/libsoc__nordic.a(soc.c.obj) + .debug_frame 0x00000000000018b4 0x3bc zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + .debug_frame 0x0000000000001c70 0x3b0 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + .debug_frame 0x0000000000002020 0x2c zephyr/drivers/adc/libdrivers__adc.a(adc_common.c.obj) + .debug_frame 0x000000000000204c 0xc0 zephyr/drivers/adc/libdrivers__adc.a(adc_nrfx_saadc.c.obj) + .debug_frame 0x000000000000210c 0x21c zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .debug_frame 0x0000000000002328 0x54 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .debug_frame 0x000000000000237c 0x120 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + .debug_frame 0x000000000000249c 0x60 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_nrf.c.obj) + .debug_frame 0x00000000000024fc 0x88 zephyr/drivers/sensor/nordic/temp/libdrivers__sensor__nordic__temp.a(temp_nrf5.c.obj) + .debug_frame 0x0000000000002584 0x258 zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .debug_frame 0x00000000000027dc 0x68 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(system_nrf52833.c.obj) + .debug_frame 0x0000000000002844 0x40 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_glue.c.obj) + .debug_frame 0x0000000000002884 0x58 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_flag32_allocator.c.obj) + .debug_frame 0x00000000000028dc 0x100 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_clock.c.obj) + .debug_frame 0x00000000000029dc 0x40c modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .debug_frame 0x0000000000002de8 0x1d0 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + .debug_frame 0x0000000000002fb8 0x98 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_temp.c.obj) + .debug_frame 0x0000000000003050 0x434 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .debug_frame 0x0000000000003484 0x48 modules/segger/libmodules__segger.a(SEGGER_RTT_zephyr.c.obj) + .debug_frame 0x00000000000034cc 0x20 zephyr/kernel/libkernel.a(busy_wait.c.obj) + .debug_frame 0x00000000000034ec 0x64 zephyr/kernel/libkernel.a(device.c.obj) + .debug_frame 0x0000000000003550 0x78 zephyr/kernel/libkernel.a(fatal.c.obj) + .debug_frame 0x00000000000035c8 0x11c zephyr/kernel/libkernel.a(init.c.obj) + .debug_frame 0x00000000000036e4 0x20 zephyr/kernel/libkernel.a(init_static.c.obj) + .debug_frame 0x0000000000003704 0xf0 zephyr/kernel/libkernel.a(mem_slab.c.obj) + .debug_frame 0x00000000000037f4 0x40 zephyr/kernel/libkernel.a(idle.c.obj) + .debug_frame 0x0000000000003834 0x6c zephyr/kernel/libkernel.a(mutex.c.obj) + .debug_frame 0x00000000000038a0 0x22c zephyr/kernel/libkernel.a(queue.c.obj) + .debug_frame 0x0000000000003acc 0xa4 zephyr/kernel/libkernel.a(sem.c.obj) + .debug_frame 0x0000000000003b70 0x370 zephyr/kernel/libkernel.a(work.c.obj) + .debug_frame 0x0000000000003ee0 0x178 zephyr/kernel/libkernel.a(thread.c.obj) + .debug_frame 0x0000000000004058 0x490 zephyr/kernel/libkernel.a(sched.c.obj) + .debug_frame 0x00000000000044e8 0x9c zephyr/kernel/libkernel.a(timeslicing.c.obj) + .debug_frame 0x0000000000004584 0x40 zephyr/kernel/libkernel.a(spinlock_validate.c.obj) + .debug_frame 0x00000000000045c4 0x2c zephyr/kernel/libkernel.a(xip.c.obj) + .debug_frame 0x00000000000045f0 0x1c0 zephyr/kernel/libkernel.a(timeout.c.obj) + .debug_frame 0x00000000000047b0 0xe0 zephyr/kernel/libkernel.a(timer.c.obj) + .debug_frame 0x0000000000004890 0x4c zephyr/kernel/libkernel.a(mempool.c.obj) + .debug_frame 0x00000000000048dc 0x10c zephyr/kernel/libkernel.a(kheap.c.obj) + .debug_frame 0x00000000000049e8 0x2c zephyr/kernel/libkernel.a(system_work_q.c.obj) + .debug_frame 0x0000000000004a14 0x28 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(memcpy.c.o) + .debug_frame 0x0000000000004a3c 0x20 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(memset.c.o) + .debug_frame 0x0000000000004a5c 0x20 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(strlen.S.o) + .debug_frame 0x0000000000004a7c 0x28 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_string_strnlen.c.o) + .debug_frame 0x0000000000004aa4 0x60 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_vflprintf.c.o) + .debug_frame 0x0000000000004b04 0x24 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_mulsf3.o) + .debug_frame 0x0000000000004b28 0x4c /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_addsubsf3.o) + .debug_frame 0x0000000000004b74 0x24 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_fixsfsi.o) + .debug_frame 0x0000000000004b98 0x2c /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_aeabi_uldivmod.o) + .debug_frame 0x0000000000004bc4 0x34 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_udivmoddi4.o) + +.debug_str 0x0000000000000000 0x1097e + *(SORT_BY_ALIGNMENT(.debug_str)) + .debug_str 0x0000000000000000 0x37b zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj + 0x3be (size before relaxing) + .debug_str 0x000000000000037b 0x2c8 zephyr/CMakeFiles/offsets.dir/./arch/arm/core/offsets/offsets.c.obj + 0x3b7 (size before relaxing) + .debug_str 0x0000000000000643 0x47c app/libapp.a(main.c.obj) + 0x80f (size before relaxing) + .debug_str 0x0000000000000abf 0x450 app/libapp.a(led.c.obj) + 0xb81 (size before relaxing) + .debug_str 0x0000000000000f0f 0xa1 app/libapp.a(button.c.obj) + 0x8e5 (size before relaxing) + .debug_str 0x0000000000000fb0 0x98 app/libapp.a(actuator.c.obj) + 0x9d9 (size before relaxing) + .debug_str 0x0000000000001048 0x456 app/libapp.a(battery_adc.c.obj) + 0xe78 (size before relaxing) + .debug_str 0x000000000000149e 0x337 app/libapp.a(temperature.c.obj) + 0x616 (size before relaxing) + .debug_str 0x00000000000017d5 0x812 app/libapp.a(timer_count.c.obj) + 0x1233 (size before relaxing) + .debug_str 0x0000000000001fe7 0x3d3 zephyr/libzephyr.a(heap.c.obj) + 0x75c (size before relaxing) + .debug_str 0x00000000000023ba 0x12d zephyr/libzephyr.a(printk.c.obj) + 0x623 (size before relaxing) + .debug_str 0x00000000000024e7 0x1bd zephyr/libzephyr.a(thread_entry.c.obj) + 0x7d4 (size before relaxing) + .debug_str 0x00000000000026a4 0x60 zephyr/libzephyr.a(assert.c.obj) + 0x3ba (size before relaxing) + .debug_str 0x0000000000002704 0x4cb zephyr/libzephyr.a(onoff.c.obj) + 0x8e7 (size before relaxing) + .debug_str 0x0000000000002bcf 0x48 zephyr/libzephyr.a(notify.c.obj) + 0x3ac (size before relaxing) + .debug_str 0x0000000000002c17 0x1b2 zephyr/libzephyr.a(ring_buffer.c.obj) + 0x4d7 (size before relaxing) + .debug_str 0x0000000000002dc9 0x43 zephyr/libzephyr.a(last_section_id.c.obj) + 0x2b8 (size before relaxing) + .debug_str 0x0000000000002e0c 0x83 zephyr/libzephyr.a(configs.c.obj) + 0x254 (size before relaxing) + .debug_str 0x0000000000002e8f 0xb5 zephyr/libzephyr.a(mem_attr.c.obj) + 0x589 (size before relaxing) + .debug_str 0x0000000000002f44 0xcfc zephyr/libzephyr.a(usb_device.c.obj) + 0x1492 (size before relaxing) + .debug_str 0x0000000000003c40 0x346 zephyr/libzephyr.a(usb_descriptor.c.obj) + 0xe66 (size before relaxing) + .debug_str 0x0000000000003f86 0x1f7 zephyr/libzephyr.a(usb_transfer.c.obj) + 0x9a9 (size before relaxing) + .debug_str 0x000000000000417d 0x7af zephyr/libzephyr.a(cdc_acm.c.obj) + 0x16f7 (size before relaxing) + .debug_str 0x000000000000492c 0xdb zephyr/libzephyr.a(usb_work_q.c.obj) + 0x8ba (size before relaxing) + .debug_str 0x0000000000004a07 0x41 zephyr/libzephyr.a(banner.c.obj) + 0x2b4 (size before relaxing) + .debug_str 0x0000000000004a48 0x108 zephyr/arch/arch/arm/core/libarch__arm__core.a(fatal.c.obj) + 0x555 (size before relaxing) + .debug_str 0x0000000000004b50 0x5c zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi.c.obj) + 0x2c8 (size before relaxing) + .debug_str 0x0000000000004bac 0x48 zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi_on_reset.S.obj) + 0x9c (size before relaxing) + .debug_str 0x0000000000004bf4 0x9d zephyr/arch/arch/arm/core/libarch__arm__core.a(tls.c.obj) + 0x7ca (size before relaxing) + .debug_str 0x0000000000004c91 0xcd zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(exc_exit.c.obj) + 0x5e6 (size before relaxing) + .debug_str 0x0000000000004d5e 0x6a2 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault.c.obj) + 0xc67 (size before relaxing) + .debug_str 0x0000000000005400 0x40 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault_s.S.obj) + 0xa0 (size before relaxing) + .debug_str 0x0000000000005440 0x3e zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(reset.S.obj) + 0x9e (size before relaxing) + .debug_str 0x000000000000547e 0x11f zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(scb.c.obj) + 0x4ff (size before relaxing) + .debug_str 0x000000000000559d 0x63 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread_abort.c.obj) + 0x630 (size before relaxing) + .debug_str 0x0000000000005600 0x44 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(swap_helper.S.obj) + 0xa4 (size before relaxing) + .debug_str 0x0000000000005644 0xa4 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + 0x7f8 (size before relaxing) + .debug_str 0x00000000000056e8 0xbb zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(prep_c.c.obj) + 0x435 (size before relaxing) + .debug_str 0x00000000000057a3 0x10a zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread.c.obj) + 0x764 (size before relaxing) + .debug_str 0x00000000000058ad 0x78 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(cpu_idle.c.obj) + 0x3b5 (size before relaxing) + .debug_str 0x0000000000005925 0x41 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_init.c.obj) + 0x697 (size before relaxing) + .debug_str 0x0000000000005966 0x44 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(isr_wrapper.c.obj) + 0x334 (size before relaxing) + .debug_str 0x00000000000059aa 0x48 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(__aeabi_read_tp.S.obj) + 0xa8 (size before relaxing) + .debug_str 0x00000000000059f2 0x16f zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_core_mpu.c.obj) + 0x712 (size before relaxing) + .debug_str 0x0000000000005b61 0x26a zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_mpu.c.obj) + 0x8f2 (size before relaxing) + .debug_str 0x0000000000005dcb 0x43 zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_mpu_regions.c.obj) + 0x3e2 (size before relaxing) + .debug_str 0x0000000000005e0e 0xb1 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + 0x5b6 (size before relaxing) + .debug_str 0x0000000000005ebf 0x2c1 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + 0x84c (size before relaxing) + .debug_str 0x0000000000006180 0x130 zephyr/soc/soc/nrf52833/libsoc__nordic.a(soc.c.obj) + 0x50e (size before relaxing) + .debug_str 0x00000000000062b0 0x151e zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + 0x25a6 (size before relaxing) + .debug_str 0x00000000000077ce 0x6f9 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + 0x1bad (size before relaxing) + .debug_str 0x0000000000007ec7 0x48 zephyr/drivers/adc/libdrivers__adc.a(adc_common.c.obj) + 0x403 (size before relaxing) + .debug_str 0x0000000000007f0f 0x1233 zephyr/drivers/adc/libdrivers__adc.a(adc_nrfx_saadc.c.obj) + 0x1d34 (size before relaxing) + .debug_str 0x0000000000009142 0xc0c zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + 0x19c8 (size before relaxing) + .debug_str 0x0000000000009d4e 0xfe zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + 0x6c8 (size before relaxing) + .debug_str 0x0000000000009e4c 0x811 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + 0x1659 (size before relaxing) + .debug_str 0x000000000000a65d 0x2ff zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_nrf.c.obj) + 0x7b8 (size before relaxing) + .debug_str 0x000000000000a95c 0xdf5 zephyr/drivers/sensor/nordic/temp/libdrivers__sensor__nordic__temp.a(temp_nrf5.c.obj) + 0x1911 (size before relaxing) + .debug_str 0x000000000000b751 0x97e zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + 0x15fb (size before relaxing) + .debug_str 0x000000000000c0cf 0x166 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(system_nrf52833.c.obj) + 0x8f9 (size before relaxing) + .debug_str 0x000000000000c235 0x7b modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_glue.c.obj) + 0x4cf (size before relaxing) + .debug_str 0x000000000000c2b0 0xa6 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_flag32_allocator.c.obj) + 0x51a (size before relaxing) + .debug_str 0x000000000000c356 0x1ee modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_clock.c.obj) + 0x118e (size before relaxing) + .debug_str 0x000000000000c544 0x11b0 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + 0x249a (size before relaxing) + .debug_str 0x000000000000d6f4 0x932 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + 0x167d (size before relaxing) + .debug_str 0x000000000000e026 0x172 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_temp.c.obj) + 0xc77 (size before relaxing) + .debug_str 0x000000000000e198 0x525 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + 0x801 (size before relaxing) + .debug_str 0x000000000000e6bd 0x7c modules/segger/libmodules__segger.a(SEGGER_RTT_zephyr.c.obj) + 0x615 (size before relaxing) + .debug_str 0x000000000000e739 0x32 zephyr/kernel/libkernel.a(busy_wait.c.obj) + 0x2e1 (size before relaxing) + .debug_str 0x000000000000e76b 0xb6 zephyr/kernel/libkernel.a(device.c.obj) + 0x3c8 (size before relaxing) + .debug_str 0x000000000000e821 0x8b zephyr/kernel/libkernel.a(fatal.c.obj) + 0x833 (size before relaxing) + .debug_str 0x000000000000e8ac 0x53a zephyr/kernel/libkernel.a(init.c.obj) + 0x110b (size before relaxing) + .debug_str 0x000000000000ede6 0x34 zephyr/kernel/libkernel.a(init_static.c.obj) + 0x213 (size before relaxing) + .debug_str 0x000000000000ee1a 0x26b zephyr/kernel/libkernel.a(mem_slab.c.obj) + 0xc64 (size before relaxing) + .debug_str 0x000000000000f085 0x51 zephyr/kernel/libkernel.a(idle.c.obj) + 0x6aa (size before relaxing) + .debug_str 0x000000000000f0d6 0x12c zephyr/kernel/libkernel.a(mutex.c.obj) + 0xada (size before relaxing) + .debug_str 0x000000000000f202 0x33c zephyr/kernel/libkernel.a(queue.c.obj) + 0xd82 (size before relaxing) + .debug_str 0x000000000000f53e 0x3f zephyr/kernel/libkernel.a(sem.c.obj) + 0xa7c (size before relaxing) + .debug_str 0x000000000000f57d 0x68e zephyr/kernel/libkernel.a(work.c.obj) + 0x139c (size before relaxing) + .debug_str 0x000000000000fc0b 0x22e zephyr/kernel/libkernel.a(thread.c.obj) + 0xbb8 (size before relaxing) + .debug_str 0x000000000000fe39 0x65a zephyr/kernel/libkernel.a(sched.c.obj) + 0x1369 (size before relaxing) + .debug_str 0x0000000000010493 0xbd zephyr/kernel/libkernel.a(timeslicing.c.obj) + 0xac4 (size before relaxing) + .debug_str 0x0000000000010550 0x3f zephyr/kernel/libkernel.a(spinlock_validate.c.obj) + 0x5d4 (size before relaxing) + .debug_str 0x000000000001058f 0xa5 zephyr/kernel/libkernel.a(xip.c.obj) + 0x333 (size before relaxing) + .debug_str 0x0000000000010634 0x133 zephyr/kernel/libkernel.a(timeout.c.obj) + 0x975 (size before relaxing) + .debug_str 0x0000000000010767 0x6c zephyr/kernel/libkernel.a(timer.c.obj) + 0xb01 (size before relaxing) + .debug_str 0x00000000000107d3 0x89 zephyr/kernel/libkernel.a(mempool.c.obj) + 0x634 (size before relaxing) + .debug_str 0x000000000001085c 0xc2 zephyr/kernel/libkernel.a(kheap.c.obj) + 0x934 (size before relaxing) + .debug_str 0x000000000001091e 0x60 zephyr/kernel/libkernel.a(system_work_q.c.obj) + 0x87d (size before relaxing) + +.debug_loc 0x0000000000000000 0x46a1d + *(SORT_BY_ALIGNMENT(.debug_loc)) + .debug_loc 0x0000000000000000 0x19b app/libapp.a(main.c.obj) + .debug_loc 0x000000000000019b 0x9cb app/libapp.a(led.c.obj) + .debug_loc 0x0000000000000b66 0x2cc app/libapp.a(button.c.obj) + .debug_loc 0x0000000000000e32 0x9b1 app/libapp.a(actuator.c.obj) + .debug_loc 0x00000000000017e3 0x63b app/libapp.a(battery_adc.c.obj) + .debug_loc 0x0000000000001e1e 0x7b app/libapp.a(temperature.c.obj) + .debug_loc 0x0000000000001e99 0x65f app/libapp.a(timer_count.c.obj) + .debug_loc 0x00000000000024f8 0x59d0 zephyr/libzephyr.a(heap.c.obj) + .debug_loc 0x0000000000007ec8 0x19e zephyr/libzephyr.a(printk.c.obj) + .debug_loc 0x0000000000008066 0xd7 zephyr/libzephyr.a(thread_entry.c.obj) + .debug_loc 0x000000000000813d 0x51 zephyr/libzephyr.a(assert.c.obj) + .debug_loc 0x000000000000818e 0x3112 zephyr/libzephyr.a(onoff.c.obj) + .debug_loc 0x000000000000b2a0 0x20b zephyr/libzephyr.a(notify.c.obj) + .debug_loc 0x000000000000b4ab 0x15e8 zephyr/libzephyr.a(ring_buffer.c.obj) + .debug_loc 0x000000000000ca93 0x6f zephyr/libzephyr.a(mem_attr.c.obj) + .debug_loc 0x000000000000cb02 0x222b zephyr/libzephyr.a(usb_device.c.obj) + .debug_loc 0x000000000000ed2d 0x9b1 zephyr/libzephyr.a(usb_descriptor.c.obj) + .debug_loc 0x000000000000f6de 0x9f0 zephyr/libzephyr.a(usb_transfer.c.obj) + .debug_loc 0x00000000000100ce 0x1729 zephyr/libzephyr.a(cdc_acm.c.obj) + .debug_loc 0x00000000000117f7 0x34 zephyr/libzephyr.a(usb_work_q.c.obj) + .debug_loc 0x000000000001182b 0x16e zephyr/arch/arch/arm/core/libarch__arm__core.a(fatal.c.obj) + .debug_loc 0x0000000000011999 0x85 zephyr/arch/arch/arm/core/libarch__arm__core.a(tls.c.obj) + .debug_loc 0x0000000000011a1e 0xaa2 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault.c.obj) + .debug_loc 0x00000000000124c0 0x230 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(scb.c.obj) + .debug_loc 0x00000000000126f0 0x57 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread_abort.c.obj) + .debug_loc 0x0000000000012747 0x231 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + .debug_loc 0x0000000000012978 0x218 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread.c.obj) + .debug_loc 0x0000000000012b90 0x56 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(cpu_idle.c.obj) + .debug_loc 0x0000000000012be6 0x6a zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_init.c.obj) + .debug_loc 0x0000000000012c50 0x3f zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(isr_wrapper.c.obj) + .debug_loc 0x0000000000012c8f 0x7b zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_core_mpu.c.obj) + .debug_loc 0x0000000000012d0a 0xdf2 zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_mpu.c.obj) + .debug_loc 0x0000000000013afc 0x112 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .debug_loc 0x0000000000013c0e 0x75f zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .debug_loc 0x000000000001436d 0xd9 zephyr/soc/soc/nrf52833/libsoc__nordic.a(soc.c.obj) + .debug_loc 0x0000000000014446 0x375e zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + .debug_loc 0x0000000000017ba4 0x29f1 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + .debug_loc 0x000000000001a595 0xb9 zephyr/drivers/adc/libdrivers__adc.a(adc_common.c.obj) + .debug_loc 0x000000000001a64e 0x19ef zephyr/drivers/adc/libdrivers__adc.a(adc_nrfx_saadc.c.obj) + .debug_loc 0x000000000001c03d 0x2a48 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .debug_loc 0x000000000001ea85 0x7c zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .debug_loc 0x000000000001eb01 0x1bde zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + .debug_loc 0x00000000000206df 0x1dc zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_nrf.c.obj) + .debug_loc 0x00000000000208bb 0x4b3 zephyr/drivers/sensor/nordic/temp/libdrivers__sensor__nordic__temp.a(temp_nrf5.c.obj) + .debug_loc 0x0000000000020d6e 0x22b7 zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .debug_loc 0x0000000000023025 0x154 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(system_nrf52833.c.obj) + .debug_loc 0x0000000000023179 0x258 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_glue.c.obj) + .debug_loc 0x00000000000233d1 0x357 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_flag32_allocator.c.obj) + .debug_loc 0x0000000000023728 0xbe3 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_clock.c.obj) + .debug_loc 0x000000000002430b 0x8220 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .debug_loc 0x000000000002c52b 0xde3 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + .debug_loc 0x000000000002d30e 0x647 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_temp.c.obj) + .debug_loc 0x000000000002d955 0x2c23 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .debug_loc 0x0000000000030578 0x6b modules/segger/libmodules__segger.a(SEGGER_RTT_zephyr.c.obj) + .debug_loc 0x00000000000305e3 0x25 zephyr/kernel/libkernel.a(busy_wait.c.obj) + .debug_loc 0x0000000000030608 0xc8 zephyr/kernel/libkernel.a(device.c.obj) + .debug_loc 0x00000000000306d0 0x1d5 zephyr/kernel/libkernel.a(fatal.c.obj) + .debug_loc 0x00000000000308a5 0x975 zephyr/kernel/libkernel.a(init.c.obj) + .debug_loc 0x000000000003121a 0xcfb zephyr/kernel/libkernel.a(mem_slab.c.obj) + .debug_loc 0x0000000000031f15 0x11e zephyr/kernel/libkernel.a(idle.c.obj) + .debug_loc 0x0000000000032033 0xcce zephyr/kernel/libkernel.a(mutex.c.obj) + .debug_loc 0x0000000000032d01 0x26e9 zephyr/kernel/libkernel.a(queue.c.obj) + .debug_loc 0x00000000000353ea 0xb77 zephyr/kernel/libkernel.a(sem.c.obj) + .debug_loc 0x0000000000035f61 0x5ba9 zephyr/kernel/libkernel.a(work.c.obj) + .debug_loc 0x000000000003bb0a 0xcd3 zephyr/kernel/libkernel.a(thread.c.obj) + .debug_loc 0x000000000003c7dd 0x65f9 zephyr/kernel/libkernel.a(sched.c.obj) + .debug_loc 0x0000000000042dd6 0x553 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .debug_loc 0x0000000000043329 0xd1 zephyr/kernel/libkernel.a(spinlock_validate.c.obj) + .debug_loc 0x00000000000433fa 0x1c69 zephyr/kernel/libkernel.a(timeout.c.obj) + .debug_loc 0x0000000000045063 0xbad zephyr/kernel/libkernel.a(timer.c.obj) + .debug_loc 0x0000000000045c10 0x2e5 zephyr/kernel/libkernel.a(mempool.c.obj) + .debug_loc 0x0000000000045ef5 0xb28 zephyr/kernel/libkernel.a(kheap.c.obj) + +.debug_macinfo + *(SORT_BY_ALIGNMENT(.debug_macinfo)) + +.debug_weaknames + *(SORT_BY_ALIGNMENT(.debug_weaknames)) + +.debug_funcnames + *(SORT_BY_ALIGNMENT(.debug_funcnames)) + +.debug_typenames + *(SORT_BY_ALIGNMENT(.debug_typenames)) + +.debug_varnames + *(SORT_BY_ALIGNMENT(.debug_varnames)) + +.debug_pubtypes + *(SORT_BY_ALIGNMENT(.debug_pubtypes)) + +.debug_ranges 0x0000000000000000 0xf1b0 + *(SORT_BY_ALIGNMENT(.debug_ranges)) + .debug_ranges 0x0000000000000000 0x20 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(swap_helper.S.obj) + .debug_ranges 0x0000000000000020 0x10 zephyr/CMakeFiles/offsets.dir/./arch/arm/core/offsets/offsets.c.obj + .debug_ranges 0x0000000000000030 0x30 app/libapp.a(main.c.obj) + .debug_ranges 0x0000000000000060 0x190 app/libapp.a(led.c.obj) + .debug_ranges 0x00000000000001f0 0xb0 app/libapp.a(button.c.obj) + .debug_ranges 0x00000000000002a0 0x330 app/libapp.a(actuator.c.obj) + .debug_ranges 0x00000000000005d0 0xf0 app/libapp.a(battery_adc.c.obj) + .debug_ranges 0x00000000000006c0 0x18 app/libapp.a(temperature.c.obj) + .debug_ranges 0x00000000000006d8 0x2c0 app/libapp.a(timer_count.c.obj) + .debug_ranges 0x0000000000000998 0xf70 zephyr/libzephyr.a(heap.c.obj) + .debug_ranges 0x0000000000001908 0x88 zephyr/libzephyr.a(printk.c.obj) + .debug_ranges 0x0000000000001990 0x28 zephyr/libzephyr.a(thread_entry.c.obj) + .debug_ranges 0x00000000000019b8 0x18 zephyr/libzephyr.a(assert.c.obj) + .debug_ranges 0x00000000000019d0 0x788 zephyr/libzephyr.a(onoff.c.obj) + .debug_ranges 0x0000000000002158 0x38 zephyr/libzephyr.a(notify.c.obj) + .debug_ranges 0x0000000000002190 0x250 zephyr/libzephyr.a(ring_buffer.c.obj) + .debug_ranges 0x00000000000023e0 0x10 zephyr/libzephyr.a(configs.c.obj) + .debug_ranges 0x00000000000023f0 0x18 zephyr/libzephyr.a(mem_attr.c.obj) + .debug_ranges 0x0000000000002408 0x618 zephyr/libzephyr.a(usb_device.c.obj) + .debug_ranges 0x0000000000002a20 0x208 zephyr/libzephyr.a(usb_descriptor.c.obj) + .debug_ranges 0x0000000000002c28 0x260 zephyr/libzephyr.a(usb_transfer.c.obj) + .debug_ranges 0x0000000000002e88 0x320 zephyr/libzephyr.a(cdc_acm.c.obj) + .debug_ranges 0x00000000000031a8 0x10 zephyr/libzephyr.a(usb_work_q.c.obj) + .debug_ranges 0x00000000000031b8 0x10 zephyr/libzephyr.a(banner.c.obj) + .debug_ranges 0x00000000000031c8 0x20 zephyr/arch/arch/arm/core/libarch__arm__core.a(fatal.c.obj) + .debug_ranges 0x00000000000031e8 0x10 zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi.c.obj) + .debug_ranges 0x00000000000031f8 0x48 zephyr/arch/arch/arm/core/libarch__arm__core.a(tls.c.obj) + .debug_ranges 0x0000000000003240 0x10 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(exc_exit.c.obj) + .debug_ranges 0x0000000000003250 0x180 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault.c.obj) + .debug_ranges 0x00000000000033d0 0x60 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(scb.c.obj) + .debug_ranges 0x0000000000003430 0x10 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread_abort.c.obj) + .debug_ranges 0x0000000000003440 0x48 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + .debug_ranges 0x0000000000003488 0x28 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(prep_c.c.obj) + .debug_ranges 0x00000000000034b0 0x30 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread.c.obj) + .debug_ranges 0x00000000000034e0 0x20 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(cpu_idle.c.obj) + .debug_ranges 0x0000000000003500 0x38 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_init.c.obj) + .debug_ranges 0x0000000000003538 0x28 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(isr_wrapper.c.obj) + .debug_ranges 0x0000000000003560 0x18 zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_core_mpu.c.obj) + .debug_ranges 0x0000000000003578 0x5e8 zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_mpu.c.obj) + .debug_ranges 0x0000000000003b60 0x40 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .debug_ranges 0x0000000000003ba0 0x200 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .debug_ranges 0x0000000000003da0 0x18 zephyr/soc/soc/nrf52833/libsoc__nordic.a(soc.c.obj) + .debug_ranges 0x0000000000003db8 0xdf0 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + .debug_ranges 0x0000000000004ba8 0xb38 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + .debug_ranges 0x00000000000056e0 0x30 zephyr/drivers/adc/libdrivers__adc.a(adc_common.c.obj) + .debug_ranges 0x0000000000005710 0x528 zephyr/drivers/adc/libdrivers__adc.a(adc_nrfx_saadc.c.obj) + .debug_ranges 0x0000000000005c38 0x780 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .debug_ranges 0x00000000000063b8 0x38 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .debug_ranges 0x00000000000063f0 0x3e8 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + .debug_ranges 0x00000000000067d8 0x48 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_nrf.c.obj) + .debug_ranges 0x0000000000006820 0x70 zephyr/drivers/sensor/nordic/temp/libdrivers__sensor__nordic__temp.a(temp_nrf5.c.obj) + .debug_ranges 0x0000000000006890 0x7d8 zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .debug_ranges 0x0000000000007068 0x108 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(system_nrf52833.c.obj) + .debug_ranges 0x0000000000007170 0x20 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_glue.c.obj) + .debug_ranges 0x0000000000007190 0x68 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_flag32_allocator.c.obj) + .debug_ranges 0x00000000000071f8 0x328 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_clock.c.obj) + .debug_ranges 0x0000000000007520 0x17a0 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .debug_ranges 0x0000000000008cc0 0x580 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + .debug_ranges 0x0000000000009240 0xe8 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_temp.c.obj) + .debug_ranges 0x0000000000009328 0x510 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .debug_ranges 0x0000000000009838 0x20 modules/segger/libmodules__segger.a(SEGGER_RTT_zephyr.c.obj) + .debug_ranges 0x0000000000009858 0x10 zephyr/kernel/libkernel.a(busy_wait.c.obj) + .debug_ranges 0x0000000000009868 0x90 zephyr/kernel/libkernel.a(device.c.obj) + .debug_ranges 0x00000000000098f8 0x70 zephyr/kernel/libkernel.a(fatal.c.obj) + .debug_ranges 0x0000000000009968 0x360 zephyr/kernel/libkernel.a(init.c.obj) + .debug_ranges 0x0000000000009cc8 0x10 zephyr/kernel/libkernel.a(init_static.c.obj) + .debug_ranges 0x0000000000009cd8 0x300 zephyr/kernel/libkernel.a(mem_slab.c.obj) + .debug_ranges 0x0000000000009fd8 0x78 zephyr/kernel/libkernel.a(idle.c.obj) + .debug_ranges 0x000000000000a050 0x238 zephyr/kernel/libkernel.a(mutex.c.obj) + .debug_ranges 0x000000000000a288 0x888 zephyr/kernel/libkernel.a(queue.c.obj) + .debug_ranges 0x000000000000ab10 0x410 zephyr/kernel/libkernel.a(sem.c.obj) + .debug_ranges 0x000000000000af20 0x1018 zephyr/kernel/libkernel.a(work.c.obj) + .debug_ranges 0x000000000000bf38 0x218 zephyr/kernel/libkernel.a(thread.c.obj) + .debug_ranges 0x000000000000c150 0x2040 zephyr/kernel/libkernel.a(sched.c.obj) + .debug_ranges 0x000000000000e190 0x170 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .debug_ranges 0x000000000000e300 0x20 zephyr/kernel/libkernel.a(spinlock_validate.c.obj) + .debug_ranges 0x000000000000e320 0x10 zephyr/kernel/libkernel.a(xip.c.obj) + .debug_ranges 0x000000000000e330 0x980 zephyr/kernel/libkernel.a(timeout.c.obj) + .debug_ranges 0x000000000000ecb0 0x298 zephyr/kernel/libkernel.a(timer.c.obj) + .debug_ranges 0x000000000000ef48 0x30 zephyr/kernel/libkernel.a(mempool.c.obj) + .debug_ranges 0x000000000000ef78 0x228 zephyr/kernel/libkernel.a(kheap.c.obj) + .debug_ranges 0x000000000000f1a0 0x10 zephyr/kernel/libkernel.a(system_work_q.c.obj) + +.debug_addr + *(SORT_BY_ALIGNMENT(.debug_addr)) + +.debug_line_str + *(SORT_BY_ALIGNMENT(.debug_line_str)) + +.debug_loclists + *(SORT_BY_ALIGNMENT(.debug_loclists)) + +.debug_macro + *(SORT_BY_ALIGNMENT(.debug_macro)) + +.debug_names + *(SORT_BY_ALIGNMENT(.debug_names)) + +.debug_rnglists + *(SORT_BY_ALIGNMENT(.debug_rnglists)) + +.debug_str_offsets + *(SORT_BY_ALIGNMENT(.debug_str_offsets)) + +.debug_sup + *(SORT_BY_ALIGNMENT(.debug_sup)) + +/DISCARD/ + *(SORT_BY_ALIGNMENT(.note.GNU-stack)) + +.ARM.attributes + 0x0000000000000000 0x32 + *(SORT_BY_ALIGNMENT(.ARM.attributes)) + .ARM.attributes + 0x0000000000000000 0x30 zephyr/CMakeFiles/zephyr_final.dir/misc/empty_file.c.obj + .ARM.attributes + 0x0000000000000030 0x30 zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj + .ARM.attributes + 0x0000000000000060 0x30 zephyr/CMakeFiles/offsets.dir/./arch/arm/core/offsets/offsets.c.obj + .ARM.attributes + 0x0000000000000090 0x30 app/libapp.a(main.c.obj) + .ARM.attributes + 0x00000000000000c0 0x30 app/libapp.a(led.c.obj) + .ARM.attributes + 0x00000000000000f0 0x30 app/libapp.a(button.c.obj) + .ARM.attributes + 0x0000000000000120 0x30 app/libapp.a(actuator.c.obj) + .ARM.attributes + 0x0000000000000150 0x30 app/libapp.a(battery_adc.c.obj) + .ARM.attributes + 0x0000000000000180 0x30 app/libapp.a(temperature.c.obj) + .ARM.attributes + 0x00000000000001b0 0x30 app/libapp.a(timer_count.c.obj) + .ARM.attributes + 0x00000000000001e0 0x30 zephyr/libzephyr.a(heap.c.obj) + .ARM.attributes + 0x0000000000000210 0x30 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .ARM.attributes + 0x0000000000000240 0x30 zephyr/libzephyr.a(printk.c.obj) + .ARM.attributes + 0x0000000000000270 0x30 zephyr/libzephyr.a(sem.c.obj) + .ARM.attributes + 0x00000000000002a0 0x30 zephyr/libzephyr.a(thread_entry.c.obj) + .ARM.attributes + 0x00000000000002d0 0x30 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .ARM.attributes + 0x0000000000000300 0x30 zephyr/libzephyr.a(assert.c.obj) + .ARM.attributes + 0x0000000000000330 0x30 zephyr/libzephyr.a(dec.c.obj) + .ARM.attributes + 0x0000000000000360 0x30 zephyr/libzephyr.a(hex.c.obj) + .ARM.attributes + 0x0000000000000390 0x30 zephyr/libzephyr.a(rb.c.obj) + .ARM.attributes + 0x00000000000003c0 0x30 zephyr/libzephyr.a(timeutil.c.obj) + .ARM.attributes + 0x00000000000003f0 0x30 zephyr/libzephyr.a(bitarray.c.obj) + .ARM.attributes + 0x0000000000000420 0x30 zephyr/libzephyr.a(onoff.c.obj) + .ARM.attributes + 0x0000000000000450 0x30 zephyr/libzephyr.a(notify.c.obj) + .ARM.attributes + 0x0000000000000480 0x30 zephyr/libzephyr.a(ring_buffer.c.obj) + .ARM.attributes + 0x00000000000004b0 0x30 zephyr/libzephyr.a(last_section_id.c.obj) + .ARM.attributes + 0x00000000000004e0 0x30 zephyr/libzephyr.a(configs.c.obj) + .ARM.attributes + 0x0000000000000510 0x30 zephyr/libzephyr.a(mem_attr.c.obj) + .ARM.attributes + 0x0000000000000540 0x30 zephyr/libzephyr.a(tracing_none.c.obj) + .ARM.attributes + 0x0000000000000570 0x30 zephyr/libzephyr.a(usb_device.c.obj) + .ARM.attributes + 0x00000000000005a0 0x30 zephyr/libzephyr.a(usb_descriptor.c.obj) + .ARM.attributes + 0x00000000000005d0 0x30 zephyr/libzephyr.a(usb_transfer.c.obj) + .ARM.attributes + 0x0000000000000600 0x30 zephyr/libzephyr.a(cdc_acm.c.obj) + .ARM.attributes + 0x0000000000000630 0x30 zephyr/libzephyr.a(usb_work_q.c.obj) + .ARM.attributes + 0x0000000000000660 0x30 zephyr/libzephyr.a(banner.c.obj) + .ARM.attributes + 0x0000000000000690 0x30 zephyr/libzephyr.a(flash_map_partition_manager.c.obj) + .ARM.attributes + 0x00000000000006c0 0x30 zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .ARM.attributes + 0x00000000000006f0 0x30 zephyr/arch/arch/arm/core/libarch__arm__core.a(fatal.c.obj) + .ARM.attributes + 0x0000000000000720 0x30 zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi.c.obj) + .ARM.attributes + 0x0000000000000750 0x1c zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi_on_reset.S.obj) + .ARM.attributes + 0x000000000000076c 0x30 zephyr/arch/arch/arm/core/libarch__arm__core.a(tls.c.obj) + .ARM.attributes + 0x000000000000079c 0x30 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(exc_exit.c.obj) + .ARM.attributes + 0x00000000000007cc 0x30 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault.c.obj) + .ARM.attributes + 0x00000000000007fc 0x1c zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault_s.S.obj) + .ARM.attributes + 0x0000000000000818 0x30 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fpu.c.obj) + .ARM.attributes + 0x0000000000000848 0x1c zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(reset.S.obj) + .ARM.attributes + 0x0000000000000864 0x30 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(scb.c.obj) + .ARM.attributes + 0x0000000000000894 0x30 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread_abort.c.obj) + .ARM.attributes + 0x00000000000008c4 0x1e zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(vector_table.S.obj) + .ARM.attributes + 0x00000000000008e2 0x1c zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(swap_helper.S.obj) + .ARM.attributes + 0x00000000000008fe 0x30 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + .ARM.attributes + 0x000000000000092e 0x30 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(prep_c.c.obj) + .ARM.attributes + 0x000000000000095e 0x30 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread.c.obj) + .ARM.attributes + 0x000000000000098e 0x30 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(cpu_idle.c.obj) + .ARM.attributes + 0x00000000000009be 0x30 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_init.c.obj) + .ARM.attributes + 0x00000000000009ee 0x30 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(isr_wrapper.c.obj) + .ARM.attributes + 0x0000000000000a1e 0x1c zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(__aeabi_read_tp.S.obj) + .ARM.attributes + 0x0000000000000a3a 0x30 zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_core_mpu.c.obj) + .ARM.attributes + 0x0000000000000a6a 0x30 zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_mpu.c.obj) + .ARM.attributes + 0x0000000000000a9a 0x30 zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_mpu_regions.c.obj) + .ARM.attributes + 0x0000000000000aca 0x30 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .ARM.attributes + 0x0000000000000afa 0x30 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .ARM.attributes + 0x0000000000000b2a 0x30 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .ARM.attributes + 0x0000000000000b5a 0x30 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + .ARM.attributes + 0x0000000000000b8a 0x30 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .ARM.attributes + 0x0000000000000bba 0x30 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .ARM.attributes + 0x0000000000000bea 0x30 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .ARM.attributes + 0x0000000000000c1a 0x30 zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .ARM.attributes + 0x0000000000000c4a 0x30 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .ARM.attributes + 0x0000000000000c7a 0x30 zephyr/soc/soc/nrf52833/libsoc__nordic.a(validate_base_addresses.c.obj) + .ARM.attributes + 0x0000000000000caa 0x30 zephyr/soc/soc/nrf52833/libsoc__nordic.a(validate_binding_headers.c.obj) + .ARM.attributes + 0x0000000000000cda 0x30 zephyr/soc/soc/nrf52833/libsoc__nordic.a(validate_enabled_instances.c.obj) + .ARM.attributes + 0x0000000000000d0a 0x30 zephyr/soc/soc/nrf52833/libsoc__nordic.a(soc.c.obj) + .ARM.attributes + 0x0000000000000d3a 0x30 zephyr/soc/soc/nrf52833/libsoc__nordic.a(reboot.c.obj) + .ARM.attributes + 0x0000000000000d6a 0x30 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + .ARM.attributes + 0x0000000000000d9a 0x30 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + .ARM.attributes + 0x0000000000000dca 0x30 zephyr/drivers/adc/libdrivers__adc.a(adc_common.c.obj) + .ARM.attributes + 0x0000000000000dfa 0x30 zephyr/drivers/adc/libdrivers__adc.a(adc_nrfx_saadc.c.obj) + .ARM.attributes + 0x0000000000000e2a 0x30 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .ARM.attributes + 0x0000000000000e5a 0x30 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .ARM.attributes + 0x0000000000000e8a 0x30 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + .ARM.attributes + 0x0000000000000eba 0x30 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_weak_impl.c.obj) + .ARM.attributes + 0x0000000000000eea 0x30 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_nrf.c.obj) + .ARM.attributes + 0x0000000000000f1a 0x30 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .ARM.attributes + 0x0000000000000f4a 0x30 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_nrf.c.obj) + .ARM.attributes + 0x0000000000000f7a 0x30 zephyr/drivers/sensor/nordic/temp/libdrivers__sensor__nordic__temp.a(temp_nrf5.c.obj) + .ARM.attributes + 0x0000000000000faa 0x30 zephyr/drivers/serial/libdrivers__serial.a(empty_file.c.obj) + .ARM.attributes + 0x0000000000000fda 0x30 zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .ARM.attributes + 0x000000000000100a 0x30 zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .ARM.attributes + 0x000000000000103a 0x30 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(system_nrf52833.c.obj) + .ARM.attributes + 0x000000000000106a 0x30 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_glue.c.obj) + .ARM.attributes + 0x000000000000109a 0x30 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_flag32_allocator.c.obj) + .ARM.attributes + 0x00000000000010ca 0x30 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_ram_ctrl.c.obj) + .ARM.attributes + 0x00000000000010fa 0x30 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_clock.c.obj) + .ARM.attributes + 0x000000000000112a 0x30 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .ARM.attributes + 0x000000000000115a 0x30 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + .ARM.attributes + 0x000000000000118a 0x30 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_temp.c.obj) + .ARM.attributes + 0x00000000000011ba 0x30 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .ARM.attributes + 0x00000000000011ea 0x30 modules/segger/libmodules__segger.a(SEGGER_RTT_zephyr.c.obj) + .ARM.attributes + 0x000000000000121a 0x30 zephyr/kernel/libkernel.a(busy_wait.c.obj) + .ARM.attributes + 0x000000000000124a 0x30 zephyr/kernel/libkernel.a(device.c.obj) + .ARM.attributes + 0x000000000000127a 0x30 zephyr/kernel/libkernel.a(fatal.c.obj) + .ARM.attributes + 0x00000000000012aa 0x30 zephyr/kernel/libkernel.a(init.c.obj) + .ARM.attributes + 0x00000000000012da 0x30 zephyr/kernel/libkernel.a(init_static.c.obj) + .ARM.attributes + 0x000000000000130a 0x30 zephyr/kernel/libkernel.a(mem_slab.c.obj) + .ARM.attributes + 0x000000000000133a 0x30 zephyr/kernel/libkernel.a(idle.c.obj) + .ARM.attributes + 0x000000000000136a 0x30 zephyr/kernel/libkernel.a(mutex.c.obj) + .ARM.attributes + 0x000000000000139a 0x30 zephyr/kernel/libkernel.a(queue.c.obj) + .ARM.attributes + 0x00000000000013ca 0x30 zephyr/kernel/libkernel.a(sem.c.obj) + .ARM.attributes + 0x00000000000013fa 0x30 zephyr/kernel/libkernel.a(work.c.obj) + .ARM.attributes + 0x000000000000142a 0x30 zephyr/kernel/libkernel.a(thread.c.obj) + .ARM.attributes + 0x000000000000145a 0x30 zephyr/kernel/libkernel.a(sched.c.obj) + .ARM.attributes + 0x000000000000148a 0x30 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .ARM.attributes + 0x00000000000014ba 0x30 zephyr/kernel/libkernel.a(spinlock_validate.c.obj) + .ARM.attributes + 0x00000000000014ea 0x30 zephyr/kernel/libkernel.a(xip.c.obj) + .ARM.attributes + 0x000000000000151a 0x30 zephyr/kernel/libkernel.a(timeout.c.obj) + .ARM.attributes + 0x000000000000154a 0x30 zephyr/kernel/libkernel.a(timer.c.obj) + .ARM.attributes + 0x000000000000157a 0x30 zephyr/kernel/libkernel.a(mempool.c.obj) + .ARM.attributes + 0x00000000000015aa 0x30 zephyr/kernel/libkernel.a(kheap.c.obj) + .ARM.attributes + 0x00000000000015da 0x30 zephyr/kernel/libkernel.a(system_work_q.c.obj) + .ARM.attributes + 0x000000000000160a 0x1c /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(strcmp.S.o) + .ARM.attributes + 0x0000000000001626 0x32 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(memcpy.c.o) + .ARM.attributes + 0x0000000000001658 0x32 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(memset.c.o) + .ARM.attributes + 0x000000000000168a 0x17 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(strlen.S.o) + .ARM.attributes + 0x00000000000016a1 0x32 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_ctype_ctype_.c.o) + .ARM.attributes + 0x00000000000016d3 0x32 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_errno_errno.c.o) + .ARM.attributes + 0x0000000000001705 0x32 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_string_strnlen.c.o) + .ARM.attributes + 0x0000000000001737 0x32 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_puts.c.o) + .ARM.attributes + 0x0000000000001769 0x32 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_vflprintf.c.o) + .ARM.attributes + 0x000000000000179b 0x32 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_vflscanf.c.o) + .ARM.attributes + 0x00000000000017cd 0x32 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_string_strchr.c.o) + .ARM.attributes + 0x00000000000017ff 0x32 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_fgetc.c.o) + .ARM.attributes + 0x0000000000001831 0x32 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_ungetc.c.o) + .ARM.attributes + 0x0000000000001863 0x1e /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_muldf3.o) + .ARM.attributes + 0x0000000000001881 0x1e /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_mulsf3.o) + .ARM.attributes + 0x000000000000189f 0x1e /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_addsubdf3.o) + .ARM.attributes + 0x00000000000018bd 0x1e /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_muldivdf3.o) + .ARM.attributes + 0x00000000000018db 0x1e /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_truncdfsf2.o) + .ARM.attributes + 0x00000000000018f9 0x1e /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_addsubsf3.o) + .ARM.attributes + 0x0000000000001917 0x1e /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_cmpsf2.o) + .ARM.attributes + 0x0000000000001935 0x1e /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_fixsfsi.o) + .ARM.attributes + 0x0000000000001953 0x1e /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_aeabi_ldivmod.o) + .ARM.attributes + 0x0000000000001971 0x1e /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_aeabi_uldivmod.o) + .ARM.attributes + 0x000000000000198f 0x2e /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_popcountsi2.o) + .ARM.attributes + 0x00000000000019bd 0x2e /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_fixdfdi.o) + .ARM.attributes + 0x00000000000019eb 0x2e /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_fixunsdfdi.o) + .ARM.attributes + 0x0000000000001a19 0x2e /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_udivmoddi4.o) + .ARM.attributes + 0x0000000000001a47 0x1e /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_dvmd_tls.o) + .ARM.attributes + 0x0000000000001a65 0x1e /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_cmpdf2.o) + .ARM.attributes + 0x0000000000001a83 0x1e /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_fixunsdfsi.o) + *(SORT_BY_ALIGNMENT(.gnu.attributes)) + +.last_section 0x0000000000010c34 0x4 + *(SORT_BY_ALIGNMENT(.last_section)) + .last_section 0x0000000000010c34 0x4 zephyr/libzephyr.a(last_section_id.c.obj) + 0x0000000000010c38 _flash_used = ((LOADADDR (.last_section) + SIZEOF (.last_section)) - __rom_region_start) + +bss 0x0000000020000868 0x11ec + 0x0000000020000868 . = ALIGN (0x4) + 0x0000000020000868 __bss_start = . + 0x0000000020000868 __kernel_ram_start = . + *(SORT_BY_ALIGNMENT(.bss)) + *(SORT_BY_ALIGNMENT(.bss.*)) + .bss.led1_timer + 0x0000000020000868 0x38 app/libapp.a(led.c.obj) + .bss.led0_timer + 0x00000000200008a0 0x38 app/libapp.a(led.c.obj) + .bss.usb_dev 0x00000000200008d8 0xcc zephyr/libzephyr.a(usb_device.c.obj) + *fill* 0x00000000200009a4 0x4 + .bss.cdc_acm_data_devlist + 0x00000000200009a8 0x8 zephyr/libzephyr.a(cdc_acm.c.obj) + .bss.z_usb_work_q + 0x00000000200009b0 0xa0 zephyr/libzephyr.a(usb_work_q.c.obj) + 0x00000000200009b0 z_usb_work_q + .bss.usbd_ctx 0x0000000020000a50 0x290 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + .bss.usbd_work_queue + 0x0000000020000ce0 0xa0 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + .bss.cc_data 0x0000000020000d80 0x10 zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .bss.last_count + 0x0000000020000d90 0x8 zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .bss.anchor 0x0000000020000d98 0x8 zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .bss.z_idle_threads + 0x0000000020000da0 0x80 zephyr/kernel/libkernel.a(init.c.obj) + 0x0000000020000da0 z_idle_threads + .bss.z_main_thread + 0x0000000020000e20 0x80 zephyr/kernel/libkernel.a(init.c.obj) + 0x0000000020000e20 z_main_thread + .bss.pending_cancels + 0x0000000020000ea0 0x8 zephyr/kernel/libkernel.a(work.c.obj) + .bss._thread_dummy + 0x0000000020000ea8 0x80 zephyr/kernel/libkernel.a(sched.c.obj) + 0x0000000020000ea8 _thread_dummy + .bss.slice_timeouts + 0x0000000020000f28 0x18 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .bss.curr_tick + 0x0000000020000f40 0x8 zephyr/kernel/libkernel.a(timeout.c.obj) + .bss.k_sys_work_q + 0x0000000020000f48 0xa0 zephyr/kernel/libkernel.a(system_work_q.c.obj) + 0x0000000020000f48 k_sys_work_q + .bss.sample_buffer + 0x0000000020000fe8 0x4 app/libapp.a(battery_adc.c.obj) + .bss.timer_status + 0x0000000020000fec 0x4 app/libapp.a(timer_count.c.obj) + 0x0000000020000fec timer_status + .bss.count 0x0000000020000ff0 0x4 app/libapp.a(timer_count.c.obj) + 0x0000000020000ff0 count + .bss.sn.1 0x0000000020000ff4 0x12 zephyr/libzephyr.a(usb_descriptor.c.obj) + *fill* 0x0000000020001006 0x2 + .bss.ut_data 0x0000000020001008 0x100 zephyr/libzephyr.a(usb_transfer.c.obj) + .bss.z_arm_tls_ptr + 0x0000000020001108 0x4 zephyr/arch/arch/arm/core/libarch__arm__core.a(tls.c.obj) + 0x0000000020001108 z_arm_tls_ptr + .bss.dynamic_regions.0 + 0x000000002000110c 0xc zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_core_mpu.c.obj) + .bss._stdout_hook + 0x0000000020001118 0x4 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .bss.z_malloc_heap + 0x000000002000111c 0xc zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .bss.ep_isoout_bufs + 0x0000000020001128 0x400 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + .bss.ep_out_bufs + 0x0000000020001528 0x200 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + .bss.m_tx_buffer + 0x0000000020001728 0x40 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + .bss.m_ep_state + 0x0000000020001768 0x1b0 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + .bss.m_ep_dma_waiting + 0x0000000020001918 0x4 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + .bss.m_ep_ready + 0x000000002000191c 0x4 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + .bss.m_event_handler + 0x0000000020001920 0x4 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + .bss.cli.1 0x0000000020001924 0x10 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .bss.on.2 0x0000000020001934 0x4 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .bss.data 0x0000000020001938 0x58 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .bss.hfclk_users + 0x0000000020001990 0x4 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .bss.gpio_nrfx_p1_data + 0x0000000020001994 0xc zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + .bss.gpio_nrfx_p0_data + 0x00000000200019a0 0xc zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + .bss.temp_nrf5_data_0 + 0x00000000200019ac 0x2c zephyr/drivers/sensor/nordic/temp/libdrivers__sensor__nordic__temp.a(temp_nrf5.c.obj) + .bss.force_isr_mask + 0x00000000200019d8 0x4 zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .bss.int_mask 0x00000000200019dc 0x4 zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .bss.overflow_cnt + 0x00000000200019e0 0x4 zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .bss.m_clock_cb + 0x00000000200019e4 0x8 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_clock.c.obj) + .bss.m_usbevt_handler + 0x00000000200019ec 0x4 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + .bss.m_sleepevt_handler + 0x00000000200019f0 0x4 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + .bss.m_pofwarn_handler + 0x00000000200019f4 0x4 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + .bss.m_data_handler + 0x00000000200019f8 0x4 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_temp.c.obj) + .bss._kernel 0x00000000200019fc 0x20 zephyr/kernel/libkernel.a(init.c.obj) + 0x00000000200019fc _kernel + .bss.lock 0x0000000020001a1c 0x4 zephyr/kernel/libkernel.a(mutex.c.obj) + .bss.lock 0x0000000020001a20 0x4 zephyr/kernel/libkernel.a(sem.c.obj) + .bss.lock 0x0000000020001a24 0x4 zephyr/kernel/libkernel.a(work.c.obj) + .bss._sched_spinlock + 0x0000000020001a28 0x4 zephyr/kernel/libkernel.a(sched.c.obj) + 0x0000000020001a28 _sched_spinlock + .bss.pending_current + 0x0000000020001a2c 0x4 zephyr/kernel/libkernel.a(timeslicing.c.obj) + 0x0000000020001a2c pending_current + .bss.slice_expired + 0x0000000020001a30 0x1 zephyr/kernel/libkernel.a(timeslicing.c.obj) + *fill* 0x0000000020001a31 0x3 + .bss.slice_max_prio + 0x0000000020001a34 0x4 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .bss.slice_ticks + 0x0000000020001a38 0x4 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .bss.announce_remaining + 0x0000000020001a3c 0x4 zephyr/kernel/libkernel.a(timeout.c.obj) + .bss.timeout_lock + 0x0000000020001a40 0x4 zephyr/kernel/libkernel.a(timeout.c.obj) + .bss.lock 0x0000000020001a44 0x4 zephyr/kernel/libkernel.a(timer.c.obj) + .bss.initialized.0 + 0x0000000020001a48 0x1 zephyr/libzephyr.a(usb_descriptor.c.obj) + .bss.__warned.0 + 0x0000000020001a49 0x1 zephyr/libzephyr.a(cdc_acm.c.obj) + .bss.static_regions_num + 0x0000000020001a4a 0x1 zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_mpu.c.obj) + .bss.m_dma_odd + 0x0000000020001a4b 0x1 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + .bss.dma_ep 0x0000000020001a4c 0x1 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + .bss.m_last_setup_dir + 0x0000000020001a4d 0x1 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + .bss.m_bus_suspend + 0x0000000020001a4e 0x1 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + .bss.m_drv_state + 0x0000000020001a4f 0x1 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + .bss.nrfx_clock_irq_enabled + 0x0000000020001a50 0x1 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_clock.c.obj) + 0x0000000020001a50 nrfx_clock_irq_enabled + .bss.nrfx_power_irq_enabled + 0x0000000020001a51 0x1 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + 0x0000000020001a51 nrfx_power_irq_enabled + .bss.m_temp_state + 0x0000000020001a52 0x1 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_temp.c.obj) + .bss.z_sys_post_kernel + 0x0000000020001a53 0x1 zephyr/kernel/libkernel.a(init.c.obj) + 0x0000000020001a53 z_sys_post_kernel + *(SORT_BY_ALIGNMENT(COMMON)) + *(SORT_BY_ALIGNMENT(.kernel_bss.*)) + 0x0000000020001a54 __bss_end = ALIGN (0x4) + +noinit 0x0000000020001a80 0x2540 + *(SORT_BY_ALIGNMENT(.noinit)) + *(SORT_BY_ALIGNMENT(.noinit.*)) + .noinit."WEST_TOPDIR/zephyr/subsys/usb/device/usb_work_q.c".0 + 0x0000000020001a80 0x440 zephyr/libzephyr.a(usb_work_q.c.obj) + 0x0000000020001a80 z_usb_work_q_stack + .noinit."WEST_TOPDIR/zephyr/drivers/usb/device/usb_dc_nrfx.c".0 + 0x0000000020001ec0 0x440 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + .noinit."WEST_TOPDIR/zephyr/kernel/init.c".2 + 0x0000000020002300 0x840 zephyr/kernel/libkernel.a(init.c.obj) + 0x0000000020002300 z_interrupt_stacks + .noinit."WEST_TOPDIR/zephyr/kernel/init.c".1 + 0x0000000020002b40 0x180 zephyr/kernel/libkernel.a(init.c.obj) + .noinit."WEST_TOPDIR/zephyr/kernel/init.c".0 + 0x0000000020002cc0 0x440 zephyr/kernel/libkernel.a(init.c.obj) + 0x0000000020002cc0 z_main_stack + .noinit."WEST_TOPDIR/zephyr/kernel/system_work_q.c".0 + 0x0000000020003100 0x440 zephyr/kernel/libkernel.a(system_work_q.c.obj) + .noinit."WEST_TOPDIR/zephyr/subsys/usb/device/class/cdc_acm.c".1 + 0x0000000020003540 0x400 zephyr/libzephyr.a(cdc_acm.c.obj) + .noinit."WEST_TOPDIR/zephyr/subsys/usb/device/class/cdc_acm.c".0 + 0x0000000020003940 0x400 zephyr/libzephyr.a(cdc_acm.c.obj) + .noinit."WEST_TOPDIR/zephyr/drivers/usb/device/usb_dc_nrfx.c".k_mem_slab_buf_fifo_elem_slab + 0x0000000020003d40 0x280 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + 0x0000000020003d40 _k_mem_slab_buf_fifo_elem_slab + *(SORT_BY_ALIGNMENT(.kernel_noinit.*)) + 0x0000000020020000 __kernel_ram_end = 0x20020000 + 0x000000000001f798 __kernel_ram_size = (__kernel_ram_end - __kernel_ram_start) + +.last_ram_section + 0x0000000020003fc0 0x0 + 0x0000000020003fc0 _image_ram_end = . + 0x0000000000003fc0 _image_ram_size = (_image_ram_end - _image_ram_start) + 0x0000000020003fc0 _end = . + 0x0000000020003fc0 z_mapped_end = . +OUTPUT(zephyr/zephyr.elf elf32-littlearm) +LOAD linker stubs diff --git a/build/PHF000-Firmware/zephyr/zephyr_pre0.elf b/build/PHF000-Firmware/zephyr/zephyr_pre0.elf new file mode 100755 index 0000000..f43037a Binary files /dev/null and b/build/PHF000-Firmware/zephyr/zephyr_pre0.elf differ diff --git a/build/PHF000-Firmware/zephyr/zephyr_pre0.map b/build/PHF000-Firmware/zephyr/zephyr_pre0.map new file mode 100644 index 0000000..6d25c58 --- /dev/null +++ b/build/PHF000-Firmware/zephyr/zephyr_pre0.map @@ -0,0 +1,5954 @@ +Archive member included to satisfy reference by file (symbol) + +app/libapp.a(main.c.obj) (--whole-archive) +app/libapp.a(led.c.obj) (--whole-archive) +app/libapp.a(button.c.obj) (--whole-archive) +app/libapp.a(actuator.c.obj) (--whole-archive) +app/libapp.a(battery_adc.c.obj) + (--whole-archive) +app/libapp.a(temperature.c.obj) + (--whole-archive) +app/libapp.a(timer_count.c.obj) + (--whole-archive) +zephyr/libzephyr.a(heap.c.obj) + (--whole-archive) +zephyr/libzephyr.a(cbprintf_packaged.c.obj) + (--whole-archive) +zephyr/libzephyr.a(printk.c.obj) + (--whole-archive) +zephyr/libzephyr.a(sem.c.obj) + (--whole-archive) +zephyr/libzephyr.a(thread_entry.c.obj) + (--whole-archive) +zephyr/libzephyr.a(cbprintf_complete.c.obj) + (--whole-archive) +zephyr/libzephyr.a(assert.c.obj) + (--whole-archive) +zephyr/libzephyr.a(dec.c.obj) + (--whole-archive) +zephyr/libzephyr.a(hex.c.obj) + (--whole-archive) +zephyr/libzephyr.a(rb.c.obj) (--whole-archive) +zephyr/libzephyr.a(timeutil.c.obj) + (--whole-archive) +zephyr/libzephyr.a(bitarray.c.obj) + (--whole-archive) +zephyr/libzephyr.a(onoff.c.obj) + (--whole-archive) +zephyr/libzephyr.a(notify.c.obj) + (--whole-archive) +zephyr/libzephyr.a(ring_buffer.c.obj) + (--whole-archive) +zephyr/libzephyr.a(last_section_id.c.obj) + (--whole-archive) +zephyr/libzephyr.a(configs.c.obj) + (--whole-archive) +zephyr/libzephyr.a(mem_attr.c.obj) + (--whole-archive) +zephyr/libzephyr.a(tracing_none.c.obj) + (--whole-archive) +zephyr/libzephyr.a(usb_device.c.obj) + (--whole-archive) +zephyr/libzephyr.a(usb_descriptor.c.obj) + (--whole-archive) +zephyr/libzephyr.a(usb_transfer.c.obj) + (--whole-archive) +zephyr/libzephyr.a(cdc_acm.c.obj) + (--whole-archive) +zephyr/libzephyr.a(usb_work_q.c.obj) + (--whole-archive) +zephyr/libzephyr.a(banner.c.obj) + (--whole-archive) +zephyr/libzephyr.a(flash_map_partition_manager.c.obj) + (--whole-archive) +zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/libarch__arm__core.a(fatal.c.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi.c.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi_on_reset.S.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/libarch__arm__core.a(tls.c.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(exc_exit.c.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault.c.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault_s.S.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fpu.c.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(reset.S.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(scb.c.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread_abort.c.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(vector_table.S.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(swap_helper.S.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(prep_c.c.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread.c.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(cpu_idle.c.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_init.c.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(isr_wrapper.c.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(__aeabi_read_tp.S.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_core_mpu.c.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_mpu.c.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_mpu_regions.c.obj) + (--whole-archive) +zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + (--whole-archive) +zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + (--whole-archive) +zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + (--whole-archive) +zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + (--whole-archive) +zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + (--whole-archive) +zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + (--whole-archive) +zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + (--whole-archive) +zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + (--whole-archive) +zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + (--whole-archive) +zephyr/soc/soc/nrf52833/libsoc__nordic.a(validate_base_addresses.c.obj) + (--whole-archive) +zephyr/soc/soc/nrf52833/libsoc__nordic.a(validate_binding_headers.c.obj) + (--whole-archive) +zephyr/soc/soc/nrf52833/libsoc__nordic.a(validate_enabled_instances.c.obj) + (--whole-archive) +zephyr/soc/soc/nrf52833/libsoc__nordic.a(soc.c.obj) + (--whole-archive) +zephyr/soc/soc/nrf52833/libsoc__nordic.a(reboot.c.obj) + (--whole-archive) +zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + (--whole-archive) +zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + (--whole-archive) +zephyr/drivers/adc/libdrivers__adc.a(adc_common.c.obj) + (--whole-archive) +zephyr/drivers/adc/libdrivers__adc.a(adc_nrfx_saadc.c.obj) + (--whole-archive) +zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + (--whole-archive) +zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + (--whole-archive) +zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + (--whole-archive) +zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_weak_impl.c.obj) + (--whole-archive) +zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_nrf.c.obj) + (--whole-archive) +zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + (--whole-archive) +zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_nrf.c.obj) + (--whole-archive) +zephyr/drivers/sensor/nordic/temp/libdrivers__sensor__nordic__temp.a(temp_nrf5.c.obj) + (--whole-archive) +zephyr/drivers/serial/libdrivers__serial.a(empty_file.c.obj) + (--whole-archive) +zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + (--whole-archive) +zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + (--whole-archive) +modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(system_nrf52833.c.obj) + (--whole-archive) +modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_glue.c.obj) + (--whole-archive) +modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_flag32_allocator.c.obj) + (--whole-archive) +modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_ram_ctrl.c.obj) + (--whole-archive) +modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_clock.c.obj) + (--whole-archive) +modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + (--whole-archive) +modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + (--whole-archive) +modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_temp.c.obj) + (--whole-archive) +modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + (--whole-archive) +modules/segger/libmodules__segger.a(SEGGER_RTT_zephyr.c.obj) + (--whole-archive) +zephyr/kernel/libkernel.a(busy_wait.c.obj) + zephyr/libzephyr.a(cdc_acm.c.obj) (z_impl_k_busy_wait) +zephyr/kernel/libkernel.a(device.c.obj) + app/libapp.a(led.c.obj) (z_impl_device_is_ready) +zephyr/kernel/libkernel.a(fatal.c.obj) + zephyr/arch/arch/arm/core/libarch__arm__core.a(fatal.c.obj) (z_fatal_error) +zephyr/kernel/libkernel.a(init.c.obj) + zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) (z_sys_post_kernel) +zephyr/kernel/libkernel.a(init_static.c.obj) + zephyr/kernel/libkernel.a(init.c.obj) (z_init_static) +zephyr/kernel/libkernel.a(mem_slab.c.obj) + zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) (k_mem_slab_alloc) +zephyr/kernel/libkernel.a(idle.c.obj) + zephyr/kernel/libkernel.a(init.c.obj) (idle) +zephyr/kernel/libkernel.a(mutex.c.obj) + zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) (z_impl_k_mutex_init) +zephyr/kernel/libkernel.a(queue.c.obj) + zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) (k_queue_append) +zephyr/kernel/libkernel.a(sem.c.obj) + zephyr/libzephyr.a(sem.c.obj) (z_impl_k_sem_init) +zephyr/kernel/libkernel.a(work.c.obj) + zephyr/libzephyr.a(usb_transfer.c.obj) (k_work_init) +zephyr/kernel/libkernel.a(thread.c.obj) + zephyr/libzephyr.a(usb_device.c.obj) (k_is_in_isr) +zephyr/kernel/libkernel.a(sched.c.obj) + zephyr/kernel/libkernel.a(init.c.obj) (z_ready_thread) +zephyr/kernel/libkernel.a(timeslicing.c.obj) + zephyr/kernel/libkernel.a(sched.c.obj) (z_reset_time_slice) +zephyr/kernel/libkernel.a(spinlock_validate.c.obj) + zephyr/libzephyr.a(bitarray.c.obj) (z_spin_lock_valid) +zephyr/kernel/libkernel.a(xip.c.obj) + zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(prep_c.c.obj) (z_data_copy) +zephyr/kernel/libkernel.a(timeout.c.obj) + zephyr/kernel/libkernel.a(init.c.obj) (z_add_timeout) +zephyr/kernel/libkernel.a(timer.c.obj) + zephyr/drivers/adc/libdrivers__adc.a(adc_nrfx_saadc.c.obj) (z_timer_expiration_handler) +zephyr/kernel/libkernel.a(mempool.c.obj) + zephyr/kernel/libkernel.a(queue.c.obj) (k_free) +zephyr/kernel/libkernel.a(kheap.c.obj) + zephyr/kernel/libkernel.a(mempool.c.obj) (k_heap_aligned_alloc) +zephyr/kernel/libkernel.a(system_work_q.c.obj) + zephyr/kernel/libkernel.a(work.c.obj) (k_sys_work_q) +zephyr/arch/common/libisr_tables.a(isr_tables.c.obj) + zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(isr_wrapper.c.obj) (_sw_isr_table) +/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(strcmp.S.o) + zephyr/kernel/libkernel.a(device.c.obj) (strcmp) +/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(memcpy.c.o) + zephyr/libzephyr.a(heap.c.obj) (memcpy) +/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(memset.c.o) + zephyr/libzephyr.a(heap.c.obj) (memset) +/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(strlen.S.o) + zephyr/libzephyr.a(cbprintf_packaged.c.obj) (strlen) +/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_ctype_ctype_.c.o) + zephyr/libzephyr.a(cbprintf_complete.c.obj) (_ctype_) +/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_errno_errno.c.o) + zephyr/libzephyr.a(timeutil.c.obj) (errno) +/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_string_strnlen.c.o) + zephyr/libzephyr.a(cbprintf_complete.c.obj) (strnlen) +/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_puts.c.o) + zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) (puts) +/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_vflprintf.c.o) + (__l_vfprintf) +/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_vflscanf.c.o) + (__l_vfscanf) +/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_string_strchr.c.o) + /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_vflscanf.c.o) (strchr) +/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_fgetc.c.o) + /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_vflscanf.c.o) (fgetc) +/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_ungetc.c.o) + /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_vflscanf.c.o) (ungetc) +/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_muldf3.o) + zephyr/libzephyr.a(timeutil.c.obj) (__aeabi_dmul) +/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_mulsf3.o) + app/libapp.a(battery_adc.c.obj) (__aeabi_fmul) +/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_addsubdf3.o) + zephyr/libzephyr.a(timeutil.c.obj) (__aeabi_dsub) +/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_muldivdf3.o) + zephyr/libzephyr.a(timeutil.c.obj) (__aeabi_ddiv) +/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_truncdfsf2.o) + zephyr/libzephyr.a(timeutil.c.obj) (__aeabi_d2f) +/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_addsubsf3.o) + app/libapp.a(battery_adc.c.obj) (__aeabi_ui2f) +/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_cmpsf2.o) + zephyr/libzephyr.a(timeutil.c.obj) (__aeabi_fcmpeq) +/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_fixsfsi.o) + app/libapp.a(battery_adc.c.obj) (__aeabi_f2iz) +/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_aeabi_ldivmod.o) + app/libapp.a(led.c.obj) (__aeabi_ldivmod) +/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_aeabi_uldivmod.o) + app/libapp.a(led.c.obj) (__aeabi_uldivmod) +/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_popcountsi2.o) + zephyr/libzephyr.a(bitarray.c.obj) (__popcountsi2) +/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_fixdfdi.o) + zephyr/libzephyr.a(timeutil.c.obj) (__aeabi_d2lz) +/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_fixunsdfdi.o) + /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_fixdfdi.o) (__aeabi_d2ulz) +/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_udivmoddi4.o) + /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_aeabi_ldivmod.o) (__udivmoddi4) +/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_dvmd_tls.o) + /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_aeabi_ldivmod.o) (__aeabi_ldiv0) +/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_cmpdf2.o) + /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_fixdfdi.o) (__aeabi_dcmplt) +/home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_fixunsdfsi.o) + /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_fixunsdfdi.o) (__aeabi_d2uiz) + +Discarded input sections + + .text 0x0000000000000000 0x0 zephyr/CMakeFiles/zephyr_pre0.dir/misc/empty_file.c.obj + .data 0x0000000000000000 0x0 zephyr/CMakeFiles/zephyr_pre0.dir/misc/empty_file.c.obj + .bss 0x0000000000000000 0x0 zephyr/CMakeFiles/zephyr_pre0.dir/misc/empty_file.c.obj + .debug_line 0x0000000000000000 0x0 zephyr/CMakeFiles/zephyr_pre0.dir/misc/empty_file.c.obj + .debug_str 0x0000000000000000 0x202 zephyr/CMakeFiles/zephyr_pre0.dir/misc/empty_file.c.obj + .comment 0x0000000000000000 0x21 zephyr/CMakeFiles/zephyr_pre0.dir/misc/empty_file.c.obj + .text 0x0000000000000000 0x0 zephyr/CMakeFiles/offsets.dir/./arch/arm/core/offsets/offsets.c.obj + .data 0x0000000000000000 0x0 zephyr/CMakeFiles/offsets.dir/./arch/arm/core/offsets/offsets.c.obj + .bss 0x0000000000000000 0x0 zephyr/CMakeFiles/offsets.dir/./arch/arm/core/offsets/offsets.c.obj + .text 0x0000000000000000 0x0 app/libapp.a(main.c.obj) + .data 0x0000000000000000 0x0 app/libapp.a(main.c.obj) + .bss 0x0000000000000000 0x0 app/libapp.a(main.c.obj) + .rodata.dev 0x0000000000000000 0x4 app/libapp.a(main.c.obj) + .text 0x0000000000000000 0x0 app/libapp.a(led.c.obj) + .data 0x0000000000000000 0x0 app/libapp.a(led.c.obj) + .bss 0x0000000000000000 0x0 app/libapp.a(led.c.obj) + .text.led_set 0x0000000000000000 0xb4 app/libapp.a(led.c.obj) + .text.led_stop_blink + 0x0000000000000000 0x1c app/libapp.a(led.c.obj) + .text 0x0000000000000000 0x0 app/libapp.a(button.c.obj) + .data 0x0000000000000000 0x0 app/libapp.a(button.c.obj) + .bss 0x0000000000000000 0x0 app/libapp.a(button.c.obj) + .text 0x0000000000000000 0x0 app/libapp.a(actuator.c.obj) + .data 0x0000000000000000 0x0 app/libapp.a(actuator.c.obj) + .bss 0x0000000000000000 0x0 app/libapp.a(actuator.c.obj) + .text.digital_out_set_do1 + 0x0000000000000000 0x78 app/libapp.a(actuator.c.obj) + .text.digital_out_set_do2 + 0x0000000000000000 0x74 app/libapp.a(actuator.c.obj) + .text.digital_out_set_do_en + 0x0000000000000000 0x78 app/libapp.a(actuator.c.obj) + .text 0x0000000000000000 0x0 app/libapp.a(battery_adc.c.obj) + .data 0x0000000000000000 0x0 app/libapp.a(battery_adc.c.obj) + .bss 0x0000000000000000 0x0 app/libapp.a(battery_adc.c.obj) + .text 0x0000000000000000 0x0 app/libapp.a(temperature.c.obj) + .data 0x0000000000000000 0x0 app/libapp.a(temperature.c.obj) + .bss 0x0000000000000000 0x0 app/libapp.a(temperature.c.obj) + .text 0x0000000000000000 0x0 app/libapp.a(timer_count.c.obj) + .data 0x0000000000000000 0x0 app/libapp.a(timer_count.c.obj) + .bss 0x0000000000000000 0x0 app/libapp.a(timer_count.c.obj) + .text.timer_init + 0x0000000000000000 0x40 app/libapp.a(timer_count.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(heap.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(heap.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(heap.c.obj) + .text.sys_heap_usable_size + 0x0000000000000000 0x38 zephyr/libzephyr.a(heap.c.obj) + .text.sys_heap_aligned_realloc + 0x0000000000000000 0x1f4 zephyr/libzephyr.a(heap.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .rodata.cbvprintf_package.str1.4 + 0x0000000000000000 0xc3 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .text.cbvprintf_package + 0x0000000000000000 0x52c zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .text.cbprintf_package + 0x0000000000000000 0x20 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .text.cbpprintf_external + 0x0000000000000000 0x5c zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .text.is_ptr 0x0000000000000000 0x64 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .rodata.cbprintf_package_convert.str1.4 + 0x0000000000000000 0x5c zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .text.cbprintf_package_convert + 0x0000000000000000 0x490 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .debug_info 0x0000000000000000 0x1754 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .debug_abbrev 0x0000000000000000 0x4f0 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .debug_loc 0x0000000000000000 0x2d45 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .debug_aranges + 0x0000000000000000 0x40 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .debug_ranges 0x0000000000000000 0x2f0 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .debug_line 0x0000000000000000 0x13eb zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .debug_str 0x0000000000000000 0x7c0 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .comment 0x0000000000000000 0x21 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .debug_frame 0x0000000000000000 0x10c zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(printk.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(printk.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(printk.c.obj) + .text.__printk_get_hook + 0x0000000000000000 0xc zephyr/libzephyr.a(printk.c.obj) + .text.z_impl_k_str_out + 0x0000000000000000 0x20 zephyr/libzephyr.a(printk.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(sem.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(sem.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(sem.c.obj) + .text.sys_sem_init + 0x0000000000000000 0xc zephyr/libzephyr.a(sem.c.obj) + .text.sys_sem_give + 0x0000000000000000 0xc zephyr/libzephyr.a(sem.c.obj) + .text.sys_sem_take + 0x0000000000000000 0x20 zephyr/libzephyr.a(sem.c.obj) + .text.sys_sem_count_get + 0x0000000000000000 0x4 zephyr/libzephyr.a(sem.c.obj) + .debug_info 0x0000000000000000 0x4dd zephyr/libzephyr.a(sem.c.obj) + .debug_abbrev 0x0000000000000000 0x22a zephyr/libzephyr.a(sem.c.obj) + .debug_loc 0x0000000000000000 0x21a zephyr/libzephyr.a(sem.c.obj) + .debug_aranges + 0x0000000000000000 0x38 zephyr/libzephyr.a(sem.c.obj) + .debug_ranges 0x0000000000000000 0x70 zephyr/libzephyr.a(sem.c.obj) + .debug_line 0x0000000000000000 0x37c zephyr/libzephyr.a(sem.c.obj) + .debug_str 0x0000000000000000 0x400 zephyr/libzephyr.a(sem.c.obj) + .comment 0x0000000000000000 0x21 zephyr/libzephyr.a(sem.c.obj) + .debug_frame 0x0000000000000000 0x68 zephyr/libzephyr.a(sem.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(thread_entry.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(thread_entry.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(thread_entry.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .text.encode_uint + 0x0000000000000000 0xd0 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .rodata.z_cbvprintf_impl.str1.4 + 0x0000000000000000 0x6 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .text.z_cbvprintf_impl + 0x0000000000000000 0x9a0 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .debug_info 0x0000000000000000 0x1049 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .debug_abbrev 0x0000000000000000 0x3f2 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .debug_loc 0x0000000000000000 0x1a3f zephyr/libzephyr.a(cbprintf_complete.c.obj) + .debug_aranges + 0x0000000000000000 0x28 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .debug_ranges 0x0000000000000000 0x420 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .debug_line 0x0000000000000000 0x1002 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .debug_str 0x0000000000000000 0x6b9 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .comment 0x0000000000000000 0x21 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .debug_frame 0x0000000000000000 0x68 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(assert.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(assert.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(assert.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(dec.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(dec.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(dec.c.obj) + .text.u8_to_dec + 0x0000000000000000 0x78 zephyr/libzephyr.a(dec.c.obj) + .debug_info 0x0000000000000000 0x12b zephyr/libzephyr.a(dec.c.obj) + .debug_abbrev 0x0000000000000000 0x9c zephyr/libzephyr.a(dec.c.obj) + .debug_loc 0x0000000000000000 0x176 zephyr/libzephyr.a(dec.c.obj) + .debug_aranges + 0x0000000000000000 0x20 zephyr/libzephyr.a(dec.c.obj) + .debug_ranges 0x0000000000000000 0x10 zephyr/libzephyr.a(dec.c.obj) + .debug_line 0x0000000000000000 0x1ee zephyr/libzephyr.a(dec.c.obj) + .debug_str 0x0000000000000000 0x2d7 zephyr/libzephyr.a(dec.c.obj) + .comment 0x0000000000000000 0x21 zephyr/libzephyr.a(dec.c.obj) + .debug_frame 0x0000000000000000 0x44 zephyr/libzephyr.a(dec.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(hex.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(hex.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(hex.c.obj) + .text.char2hex + 0x0000000000000000 0x3c zephyr/libzephyr.a(hex.c.obj) + .text.hex2char + 0x0000000000000000 0x24 zephyr/libzephyr.a(hex.c.obj) + .text.bin2hex 0x0000000000000000 0x58 zephyr/libzephyr.a(hex.c.obj) + .text.hex2bin 0x0000000000000000 0xd4 zephyr/libzephyr.a(hex.c.obj) + .debug_info 0x0000000000000000 0x356 zephyr/libzephyr.a(hex.c.obj) + .debug_abbrev 0x0000000000000000 0x160 zephyr/libzephyr.a(hex.c.obj) + .debug_loc 0x0000000000000000 0x4de zephyr/libzephyr.a(hex.c.obj) + .debug_aranges + 0x0000000000000000 0x38 zephyr/libzephyr.a(hex.c.obj) + .debug_ranges 0x0000000000000000 0xa8 zephyr/libzephyr.a(hex.c.obj) + .debug_line 0x0000000000000000 0x47d zephyr/libzephyr.a(hex.c.obj) + .debug_str 0x0000000000000000 0x2de zephyr/libzephyr.a(hex.c.obj) + .comment 0x0000000000000000 0x21 zephyr/libzephyr.a(hex.c.obj) + .debug_frame 0x0000000000000000 0x68 zephyr/libzephyr.a(hex.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(rb.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(rb.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(rb.c.obj) + .text.find_and_stack + 0x0000000000000000 0x40 zephyr/libzephyr.a(rb.c.obj) + .text.rotate 0x0000000000000000 0xac zephyr/libzephyr.a(rb.c.obj) + .text.z_rb_get_minmax + 0x0000000000000000 0x20 zephyr/libzephyr.a(rb.c.obj) + .text.rb_insert + 0x0000000000000000 0x148 zephyr/libzephyr.a(rb.c.obj) + .rodata.rb_remove.str1.4 + 0x0000000000000000 0x7b zephyr/libzephyr.a(rb.c.obj) + .text.rb_remove + 0x0000000000000000 0x48c zephyr/libzephyr.a(rb.c.obj) + .text.z_rb_walk + 0x0000000000000000 0x128 zephyr/libzephyr.a(rb.c.obj) + .text.z_rb_child + 0x0000000000000000 0x10 zephyr/libzephyr.a(rb.c.obj) + .text.z_rb_is_black + 0x0000000000000000 0x8 zephyr/libzephyr.a(rb.c.obj) + .text.rb_contains + 0x0000000000000000 0x38 zephyr/libzephyr.a(rb.c.obj) + .text.z_rb_foreach_next + 0x0000000000000000 0xec zephyr/libzephyr.a(rb.c.obj) + .debug_info 0x0000000000000000 0x3191 zephyr/libzephyr.a(rb.c.obj) + .debug_abbrev 0x0000000000000000 0x4cc zephyr/libzephyr.a(rb.c.obj) + .debug_loc 0x0000000000000000 0x37ae zephyr/libzephyr.a(rb.c.obj) + .debug_aranges + 0x0000000000000000 0x68 zephyr/libzephyr.a(rb.c.obj) + .debug_ranges 0x0000000000000000 0xae0 zephyr/libzephyr.a(rb.c.obj) + .debug_line 0x0000000000000000 0x1ab2 zephyr/libzephyr.a(rb.c.obj) + .debug_str 0x0000000000000000 0x4ee zephyr/libzephyr.a(rb.c.obj) + .comment 0x0000000000000000 0x21 zephyr/libzephyr.a(rb.c.obj) + .debug_frame 0x0000000000000000 0x188 zephyr/libzephyr.a(rb.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(timeutil.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(timeutil.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(timeutil.c.obj) + .text.timeutil_timegm64 + 0x0000000000000000 0x1fc zephyr/libzephyr.a(timeutil.c.obj) + .text.timeutil_timegm + 0x0000000000000000 0x1c zephyr/libzephyr.a(timeutil.c.obj) + .text.timeutil_sync_state_update + 0x0000000000000000 0x68 zephyr/libzephyr.a(timeutil.c.obj) + .text.timeutil_sync_state_set_skew + 0x0000000000000000 0x38 zephyr/libzephyr.a(timeutil.c.obj) + .text.timeutil_sync_estimate_skew + 0x0000000000000000 0xa4 zephyr/libzephyr.a(timeutil.c.obj) + .text.timeutil_sync_ref_from_local + 0x0000000000000000 0xb0 zephyr/libzephyr.a(timeutil.c.obj) + .text.timeutil_sync_local_from_ref + 0x0000000000000000 0xa8 zephyr/libzephyr.a(timeutil.c.obj) + .text.timeutil_sync_skew_to_ppb + 0x0000000000000000 0x3c zephyr/libzephyr.a(timeutil.c.obj) + .debug_info 0x0000000000000000 0x879 zephyr/libzephyr.a(timeutil.c.obj) + .debug_abbrev 0x0000000000000000 0x1d5 zephyr/libzephyr.a(timeutil.c.obj) + .debug_loc 0x0000000000000000 0x6ee zephyr/libzephyr.a(timeutil.c.obj) + .debug_aranges + 0x0000000000000000 0x58 zephyr/libzephyr.a(timeutil.c.obj) + .debug_ranges 0x0000000000000000 0xe0 zephyr/libzephyr.a(timeutil.c.obj) + .debug_line 0x0000000000000000 0x633 zephyr/libzephyr.a(timeutil.c.obj) + .debug_str 0x0000000000000000 0x58f zephyr/libzephyr.a(timeutil.c.obj) + .comment 0x0000000000000000 0x21 zephyr/libzephyr.a(timeutil.c.obj) + .debug_frame 0x0000000000000000 0x11c zephyr/libzephyr.a(timeutil.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(bitarray.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(bitarray.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(bitarray.c.obj) + .text.set_region + 0x0000000000000000 0xe8 zephyr/libzephyr.a(bitarray.c.obj) + .rodata.set_clear_region.str1.4 + 0x0000000000000000 0x105 zephyr/libzephyr.a(bitarray.c.obj) + .text.set_clear_region + 0x0000000000000000 0x10c zephyr/libzephyr.a(bitarray.c.obj) + .rodata.match_region.str1.4 + 0x0000000000000000 0x15 zephyr/libzephyr.a(bitarray.c.obj) + .text.match_region + 0x0000000000000000 0xec zephyr/libzephyr.a(bitarray.c.obj) + .text.is_region_set_clear + 0x0000000000000000 0x10c zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_popcount_region + 0x0000000000000000 0x184 zephyr/libzephyr.a(bitarray.c.obj) + .rodata.sys_bitarray_xor.str1.4 + 0x0000000000000000 0x54 zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_xor + 0x0000000000000000 0x230 zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_set_bit + 0x0000000000000000 0xf8 zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_clear_bit + 0x0000000000000000 0xfc zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_test_bit + 0x0000000000000000 0x100 zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_test_and_set_bit + 0x0000000000000000 0x110 zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_test_and_clear_bit + 0x0000000000000000 0x114 zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_alloc + 0x0000000000000000 0x17c zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_find_nth_set + 0x0000000000000000 0x1c4 zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_free + 0x0000000000000000 0x128 zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_is_region_set + 0x0000000000000000 0x8 zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_is_region_cleared + 0x0000000000000000 0x8 zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_test_and_set_region + 0x0000000000000000 0x12c zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_set_region + 0x0000000000000000 0x8 zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_clear_region + 0x0000000000000000 0x8 zephyr/libzephyr.a(bitarray.c.obj) + .debug_info 0x0000000000000000 0x41d9 zephyr/libzephyr.a(bitarray.c.obj) + .debug_abbrev 0x0000000000000000 0x435 zephyr/libzephyr.a(bitarray.c.obj) + .debug_loc 0x0000000000000000 0x37ec zephyr/libzephyr.a(bitarray.c.obj) + .debug_aranges + 0x0000000000000000 0xb0 zephyr/libzephyr.a(bitarray.c.obj) + .debug_ranges 0x0000000000000000 0x5d0 zephyr/libzephyr.a(bitarray.c.obj) + .debug_line 0x0000000000000000 0x272d zephyr/libzephyr.a(bitarray.c.obj) + .debug_str 0x0000000000000000 0x72b zephyr/libzephyr.a(bitarray.c.obj) + .comment 0x0000000000000000 0x21 zephyr/libzephyr.a(bitarray.c.obj) + .debug_frame 0x0000000000000000 0x2d4 zephyr/libzephyr.a(bitarray.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(onoff.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(onoff.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(onoff.c.obj) + .text.onoff_reset + 0x0000000000000000 0x100 zephyr/libzephyr.a(onoff.c.obj) + .text.onoff_monitor_register + 0x0000000000000000 0xb4 zephyr/libzephyr.a(onoff.c.obj) + .text.onoff_monitor_unregister + 0x0000000000000000 0xdc zephyr/libzephyr.a(onoff.c.obj) + .text.onoff_sync_lock + 0x0000000000000000 0x54 zephyr/libzephyr.a(onoff.c.obj) + .rodata.onoff_sync_finalize.str1.4 + 0x0000000000000000 0x3 zephyr/libzephyr.a(onoff.c.obj) + .text.onoff_sync_finalize + 0x0000000000000000 0xc4 zephyr/libzephyr.a(onoff.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(notify.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(notify.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(notify.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(ring_buffer.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(ring_buffer.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(ring_buffer.c.obj) + .text.ring_buf_put_claim + 0x0000000000000000 0x40 zephyr/libzephyr.a(ring_buffer.c.obj) + .text.ring_buf_put_finish + 0x0000000000000000 0x2c zephyr/libzephyr.a(ring_buffer.c.obj) + .rodata.ring_buf_peek.str1.4 + 0x0000000000000000 0x14 zephyr/libzephyr.a(ring_buffer.c.obj) + .text.ring_buf_peek + 0x0000000000000000 0xa0 zephyr/libzephyr.a(ring_buffer.c.obj) + .rodata.ring_buf_item_put.str1.4 + 0x0000000000000000 0x2e zephyr/libzephyr.a(ring_buffer.c.obj) + .text.ring_buf_item_put + 0x0000000000000000 0x12c zephyr/libzephyr.a(ring_buffer.c.obj) + .text.ring_buf_item_get + 0x0000000000000000 0x130 zephyr/libzephyr.a(ring_buffer.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(last_section_id.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(last_section_id.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(last_section_id.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(configs.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(configs.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(configs.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(mem_attr.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(mem_attr.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(mem_attr.c.obj) + .text.mem_attr_check_buf + 0x0000000000000000 0x10 zephyr/libzephyr.a(mem_attr.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(tracing_none.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(tracing_none.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(tracing_none.c.obj) + .text.sys_trace_isr_enter + 0x0000000000000000 0x4 zephyr/libzephyr.a(tracing_none.c.obj) + .text.sys_trace_isr_exit + 0x0000000000000000 0x4 zephyr/libzephyr.a(tracing_none.c.obj) + .text.sys_trace_isr_exit_to_scheduler + 0x0000000000000000 0x4 zephyr/libzephyr.a(tracing_none.c.obj) + .text.sys_trace_idle + 0x0000000000000000 0x4 zephyr/libzephyr.a(tracing_none.c.obj) + .debug_info 0x0000000000000000 0x56 zephyr/libzephyr.a(tracing_none.c.obj) + .debug_abbrev 0x0000000000000000 0x48 zephyr/libzephyr.a(tracing_none.c.obj) + .debug_aranges + 0x0000000000000000 0x38 zephyr/libzephyr.a(tracing_none.c.obj) + .debug_ranges 0x0000000000000000 0x28 zephyr/libzephyr.a(tracing_none.c.obj) + .debug_line 0x0000000000000000 0xa2 zephyr/libzephyr.a(tracing_none.c.obj) + .debug_str 0x0000000000000000 0x264 zephyr/libzephyr.a(tracing_none.c.obj) + .comment 0x0000000000000000 0x21 zephyr/libzephyr.a(tracing_none.c.obj) + .debug_frame 0x0000000000000000 0x50 zephyr/libzephyr.a(tracing_none.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(usb_device.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(usb_device.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(usb_device.c.obj) + .text.usb_deconfig + 0x0000000000000000 0x24 zephyr/libzephyr.a(usb_device.c.obj) + .text.usb_disable + 0x0000000000000000 0x6c zephyr/libzephyr.a(usb_device.c.obj) + .text.usb_read + 0x0000000000000000 0x4 zephyr/libzephyr.a(usb_device.c.obj) + .text.usb_ep_set_stall + 0x0000000000000000 0x4 zephyr/libzephyr.a(usb_device.c.obj) + .text.usb_ep_clear_stall + 0x0000000000000000 0x4 zephyr/libzephyr.a(usb_device.c.obj) + .text.usb_ep_read_wait + 0x0000000000000000 0x4 zephyr/libzephyr.a(usb_device.c.obj) + .text.usb_ep_read_continue + 0x0000000000000000 0x4 zephyr/libzephyr.a(usb_device.c.obj) + .text.usb_get_remote_wakeup_status + 0x0000000000000000 0xc zephyr/libzephyr.a(usb_device.c.obj) + .text.usb_wakeup_request + 0x0000000000000000 0x18 zephyr/libzephyr.a(usb_device.c.obj) + .text.usb_set_config + 0x0000000000000000 0x30 zephyr/libzephyr.a(usb_device.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(usb_descriptor.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(usb_descriptor.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(usb_descriptor.c.obj) + .text.usb_get_str_descriptor_idx + 0x0000000000000000 0x30 zephyr/libzephyr.a(usb_descriptor.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(usb_transfer.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(usb_transfer.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(usb_transfer.c.obj) + .text.usb_transfer_sync_cb + 0x0000000000000000 0xc zephyr/libzephyr.a(usb_transfer.c.obj) + .text.usb_transfer_sync + 0x0000000000000000 0x4c zephyr/libzephyr.a(usb_transfer.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(cdc_acm.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(cdc_acm.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(cdc_acm.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(usb_work_q.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(usb_work_q.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(usb_work_q.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(banner.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(banner.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(banner.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(flash_map_partition_manager.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(flash_map_partition_manager.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(flash_map_partition_manager.c.obj) + .bss.flash_map + 0x0000000000000000 0x4 zephyr/libzephyr.a(flash_map_partition_manager.c.obj) + .rodata.flash_map_entries + 0x0000000000000000 0x4 zephyr/libzephyr.a(flash_map_partition_manager.c.obj) + .debug_info 0x0000000000000000 0x204 zephyr/libzephyr.a(flash_map_partition_manager.c.obj) + .debug_abbrev 0x0000000000000000 0xd0 zephyr/libzephyr.a(flash_map_partition_manager.c.obj) + .debug_aranges + 0x0000000000000000 0x18 zephyr/libzephyr.a(flash_map_partition_manager.c.obj) + .debug_line 0x0000000000000000 0x25d zephyr/libzephyr.a(flash_map_partition_manager.c.obj) + .debug_str 0x0000000000000000 0x38a zephyr/libzephyr.a(flash_map_partition_manager.c.obj) + .comment 0x0000000000000000 0x21 zephyr/libzephyr.a(flash_map_partition_manager.c.obj) + .text 0x0000000000000000 0x0 zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .data 0x0000000000000000 0x0 zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .rodata.z_get_sw_isr_table_idx.str1.4 + 0x0000000000000000 0x65 zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .text.z_get_sw_isr_table_idx + 0x0000000000000000 0x28 zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .debug_info 0x0000000000000000 0x13b zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .debug_abbrev 0x0000000000000000 0xc3 zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .debug_loc 0x0000000000000000 0x4a zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .debug_aranges + 0x0000000000000000 0x20 zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .debug_ranges 0x0000000000000000 0x10 zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .debug_line 0x0000000000000000 0xea zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .debug_str 0x0000000000000000 0x2e8 zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .comment 0x0000000000000000 0x21 zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .debug_frame 0x0000000000000000 0x28 zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/libarch__arm__core.a(fatal.c.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/libarch__arm__core.a(fatal.c.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/libarch__arm__core.a(fatal.c.obj) + .text.arch_syscall_oops + 0x0000000000000000 0x1c zephyr/arch/arch/arm/core/libarch__arm__core.a(fatal.c.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi.c.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi.c.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi.c.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi_on_reset.S.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi_on_reset.S.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi_on_reset.S.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/libarch__arm__core.a(tls.c.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/libarch__arm__core.a(tls.c.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/libarch__arm__core.a(tls.c.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(exc_exit.c.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(exc_exit.c.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(exc_exit.c.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault.c.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault.c.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault.c.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault_s.S.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault_s.S.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault_s.S.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fpu.c.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fpu.c.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fpu.c.obj) + .text.z_arm_save_fp_context + 0x0000000000000000 0x4 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fpu.c.obj) + .text.z_arm_restore_fp_context + 0x0000000000000000 0x4 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fpu.c.obj) + .debug_info 0x0000000000000000 0x146 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fpu.c.obj) + .debug_abbrev 0x0000000000000000 0xcd zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fpu.c.obj) + .debug_aranges + 0x0000000000000000 0x28 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fpu.c.obj) + .debug_ranges 0x0000000000000000 0x18 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fpu.c.obj) + .debug_line 0x0000000000000000 0x1a5 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fpu.c.obj) + .debug_str 0x0000000000000000 0x329 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fpu.c.obj) + .comment 0x0000000000000000 0x21 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fpu.c.obj) + .debug_frame 0x0000000000000000 0x30 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fpu.c.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(reset.S.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(reset.S.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(reset.S.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(scb.c.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(scb.c.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(scb.c.obj) + .text.sys_arch_reboot + 0x0000000000000000 0x24 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(scb.c.obj) + .text.z_arm_clear_arm_mpu_config + 0x0000000000000000 0x28 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(scb.c.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread_abort.c.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread_abort.c.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread_abort.c.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(vector_table.S.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(vector_table.S.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(vector_table.S.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(swap_helper.S.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(swap_helper.S.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(swap_helper.S.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(prep_c.c.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(prep_c.c.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(prep_c.c.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread.c.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread.c.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread.c.obj) + .text.arch_irq_lock_outlined + 0x0000000000000000 0x10 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread.c.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(cpu_idle.c.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(cpu_idle.c.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(cpu_idle.c.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_init.c.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_init.c.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_init.c.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(isr_wrapper.c.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(isr_wrapper.c.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(isr_wrapper.c.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(__aeabi_read_tp.S.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(__aeabi_read_tp.S.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(__aeabi_read_tp.S.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_core_mpu.c.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_core_mpu.c.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_core_mpu.c.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_mpu.c.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_mpu.c.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_mpu.c.obj) + .text.arm_core_mpu_enable + 0x0000000000000000 0x18 zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_mpu.c.obj) + .text.arm_core_mpu_disable + 0x0000000000000000 0x14 zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_mpu.c.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_mpu_regions.c.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_mpu_regions.c.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_mpu_regions.c.obj) + .text 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .data 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .bss 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .rodata.__assert_no_args.str1.4 + 0x0000000000000000 0x51 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .text.__assert_no_args + 0x0000000000000000 0x24 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .debug_info 0x0000000000000000 0x109 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .debug_abbrev 0x0000000000000000 0x9c zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .debug_aranges + 0x0000000000000000 0x20 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .debug_ranges 0x0000000000000000 0x10 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .debug_line 0x0000000000000000 0xba zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .debug_str 0x0000000000000000 0x2e0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .comment 0x0000000000000000 0x21 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .debug_frame 0x0000000000000000 0x28 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .text 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .data 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .bss 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .text.cbputc 0x0000000000000000 0xc zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .text.cbvprintf + 0x0000000000000000 0x34 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .debug_info 0x0000000000000000 0x2d9 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .debug_abbrev 0x0000000000000000 0x16f zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .debug_loc 0x0000000000000000 0x128 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .debug_aranges + 0x0000000000000000 0x28 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .debug_ranges 0x0000000000000000 0x18 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .debug_line 0x0000000000000000 0x257 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .debug_str 0x0000000000000000 0x34a zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .comment 0x0000000000000000 0x21 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .debug_frame 0x0000000000000000 0x48 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .text 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .data 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .bss 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .rodata.__chk_fail.str1.4 + 0x0000000000000000 0x1e zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .text.__chk_fail + 0x0000000000000000 0x1c zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .debug_info 0x0000000000000000 0x1bb zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .debug_abbrev 0x0000000000000000 0x14d zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .debug_loc 0x0000000000000000 0x2c zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .debug_aranges + 0x0000000000000000 0x20 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .debug_ranges 0x0000000000000000 0x10 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .debug_line 0x0000000000000000 0x2a4 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .debug_str 0x0000000000000000 0x38a zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .comment 0x0000000000000000 0x21 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .debug_frame 0x0000000000000000 0x28 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .text 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + .data 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + .bss 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + .debug_info 0x0000000000000000 0x79 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + .debug_abbrev 0x0000000000000000 0x26 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + .debug_aranges + 0x0000000000000000 0x18 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + .debug_line 0x0000000000000000 0x5e zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + .debug_str 0x0000000000000000 0x2b3 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + .comment 0x0000000000000000 0x21 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + .text 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .data 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .bss 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .rodata._exit.str1.4 + 0x0000000000000000 0x5 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .text._exit 0x0000000000000000 0x10 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .debug_info 0x0000000000000000 0xca zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .debug_abbrev 0x0000000000000000 0x82 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .debug_loc 0x0000000000000000 0x25 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .debug_aranges + 0x0000000000000000 0x20 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .debug_ranges 0x0000000000000000 0x10 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .debug_line 0x0000000000000000 0xab zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .debug_str 0x0000000000000000 0x2ce zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .comment 0x0000000000000000 0x21 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .debug_frame 0x0000000000000000 0x28 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .text 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .data 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .bss 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .rodata.__retarget_lock_init_recursive.part.0.str1.4 + 0x0000000000000000 0x8b zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .text.__retarget_lock_init_recursive.part.0 + 0x0000000000000000 0x30 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .rodata.__retarget_lock_close_recursive.part.0.str1.4 + 0x0000000000000000 0x14 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .text.__retarget_lock_close_recursive.part.0 + 0x0000000000000000 0x24 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .text.__retarget_lock_acquire_recursive.part.0 + 0x0000000000000000 0x24 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .text.__retarget_lock_try_acquire_recursive.part.0 + 0x0000000000000000 0x24 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .text.__retarget_lock_release_recursive.part.0 + 0x0000000000000000 0x24 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .text.__retarget_lock_init_recursive + 0x0000000000000000 0x3c zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .text.__retarget_lock_init + 0x0000000000000000 0x3c zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .text.__retarget_lock_close_recursive + 0x0000000000000000 0xc zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .text.__retarget_lock_close + 0x0000000000000000 0xc zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .text.__retarget_lock_acquire_recursive + 0x0000000000000000 0x14 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .text.__retarget_lock_acquire + 0x0000000000000000 0x14 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .text.__retarget_lock_try_acquire_recursive + 0x0000000000000000 0x18 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .text.__retarget_lock_try_acquire + 0x0000000000000000 0x18 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .text.__retarget_lock_release_recursive + 0x0000000000000000 0xc zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .text.__retarget_lock_release + 0x0000000000000000 0xc zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + ._k_mutex.static.__lock___libc_recursive_mutex_ + 0x0000000000000000 0x14 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .debug_info 0x0000000000000000 0xf65 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .debug_abbrev 0x0000000000000000 0x34d zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .debug_loc 0x0000000000000000 0x5b6 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .debug_aranges + 0x0000000000000000 0x90 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .debug_ranges 0x0000000000000000 0x138 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .debug_line 0x0000000000000000 0x7cb zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .debug_str 0x0000000000000000 0x946 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .comment 0x0000000000000000 0x21 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .debug_frame 0x0000000000000000 0x188 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .text 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .data 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .bss 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .text.z_impl_zephyr_fputc + 0x0000000000000000 0x10 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .text.__stdin_hook_install + 0x0000000000000000 0x14 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .rodata.stdout + 0x0000000000000000 0x4 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .rodata.stdin 0x0000000000000000 0x4 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .bss.__stdin 0x0000000000000000 0x10 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .text 0x0000000000000000 0x0 zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .data 0x0000000000000000 0x0 zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .bss 0x0000000000000000 0x0 zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .rodata.abort.str1.4 + 0x0000000000000000 0x9 zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .text.abort 0x0000000000000000 0x1c zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .debug_info 0x0000000000000000 0x1bb zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .debug_abbrev 0x0000000000000000 0x14d zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .debug_loc 0x0000000000000000 0x2c zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .debug_aranges + 0x0000000000000000 0x20 zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .debug_ranges 0x0000000000000000 0x10 zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .debug_line 0x0000000000000000 0x310 zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .debug_str 0x0000000000000000 0x399 zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .comment 0x0000000000000000 0x21 zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .debug_frame 0x0000000000000000 0x28 zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .text 0x0000000000000000 0x0 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .data 0x0000000000000000 0x0 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .bss 0x0000000000000000 0x0 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .rodata.malloc_lock.part.0.str1.4 + 0x0000000000000000 0x69 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .text.malloc_lock.part.0 + 0x0000000000000000 0x24 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .text.malloc 0x0000000000000000 0x54 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .text.aligned_alloc + 0x0000000000000000 0x58 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .text.realloc 0x0000000000000000 0x58 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .text.free 0x0000000000000000 0x34 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .text.calloc 0x0000000000000000 0x34 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .text.reallocarray + 0x0000000000000000 0x24 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .data.z_malloc_heap_mutex + 0x0000000000000000 0x14 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .text 0x0000000000000000 0x0 zephyr/soc/soc/nrf52833/libsoc__nordic.a(validate_base_addresses.c.obj) + .data 0x0000000000000000 0x0 zephyr/soc/soc/nrf52833/libsoc__nordic.a(validate_base_addresses.c.obj) + .bss 0x0000000000000000 0x0 zephyr/soc/soc/nrf52833/libsoc__nordic.a(validate_base_addresses.c.obj) + .debug_info 0x0000000000000000 0x79 zephyr/soc/soc/nrf52833/libsoc__nordic.a(validate_base_addresses.c.obj) + .debug_abbrev 0x0000000000000000 0x26 zephyr/soc/soc/nrf52833/libsoc__nordic.a(validate_base_addresses.c.obj) + .debug_aranges + 0x0000000000000000 0x18 zephyr/soc/soc/nrf52833/libsoc__nordic.a(validate_base_addresses.c.obj) + .debug_line 0x0000000000000000 0x64 zephyr/soc/soc/nrf52833/libsoc__nordic.a(validate_base_addresses.c.obj) + .debug_str 0x0000000000000000 0x2b0 zephyr/soc/soc/nrf52833/libsoc__nordic.a(validate_base_addresses.c.obj) + .comment 0x0000000000000000 0x21 zephyr/soc/soc/nrf52833/libsoc__nordic.a(validate_base_addresses.c.obj) + .text 0x0000000000000000 0x0 zephyr/soc/soc/nrf52833/libsoc__nordic.a(validate_binding_headers.c.obj) + .data 0x0000000000000000 0x0 zephyr/soc/soc/nrf52833/libsoc__nordic.a(validate_binding_headers.c.obj) + .bss 0x0000000000000000 0x0 zephyr/soc/soc/nrf52833/libsoc__nordic.a(validate_binding_headers.c.obj) + .debug_info 0x0000000000000000 0x64 zephyr/soc/soc/nrf52833/libsoc__nordic.a(validate_binding_headers.c.obj) + .debug_abbrev 0x0000000000000000 0x26 zephyr/soc/soc/nrf52833/libsoc__nordic.a(validate_binding_headers.c.obj) + .debug_aranges + 0x0000000000000000 0x18 zephyr/soc/soc/nrf52833/libsoc__nordic.a(validate_binding_headers.c.obj) + .debug_line 0x0000000000000000 0x65 zephyr/soc/soc/nrf52833/libsoc__nordic.a(validate_binding_headers.c.obj) + .debug_str 0x0000000000000000 0x29a zephyr/soc/soc/nrf52833/libsoc__nordic.a(validate_binding_headers.c.obj) + .comment 0x0000000000000000 0x21 zephyr/soc/soc/nrf52833/libsoc__nordic.a(validate_binding_headers.c.obj) + .text 0x0000000000000000 0x0 zephyr/soc/soc/nrf52833/libsoc__nordic.a(validate_enabled_instances.c.obj) + .data 0x0000000000000000 0x0 zephyr/soc/soc/nrf52833/libsoc__nordic.a(validate_enabled_instances.c.obj) + .bss 0x0000000000000000 0x0 zephyr/soc/soc/nrf52833/libsoc__nordic.a(validate_enabled_instances.c.obj) + .debug_info 0x0000000000000000 0x79 zephyr/soc/soc/nrf52833/libsoc__nordic.a(validate_enabled_instances.c.obj) + .debug_abbrev 0x0000000000000000 0x26 zephyr/soc/soc/nrf52833/libsoc__nordic.a(validate_enabled_instances.c.obj) + .debug_aranges + 0x0000000000000000 0x18 zephyr/soc/soc/nrf52833/libsoc__nordic.a(validate_enabled_instances.c.obj) + .debug_line 0x0000000000000000 0x67 zephyr/soc/soc/nrf52833/libsoc__nordic.a(validate_enabled_instances.c.obj) + .debug_str 0x0000000000000000 0x2b3 zephyr/soc/soc/nrf52833/libsoc__nordic.a(validate_enabled_instances.c.obj) + .comment 0x0000000000000000 0x21 zephyr/soc/soc/nrf52833/libsoc__nordic.a(validate_enabled_instances.c.obj) + .text 0x0000000000000000 0x0 zephyr/soc/soc/nrf52833/libsoc__nordic.a(soc.c.obj) + .data 0x0000000000000000 0x0 zephyr/soc/soc/nrf52833/libsoc__nordic.a(soc.c.obj) + .bss 0x0000000000000000 0x0 zephyr/soc/soc/nrf52833/libsoc__nordic.a(soc.c.obj) + .text 0x0000000000000000 0x0 zephyr/soc/soc/nrf52833/libsoc__nordic.a(reboot.c.obj) + .data 0x0000000000000000 0x0 zephyr/soc/soc/nrf52833/libsoc__nordic.a(reboot.c.obj) + .bss 0x0000000000000000 0x0 zephyr/soc/soc/nrf52833/libsoc__nordic.a(reboot.c.obj) + .text.sys_arch_reboot + 0x0000000000000000 0x24 zephyr/soc/soc/nrf52833/libsoc__nordic.a(reboot.c.obj) + .debug_info 0x0000000000000000 0x2ec zephyr/soc/soc/nrf52833/libsoc__nordic.a(reboot.c.obj) + .debug_abbrev 0x0000000000000000 0x117 zephyr/soc/soc/nrf52833/libsoc__nordic.a(reboot.c.obj) + .debug_aranges + 0x0000000000000000 0x20 zephyr/soc/soc/nrf52833/libsoc__nordic.a(reboot.c.obj) + .debug_ranges 0x0000000000000000 0x10 zephyr/soc/soc/nrf52833/libsoc__nordic.a(reboot.c.obj) + .debug_line 0x0000000000000000 0x1f0 zephyr/soc/soc/nrf52833/libsoc__nordic.a(reboot.c.obj) + .debug_str 0x0000000000000000 0x358 zephyr/soc/soc/nrf52833/libsoc__nordic.a(reboot.c.obj) + .comment 0x0000000000000000 0x21 zephyr/soc/soc/nrf52833/libsoc__nordic.a(reboot.c.obj) + .debug_frame 0x0000000000000000 0x20 zephyr/soc/soc/nrf52833/libsoc__nordic.a(reboot.c.obj) + .text 0x0000000000000000 0x0 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + .data 0x0000000000000000 0x0 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + .bss 0x0000000000000000 0x0 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + .text.usb_dc_detach + 0x0000000000000000 0x9c zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + .text.usb_dc_reset + 0x0000000000000000 0x30 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + .text.usb_dc_ep_halt + 0x0000000000000000 0x4 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + .text.usb_dc_ep_flush + 0x0000000000000000 0x3c zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + .text.usb_dc_wakeup_request + 0x0000000000000000 0x14 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + .text 0x0000000000000000 0x0 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + .data 0x0000000000000000 0x0 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + .bss 0x0000000000000000 0x0 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + .text.nrf_usbd_common_is_initialized + 0x0000000000000000 0x10 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + .text.nrf_usbd_common_is_started + 0x0000000000000000 0x20 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + .text.nrf_usbd_common_wakeup_req + 0x0000000000000000 0x44 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + .text.nrf_usbd_common_suspend_check + 0x0000000000000000 0x14 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + .text.nrf_usbd_common_bus_suspend_check + 0x0000000000000000 0xc zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + .text.nrf_usbd_common_force_bus_wakeup + 0x0000000000000000 0xc zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + .text.nrf_usbd_common_ep_max_packet_size_get + 0x0000000000000000 0x2c zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + .text.nrf_usbd_common_ep_enable_check + 0x0000000000000000 0x30 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + .text.nrf_usbd_common_epout_size_get + 0x0000000000000000 0x28 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + .text.nrf_usbd_common_ep_is_busy + 0x0000000000000000 0x40 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + .text 0x0000000000000000 0x0 zephyr/drivers/adc/libdrivers__adc.a(adc_common.c.obj) + .data 0x0000000000000000 0x0 zephyr/drivers/adc/libdrivers__adc.a(adc_common.c.obj) + .bss 0x0000000000000000 0x0 zephyr/drivers/adc/libdrivers__adc.a(adc_common.c.obj) + .text 0x0000000000000000 0x0 zephyr/drivers/adc/libdrivers__adc.a(adc_nrfx_saadc.c.obj) + .data 0x0000000000000000 0x0 zephyr/drivers/adc/libdrivers__adc.a(adc_nrfx_saadc.c.obj) + .bss 0x0000000000000000 0x0 zephyr/drivers/adc/libdrivers__adc.a(adc_nrfx_saadc.c.obj) + .text 0x0000000000000000 0x0 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .data 0x0000000000000000 0x0 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .bss 0x0000000000000000 0x0 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .text.z_nrf_clock_bt_ctlr_hf_request + 0x0000000000000000 0x2c zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .text.z_nrf_clock_bt_ctlr_hf_release + 0x0000000000000000 0x3c zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .text 0x0000000000000000 0x0 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .data 0x0000000000000000 0x0 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .bss 0x0000000000000000 0x0 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .text.uart_register_input + 0x0000000000000000 0x4 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .text 0x0000000000000000 0x0 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + .data 0x0000000000000000 0x0 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + .bss 0x0000000000000000 0x0 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + .text 0x0000000000000000 0x0 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_weak_impl.c.obj) + .data 0x0000000000000000 0x0 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_weak_impl.c.obj) + .bss 0x0000000000000000 0x0 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_weak_impl.c.obj) + .text.z_impl_hwinfo_get_device_id + 0x0000000000000000 0x8 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_weak_impl.c.obj) + .text.z_impl_hwinfo_get_device_eui64 + 0x0000000000000000 0x8 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_weak_impl.c.obj) + .text.z_impl_hwinfo_get_reset_cause + 0x0000000000000000 0x8 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_weak_impl.c.obj) + .text.z_impl_hwinfo_clear_reset_cause + 0x0000000000000000 0x8 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_weak_impl.c.obj) + .text.z_impl_hwinfo_get_supported_reset_cause + 0x0000000000000000 0x8 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_weak_impl.c.obj) + .debug_info 0x0000000000000000 0x1a9 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_weak_impl.c.obj) + .debug_abbrev 0x0000000000000000 0xf8 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_weak_impl.c.obj) + .debug_loc 0x0000000000000000 0x4a zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_weak_impl.c.obj) + .debug_aranges + 0x0000000000000000 0x40 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_weak_impl.c.obj) + .debug_ranges 0x0000000000000000 0x30 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_weak_impl.c.obj) + .debug_line 0x0000000000000000 0x238 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_weak_impl.c.obj) + .debug_str 0x0000000000000000 0x3aa zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_weak_impl.c.obj) + .comment 0x0000000000000000 0x21 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_weak_impl.c.obj) + .debug_frame 0x0000000000000000 0x60 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_weak_impl.c.obj) + .text 0x0000000000000000 0x0 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_nrf.c.obj) + .data 0x0000000000000000 0x0 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_nrf.c.obj) + .bss 0x0000000000000000 0x0 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_nrf.c.obj) + .text.z_impl_hwinfo_get_reset_cause + 0x0000000000000000 0x54 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_nrf.c.obj) + .text.z_impl_hwinfo_clear_reset_cause + 0x0000000000000000 0x10 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_nrf.c.obj) + .text.z_impl_hwinfo_get_supported_reset_cause + 0x0000000000000000 0xc zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_nrf.c.obj) + .text 0x0000000000000000 0x0 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .data 0x0000000000000000 0x0 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .bss 0x0000000000000000 0x0 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .text.pinctrl_lookup_state + 0x0000000000000000 0x58 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .debug_info 0x0000000000000000 0x1af zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .debug_abbrev 0x0000000000000000 0xd0 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .debug_loc 0x0000000000000000 0x7c zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .debug_aranges + 0x0000000000000000 0x20 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .debug_ranges 0x0000000000000000 0x10 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .debug_line 0x0000000000000000 0x232 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .debug_str 0x0000000000000000 0x353 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .comment 0x0000000000000000 0x21 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .debug_frame 0x0000000000000000 0x2c zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .text 0x0000000000000000 0x0 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_nrf.c.obj) + .data 0x0000000000000000 0x0 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_nrf.c.obj) + .bss 0x0000000000000000 0x0 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_nrf.c.obj) + .text.pinctrl_configure_pins + 0x0000000000000000 0x18 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_nrf.c.obj) + .debug_info 0x0000000000000000 0x302 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_nrf.c.obj) + .debug_abbrev 0x0000000000000000 0x14f zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_nrf.c.obj) + .debug_loc 0x0000000000000000 0xb7 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_nrf.c.obj) + .debug_aranges + 0x0000000000000000 0x20 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_nrf.c.obj) + .debug_ranges 0x0000000000000000 0x10 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_nrf.c.obj) + .debug_line 0x0000000000000000 0x2b0 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_nrf.c.obj) + .debug_str 0x0000000000000000 0x58d zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_nrf.c.obj) + .comment 0x0000000000000000 0x21 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_nrf.c.obj) + .debug_frame 0x0000000000000000 0x20 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_nrf.c.obj) + .text 0x0000000000000000 0x0 zephyr/drivers/sensor/nordic/temp/libdrivers__sensor__nordic__temp.a(temp_nrf5.c.obj) + .data 0x0000000000000000 0x0 zephyr/drivers/sensor/nordic/temp/libdrivers__sensor__nordic__temp.a(temp_nrf5.c.obj) + .bss 0x0000000000000000 0x0 zephyr/drivers/sensor/nordic/temp/libdrivers__sensor__nordic__temp.a(temp_nrf5.c.obj) + .text 0x0000000000000000 0x0 zephyr/drivers/serial/libdrivers__serial.a(empty_file.c.obj) + .data 0x0000000000000000 0x0 zephyr/drivers/serial/libdrivers__serial.a(empty_file.c.obj) + .bss 0x0000000000000000 0x0 zephyr/drivers/serial/libdrivers__serial.a(empty_file.c.obj) + .debug_line 0x0000000000000000 0x0 zephyr/drivers/serial/libdrivers__serial.a(empty_file.c.obj) + .debug_str 0x0000000000000000 0x202 zephyr/drivers/serial/libdrivers__serial.a(empty_file.c.obj) + .comment 0x0000000000000000 0x21 zephyr/drivers/serial/libdrivers__serial.a(empty_file.c.obj) + .text 0x0000000000000000 0x0 zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .data 0x0000000000000000 0x0 zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .bss 0x0000000000000000 0x0 zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .text.sys_clock_set_timeout + 0x0000000000000000 0x4 zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .text.sys_clock_idle_exit + 0x0000000000000000 0x4 zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .debug_info 0x0000000000000000 0xda zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .debug_abbrev 0x0000000000000000 0x7e zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .debug_aranges + 0x0000000000000000 0x28 zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .debug_ranges 0x0000000000000000 0x18 zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .debug_line 0x0000000000000000 0x15d zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .debug_str 0x0000000000000000 0x2f1 zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .comment 0x0000000000000000 0x21 zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .debug_frame 0x0000000000000000 0x30 zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .text 0x0000000000000000 0x0 zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .data 0x0000000000000000 0x0 zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .bss 0x0000000000000000 0x0 zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .rodata.z_nrf_rtc_timer_compare_evt_address_get.str1.4 + 0x0000000000000000 0x6d zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .text.z_nrf_rtc_timer_compare_evt_address_get + 0x0000000000000000 0x2c zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .text.z_nrf_rtc_timer_capture_task_address_get + 0x0000000000000000 0x4 zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .rodata.z_nrf_rtc_timer_compare_int_lock.str1.4 + 0x0000000000000000 0x1b zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .text.z_nrf_rtc_timer_compare_int_lock + 0x0000000000000000 0x24 zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .text.z_nrf_rtc_timer_compare_int_unlock + 0x0000000000000000 0x24 zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .text.z_nrf_rtc_timer_compare_read + 0x0000000000000000 0x30 zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .text.z_nrf_rtc_timer_get_ticks + 0x0000000000000000 0xf8 zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .text.z_nrf_rtc_timer_set + 0x0000000000000000 0x28 zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .text.z_nrf_rtc_timer_exact_set + 0x0000000000000000 0x28 zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .text.z_nrf_rtc_timer_abort + 0x0000000000000000 0x28 zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .text.z_nrf_rtc_timer_read + 0x0000000000000000 0x44 zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .text.z_nrf_rtc_timer_chan_alloc + 0x0000000000000000 0x48 zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .text.z_nrf_rtc_timer_chan_free + 0x0000000000000000 0x28 zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .text.z_nrf_rtc_timer_trigger_overflow + 0x0000000000000000 0x8 zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .text.sys_clock_cycle_get_32 + 0x0000000000000000 0x44 zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .text.sys_clock_disable + 0x0000000000000000 0x30 zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .bss.alloc_mask + 0x0000000000000000 0x4 zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .text 0x0000000000000000 0x0 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(system_nrf52833.c.obj) + .data 0x0000000000000000 0x0 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(system_nrf52833.c.obj) + .bss 0x0000000000000000 0x0 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(system_nrf52833.c.obj) + .text.nvmc_wait + 0x0000000000000000 0x10 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(system_nrf52833.c.obj) + .text.nvmc_config + 0x0000000000000000 0x14 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(system_nrf52833.c.obj) + .text.SystemCoreClockUpdate + 0x0000000000000000 0x10 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(system_nrf52833.c.obj) + .data.SystemCoreClock + 0x0000000000000000 0x4 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(system_nrf52833.c.obj) + .text 0x0000000000000000 0x0 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_glue.c.obj) + .data 0x0000000000000000 0x0 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_glue.c.obj) + .bss 0x0000000000000000 0x0 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_glue.c.obj) + .rodata.nrfx_error_string_get.str1.4 + 0x0000000000000000 0x194 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_glue.c.obj) + .text.nrfx_error_string_get + 0x0000000000000000 0xd4 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_glue.c.obj) + .text 0x0000000000000000 0x0 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_flag32_allocator.c.obj) + .data 0x0000000000000000 0x0 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_flag32_allocator.c.obj) + .bss 0x0000000000000000 0x0 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_flag32_allocator.c.obj) + .text.nrfx_flag32_is_allocated + 0x0000000000000000 0xc modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_flag32_allocator.c.obj) + .text 0x0000000000000000 0x0 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_ram_ctrl.c.obj) + .data 0x0000000000000000 0x0 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_ram_ctrl.c.obj) + .bss 0x0000000000000000 0x0 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_ram_ctrl.c.obj) + .text.ram_ctrl_block_section_power_enable_set + 0x0000000000000000 0x14 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_ram_ctrl.c.obj) + .text.ram_ctrl_block_section_retention_enable_set + 0x0000000000000000 0x18 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_ram_ctrl.c.obj) + .rodata.ram_ctrl_block_section_iterate.str1.4 + 0x0000000000000000 0x7f modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_ram_ctrl.c.obj) + .text.ram_ctrl_block_section_iterate + 0x0000000000000000 0x9c modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_ram_ctrl.c.obj) + .text.nrfx_ram_ctrl_power_enable_set + 0x0000000000000000 0xc modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_ram_ctrl.c.obj) + .text.nrfx_ram_ctrl_retention_enable_set + 0x0000000000000000 0xc modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_ram_ctrl.c.obj) + .rodata.unit_to_block_section_lut + 0x0000000000000000 0x20 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_ram_ctrl.c.obj) + .debug_info 0x0000000000000000 0xb8a modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_ram_ctrl.c.obj) + .debug_abbrev 0x0000000000000000 0x2fe modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_ram_ctrl.c.obj) + .debug_loc 0x0000000000000000 0x629 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_ram_ctrl.c.obj) + .debug_aranges + 0x0000000000000000 0x40 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_ram_ctrl.c.obj) + .debug_ranges 0x0000000000000000 0xb8 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_ram_ctrl.c.obj) + .debug_line 0x0000000000000000 0x5a5 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_ram_ctrl.c.obj) + .debug_str 0x0000000000000000 0x834 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_ram_ctrl.c.obj) + .comment 0x0000000000000000 0x21 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_ram_ctrl.c.obj) + .debug_frame 0x0000000000000000 0x78 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_ram_ctrl.c.obj) + .text 0x0000000000000000 0x0 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_clock.c.obj) + .data 0x0000000000000000 0x0 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_clock.c.obj) + .bss 0x0000000000000000 0x0 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_clock.c.obj) + .rodata.nrfx_clock_disable.str1.4 + 0x0000000000000000 0x17 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_clock.c.obj) + .text.nrfx_clock_disable + 0x0000000000000000 0x7c modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_clock.c.obj) + .text.nrfx_clock_uninit + 0x0000000000000000 0x44 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_clock.c.obj) + .text.nrfx_clock_init_check + 0x0000000000000000 0xc modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_clock.c.obj) + .text 0x0000000000000000 0x0 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .data 0x0000000000000000 0x0 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .bss 0x0000000000000000 0x0 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .text.pin_in_event_get.constprop.0 + 0x0000000000000000 0xb0 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .rodata.pin_out_task_get.isra.0.str1.4 + 0x0000000000000000 0x24 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .text.pin_out_task_get.isra.0 + 0x0000000000000000 0x84 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .text.pin_clr_task_get.isra.0 + 0x0000000000000000 0x88 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .text.pin_set_task_get.isra.0 + 0x0000000000000000 0x88 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .text.nrfx_gpiote_in_is_set + 0x0000000000000000 0x70 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .text.nrfx_gpiote_channels_number_get + 0x0000000000000000 0xc modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .rodata.nrfx_gpiote_uninit.str1.4 + 0x0000000000000000 0x48 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .text.nrfx_gpiote_uninit + 0x0000000000000000 0x98 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .rodata.nrfx_gpiote_out_set.str1.4 + 0x0000000000000000 0x45 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .text.nrfx_gpiote_out_set + 0x0000000000000000 0xb4 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .text.nrfx_gpiote_out_clear + 0x0000000000000000 0xb4 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .text.nrfx_gpiote_out_toggle + 0x0000000000000000 0xc8 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .text.nrfx_gpiote_out_task_enable + 0x0000000000000000 0x94 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .text.nrfx_gpiote_out_task_disable + 0x0000000000000000 0x94 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .text.nrfx_gpiote_out_task_get + 0x0000000000000000 0x8 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .text.nrfx_gpiote_out_task_address_get + 0x0000000000000000 0x10 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .text.nrfx_gpiote_set_task_get + 0x0000000000000000 0x8 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .text.nrfx_gpiote_set_task_address_get + 0x0000000000000000 0x10 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .text.nrfx_gpiote_clr_task_get + 0x0000000000000000 0x8 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .text.nrfx_gpiote_clr_task_address_get + 0x0000000000000000 0x10 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .text.nrfx_gpiote_out_task_force + 0x0000000000000000 0xa4 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .rodata.nrfx_gpiote_out_task_trigger.str1.4 + 0x0000000000000000 0x3b modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .text.nrfx_gpiote_out_task_trigger + 0x0000000000000000 0x8c modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .rodata.nrfx_gpiote_set_task_trigger.str1.4 + 0x0000000000000000 0x3e modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .text.nrfx_gpiote_set_task_trigger + 0x0000000000000000 0xa8 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .text.nrfx_gpiote_clr_task_trigger + 0x0000000000000000 0xa8 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .text.nrfx_gpiote_in_event_get + 0x0000000000000000 0x8 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .text.nrfx_gpiote_in_event_address_get + 0x0000000000000000 0x10 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .text 0x0000000000000000 0x0 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + .data 0x0000000000000000 0x0 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + .bss 0x0000000000000000 0x0 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + .text.nrfx_power_pof_handler_get + 0x0000000000000000 0xc modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + .text.nrfx_power_usb_handler_get + 0x0000000000000000 0xc modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + .rodata.nrfx_power_uninit.str1.4 + 0x0000000000000000 0x17 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + .text.nrfx_power_uninit + 0x0000000000000000 0x68 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + .text.nrfx_power_init_check + 0x0000000000000000 0xc modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + .text.nrfx_power_pof_init + 0x0000000000000000 0x30 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + .rodata.nrfx_power_pof_enable.str1.4 + 0x0000000000000000 0x8b modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + .text.nrfx_power_pof_enable + 0x0000000000000000 0x88 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + .text.nrfx_power_pof_disable + 0x0000000000000000 0x1c modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + .text.nrfx_power_pof_uninit + 0x0000000000000000 0xc modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + .text.nrfx_power_sleepevt_init + 0x0000000000000000 0x30 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + .text.nrfx_power_sleepevt_enable + 0x0000000000000000 0x3c modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + .text.nrfx_power_sleepevt_disable + 0x0000000000000000 0xc modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + .text.nrfx_power_sleepevt_uninit + 0x0000000000000000 0xc modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + .rodata.nrfx_power_constlat_mode_request.str1.4 + 0x0000000000000000 0x1c modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + .text.nrfx_power_constlat_mode_request + 0x0000000000000000 0x68 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + .rodata.nrfx_power_constlat_mode_free.str1.4 + 0x0000000000000000 0x17 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + .text.nrfx_power_constlat_mode_free + 0x0000000000000000 0x70 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + .text.nrfx_power_mode_get + 0x0000000000000000 0x10 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + .text.nrfx_power_usbevt_uninit + 0x0000000000000000 0x18 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + .bss.m_power_mode_refs + 0x0000000000000000 0x1 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + .text 0x0000000000000000 0x0 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_temp.c.obj) + .data 0x0000000000000000 0x0 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_temp.c.obj) + .bss 0x0000000000000000 0x0 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_temp.c.obj) + .text.nrfx_temp_uninit + 0x0000000000000000 0x50 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_temp.c.obj) + .text.nrfx_temp_init_check + 0x0000000000000000 0x10 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_temp.c.obj) + .text.nrfx_temp_calculate + 0x0000000000000000 0xc modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_temp.c.obj) + .rodata.nrfx_temp_irq_handler.str1.4 + 0x0000000000000000 0xf modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_temp.c.obj) + .text.nrfx_temp_irq_handler + 0x0000000000000000 0x48 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_temp.c.obj) + .text 0x0000000000000000 0x0 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .data 0x0000000000000000 0x0 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .bss 0x0000000000000000 0x0 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .text._WriteNoCheck + 0x0000000000000000 0x34 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .text._WriteBlocking + 0x0000000000000000 0x64 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .text.SEGGER_RTT_ReadUpBufferNoLock + 0x0000000000000000 0xc4 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .text.SEGGER_RTT_ReadNoLock + 0x0000000000000000 0xb0 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .text.SEGGER_RTT_ReadUpBuffer + 0x0000000000000000 0x1c modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .text.SEGGER_RTT_Read + 0x0000000000000000 0x1c modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .text.SEGGER_RTT_WriteWithOverwriteNoLock + 0x0000000000000000 0xc4 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .text.SEGGER_RTT_WriteDownBufferNoLock + 0x0000000000000000 0x70 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .text.SEGGER_RTT_WriteNoLock + 0x0000000000000000 0x88 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .text.SEGGER_RTT_WriteDownBuffer + 0x0000000000000000 0x34 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .text.SEGGER_RTT_Write + 0x0000000000000000 0x34 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .text.SEGGER_RTT_WriteString + 0x0000000000000000 0x3c modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .text.SEGGER_RTT_PutCharSkipNoLock + 0x0000000000000000 0x44 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .text.SEGGER_RTT_PutCharSkip + 0x0000000000000000 0x60 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .text.SEGGER_RTT_PutChar + 0x0000000000000000 0x80 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .text.SEGGER_RTT_GetKey + 0x0000000000000000 0x30 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .text.SEGGER_RTT_WaitKey + 0x0000000000000000 0x2c modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .text.SEGGER_RTT_HasKey + 0x0000000000000000 0x20 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .text.SEGGER_RTT_HasData + 0x0000000000000000 0x18 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .text.SEGGER_RTT_HasDataUp + 0x0000000000000000 0x18 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .text.SEGGER_RTT_AllocDownBuffer + 0x0000000000000000 0x78 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .text.SEGGER_RTT_AllocUpBuffer + 0x0000000000000000 0x84 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .text.SEGGER_RTT_ConfigUpBuffer + 0x0000000000000000 0x70 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .text.SEGGER_RTT_ConfigDownBuffer + 0x0000000000000000 0x68 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .text.SEGGER_RTT_SetNameUpBuffer + 0x0000000000000000 0x40 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .text.SEGGER_RTT_SetNameDownBuffer + 0x0000000000000000 0x40 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .text.SEGGER_RTT_SetFlagsUpBuffer + 0x0000000000000000 0x40 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .text.SEGGER_RTT_SetFlagsDownBuffer + 0x0000000000000000 0x40 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .text.SEGGER_RTT_SetTerminal + 0x0000000000000000 0x90 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .text.SEGGER_RTT_TerminalOut + 0x0000000000000000 0x144 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .text.SEGGER_RTT_GetAvailWriteSpace + 0x0000000000000000 0x20 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .text.SEGGER_RTT_GetBytesInBuffer + 0x0000000000000000 0x20 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .bss._ActiveTerminal + 0x0000000000000000 0x1 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .rodata._aTerminalId + 0x0000000000000000 0x10 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .text 0x0000000000000000 0x0 modules/segger/libmodules__segger.a(SEGGER_RTT_zephyr.c.obj) + .data 0x0000000000000000 0x0 modules/segger/libmodules__segger.a(SEGGER_RTT_zephyr.c.obj) + .bss 0x0000000000000000 0x0 modules/segger/libmodules__segger.a(SEGGER_RTT_zephyr.c.obj) + .text.zephyr_rtt_irq_lock + 0x0000000000000000 0x10 modules/segger/libmodules__segger.a(SEGGER_RTT_zephyr.c.obj) + .text.zephyr_rtt_irq_unlock + 0x0000000000000000 0xc modules/segger/libmodules__segger.a(SEGGER_RTT_zephyr.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(busy_wait.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(busy_wait.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(busy_wait.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(device.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(device.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(device.c.obj) + .text.z_impl_device_get_binding + 0x0000000000000000 0x78 zephyr/kernel/libkernel.a(device.c.obj) + .text.z_device_get_all_static + 0x0000000000000000 0x20 zephyr/kernel/libkernel.a(device.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(fatal.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(fatal.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(fatal.c.obj) + .text.k_fatal_halt + 0x0000000000000000 0x8 zephyr/kernel/libkernel.a(fatal.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(init.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(init.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(init.c.obj) + .rodata.z_impl_device_init.str1.4 + 0x0000000000000000 0x22 zephyr/kernel/libkernel.a(init.c.obj) + .text.z_impl_device_init + 0x0000000000000000 0xa8 zephyr/kernel/libkernel.a(init.c.obj) + .text.z_init_cpu + 0x0000000000000000 0x70 zephyr/kernel/libkernel.a(init.c.obj) + .text.z_early_rand_get + 0x0000000000000000 0x74 zephyr/kernel/libkernel.a(init.c.obj) + .data.state.1 0x0000000000000000 0x8 zephyr/kernel/libkernel.a(init.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(init_static.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(init_static.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(init_static.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(mem_slab.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(mem_slab.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(mem_slab.c.obj) + .text.k_mem_slab_init + 0x0000000000000000 0x4c zephyr/kernel/libkernel.a(mem_slab.c.obj) + .text.k_mem_slab_runtime_stats_get + 0x0000000000000000 0xbc zephyr/kernel/libkernel.a(mem_slab.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(idle.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(idle.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(idle.c.obj) + .rodata.arch_spin_relax.str1.4 + 0x0000000000000000 0x54 zephyr/kernel/libkernel.a(idle.c.obj) + .text.arch_spin_relax + 0x0000000000000000 0x40 zephyr/kernel/libkernel.a(idle.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(mutex.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(mutex.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(mutex.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(queue.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(queue.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(queue.c.obj) + .text.z_queue_node_peek + 0x0000000000000000 0x1c zephyr/kernel/libkernel.a(queue.c.obj) + .text.z_impl_k_queue_init + 0x0000000000000000 0x14 zephyr/kernel/libkernel.a(queue.c.obj) + .text.z_impl_k_queue_cancel_wait + 0x0000000000000000 0x100 zephyr/kernel/libkernel.a(queue.c.obj) + .text.k_queue_insert + 0x0000000000000000 0x14 zephyr/kernel/libkernel.a(queue.c.obj) + .text.k_queue_prepend + 0x0000000000000000 0x18 zephyr/kernel/libkernel.a(queue.c.obj) + .text.z_impl_k_queue_alloc_append + 0x0000000000000000 0x18 zephyr/kernel/libkernel.a(queue.c.obj) + .text.z_impl_k_queue_alloc_prepend + 0x0000000000000000 0x18 zephyr/kernel/libkernel.a(queue.c.obj) + .text.k_queue_append_list + 0x0000000000000000 0x198 zephyr/kernel/libkernel.a(queue.c.obj) + .text.k_queue_merge_slist + 0x0000000000000000 0x1c zephyr/kernel/libkernel.a(queue.c.obj) + .text.k_queue_remove + 0x0000000000000000 0x60 zephyr/kernel/libkernel.a(queue.c.obj) + .text.k_queue_unique_append + 0x0000000000000000 0x34 zephyr/kernel/libkernel.a(queue.c.obj) + .text.z_impl_k_queue_peek_head + 0x0000000000000000 0x10 zephyr/kernel/libkernel.a(queue.c.obj) + .text.z_impl_k_queue_peek_tail + 0x0000000000000000 0x10 zephyr/kernel/libkernel.a(queue.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(sem.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(sem.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(sem.c.obj) + .text.z_impl_k_sem_reset + 0x0000000000000000 0x11c zephyr/kernel/libkernel.a(sem.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(work.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(work.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(work.c.obj) + .text.handle_flush + 0x0000000000000000 0x4 zephyr/kernel/libkernel.a(work.c.obj) + .text.cancel_async_locked + 0x0000000000000000 0x88 zephyr/kernel/libkernel.a(work.c.obj) + .text.work_flush_locked + 0x0000000000000000 0xac zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_busy_get + 0x0000000000000000 0x94 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_submit + 0x0000000000000000 0x28 zephyr/kernel/libkernel.a(work.c.obj) + .rodata.k_work_flush.str1.4 + 0x0000000000000000 0x54 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_flush + 0x0000000000000000 0x138 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_cancel + 0x0000000000000000 0xd8 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_cancel_sync + 0x0000000000000000 0x198 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_queue_init + 0x0000000000000000 0x34 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_queue_drain + 0x0000000000000000 0x138 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_queue_unplug + 0x0000000000000000 0xc8 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_queue_stop + 0x0000000000000000 0x158 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_delayable_busy_get + 0x0000000000000000 0xb4 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_schedule + 0x0000000000000000 0xc zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_reschedule_for_queue + 0x0000000000000000 0x124 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_reschedule + 0x0000000000000000 0xc zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_cancel_delayable + 0x0000000000000000 0xd0 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_cancel_delayable_sync + 0x0000000000000000 0x188 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_flush_delayable + 0x0000000000000000 0x164 zephyr/kernel/libkernel.a(work.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(thread.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(thread.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(thread.c.obj) + .text.z_impl_k_is_preempt_thread + 0x0000000000000000 0x20 zephyr/kernel/libkernel.a(thread.c.obj) + .text.z_impl_k_thread_priority_get + 0x0000000000000000 0x8 zephyr/kernel/libkernel.a(thread.c.obj) + .text.k_thread_name_get + 0x0000000000000000 0x4 zephyr/kernel/libkernel.a(thread.c.obj) + .text.z_impl_k_thread_name_copy + 0x0000000000000000 0x8 zephyr/kernel/libkernel.a(thread.c.obj) + .rodata.k_thread_state_str.str1.4 + 0x0000000000000000 0x6 zephyr/kernel/libkernel.a(thread.c.obj) + .text.k_thread_state_str + 0x0000000000000000 0x84 zephyr/kernel/libkernel.a(thread.c.obj) + .text.z_init_thread_base + 0x0000000000000000 0x1c zephyr/kernel/libkernel.a(thread.c.obj) + .text.k_thread_user_mode_enter + 0x0000000000000000 0x20 zephyr/kernel/libkernel.a(thread.c.obj) + .text.k_thread_runtime_stats_get + 0x0000000000000000 0x14 zephyr/kernel/libkernel.a(thread.c.obj) + .text.k_thread_runtime_stats_all_get + 0x0000000000000000 0xc zephyr/kernel/libkernel.a(thread.c.obj) + .text.k_thread_runtime_stats_cpu_get + 0x0000000000000000 0xc zephyr/kernel/libkernel.a(thread.c.obj) + .rodata.str1.4 + 0x0000000000000000 0x4f zephyr/kernel/libkernel.a(thread.c.obj) + .rodata.state_string.0 + 0x0000000000000000 0x40 zephyr/kernel/libkernel.a(thread.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_requeue_current + 0x0000000000000000 0x80 zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_move_thread_to_end_of_prio_q + 0x0000000000000000 0x90 zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_impl_k_thread_suspend + 0x0000000000000000 0x20c zephyr/kernel/libkernel.a(sched.c.obj) + .rodata.z_pend_thread.str1.4 + 0x0000000000000000 0x3d zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_pend_thread + 0x0000000000000000 0xec zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_unpend_thread + 0x0000000000000000 0x14 zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_impl_k_thread_resume + 0x0000000000000000 0xa8 zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_swap_next_thread + 0x0000000000000000 0xc zephyr/kernel/libkernel.a(sched.c.obj) + .text.init_ready_q + 0x0000000000000000 0x8 zephyr/kernel/libkernel.a(sched.c.obj) + .rodata.z_impl_k_thread_priority_set.str1.4 + 0x0000000000000000 0xb9 zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_impl_k_thread_priority_set + 0x0000000000000000 0xa0 zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_impl_k_reschedule + 0x0000000000000000 0xbc zephyr/kernel/libkernel.a(sched.c.obj) + .text.k_can_yield + 0x0000000000000000 0x30 zephyr/kernel/libkernel.a(sched.c.obj) + .rodata.z_impl_k_thread_join.str1.4 + 0x0000000000000000 0x15 zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_impl_k_thread_join + 0x0000000000000000 0x180 zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_sched_waitq_walk + 0x0000000000000000 0xb4 zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_unready_thread + 0x0000000000000000 0x90 zephyr/kernel/libkernel.a(sched.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .text.thread_is_sliceable + 0x0000000000000000 0x38 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .text.k_sched_time_slice_set + 0x0000000000000000 0xc0 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(spinlock_validate.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(spinlock_validate.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(spinlock_validate.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(xip.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(xip.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(xip.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(timeout.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(timeout.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(timeout.c.obj) + .text.z_timeout_remaining + 0x0000000000000000 0xf4 zephyr/kernel/libkernel.a(timeout.c.obj) + .text.z_timeout_expires + 0x0000000000000000 0xdc zephyr/kernel/libkernel.a(timeout.c.obj) + .text.z_get_next_timeout_expiry + 0x0000000000000000 0xd4 zephyr/kernel/libkernel.a(timeout.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(timer.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(timer.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(timer.c.obj) + .text.z_impl_k_timer_status_get + 0x0000000000000000 0x94 zephyr/kernel/libkernel.a(timer.c.obj) + .rodata.z_impl_k_timer_status_sync.str1.4 + 0x0000000000000000 0x3b zephyr/kernel/libkernel.a(timer.c.obj) + .text.z_impl_k_timer_status_sync + 0x0000000000000000 0x100 zephyr/kernel/libkernel.a(timer.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(mempool.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(mempool.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(mempool.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(kheap.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(kheap.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(kheap.c.obj) + .text.k_heap_init + 0x0000000000000000 0x10 zephyr/kernel/libkernel.a(kheap.c.obj) + .text.k_heap_alloc + 0x0000000000000000 0x18 zephyr/kernel/libkernel.a(kheap.c.obj) + .text.k_heap_calloc + 0x0000000000000000 0x34 zephyr/kernel/libkernel.a(kheap.c.obj) + .text.k_heap_realloc + 0x0000000000000000 0x140 zephyr/kernel/libkernel.a(kheap.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(system_work_q.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(system_work_q.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(system_work_q.c.obj) + .text 0x0000000000000000 0x0 zephyr/arch/common/libisr_tables.a(isr_tables.c.obj) + .data 0x0000000000000000 0x0 zephyr/arch/common/libisr_tables.a(isr_tables.c.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/common/libisr_tables.a(isr_tables.c.obj) + .text 0x0000000000000000 0x14 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(strcmp.S.o) + .data 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(strcmp.S.o) + .bss 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(strcmp.S.o) + .ARM.extab 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(strcmp.S.o) + .ARM.exidx 0x0000000000000000 0x8 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(strcmp.S.o) + .debug_frame 0x0000000000000000 0x20 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(strcmp.S.o) + .text 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(memcpy.c.o) + .data 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(memcpy.c.o) + .bss 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(memcpy.c.o) + .text 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(memset.c.o) + .data 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(memset.c.o) + .bss 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(memset.c.o) + .data 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(strlen.S.o) + .bss 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(strlen.S.o) + .ARM.extab 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(strlen.S.o) + .text 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_ctype_ctype_.c.o) + .data 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_ctype_ctype_.c.o) + .bss 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_ctype_ctype_.c.o) + .rodata._ctype_ + 0x0000000000000000 0x101 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_ctype_ctype_.c.o) + .text 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_errno_errno.c.o) + .data 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_errno_errno.c.o) + .bss 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_errno_errno.c.o) + .tbss.errno 0x0000000000000000 0x4 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_errno_errno.c.o) + .text 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_string_strnlen.c.o) + .data 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_string_strnlen.c.o) + .bss 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_string_strnlen.c.o) + .text 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_puts.c.o) + .data 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_puts.c.o) + .bss 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_puts.c.o) + .text.puts 0x0000000000000000 0x40 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_puts.c.o) + .debug_frame 0x0000000000000000 0x30 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_puts.c.o) + .text 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_vflprintf.c.o) + .data 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_vflprintf.c.o) + .bss 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_vflprintf.c.o) + .text 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_vflscanf.c.o) + .data 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_vflscanf.c.o) + .bss 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_vflscanf.c.o) + .text.scanf_getc + 0x0000000000000000 0x14 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_vflscanf.c.o) + .text.scanf_ungetc + 0x0000000000000000 0x10 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_vflscanf.c.o) + .text.skip_spaces + 0x0000000000000000 0x2a /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_vflscanf.c.o) + .text.putval 0x0000000000000000 0x2c /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_vflscanf.c.o) + .rodata.__l_vfscanf.str1.1 + 0x0000000000000000 0xc /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_vflscanf.c.o) + .text.__l_vfscanf + 0x0000000000000000 0x364 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_vflscanf.c.o) + .debug_frame 0x0000000000000000 0x94 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_vflscanf.c.o) + .text 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_string_strchr.c.o) + .data 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_string_strchr.c.o) + .bss 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_string_strchr.c.o) + .text.strchr 0x0000000000000000 0x1a /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_string_strchr.c.o) + .debug_frame 0x0000000000000000 0x20 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_string_strchr.c.o) + .text 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_fgetc.c.o) + .data 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_fgetc.c.o) + .bss 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_fgetc.c.o) + .text.fgetc 0x0000000000000000 0x46 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_fgetc.c.o) + .debug_frame 0x0000000000000000 0x28 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_fgetc.c.o) + .text 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_ungetc.c.o) + .data 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_ungetc.c.o) + .bss 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_ungetc.c.o) + .text.ungetc 0x0000000000000000 0x3a /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_ungetc.c.o) + .debug_frame 0x0000000000000000 0x20 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_ungetc.c.o) + .text 0x0000000000000000 0x254 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_muldf3.o) + .data 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_muldf3.o) + .bss 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_muldf3.o) + .debug_frame 0x0000000000000000 0x30 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_muldf3.o) + .data 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_mulsf3.o) + .bss 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_mulsf3.o) + .text 0x0000000000000000 0x378 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_addsubdf3.o) + .data 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_addsubdf3.o) + .bss 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_addsubdf3.o) + .debug_frame 0x0000000000000000 0xac /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_addsubdf3.o) + .text 0x0000000000000000 0x424 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_muldivdf3.o) + .data 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_muldivdf3.o) + .bss 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_muldivdf3.o) + .debug_frame 0x0000000000000000 0x50 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_muldivdf3.o) + .text 0x0000000000000000 0xa0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_truncdfsf2.o) + .data 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_truncdfsf2.o) + .bss 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_truncdfsf2.o) + .debug_frame 0x0000000000000000 0x24 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_truncdfsf2.o) + .data 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_addsubsf3.o) + .bss 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_addsubsf3.o) + .text 0x0000000000000000 0xec /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_cmpsf2.o) + .data 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_cmpsf2.o) + .bss 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_cmpsf2.o) + .debug_frame 0x0000000000000000 0xc8 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_cmpsf2.o) + .data 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_fixsfsi.o) + .bss 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_fixsfsi.o) + .text 0x0000000000000000 0xa0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_aeabi_ldivmod.o) + .data 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_aeabi_ldivmod.o) + .bss 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_aeabi_ldivmod.o) + .debug_frame 0x0000000000000000 0x44 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_aeabi_ldivmod.o) + .data 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_aeabi_uldivmod.o) + .bss 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_aeabi_uldivmod.o) + .text 0x0000000000000000 0x26 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_popcountsi2.o) + .data 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_popcountsi2.o) + .bss 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_popcountsi2.o) + .debug_frame 0x0000000000000000 0x20 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_popcountsi2.o) + .text 0x0000000000000000 0x2e /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_fixdfdi.o) + .data 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_fixdfdi.o) + .bss 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_fixdfdi.o) + .debug_frame 0x0000000000000000 0x38 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_fixdfdi.o) + .text 0x0000000000000000 0x3c /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_fixunsdfdi.o) + .data 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_fixunsdfdi.o) + .bss 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_fixunsdfdi.o) + .debug_frame 0x0000000000000000 0x2c /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_fixunsdfdi.o) + .data 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_udivmoddi4.o) + .bss 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_udivmoddi4.o) + .ARM.extab 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_udivmoddi4.o) + .data 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_dvmd_tls.o) + .bss 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_dvmd_tls.o) + .text 0x0000000000000000 0x110 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_cmpdf2.o) + .data 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_cmpdf2.o) + .bss 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_cmpdf2.o) + .debug_frame 0x0000000000000000 0xc4 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_cmpdf2.o) + .text 0x0000000000000000 0x40 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_fixunsdfsi.o) + .data 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_fixunsdfsi.o) + .bss 0x0000000000000000 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_fixunsdfsi.o) + .debug_frame 0x0000000000000000 0x24 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_fixunsdfsi.o) + +Memory Configuration + +Name Origin Length Attributes +FLASH 0x0000000000000000 0x0000000000080000 xr +RAM 0x0000000020000000 0x0000000000020000 xw +IDT_LIST 0x00000000ffff7fff 0x0000000000008000 xw +*default* 0x0000000000000000 0xffffffffffffffff + +Linker script and memory map + + 0x000000000000dc2c vfprintf = __l_vfprintf + 0x0000000000000000 vfscanf = __l_vfscanf +LOAD zephyr/CMakeFiles/zephyr_pre0.dir/misc/empty_file.c.obj +LOAD zephyr/CMakeFiles/offsets.dir/./arch/arm/core/offsets/offsets.c.obj +LOAD app/libapp.a +LOAD zephyr/libzephyr.a +LOAD zephyr/arch/common/libarch__common.a +LOAD zephyr/arch/arch/arm/core/libarch__arm__core.a +LOAD zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a +LOAD zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a +LOAD zephyr/lib/libc/picolibc/liblib__libc__picolibc.a +LOAD zephyr/lib/libc/common/liblib__libc__common.a +LOAD zephyr/soc/soc/nrf52833/libsoc__nordic.a +LOAD zephyr/drivers/usb/device/libdrivers__usb__device.a +LOAD zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a +LOAD zephyr/drivers/adc/libdrivers__adc.a +LOAD zephyr/drivers/clock_control/libdrivers__clock_control.a +LOAD zephyr/drivers/console/libdrivers__console.a +LOAD zephyr/drivers/gpio/libdrivers__gpio.a +LOAD zephyr/drivers/hwinfo/libdrivers__hwinfo.a +LOAD zephyr/drivers/pinctrl/libdrivers__pinctrl.a +LOAD zephyr/drivers/sensor/nordic/temp/libdrivers__sensor__nordic__temp.a +LOAD zephyr/drivers/serial/libdrivers__serial.a +LOAD zephyr/drivers/timer/libdrivers__timer.a +LOAD modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a +LOAD modules/segger/libmodules__segger.a +LOAD zephyr/kernel/libkernel.a +LOAD zephyr/arch/common/libisr_tables.a +LOAD /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a +LOAD /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a + 0x0000000000000020 _region_min_align = 0x20 + +.rel.plt 0x0000000000000000 0x0 + *(SORT_BY_ALIGNMENT(.rel.plt)) + [!provide] PROVIDE (__rel_iplt_start = .) + *(SORT_BY_ALIGNMENT(.rel.iplt)) + .rel.iplt 0x0000000000000000 0x0 app/libapp.a(main.c.obj) + [!provide] PROVIDE (__rel_iplt_end = .) + +.rela.plt 0x0000000000000000 0x0 + *(SORT_BY_ALIGNMENT(.rela.plt)) + [!provide] PROVIDE (__rela_iplt_start = .) + *(SORT_BY_ALIGNMENT(.rela.iplt)) + [!provide] PROVIDE (__rela_iplt_end = .) + +.rel.dyn + *(SORT_BY_ALIGNMENT(.rel.*)) + +.rela.dyn + *(SORT_BY_ALIGNMENT(.rela.*)) + +/DISCARD/ + *(SORT_BY_ALIGNMENT(.plt)) + +/DISCARD/ + *(SORT_BY_ALIGNMENT(.iplt)) + 0x0000000000000000 __rom_region_start = 0x0 + +rom_start 0x0000000000000000 0x100 + 0x0000000000000000 __rom_start_address = . + FILL mask 0x00 + 0x0000000000000000 . = (. + (0x0 - (. - __rom_start_address))) + 0x0000000000000000 . = ALIGN (0x4) + 0x0000000000000000 . = ALIGN (0x80) + 0x0000000000000000 . = ALIGN (0x100) + 0x0000000000000000 _vector_start = . + *(SORT_BY_ALIGNMENT(.exc_vector_table)) + *(SORT_BY_ALIGNMENT(.exc_vector_table.*)) + .exc_vector_table._vector_table_section + 0x0000000000000000 0x40 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(vector_table.S.obj) + 0x0000000000000000 _vector_table + *(SORT_BY_ALIGNMENT(.vectors)) + 0x0000000000000100 _vector_end = . + 0x0000000000000040 . = ALIGN (0x4) + *(SORT_BY_ALIGNMENT(.gnu.linkonce.irq_vector_table*)) + .gnu.linkonce.irq_vector_table + 0x0000000000000040 0xc0 zephyr/arch/common/libisr_tables.a(isr_tables.c.obj) + 0x0000000000000040 _irq_vector_table + 0x0000000000000100 _vector_end = . + +text 0x0000000000000100 0xe0e4 + 0x0000000000000100 __text_region_start = . + *(SORT_BY_ALIGNMENT(.text)) + .text 0x0000000000000100 0x168 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_mulsf3.o) + 0x0000000000000100 __mulsf3 + 0x0000000000000100 __aeabi_fmul + .text 0x0000000000000268 0x21c /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_addsubsf3.o) + 0x0000000000000268 __aeabi_frsub + 0x0000000000000270 __subsf3 + 0x0000000000000270 __aeabi_fsub + 0x0000000000000274 __aeabi_fadd + 0x0000000000000274 __addsf3 + 0x00000000000003d4 __aeabi_ui2f + 0x00000000000003d4 __floatunsisf + 0x00000000000003dc __aeabi_i2f + 0x00000000000003dc __floatsisf + 0x00000000000003f8 __floatundisf + 0x00000000000003f8 __aeabi_ul2f + 0x0000000000000408 __floatdisf + 0x0000000000000408 __aeabi_l2f + .text 0x0000000000000484 0x4c /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_fixsfsi.o) + 0x0000000000000484 __fixsfsi + 0x0000000000000484 __aeabi_f2iz + .text 0x00000000000004d0 0x30 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_aeabi_uldivmod.o) + 0x00000000000004d0 __aeabi_uldivmod + .text 0x0000000000000500 0x4 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_dvmd_tls.o) + 0x0000000000000500 __aeabi_ldiv0 + 0x0000000000000500 __aeabi_idiv0 + .text 0x0000000000000504 0x10 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(strlen.S.o) + 0x0000000000000504 strlen + .text 0x0000000000000514 0x2a0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_udivmoddi4.o) + 0x0000000000000514 __udivmoddi4 + *(SORT_BY_ALIGNMENT(.text.*)) + .text._OffsetAbsSyms + 0x00000000000007b4 0x4 zephyr/CMakeFiles/offsets.dir/./arch/arm/core/offsets/offsets.c.obj + 0x00000000000007b4 _OffsetAbsSyms + .text.main 0x00000000000007b8 0x128 app/libapp.a(main.c.obj) + 0x00000000000007b8 main + .text.z_impl_gpio_pin_configure.isra.0 + 0x00000000000008e0 0x188 app/libapp.a(led.c.obj) + .text.led1_timer_handler + 0x0000000000000a68 0x48 app/libapp.a(led.c.obj) + .text.led0_timer_handler + 0x0000000000000ab0 0x48 app/libapp.a(led.c.obj) + .text.led_init + 0x0000000000000af8 0x68 app/libapp.a(led.c.obj) + 0x0000000000000af8 led_init + .text.led_toggle + 0x0000000000000b60 0x68 app/libapp.a(led.c.obj) + 0x0000000000000b60 led_toggle + .text.led_start_blink + 0x0000000000000bc8 0x7c app/libapp.a(led.c.obj) + 0x0000000000000bc8 led_start_blink + .text.button_init + 0x0000000000000c44 0x7c app/libapp.a(button.c.obj) + 0x0000000000000c44 button_init + .text.button_read + 0x0000000000000cc0 0x60 app/libapp.a(button.c.obj) + 0x0000000000000cc0 button_read + .text.z_impl_gpio_pin_configure.isra.0 + 0x0000000000000d20 0x188 app/libapp.a(actuator.c.obj) + .text.digital_out_init + 0x0000000000000ea8 0x34 app/libapp.a(actuator.c.obj) + 0x0000000000000ea8 digital_out_init + .text.digital_out_toggle_do1 + 0x0000000000000edc 0x48 app/libapp.a(actuator.c.obj) + 0x0000000000000edc digital_out_toggle_do1 + .text.digital_out_toggle_do2 + 0x0000000000000f24 0x48 app/libapp.a(actuator.c.obj) + 0x0000000000000f24 digital_out_toggle_do2 + .text.digital_out_toggle_do_en + 0x0000000000000f6c 0x48 app/libapp.a(actuator.c.obj) + 0x0000000000000f6c digital_out_toggle_do_en + .text.battery_adc_init + 0x0000000000000fb4 0x9c app/libapp.a(battery_adc.c.obj) + 0x0000000000000fb4 battery_adc_init + .text.battery_measure_mv + 0x0000000000001050 0xfc app/libapp.a(battery_adc.c.obj) + 0x0000000000001050 battery_measure_mv + .text.temperature_init + 0x000000000000114c 0x18 app/libapp.a(temperature.c.obj) + 0x000000000000114c temperature_init + .text.temperature_get_celsius + 0x0000000000001164 0x20 app/libapp.a(temperature.c.obj) + 0x0000000000001164 temperature_get_celsius + .text.TIMER1_IRQHandler + 0x0000000000001184 0x9c app/libapp.a(timer_count.c.obj) + 0x0000000000001184 TIMER1_IRQHandler + .text.configure_clock_pin + 0x0000000000001220 0x7c app/libapp.a(timer_count.c.obj) + 0x0000000000001220 configure_clock_pin + .text.configure_measurement + 0x000000000000129c 0x1a0 app/libapp.a(timer_count.c.obj) + 0x000000000000129c configure_measurement + .text.make_measurement + 0x000000000000143c 0x74 app/libapp.a(timer_count.c.obj) + 0x000000000000143c make_measurement + .text.read_measurement + 0x00000000000014b0 0x18 app/libapp.a(timer_count.c.obj) + 0x00000000000014b0 read_measurement + .text.free_list_remove_bidx + 0x00000000000014c8 0x6c zephyr/libzephyr.a(heap.c.obj) + .text.split_chunks + 0x0000000000001534 0x74 zephyr/libzephyr.a(heap.c.obj) + .text.merge_chunks + 0x00000000000015a8 0x5c zephyr/libzephyr.a(heap.c.obj) + .text.free_list_remove + 0x0000000000001604 0x30 zephyr/libzephyr.a(heap.c.obj) + .text.free_list_add + 0x0000000000001634 0xa8 zephyr/libzephyr.a(heap.c.obj) + .text.free_chunk + 0x00000000000016dc 0xc8 zephyr/libzephyr.a(heap.c.obj) + .text.alloc_chunk + 0x00000000000017a4 0x8c zephyr/libzephyr.a(heap.c.obj) + .text.sys_heap_free + 0x0000000000001830 0xc8 zephyr/libzephyr.a(heap.c.obj) + 0x0000000000001830 sys_heap_free + .text.sys_heap_alloc + 0x00000000000018f8 0x90 zephyr/libzephyr.a(heap.c.obj) + 0x00000000000018f8 sys_heap_alloc + .text.sys_heap_aligned_alloc + 0x0000000000001988 0x180 zephyr/libzephyr.a(heap.c.obj) + 0x0000000000001988 sys_heap_aligned_alloc + .text.sys_heap_init + 0x0000000000001b08 0x174 zephyr/libzephyr.a(heap.c.obj) + 0x0000000000001b08 sys_heap_init + .text.arch_printk_char_out + 0x0000000000001c7c 0x4 zephyr/libzephyr.a(printk.c.obj) + 0x0000000000001c7c arch_printk_char_out + .text.char_out + 0x0000000000001c80 0xc zephyr/libzephyr.a(printk.c.obj) + .text.__printk_hook_install + 0x0000000000001c8c 0xc zephyr/libzephyr.a(printk.c.obj) + 0x0000000000001c8c __printk_hook_install + .text.vprintk 0x0000000000001c98 0x2c zephyr/libzephyr.a(printk.c.obj) + 0x0000000000001c98 vprintk + .text.printk 0x0000000000001cc4 0x38 zephyr/libzephyr.a(printk.c.obj) + 0x0000000000001cc4 printk + .text.z_thread_entry + 0x0000000000001cfc 0x2c zephyr/libzephyr.a(thread_entry.c.obj) + 0x0000000000001cfc z_thread_entry + .text.assert_post_action + 0x0000000000001d28 0x14 zephyr/libzephyr.a(assert.c.obj) + 0x0000000000001d28 assert_post_action + .text.assert_print + 0x0000000000001d3c 0x1c zephyr/libzephyr.a(assert.c.obj) + 0x0000000000001d3c assert_print + .text.process_event + 0x0000000000001d58 0x408 zephyr/libzephyr.a(onoff.c.obj) + .text.transition_complete + 0x0000000000002160 0x64 zephyr/libzephyr.a(onoff.c.obj) + .text.onoff_manager_init + 0x00000000000021c4 0x2c zephyr/libzephyr.a(onoff.c.obj) + 0x00000000000021c4 onoff_manager_init + .text.onoff_request + 0x00000000000021f0 0x178 zephyr/libzephyr.a(onoff.c.obj) + 0x00000000000021f0 onoff_request + .text.onoff_release + 0x0000000000002368 0xe0 zephyr/libzephyr.a(onoff.c.obj) + 0x0000000000002368 onoff_release + .text.onoff_cancel + 0x0000000000002448 0x10c zephyr/libzephyr.a(onoff.c.obj) + 0x0000000000002448 onoff_cancel + .text.sys_notify_validate + 0x0000000000002554 0x24 zephyr/libzephyr.a(notify.c.obj) + 0x0000000000002554 sys_notify_validate + .text.sys_notify_finalize + 0x0000000000002578 0x44 zephyr/libzephyr.a(notify.c.obj) + 0x0000000000002578 sys_notify_finalize + .text.ring_buf_put + 0x00000000000025bc 0xa0 zephyr/libzephyr.a(ring_buffer.c.obj) + 0x00000000000025bc ring_buf_put + .text.ring_buf_get_claim + 0x000000000000265c 0x48 zephyr/libzephyr.a(ring_buffer.c.obj) + 0x000000000000265c ring_buf_get_claim + .text.ring_buf_get_finish + 0x00000000000026a4 0x2c zephyr/libzephyr.a(ring_buffer.c.obj) + 0x00000000000026a4 ring_buf_get_finish + .text.ring_buf_get + 0x00000000000026d0 0xa0 zephyr/libzephyr.a(ring_buffer.c.obj) + 0x00000000000026d0 ring_buf_get + .text._ConfigAbsSyms + 0x0000000000002770 0x4 zephyr/libzephyr.a(configs.c.obj) + 0x0000000000002770 _ConfigAbsSyms + .text.mem_attr_get_regions + 0x0000000000002774 0xc zephyr/libzephyr.a(mem_attr.c.obj) + 0x0000000000002774 mem_attr_get_regions + .text.disable_endpoint + 0x0000000000002780 0x40 zephyr/libzephyr.a(usb_device.c.obj) + .text.custom_handler + 0x00000000000027c0 0x94 zephyr/libzephyr.a(usb_device.c.obj) + .text.class_handler + 0x0000000000002854 0x78 zephyr/libzephyr.a(usb_device.c.obj) + .text.vendor_handler + 0x00000000000028cc 0x68 zephyr/libzephyr.a(usb_device.c.obj) + .text.is_ep_valid + 0x0000000000002934 0x80 zephyr/libzephyr.a(usb_device.c.obj) + .text.usb_halt_endpoint_req.isra.0 + 0x00000000000029b4 0x64 zephyr/libzephyr.a(usb_device.c.obj) + .text.set_endpoint + 0x0000000000002a18 0x9c zephyr/libzephyr.a(usb_device.c.obj) + .text.usb_handle_standard_request + 0x0000000000002ab4 0x358 zephyr/libzephyr.a(usb_device.c.obj) + .text.usb_data_to_host + 0x0000000000002e0c 0x74 zephyr/libzephyr.a(usb_device.c.obj) + .text.usb_handle_control_transfer + 0x0000000000002e80 0x138 zephyr/libzephyr.a(usb_device.c.obj) + .text.forward_status_cb + 0x0000000000002fb8 0x150 zephyr/libzephyr.a(usb_device.c.obj) + .text.usb_write + 0x0000000000003108 0x30 zephyr/libzephyr.a(usb_device.c.obj) + 0x0000000000003108 usb_write + .text.usb_enable + 0x0000000000003138 0x198 zephyr/libzephyr.a(usb_device.c.obj) + 0x0000000000003138 usb_enable + .text.usb_update_sn_string_descriptor + 0x00000000000032d0 0x80 zephyr/libzephyr.a(usb_descriptor.c.obj) + 0x00000000000032d0 usb_update_sn_string_descriptor + .text.usb_get_device_descriptor + 0x0000000000003350 0x2e4 zephyr/libzephyr.a(usb_descriptor.c.obj) + 0x0000000000003350 usb_get_device_descriptor + .text.usb_get_dev_data_by_cfg + 0x0000000000003634 0x1c zephyr/libzephyr.a(usb_descriptor.c.obj) + 0x0000000000003634 usb_get_dev_data_by_cfg + .text.usb_get_dev_data_by_iface + 0x0000000000003650 0x20 zephyr/libzephyr.a(usb_descriptor.c.obj) + 0x0000000000003650 usb_get_dev_data_by_iface + .text.usb_get_dev_data_by_ep + 0x0000000000003670 0x3c zephyr/libzephyr.a(usb_descriptor.c.obj) + 0x0000000000003670 usb_get_dev_data_by_ep + .text.usb_transfer_work + 0x00000000000036ac 0x100 zephyr/libzephyr.a(usb_transfer.c.obj) + .text.usb_transfer_is_busy + 0x00000000000037ac 0x2c zephyr/libzephyr.a(usb_transfer.c.obj) + 0x00000000000037ac usb_transfer_is_busy + .text.usb_transfer_ep_callback + 0x00000000000037d8 0x78 zephyr/libzephyr.a(usb_transfer.c.obj) + 0x00000000000037d8 usb_transfer_ep_callback + .text.usb_transfer + 0x0000000000003850 0x104 zephyr/libzephyr.a(usb_transfer.c.obj) + 0x0000000000003850 usb_transfer + .text.usb_cancel_transfer + 0x0000000000003954 0x64 zephyr/libzephyr.a(usb_transfer.c.obj) + 0x0000000000003954 usb_cancel_transfer + .text.usb_cancel_transfers + 0x00000000000039b8 0x48 zephyr/libzephyr.a(usb_transfer.c.obj) + 0x00000000000039b8 usb_cancel_transfers + .text.usb_transfer_init + 0x0000000000003a00 0x30 zephyr/libzephyr.a(usb_transfer.c.obj) + 0x0000000000003a00 usb_transfer_init + .text.cdc_interface_config + 0x0000000000003a30 0x14 zephyr/libzephyr.a(cdc_acm.c.obj) + .text.cdc_acm_irq_callback_work_handler + 0x0000000000003a44 0xc zephyr/libzephyr.a(cdc_acm.c.obj) + .text.cdc_acm_irq_tx_disable + 0x0000000000003a50 0xc zephyr/libzephyr.a(cdc_acm.c.obj) + .text.cdc_acm_irq_tx_ready + 0x0000000000003a5c 0x20 zephyr/libzephyr.a(cdc_acm.c.obj) + .text.cdc_acm_irq_rx_disable + 0x0000000000003a7c 0xc zephyr/libzephyr.a(cdc_acm.c.obj) + .text.cdc_acm_irq_rx_ready + 0x0000000000003a88 0x10 zephyr/libzephyr.a(cdc_acm.c.obj) + .text.cdc_acm_irq_update + 0x0000000000003a98 0x30 zephyr/libzephyr.a(cdc_acm.c.obj) + .text.cdc_acm_irq_callback_set + 0x0000000000003ac8 0x8 zephyr/libzephyr.a(cdc_acm.c.obj) + .text.cdc_acm_line_ctrl_get + 0x0000000000003ad0 0x38 zephyr/libzephyr.a(cdc_acm.c.obj) + .text.cdc_acm_irq_rx_enable + 0x0000000000003b08 0x20 zephyr/libzephyr.a(cdc_acm.c.obj) + .text.cdc_acm_irq_tx_enable + 0x0000000000003b28 0x20 zephyr/libzephyr.a(cdc_acm.c.obj) + .text.cdc_acm_read_cb + 0x0000000000003b48 0x7c zephyr/libzephyr.a(cdc_acm.c.obj) + .text.cdc_acm_fifo_fill + 0x0000000000003bc4 0x40 zephyr/libzephyr.a(cdc_acm.c.obj) + .text.cdc_acm_write_cb + 0x0000000000003c04 0x78 zephyr/libzephyr.a(cdc_acm.c.obj) + .text.cdc_acm_class_handle_req + 0x0000000000003c7c 0x64 zephyr/libzephyr.a(cdc_acm.c.obj) + 0x0000000000003c7c cdc_acm_class_handle_req + .text.cdc_acm_int_in + 0x0000000000003ce0 0x18 zephyr/libzephyr.a(cdc_acm.c.obj) + .text.cdc_acm_init + 0x0000000000003cf8 0x48 zephyr/libzephyr.a(cdc_acm.c.obj) + .text.tx_work_handler + 0x0000000000003d40 0x68 zephyr/libzephyr.a(cdc_acm.c.obj) + .text.cdc_acm_poll_out + 0x0000000000003da8 0x78 zephyr/libzephyr.a(cdc_acm.c.obj) + .text.cdc_acm_send_notification.isra.0 + 0x0000000000003e20 0x48 zephyr/libzephyr.a(cdc_acm.c.obj) + .text.cdc_acm_line_ctrl_set + 0x0000000000003e68 0xf0 zephyr/libzephyr.a(cdc_acm.c.obj) + .text.cdc_acm_irq_is_pending + 0x0000000000003f58 0x34 zephyr/libzephyr.a(cdc_acm.c.obj) + .text.cdc_acm_fifo_read + 0x0000000000003f8c 0x5c zephyr/libzephyr.a(cdc_acm.c.obj) + .text.cdc_acm_poll_in + 0x0000000000003fe8 0x64 zephyr/libzephyr.a(cdc_acm.c.obj) + .text.cdc_acm_dev_status_cb + 0x000000000000404c 0xcc zephyr/libzephyr.a(cdc_acm.c.obj) + .text.z_usb_work_q_init + 0x0000000000004118 0x34 zephyr/libzephyr.a(usb_work_q.c.obj) + .text.boot_banner + 0x000000000000414c 0x1c zephyr/libzephyr.a(banner.c.obj) + 0x000000000000414c boot_banner + .text.z_arm_fatal_error + 0x0000000000004168 0xc zephyr/arch/arch/arm/core/libarch__arm__core.a(fatal.c.obj) + 0x0000000000004168 z_arm_fatal_error + .text.z_do_kernel_oops + 0x0000000000004174 0x10 zephyr/arch/arch/arm/core/libarch__arm__core.a(fatal.c.obj) + 0x0000000000004174 z_do_kernel_oops + .text.z_arm_nmi + 0x0000000000004184 0x10 zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi.c.obj) + 0x0000000000004184 z_arm_nmi + .text.z_SysNmiOnReset + 0x0000000000004194 0x8 zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi_on_reset.S.obj) + 0x0000000000004194 z_SysNmiOnReset + .text.arch_tls_stack_setup + 0x000000000000419c 0x40 zephyr/arch/arch/arm/core/libarch__arm__core.a(tls.c.obj) + 0x000000000000419c arch_tls_stack_setup + .text._HandlerModeExit + 0x00000000000041dc 0x28 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(exc_exit.c.obj) + 0x00000000000041dc z_arm_exc_exit + 0x00000000000041dc z_arm_int_exit + .text.mem_manage_fault + 0x0000000000004204 0xdc zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault.c.obj) + .text.usage_fault.constprop.0 + 0x00000000000042e0 0x58 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault.c.obj) + .text.bus_fault.constprop.0 + 0x0000000000004338 0x70 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault.c.obj) + .text.z_arm_fault + 0x00000000000043a8 0x1f0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault.c.obj) + 0x00000000000043a8 z_arm_fault + .text.z_arm_fault_init + 0x0000000000004598 0x18 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault.c.obj) + 0x0000000000004598 z_arm_fault_init + .text.__fault 0x00000000000045b0 0x14 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault_s.S.obj) + 0x00000000000045b0 z_arm_bus_fault + 0x00000000000045b0 z_arm_usage_fault + 0x00000000000045b0 z_arm_mpu_fault + 0x00000000000045b0 z_arm_exc_spurious + 0x00000000000045b0 z_arm_debug_monitor + 0x00000000000045b0 z_arm_hard_fault + .text._reset_section + 0x00000000000045c4 0x54 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(reset.S.obj) + 0x00000000000045c4 z_arm_reset + 0x00000000000045c4 __start + .text.z_arm_init_arch_hw_at_boot + 0x0000000000004618 0x84 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(scb.c.obj) + 0x0000000000004618 z_arm_init_arch_hw_at_boot + .text.z_impl_k_thread_abort + 0x000000000000469c 0x34 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread_abort.c.obj) + 0x000000000000469c z_impl_k_thread_abort + .text.z_arm_pendsv + 0x00000000000046d0 0x64 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(swap_helper.S.obj) + 0x00000000000046d0 z_arm_pendsv + .text.z_arm_svc + 0x0000000000004734 0x24 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(swap_helper.S.obj) + 0x0000000000004734 z_arm_svc + .text.arch_irq_enable + 0x0000000000004758 0x1c zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + 0x0000000000004758 arch_irq_enable + .text.arch_irq_disable + 0x0000000000004774 0x28 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + 0x0000000000004774 arch_irq_disable + .text.arch_irq_is_enabled + 0x000000000000479c 0x1c zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + 0x000000000000479c arch_irq_is_enabled + .text.z_arm_irq_priority_set + 0x00000000000047b8 0x64 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + 0x00000000000047b8 z_arm_irq_priority_set + .text.z_irq_spurious + 0x000000000000481c 0x8 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + 0x000000000000481c z_irq_spurious + .text.z_prep_c + 0x0000000000004824 0x38 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(prep_c.c.obj) + 0x0000000000004824 z_prep_c + .text.arch_new_thread + 0x000000000000485c 0x3c zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread.c.obj) + 0x000000000000485c arch_new_thread + .text.z_check_thread_stack_fail + 0x0000000000004898 0x2c zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread.c.obj) + 0x0000000000004898 z_check_thread_stack_fail + .text.arch_switch_to_main_thread + 0x00000000000048c4 0x3c zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread.c.obj) + 0x00000000000048c4 arch_switch_to_main_thread + .text.arch_irq_unlock_outlined + 0x0000000000004900 0x10 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread.c.obj) + 0x0000000000004900 arch_irq_unlock_outlined + .text.z_arm_cpu_idle_init + 0x0000000000004910 0xc zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(cpu_idle.c.obj) + 0x0000000000004910 z_arm_cpu_idle_init + .text.arch_cpu_idle + 0x000000000000491c 0x1c zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(cpu_idle.c.obj) + 0x000000000000491c arch_cpu_idle + .text.arch_cpu_atomic_idle + 0x0000000000004938 0x20 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(cpu_idle.c.obj) + 0x0000000000004938 arch_cpu_atomic_idle + .text.z_arm_interrupt_init + 0x0000000000004958 0x18 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_init.c.obj) + 0x0000000000004958 z_arm_interrupt_init + .text._isr_wrapper + 0x0000000000004970 0x24 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(isr_wrapper.c.obj) + 0x0000000000004970 _isr_wrapper + .text.z_arm_configure_static_mpu_regions + 0x0000000000004994 0x18 zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_core_mpu.c.obj) + 0x0000000000004994 z_arm_configure_static_mpu_regions + .text.z_arm_configure_dynamic_mpu_regions + 0x00000000000049ac 0x24 zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_core_mpu.c.obj) + 0x00000000000049ac z_arm_configure_dynamic_mpu_regions + .text.arm_core_mpu_configure_static_mpu_regions + 0x00000000000049d0 0xdc zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_mpu.c.obj) + 0x00000000000049d0 arm_core_mpu_configure_static_mpu_regions + .text.arm_core_mpu_configure_dynamic_mpu_regions + 0x0000000000004aac 0xec zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_mpu.c.obj) + 0x0000000000004aac arm_core_mpu_configure_dynamic_mpu_regions + .text.z_arm_mpu_init + 0x0000000000004b98 0x354 zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_mpu.c.obj) + 0x0000000000004b98 z_arm_mpu_init + .text.picolibc_put + 0x0000000000004eec 0x10 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .text.__stdout_hook_install + 0x0000000000004efc 0x18 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + 0x0000000000004efc __stdout_hook_install + .text.malloc_prepare + 0x0000000000004f14 0x24 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .text.nordicsemi_nrf52_init + 0x0000000000004f38 0x10 zephyr/soc/soc/nrf52833/libsoc__nordic.a(soc.c.obj) + .text.arch_busy_wait + 0x0000000000004f48 0x14 zephyr/soc/soc/nrf52833/libsoc__nordic.a(soc.c.obj) + 0x0000000000004f48 arch_busy_wait + .text.endpoint_ctx + 0x0000000000004f5c 0x60 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + .text.usb_init + 0x0000000000004fbc 0x70 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + .text.usbd_evt_alloc.part.0 + 0x000000000000502c 0x28 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + .text.eps_ctx_init + 0x0000000000005054 0x134 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + .text.usb_dc_attach.part.0 + 0x0000000000005188 0xf0 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + .text.usb_dc_power_event_handler + 0x0000000000005278 0xb0 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + .text.usbd_work_handler + 0x0000000000005328 0x5a8 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + .text.usbd_event_transfer_data + 0x00000000000058d0 0x1b8 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + .text.usbd_event_handler + 0x0000000000005a88 0x294 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + .text.usb_dc_attach + 0x0000000000005d1c 0x14 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + 0x0000000000005d1c usb_dc_attach + .text.usb_dc_set_address + 0x0000000000005d30 0x60 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + 0x0000000000005d30 usb_dc_set_address + .text.usb_dc_ep_check_cap + 0x0000000000005d90 0x2c zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + 0x0000000000005d90 usb_dc_ep_check_cap + .text.usb_dc_ep_configure + 0x0000000000005dbc 0x48 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + 0x0000000000005dbc usb_dc_ep_configure + .text.usb_dc_ep_set_stall + 0x0000000000005e04 0x50 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + 0x0000000000005e04 usb_dc_ep_set_stall + .text.usb_dc_ep_clear_stall + 0x0000000000005e54 0x40 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + 0x0000000000005e54 usb_dc_ep_clear_stall + .text.usb_dc_ep_is_stalled + 0x0000000000005e94 0x38 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + 0x0000000000005e94 usb_dc_ep_is_stalled + .text.usb_dc_ep_enable + 0x0000000000005ecc 0x58 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + 0x0000000000005ecc usb_dc_ep_enable + .text.usb_dc_ep_disable + 0x0000000000005f24 0x4c zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + 0x0000000000005f24 usb_dc_ep_disable + .text.usb_dc_ep_write + 0x0000000000005f70 0x104 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + 0x0000000000005f70 usb_dc_ep_write + .text.usb_dc_ep_read_wait + 0x0000000000006074 0x98 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + 0x0000000000006074 usb_dc_ep_read_wait + .text.usb_dc_ep_read_continue + 0x000000000000610c 0x100 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + 0x000000000000610c usb_dc_ep_read_continue + .text.usb_dc_ep_read + 0x000000000000620c 0x20 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + 0x000000000000620c usb_dc_ep_read + .text.usb_dc_ep_set_callback + 0x000000000000622c 0x74 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + 0x000000000000622c usb_dc_ep_set_callback + .text.usb_dc_set_status_callback + 0x00000000000062a0 0xc zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + 0x00000000000062a0 usb_dc_set_status_callback + .text.usb_dc_ep_mps + 0x00000000000062ac 0x6c zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + 0x00000000000062ac usb_dc_ep_mps + .text.ep_state_access.part.0 + 0x0000000000006318 0x28 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + .text.ep2bit.part.0 + 0x0000000000006340 0x28 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + .text.nrf_usbd_common_ep_enable_check.part.0 + 0x0000000000006368 0x28 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + .text.usbd_enable + 0x0000000000006390 0xac zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + .text.nrf_usbd_common_irq_handler + 0x000000000000643c 0x710 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + 0x000000000000643c nrf_usbd_common_irq_handler + .text.nrf_usbd_common_uninit + 0x0000000000006b4c 0x40 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + 0x0000000000006b4c nrf_usbd_common_uninit + .text.nrf_usbd_common_enable + 0x0000000000006b8c 0x160 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + 0x0000000000006b8c nrf_usbd_common_enable + .text.nrf_usbd_common_start + 0x0000000000006cec 0x68 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + 0x0000000000006cec nrf_usbd_common_start + .text.nrf_usbd_common_is_enabled + 0x0000000000006d54 0x14 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + 0x0000000000006d54 nrf_usbd_common_is_enabled + .text.nrf_usbd_common_suspend + 0x0000000000006d68 0x6c zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + 0x0000000000006d68 nrf_usbd_common_suspend + .text.nrf_usbd_common_ep_max_packet_size_set + 0x0000000000006dd4 0xcc zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + 0x0000000000006dd4 nrf_usbd_common_ep_max_packet_size_set + .text.nrf_usbd_common_init + 0x0000000000006ea0 0xac zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + 0x0000000000006ea0 nrf_usbd_common_init + .text.nrf_usbd_common_ep_transfer + 0x0000000000006f4c 0x120 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + 0x0000000000006f4c nrf_usbd_common_ep_transfer + .text.nrf_usbd_common_ep_status_get + 0x000000000000706c 0x58 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + 0x000000000000706c nrf_usbd_common_ep_status_get + .text.nrf_usbd_common_ep_stall + 0x00000000000070c4 0x3c zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + 0x00000000000070c4 nrf_usbd_common_ep_stall + .text.nrf_usbd_common_ep_stall_check + 0x0000000000007100 0x3c zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + 0x0000000000007100 nrf_usbd_common_ep_stall_check + .text.nrf_usbd_common_ep_dtoggle_clear + 0x000000000000713c 0x40 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + 0x000000000000713c nrf_usbd_common_ep_dtoggle_clear + .text.nrf_usbd_common_setup_get + 0x000000000000717c 0x44 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + 0x000000000000717c nrf_usbd_common_setup_get + .text.nrf_usbd_common_setup_data_clear + 0x00000000000071c0 0xc zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + 0x00000000000071c0 nrf_usbd_common_setup_data_clear + .text.nrf_usbd_common_setup_clear + 0x00000000000071cc 0xc zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + 0x00000000000071cc nrf_usbd_common_setup_clear + .text.nrf_usbd_common_setup_stall + 0x00000000000071d8 0xc zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + 0x00000000000071d8 nrf_usbd_common_setup_stall + .text.nrf_usbd_common_last_setup_dir_get + 0x00000000000071e4 0xc zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + 0x00000000000071e4 nrf_usbd_common_last_setup_dir_get + .text.nrf_usbd_common_transfer_out_drop + 0x00000000000071f0 0x7c zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + 0x00000000000071f0 nrf_usbd_common_transfer_out_drop + .text.usbd_ep_abort + 0x000000000000726c 0x120 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + .text.nrf_usbd_common_ep_abort + 0x000000000000738c 0x34 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + 0x000000000000738c nrf_usbd_common_ep_abort + .text.nrf_usbd_common_disable + 0x00000000000073c0 0x12c zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + 0x00000000000073c0 nrf_usbd_common_disable + .text.nrf_usbd_common_ep_disable + 0x00000000000074ec 0x5c zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + 0x00000000000074ec nrf_usbd_common_ep_disable + .text.nrf_usbd_common_ep_enable + 0x0000000000007548 0x7c zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + 0x0000000000007548 nrf_usbd_common_ep_enable + .text.nrf_usbd_common_ep_stall_clear + 0x00000000000075c4 0x5c zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + 0x00000000000075c4 nrf_usbd_common_ep_stall_clear + .text.adc_gain_invert + 0x0000000000007620 0x34 zephyr/drivers/adc/libdrivers__adc.a(adc_common.c.obj) + 0x0000000000007620 adc_gain_invert + .text.adc_nrfx_channel_setup + 0x0000000000007654 0x120 zephyr/drivers/adc/libdrivers__adc.a(adc_nrfx_saadc.c.obj) + .text.init_saadc + 0x0000000000007774 0x50 zephyr/drivers/adc/libdrivers__adc.a(adc_nrfx_saadc.c.obj) + .text.adc_context_on_timer_expired + 0x00000000000077c4 0x44 zephyr/drivers/adc/libdrivers__adc.a(adc_nrfx_saadc.c.obj) + .text.adc_nrfx_read + 0x0000000000007808 0x1b8 zephyr/drivers/adc/libdrivers__adc.a(adc_nrfx_saadc.c.obj) + .text.saadc_irq_handler + 0x00000000000079c0 0x11c zephyr/drivers/adc/libdrivers__adc.a(adc_nrfx_saadc.c.obj) + .text.onoff_started_callback + 0x0000000000007adc 0xc zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .text.lfclk_start + 0x0000000000007ae8 0x8 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .text.generic_hfclk_stop + 0x0000000000007af0 0x3c zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .text.lfclk_stop + 0x0000000000007b2c 0x8 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .text.blocking_start_callback + 0x0000000000007b34 0x8 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .text.api_blocking_start + 0x0000000000007b3c 0x8c zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .text.get_status + 0x0000000000007bc8 0x3c zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .text.stop.part.0 + 0x0000000000007c04 0x28 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .text.onoff_stop + 0x0000000000007c2c 0x70 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .text.clk_init + 0x0000000000007c9c 0x58 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .text.clkstarted_handle.constprop.0 + 0x0000000000007cf4 0x50 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .text.generic_hfclk_start + 0x0000000000007d44 0x78 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .text.api_stop + 0x0000000000007dbc 0x54 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .text.api_start + 0x0000000000007e10 0x60 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .text.onoff_start + 0x0000000000007e70 0x7c zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .text.clock_event_handler + 0x0000000000007eec 0xa0 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .text.z_nrf_clock_control_get_onoff + 0x0000000000007f8c 0x10 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + 0x0000000000007f8c z_nrf_clock_control_get_onoff + .text.z_nrf_clock_control_lf_on + 0x0000000000007f9c 0x14c zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + 0x0000000000007f9c z_nrf_clock_control_lf_on + .text.console_out + 0x00000000000080e8 0x2c zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .text.uart_console_init + 0x0000000000008114 0x28 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .text.gpio_nrfx_port_get_raw + 0x000000000000813c 0x10 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + .text.gpio_nrfx_port_set_masked_raw + 0x000000000000814c 0x18 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + .text.gpio_nrfx_port_set_bits_raw + 0x0000000000008164 0xc zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + .text.gpio_nrfx_port_clear_bits_raw + 0x0000000000008170 0xc zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + .text.gpio_nrfx_port_toggle_bits + 0x000000000000817c 0x1c zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + .text.gpio_nrfx_manage_callback + 0x0000000000008198 0xb0 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + .text.gpio_nrfx_init + 0x0000000000008248 0x4c zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + .text.nrf_gpio_pin_port_decode.part.0 + 0x0000000000008294 0x28 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + .text.gpio_nrfx_pin_configure + 0x00000000000082bc 0x1dc zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + .text.nrfx_gpio_handler + 0x0000000000008498 0x7c zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + .text.gpio_nrfx_pin_interrupt_configure + 0x0000000000008514 0x130 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + .text.z_impl_hwinfo_get_device_id + 0x0000000000008644 0x2c zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_nrf.c.obj) + 0x0000000000008644 z_impl_hwinfo_get_device_id + .text.hfclk_on_callback + 0x0000000000008670 0xc zephyr/drivers/sensor/nordic/temp/libdrivers__sensor__nordic__temp.a(temp_nrf5.c.obj) + .text.temp_nrf5_channel_get + 0x000000000000867c 0x40 zephyr/drivers/sensor/nordic/temp/libdrivers__sensor__nordic__temp.a(temp_nrf5.c.obj) + .text.temp_nrf5_init + 0x00000000000086bc 0x64 zephyr/drivers/sensor/nordic/temp/libdrivers__sensor__nordic__temp.a(temp_nrf5.c.obj) + .text.temp_nrf5_isr + 0x0000000000008720 0x18 zephyr/drivers/sensor/nordic/temp/libdrivers__sensor__nordic__temp.a(temp_nrf5.c.obj) + .text.temp_nrf5_sample_fetch + 0x0000000000008738 0xb4 zephyr/drivers/sensor/nordic/temp/libdrivers__sensor__nordic__temp.a(temp_nrf5.c.obj) + .text.sys_clock_timeout_handler + 0x00000000000087ec 0x4c zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .text.compare_set_nolocks.constprop.0.isra.0 + 0x0000000000008838 0x138 zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .text.sys_clock_driver_init + 0x0000000000008970 0xec zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .text.rtc_nrf_isr + 0x0000000000008a5c 0x124 zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + 0x0000000000008a5c rtc_nrf_isr + .text.sys_clock_set_timeout + 0x0000000000008b80 0xf8 zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + 0x0000000000008b80 sys_clock_set_timeout + .text.sys_clock_elapsed + 0x0000000000008c78 0x54 zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + 0x0000000000008c78 sys_clock_elapsed + .text.__NVIC_SystemReset + 0x0000000000008ccc 0x24 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(system_nrf52833.c.obj) + .text.SystemInit + 0x0000000000008cf0 0x18c modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(system_nrf52833.c.obj) + 0x0000000000008cf0 SystemInit + .text.nrfx_isr + 0x0000000000008e7c 0x4 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_glue.c.obj) + 0x0000000000008e7c nrfx_isr + .text.nrfx_busy_wait + 0x0000000000008e80 0x4 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_glue.c.obj) + 0x0000000000008e80 nrfx_busy_wait + .text.nrfx_flag32_alloc + 0x0000000000008e84 0x48 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_flag32_allocator.c.obj) + 0x0000000000008e84 nrfx_flag32_alloc + .text.nrfx_flag32_free + 0x0000000000008ecc 0x60 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_flag32_allocator.c.obj) + 0x0000000000008ecc nrfx_flag32_free + .text.clock_stop + 0x0000000000008f2c 0x104 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_clock.c.obj) + .text.nrfx_clock_init + 0x0000000000009030 0x24 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_clock.c.obj) + 0x0000000000009030 nrfx_clock_init + .text.nrfx_clock_enable + 0x0000000000009054 0x58 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_clock.c.obj) + 0x0000000000009054 nrfx_clock_enable + .text.nrfx_clock_start + 0x00000000000090ac 0xf4 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_clock.c.obj) + 0x00000000000090ac nrfx_clock_start + .text.nrfx_clock_stop + 0x00000000000091a0 0x38 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_clock.c.obj) + 0x00000000000091a0 nrfx_clock_stop + .text.nrfx_clock_irq_handler + 0x00000000000091d8 0x98 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_clock.c.obj) + 0x00000000000091d8 nrfx_clock_irq_handler + .text.nrf_gpio_pin_port_decode.part.0 + 0x0000000000009270 0x28 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .text.call_handler.constprop.0 + 0x0000000000009298 0x4c modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .text.latch_pending_read_and_check + 0x00000000000092e4 0x40 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .text.release_handler.isra.0 + 0x0000000000009324 0x90 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .text.pin_trigger_disable + 0x00000000000093b4 0x88 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .text.pin_uninit + 0x000000000000943c 0xac modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .text.nrfx_gpiote_input_configure + 0x00000000000094e8 0x194 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + 0x00000000000094e8 nrfx_gpiote_input_configure + .text.nrfx_gpiote_output_configure + 0x000000000000967c 0x140 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + 0x000000000000967c nrfx_gpiote_output_configure + .text.nrfx_gpiote_global_callback_set + 0x00000000000097bc 0xc modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + 0x00000000000097bc nrfx_gpiote_global_callback_set + .text.nrfx_gpiote_channel_get + 0x00000000000097c8 0x5c modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + 0x00000000000097c8 nrfx_gpiote_channel_get + .text.nrfx_gpiote_init + 0x0000000000009824 0x80 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + 0x0000000000009824 nrfx_gpiote_init + .text.nrfx_gpiote_init_check + 0x00000000000098a4 0x14 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + 0x00000000000098a4 nrfx_gpiote_init_check + .text.nrfx_gpiote_pin_uninit + 0x00000000000098b8 0x4 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + 0x00000000000098b8 nrfx_gpiote_pin_uninit + .text.nrfx_gpiote_channel_free + 0x00000000000098bc 0xc modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + 0x00000000000098bc nrfx_gpiote_channel_free + .text.nrfx_gpiote_channel_alloc + 0x00000000000098c8 0xc modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + 0x00000000000098c8 nrfx_gpiote_channel_alloc + .text.nrfx_gpiote_trigger_enable + 0x00000000000098d4 0x154 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + 0x00000000000098d4 nrfx_gpiote_trigger_enable + .text.nrfx_gpiote_trigger_disable + 0x0000000000009a28 0x4 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + 0x0000000000009a28 nrfx_gpiote_trigger_disable + .text.nrfx_gpiote_0_irq_handler + 0x0000000000009a2c 0x32c modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + 0x0000000000009a2c nrfx_gpiote_0_irq_handler + .text.nrfx_power_init + 0x0000000000009d58 0x64 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + 0x0000000000009d58 nrfx_power_init + .text.nrfx_power_usbevt_init + 0x0000000000009dbc 0x40 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + 0x0000000000009dbc nrfx_power_usbevt_init + .text.nrfx_power_usbevt_enable + 0x0000000000009dfc 0x10 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + 0x0000000000009dfc nrfx_power_usbevt_enable + .text.nrfx_power_usbevt_disable + 0x0000000000009e0c 0x10 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + 0x0000000000009e0c nrfx_power_usbevt_disable + .text.nrfx_power_irq_handler + 0x0000000000009e1c 0x18c modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + 0x0000000000009e1c nrfx_power_irq_handler + .text.nrfx_power_clock_irq_handler + 0x0000000000009fa8 0x10 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + 0x0000000000009fa8 nrfx_power_clock_irq_handler + .text.nrfx_temp_init + 0x0000000000009fb8 0x68 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_temp.c.obj) + 0x0000000000009fb8 nrfx_temp_init + .text.nrfx_temp_measure + 0x000000000000a020 0x84 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_temp.c.obj) + 0x000000000000a020 nrfx_temp_measure + .text._DoInit 0x000000000000a0a4 0x6c modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .text.SEGGER_RTT_Init + 0x000000000000a110 0x44 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + 0x000000000000a110 SEGGER_RTT_Init + .text.rtt_init + 0x000000000000a154 0xc modules/segger/libmodules__segger.a(SEGGER_RTT_zephyr.c.obj) + .text.z_impl_k_busy_wait + 0x000000000000a160 0x8 zephyr/kernel/libkernel.a(busy_wait.c.obj) + 0x000000000000a160 z_impl_k_busy_wait + .text.z_device_state_init + 0x000000000000a168 0x48 zephyr/kernel/libkernel.a(device.c.obj) + 0x000000000000a168 z_device_state_init + .text.z_impl_device_is_ready + 0x000000000000a1b0 0x18 zephyr/kernel/libkernel.a(device.c.obj) + 0x000000000000a1b0 z_impl_device_is_ready + .text.arch_system_halt + 0x000000000000a1c8 0x10 zephyr/kernel/libkernel.a(fatal.c.obj) + 0x000000000000a1c8 arch_system_halt + .text.k_sys_fatal_error_handler + 0x000000000000a1d8 0x8 zephyr/kernel/libkernel.a(fatal.c.obj) + 0x000000000000a1d8 k_sys_fatal_error_handler + .text.z_fatal_error + 0x000000000000a1e0 0x60 zephyr/kernel/libkernel.a(fatal.c.obj) + 0x000000000000a1e0 z_fatal_error + .text.z_sys_init_run_level + 0x000000000000a240 0x54 zephyr/kernel/libkernel.a(init.c.obj) + .text.bg_thread_main + 0x000000000000a294 0x120 zephyr/kernel/libkernel.a(init.c.obj) + .text.z_early_memset + 0x000000000000a3b4 0x4 zephyr/kernel/libkernel.a(init.c.obj) + 0x000000000000a3b4 z_early_memset + .text.z_early_memcpy + 0x000000000000a3b8 0x4 zephyr/kernel/libkernel.a(init.c.obj) + 0x000000000000a3b8 z_early_memcpy + .text.z_bss_zero + 0x000000000000a3bc 0x18 zephyr/kernel/libkernel.a(init.c.obj) + 0x000000000000a3bc z_bss_zero + .text.z_cstart + 0x000000000000a3d4 0x11c zephyr/kernel/libkernel.a(init.c.obj) + 0x000000000000a3d4 z_cstart + .text.z_init_static + 0x000000000000a4f0 0x4 zephyr/kernel/libkernel.a(init_static.c.obj) + 0x000000000000a4f0 z_init_static + .text.init_mem_slab_obj_core_list + 0x000000000000a4f4 0x9c zephyr/kernel/libkernel.a(mem_slab.c.obj) + .text.k_mem_slab_alloc + 0x000000000000a590 0x128 zephyr/kernel/libkernel.a(mem_slab.c.obj) + 0x000000000000a590 k_mem_slab_alloc + .text.k_mem_slab_free + 0x000000000000a6b8 0x198 zephyr/kernel/libkernel.a(mem_slab.c.obj) + 0x000000000000a6b8 k_mem_slab_free + .text.idle 0x000000000000a850 0x48 zephyr/kernel/libkernel.a(idle.c.obj) + 0x000000000000a850 idle + .text.z_impl_k_mutex_init + 0x000000000000a898 0x10 zephyr/kernel/libkernel.a(mutex.c.obj) + 0x000000000000a898 z_impl_k_mutex_init + .text.z_impl_k_mutex_lock + 0x000000000000a8a8 0x1bc zephyr/kernel/libkernel.a(mutex.c.obj) + 0x000000000000a8a8 z_impl_k_mutex_lock + .text.z_impl_k_mutex_unlock + 0x000000000000aa64 0x1c0 zephyr/kernel/libkernel.a(mutex.c.obj) + 0x000000000000aa64 z_impl_k_mutex_unlock + .text.queue_insert + 0x000000000000ac24 0x1d8 zephyr/kernel/libkernel.a(queue.c.obj) + .text.k_queue_append + 0x000000000000adfc 0x18 zephyr/kernel/libkernel.a(queue.c.obj) + 0x000000000000adfc k_queue_append + .text.z_impl_k_queue_get + 0x000000000000ae14 0xe4 zephyr/kernel/libkernel.a(queue.c.obj) + 0x000000000000ae14 z_impl_k_queue_get + .text.z_impl_k_sem_init + 0x000000000000aef8 0x18 zephyr/kernel/libkernel.a(sem.c.obj) + 0x000000000000aef8 z_impl_k_sem_init + .text.z_impl_k_sem_give + 0x000000000000af10 0x134 zephyr/kernel/libkernel.a(sem.c.obj) + 0x000000000000af10 z_impl_k_sem_give + .text.z_impl_k_sem_take + 0x000000000000b044 0xf8 zephyr/kernel/libkernel.a(sem.c.obj) + 0x000000000000b044 z_impl_k_sem_take + .text.work_queue_main + 0x000000000000b13c 0x230 zephyr/kernel/libkernel.a(work.c.obj) + .text.submit_to_queue_locked + 0x000000000000b36c 0xe8 zephyr/kernel/libkernel.a(work.c.obj) + .text.work_timeout + 0x000000000000b454 0xb4 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_init + 0x000000000000b508 0x4c zephyr/kernel/libkernel.a(work.c.obj) + 0x000000000000b508 k_work_init + .text.z_work_submit_to_queue + 0x000000000000b554 0xe0 zephyr/kernel/libkernel.a(work.c.obj) + 0x000000000000b554 z_work_submit_to_queue + .text.k_work_submit_to_queue + 0x000000000000b634 0x20 zephyr/kernel/libkernel.a(work.c.obj) + 0x000000000000b634 k_work_submit_to_queue + .text.k_work_queue_start + 0x000000000000b654 0xec zephyr/kernel/libkernel.a(work.c.obj) + 0x000000000000b654 k_work_queue_start + .text.k_work_init_delayable + 0x000000000000b740 0x5c zephyr/kernel/libkernel.a(work.c.obj) + 0x000000000000b740 k_work_init_delayable + .text.k_work_schedule_for_queue + 0x000000000000b79c 0x118 zephyr/kernel/libkernel.a(work.c.obj) + 0x000000000000b79c k_work_schedule_for_queue + .text.k_is_in_isr + 0x000000000000b8b4 0xc zephyr/kernel/libkernel.a(thread.c.obj) + 0x000000000000b8b4 k_is_in_isr + .text.z_impl_k_thread_name_set + 0x000000000000b8c0 0x8 zephyr/kernel/libkernel.a(thread.c.obj) + 0x000000000000b8c0 z_impl_k_thread_name_set + .text.z_setup_new_thread + 0x000000000000b8c8 0xec zephyr/kernel/libkernel.a(thread.c.obj) + 0x000000000000b8c8 z_setup_new_thread + .text.z_impl_k_thread_create + 0x000000000000b9b4 0x94 zephyr/kernel/libkernel.a(thread.c.obj) + 0x000000000000b9b4 z_impl_k_thread_create + .text.unready_thread + 0x000000000000ba48 0xb4 zephyr/kernel/libkernel.a(sched.c.obj) + .text.add_to_waitq_locked + 0x000000000000bafc 0x54 zephyr/kernel/libkernel.a(sched.c.obj) + .text.unpend_thread_no_timeout.part.0 + 0x000000000000bb50 0x24 zephyr/kernel/libkernel.a(sched.c.obj) + .text.ready_thread + 0x000000000000bb74 0xe4 zephyr/kernel/libkernel.a(sched.c.obj) + .text.move_thread_to_end_of_prio_q + 0x000000000000bc58 0x124 zephyr/kernel/libkernel.a(sched.c.obj) + 0x000000000000bc58 move_thread_to_end_of_prio_q + .text.z_ready_thread + 0x000000000000bd7c 0x90 zephyr/kernel/libkernel.a(sched.c.obj) + 0x000000000000bd7c z_ready_thread + .text.z_unpend_thread_no_timeout + 0x000000000000be0c 0xac zephyr/kernel/libkernel.a(sched.c.obj) + 0x000000000000be0c z_unpend_thread_no_timeout + .text.z_sched_wake_thread + 0x000000000000beb8 0xbc zephyr/kernel/libkernel.a(sched.c.obj) + 0x000000000000beb8 z_sched_wake_thread + .text.z_thread_timeout + 0x000000000000bf74 0x8 zephyr/kernel/libkernel.a(sched.c.obj) + 0x000000000000bf74 z_thread_timeout + .text.z_pend_curr + 0x000000000000bf7c 0x130 zephyr/kernel/libkernel.a(sched.c.obj) + 0x000000000000bf7c z_pend_curr + .text.z_unpend1_no_timeout + 0x000000000000c0ac 0xc0 zephyr/kernel/libkernel.a(sched.c.obj) + 0x000000000000c0ac z_unpend1_no_timeout + .text.z_thread_prio_set + 0x000000000000c16c 0x14c zephyr/kernel/libkernel.a(sched.c.obj) + 0x000000000000c16c z_thread_prio_set + .text.z_reschedule + 0x000000000000c2b8 0xa8 zephyr/kernel/libkernel.a(sched.c.obj) + 0x000000000000c2b8 z_reschedule + .text.z_reschedule_irqlock + 0x000000000000c360 0x40 zephyr/kernel/libkernel.a(sched.c.obj) + 0x000000000000c360 z_reschedule_irqlock + .text.k_sched_lock + 0x000000000000c3a0 0xe8 zephyr/kernel/libkernel.a(sched.c.obj) + 0x000000000000c3a0 k_sched_lock + .text.k_sched_unlock + 0x000000000000c488 0x16c zephyr/kernel/libkernel.a(sched.c.obj) + 0x000000000000c488 k_sched_unlock + .text.z_unpend_all + 0x000000000000c5f4 0x34 zephyr/kernel/libkernel.a(sched.c.obj) + 0x000000000000c5f4 z_unpend_all + .text.z_sched_init + 0x000000000000c628 0x10 zephyr/kernel/libkernel.a(sched.c.obj) + 0x000000000000c628 z_sched_init + .text.z_impl_k_yield + 0x000000000000c638 0x150 zephyr/kernel/libkernel.a(sched.c.obj) + 0x000000000000c638 z_impl_k_yield + .text.z_tick_sleep + 0x000000000000c788 0x140 zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_impl_k_sleep + 0x000000000000c8c8 0x64 zephyr/kernel/libkernel.a(sched.c.obj) + 0x000000000000c8c8 z_impl_k_sleep + .text.z_impl_k_usleep + 0x000000000000c92c 0x3c zephyr/kernel/libkernel.a(sched.c.obj) + 0x000000000000c92c z_impl_k_usleep + .text.z_impl_k_wakeup + 0x000000000000c968 0xb8 zephyr/kernel/libkernel.a(sched.c.obj) + 0x000000000000c968 z_impl_k_wakeup + .text.z_impl_k_sched_current_thread_query + 0x000000000000ca20 0xc zephyr/kernel/libkernel.a(sched.c.obj) + 0x000000000000ca20 z_impl_k_sched_current_thread_query + .text.z_thread_abort + 0x000000000000ca2c 0x27c zephyr/kernel/libkernel.a(sched.c.obj) + 0x000000000000ca2c z_thread_abort + .text.z_sched_wake + 0x000000000000cca8 0xe0 zephyr/kernel/libkernel.a(sched.c.obj) + 0x000000000000cca8 z_sched_wake + .text.z_sched_wait + 0x000000000000cd88 0x24 zephyr/kernel/libkernel.a(sched.c.obj) + 0x000000000000cd88 z_sched_wait + .text.slice_timeout + 0x000000000000cdac 0x60 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .text.z_reset_time_slice + 0x000000000000ce0c 0x70 zephyr/kernel/libkernel.a(timeslicing.c.obj) + 0x000000000000ce0c z_reset_time_slice + .text.z_time_slice + 0x000000000000ce7c 0xf0 zephyr/kernel/libkernel.a(timeslicing.c.obj) + 0x000000000000ce7c z_time_slice + .text.z_spin_lock_valid + 0x000000000000cf6c 0x1c zephyr/kernel/libkernel.a(spinlock_validate.c.obj) + 0x000000000000cf6c z_spin_lock_valid + .text.z_spin_unlock_valid + 0x000000000000cf88 0x30 zephyr/kernel/libkernel.a(spinlock_validate.c.obj) + 0x000000000000cf88 z_spin_unlock_valid + .text.z_spin_lock_set_owner + 0x000000000000cfb8 0x10 zephyr/kernel/libkernel.a(spinlock_validate.c.obj) + 0x000000000000cfb8 z_spin_lock_set_owner + .text.z_data_copy + 0x000000000000cfc8 0x38 zephyr/kernel/libkernel.a(xip.c.obj) + 0x000000000000cfc8 z_data_copy + .text.remove_timeout + 0x000000000000d000 0x38 zephyr/kernel/libkernel.a(timeout.c.obj) + .text.z_add_timeout + 0x000000000000d038 0x1d0 zephyr/kernel/libkernel.a(timeout.c.obj) + 0x000000000000d038 z_add_timeout + .text.z_abort_timeout + 0x000000000000d208 0x104 zephyr/kernel/libkernel.a(timeout.c.obj) + 0x000000000000d208 z_abort_timeout + .text.sys_clock_announce + 0x000000000000d30c 0x1f8 zephyr/kernel/libkernel.a(timeout.c.obj) + 0x000000000000d30c sys_clock_announce + .text.sys_clock_tick_get + 0x000000000000d504 0xb4 zephyr/kernel/libkernel.a(timeout.c.obj) + 0x000000000000d504 sys_clock_tick_get + .text.sys_clock_tick_get_32 + 0x000000000000d5b8 0x8 zephyr/kernel/libkernel.a(timeout.c.obj) + 0x000000000000d5b8 sys_clock_tick_get_32 + .text.z_impl_k_uptime_ticks + 0x000000000000d5c0 0x4 zephyr/kernel/libkernel.a(timeout.c.obj) + 0x000000000000d5c0 z_impl_k_uptime_ticks + .text.sys_timepoint_calc + 0x000000000000d5c4 0x64 zephyr/kernel/libkernel.a(timeout.c.obj) + 0x000000000000d5c4 sys_timepoint_calc + .text.sys_timepoint_timeout + 0x000000000000d628 0x50 zephyr/kernel/libkernel.a(timeout.c.obj) + 0x000000000000d628 sys_timepoint_timeout + .text.z_timer_expiration_handler + 0x000000000000d678 0x170 zephyr/kernel/libkernel.a(timer.c.obj) + 0x000000000000d678 z_timer_expiration_handler + .text.k_timer_init + 0x000000000000d7e8 0x20 zephyr/kernel/libkernel.a(timer.c.obj) + 0x000000000000d7e8 k_timer_init + .text.z_impl_k_timer_start + 0x000000000000d808 0xe4 zephyr/kernel/libkernel.a(timer.c.obj) + 0x000000000000d808 z_impl_k_timer_start + .text.z_impl_k_timer_stop + 0x000000000000d8ec 0x38 zephyr/kernel/libkernel.a(timer.c.obj) + 0x000000000000d8ec z_impl_k_timer_stop + .text.k_free 0x000000000000d924 0x10 zephyr/kernel/libkernel.a(mempool.c.obj) + 0x000000000000d924 k_free + .text.z_thread_aligned_alloc + 0x000000000000d934 0x7c zephyr/kernel/libkernel.a(mempool.c.obj) + 0x000000000000d934 z_thread_aligned_alloc + .text.statics_init + 0x000000000000d9b0 0x5c zephyr/kernel/libkernel.a(kheap.c.obj) + .text.k_heap_aligned_alloc + 0x000000000000da0c 0x13c zephyr/kernel/libkernel.a(kheap.c.obj) + 0x000000000000da0c k_heap_aligned_alloc + .text.k_heap_free + 0x000000000000db48 0xac zephyr/kernel/libkernel.a(kheap.c.obj) + 0x000000000000db48 k_heap_free + .text.k_sys_work_q_init + 0x000000000000dbf4 0x38 zephyr/kernel/libkernel.a(system_work_q.c.obj) + .text.__l_vfprintf + 0x000000000000dc2c 0x4b8 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_vflprintf.c.o) + 0x000000000000dc2c __l_vfprintf + .text.memcpy 0x000000000000e0e4 0x1c /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(memcpy.c.o) + 0x000000000000e0e4 memcpy + 0x000000000000e0e4 __aeabi_memcpy + 0x000000000000e0e4 __aeabi_memcpy4 + 0x000000000000e0e4 __aeabi_memcpy8 + .text.memset 0x000000000000e100 0x10 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(memset.c.o) + 0x000000000000e100 memset + .text.strnlen 0x000000000000e110 0x18 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_string_strnlen.c.o) + 0x000000000000e110 strnlen + .text.__ultoa_invert + 0x000000000000e128 0xae /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_vflprintf.c.o) + *(SORT_BY_ALIGNMENT(.TEXT.*)) + *fill* 0x000000000000e1d6 0x2 + .TEXT.__aeabi_read_tp + 0x000000000000e1d8 0xc zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(__aeabi_read_tp.S.obj) + 0x000000000000e1d8 __aeabi_read_tp + *(SORT_BY_ALIGNMENT(.gnu.linkonce.t.*)) + *(SORT_BY_ALIGNMENT(.glue_7t)) + .glue_7t 0x000000000000e1e4 0x0 linker stubs + *(SORT_BY_ALIGNMENT(.glue_7)) + .glue_7 0x000000000000e1e4 0x0 linker stubs + *(SORT_BY_ALIGNMENT(.vfp11_veneer)) + .vfp11_veneer 0x000000000000e1e4 0x0 linker stubs + *(SORT_BY_ALIGNMENT(.v4_bx)) + .v4_bx 0x000000000000e1e4 0x0 linker stubs + 0x000000000000e1e4 . = ALIGN (0x4) + 0x000000000000e1e4 __text_region_end = . + +.ARM.exidx 0x000000000000e1e4 0x8 + 0x000000000000e1e4 __exidx_start = . + *(SORT_BY_ALIGNMENT(.ARM.exidx*) SORT_BY_ALIGNMENT(gnu.linkonce.armexidx.*)) + .ARM.exidx 0x000000000000e1e4 0x8 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(strlen.S.o) + .ARM.exidx 0x000000000000e1ec 0x0 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_udivmoddi4.o) + 0x8 (size before relaxing) + 0x000000000000e1ec __exidx_end = . + 0x000000000000e1ec __rodata_region_start = . + +initlevel 0x000000000000e1ec 0x80 + 0x000000000000e1ec __init_start = . + 0x000000000000e1ec __init_EARLY_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_EARLY?_*))) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_EARLY??_*))) + 0x000000000000e1ec __init_PRE_KERNEL_1_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_PRE_KERNEL_1?_*))) + .z_init_PRE_KERNEL_10_0_ + 0x000000000000e1ec 0x8 zephyr/soc/soc/nrf52833/libsoc__nordic.a(soc.c.obj) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_PRE_KERNEL_1??_*))) + .z_init_PRE_KERNEL_130_00025_ + 0x000000000000e1f4 0x8 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .z_init_PRE_KERNEL_130_0_ + 0x000000000000e1fc 0x8 modules/segger/libmodules__segger.a(SEGGER_RTT_zephyr.c.obj) + .z_init_PRE_KERNEL_130_0_ + 0x000000000000e204 0x8 zephyr/kernel/libkernel.a(mem_slab.c.obj) + .z_init_PRE_KERNEL_130_0_ + 0x000000000000e20c 0x8 zephyr/kernel/libkernel.a(kheap.c.obj) + .z_init_PRE_KERNEL_140_00012_ + 0x000000000000e214 0x8 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + .z_init_PRE_KERNEL_140_00019_ + 0x000000000000e21c 0x8 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + .z_init_PRE_KERNEL_150_00084_ + 0x000000000000e224 0x8 zephyr/libzephyr.a(cdc_acm.c.obj) + .z_init_PRE_KERNEL_160_0_ + 0x000000000000e22c 0x8 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + 0x000000000000e234 __init_PRE_KERNEL_2_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_PRE_KERNEL_2?_*))) + .z_init_PRE_KERNEL_20_0_ + 0x000000000000e234 0x8 zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_PRE_KERNEL_2??_*))) + 0x000000000000e23c __init_POST_KERNEL_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_POST_KERNEL?_*))) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_POST_KERNEL??_*))) + .z_init_POST_KERNEL35_0_ + 0x000000000000e23c 0x8 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .z_init_POST_KERNEL40_0_ + 0x000000000000e244 0x8 zephyr/libzephyr.a(usb_work_q.c.obj) + .z_init_POST_KERNEL40_0_ + 0x000000000000e24c 0x8 zephyr/kernel/libkernel.a(system_work_q.c.obj) + .z_init_POST_KERNEL50_00010_ + 0x000000000000e254 0x8 zephyr/drivers/adc/libdrivers__adc.a(adc_nrfx_saadc.c.obj) + .z_init_POST_KERNEL50_0_ + 0x000000000000e25c 0x8 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + .z_init_POST_KERNEL90_00056_ + 0x000000000000e264 0x8 zephyr/drivers/sensor/nordic/temp/libdrivers__sensor__nordic__temp.a(temp_nrf5.c.obj) + 0x000000000000e26c __init_APPLICATION_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_APPLICATION?_*))) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_APPLICATION??_*))) + 0x000000000000e26c __init_SMP_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_SMP?_*))) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_SMP??_*))) + 0x000000000000e26c __init_end = . + 0x000000000000e26c __deferred_init_list_start = . + *(SORT_BY_ALIGNMENT(.z_deferred_init*)) + 0x000000000000e26c __deferred_init_list_end = . + +device_area 0x000000000000e26c 0x78 + 0x000000000000e26c _device_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._device.static.*_?_*))) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._device.static.*_??_*))) + ._device.static.1_30_ + 0x000000000000e26c 0x14 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + 0x000000000000e26c __device_dts_ord_25 + ._device.static.1_40_ + 0x000000000000e280 0x28 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + 0x000000000000e280 __device_dts_ord_19 + 0x000000000000e294 __device_dts_ord_12 + ._device.static.1_50_ + 0x000000000000e2a8 0x14 zephyr/libzephyr.a(cdc_acm.c.obj) + 0x000000000000e2a8 __device_dts_ord_84 + ._device.static.3_50_ + 0x000000000000e2bc 0x14 zephyr/drivers/adc/libdrivers__adc.a(adc_nrfx_saadc.c.obj) + 0x000000000000e2bc __device_dts_ord_10 + ._device.static.3_90_ + 0x000000000000e2d0 0x14 zephyr/drivers/sensor/nordic/temp/libdrivers__sensor__nordic__temp.a(temp_nrf5.c.obj) + 0x000000000000e2d0 __device_dts_ord_56 + 0x000000000000e2e4 _device_list_end = . + +sw_isr_table 0x000000000000e2e4 0x180 + 0x000000000000e2e4 . = ALIGN (0x4) + *(SORT_BY_ALIGNMENT(.gnu.linkonce.sw_isr_table*)) + .gnu.linkonce.sw_isr_table + 0x000000000000e2e4 0x180 zephyr/arch/common/libisr_tables.a(isr_tables.c.obj) + 0x000000000000e2e4 _sw_isr_table + +initlevel_error + 0x000000000000e1ec 0x0 + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_[_A-Z0-9]*))) + 0x0000000000000001 ASSERT ((SIZEOF (initlevel_error) == 0x0), Undefined initialization levels used.) + +app_shmem_regions + 0x000000000000e464 0x0 + 0x000000000000e464 __app_shmem_regions_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.app_regions.*))) + 0x000000000000e464 __app_shmem_regions_end = . + +k_p4wq_initparam_area + 0x000000000000e464 0x0 + 0x000000000000e464 _k_p4wq_initparam_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_p4wq_initparam.static.*))) + 0x000000000000e464 _k_p4wq_initparam_list_end = . + +_static_thread_data_area + 0x000000000000e464 0x0 + 0x000000000000e464 __static_thread_data_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.__static_thread_data.static.*))) + 0x000000000000e464 __static_thread_data_list_end = . + +device_deps 0x000000000000e464 0x0 + 0x000000000000e464 __device_deps_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.__device_deps_pass2*))) + 0x000000000000e464 __device_deps_end = . + +adc_driver_api_area + 0x000000000000e464 0xc + 0x000000000000e464 _adc_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._adc_driver_api.static.*))) + ._adc_driver_api.static.adc_nrfx_driver_api_ + 0x000000000000e464 0xc zephyr/drivers/adc/libdrivers__adc.a(adc_nrfx_saadc.c.obj) + 0x000000000000e470 _adc_driver_api_list_end = . + +gpio_driver_api_area + 0x000000000000e470 0x24 + 0x000000000000e470 _gpio_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._gpio_driver_api.static.*))) + ._gpio_driver_api.static.gpio_nrfx_drv_api_funcs_ + 0x000000000000e470 0x24 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + 0x000000000000e494 _gpio_driver_api_list_end = . + +sensor_driver_api_area + 0x000000000000e494 0x1c + 0x000000000000e494 _sensor_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._sensor_driver_api.static.*))) + ._sensor_driver_api.static.temp_nrf5_driver_api_ + 0x000000000000e494 0x1c zephyr/drivers/sensor/nordic/temp/libdrivers__sensor__nordic__temp.a(temp_nrf5.c.obj) + 0x000000000000e4b0 _sensor_driver_api_list_end = . + +shared_irq_driver_api_area + 0x000000000000e4b0 0x0 + 0x000000000000e4b0 _shared_irq_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._shared_irq_driver_api.static.*))) + 0x000000000000e4b0 _shared_irq_driver_api_list_end = . + +crypto_driver_api_area + 0x000000000000e4b0 0x0 + 0x000000000000e4b0 _crypto_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._crypto_driver_api.static.*))) + 0x000000000000e4b0 _crypto_driver_api_list_end = . + +auxdisplay_driver_api_area + 0x000000000000e4b0 0x0 + 0x000000000000e4b0 _auxdisplay_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._auxdisplay_driver_api.static.*))) + 0x000000000000e4b0 _auxdisplay_driver_api_list_end = . + +bbram_driver_api_area + 0x000000000000e4b0 0x0 + 0x000000000000e4b0 _bbram_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._bbram_driver_api.static.*))) + 0x000000000000e4b0 _bbram_driver_api_list_end = . + +bt_hci_driver_api_area + 0x000000000000e4b0 0x0 + 0x000000000000e4b0 _bt_hci_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._bt_hci_driver_api.static.*))) + 0x000000000000e4b0 _bt_hci_driver_api_list_end = . + +can_driver_api_area + 0x000000000000e4b0 0x0 + 0x000000000000e4b0 _can_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._can_driver_api.static.*))) + 0x000000000000e4b0 _can_driver_api_list_end = . + +cellular_driver_api_area + 0x000000000000e4b0 0x0 + 0x000000000000e4b0 _cellular_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._cellular_driver_api.static.*))) + 0x000000000000e4b0 _cellular_driver_api_list_end = . + +charger_driver_api_area + 0x000000000000e4b0 0x0 + 0x000000000000e4b0 _charger_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._charger_driver_api.static.*))) + 0x000000000000e4b0 _charger_driver_api_list_end = . + +clock_control_driver_api_area + 0x000000000000e4b0 0x1c + 0x000000000000e4b0 _clock_control_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._clock_control_driver_api.static.*))) + ._clock_control_driver_api.static.clock_control_api_ + 0x000000000000e4b0 0x1c zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + 0x000000000000e4cc _clock_control_driver_api_list_end = . + +comparator_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _comparator_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._comparator_driver_api.static.*))) + 0x000000000000e4cc _comparator_driver_api_list_end = . + +coredump_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _coredump_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._coredump_driver_api.static.*))) + 0x000000000000e4cc _coredump_driver_api_list_end = . + +counter_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _counter_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._counter_driver_api.static.*))) + 0x000000000000e4cc _counter_driver_api_list_end = . + +dac_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _dac_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._dac_driver_api.static.*))) + 0x000000000000e4cc _dac_driver_api_list_end = . + +dai_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _dai_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._dai_driver_api.static.*))) + 0x000000000000e4cc _dai_driver_api_list_end = . + +display_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _display_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._display_driver_api.static.*))) + 0x000000000000e4cc _display_driver_api_list_end = . + +dma_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _dma_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._dma_driver_api.static.*))) + 0x000000000000e4cc _dma_driver_api_list_end = . + +edac_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _edac_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._edac_driver_api.static.*))) + 0x000000000000e4cc _edac_driver_api_list_end = . + +eeprom_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _eeprom_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._eeprom_driver_api.static.*))) + 0x000000000000e4cc _eeprom_driver_api_list_end = . + +emul_bbram_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _emul_bbram_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._emul_bbram_driver_api.static.*))) + 0x000000000000e4cc _emul_bbram_driver_api_list_end = . + +fuel_gauge_emul_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _fuel_gauge_emul_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._fuel_gauge_emul_driver_api.static.*))) + 0x000000000000e4cc _fuel_gauge_emul_driver_api_list_end = . + +emul_sensor_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _emul_sensor_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._emul_sensor_driver_api.static.*))) + 0x000000000000e4cc _emul_sensor_driver_api_list_end = . + +entropy_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _entropy_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._entropy_driver_api.static.*))) + 0x000000000000e4cc _entropy_driver_api_list_end = . + +espi_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _espi_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._espi_driver_api.static.*))) + 0x000000000000e4cc _espi_driver_api_list_end = . + +espi_saf_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _espi_saf_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._espi_saf_driver_api.static.*))) + 0x000000000000e4cc _espi_saf_driver_api_list_end = . + +flash_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _flash_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._flash_driver_api.static.*))) + 0x000000000000e4cc _flash_driver_api_list_end = . + +fpga_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _fpga_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._fpga_driver_api.static.*))) + 0x000000000000e4cc _fpga_driver_api_list_end = . + +fuel_gauge_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _fuel_gauge_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._fuel_gauge_driver_api.static.*))) + 0x000000000000e4cc _fuel_gauge_driver_api_list_end = . + +gnss_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _gnss_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._gnss_driver_api.static.*))) + 0x000000000000e4cc _gnss_driver_api_list_end = . + +haptics_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _haptics_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._haptics_driver_api.static.*))) + 0x000000000000e4cc _haptics_driver_api_list_end = . + +hwspinlock_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _hwspinlock_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._hwspinlock_driver_api.static.*))) + 0x000000000000e4cc _hwspinlock_driver_api_list_end = . + +i2c_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _i2c_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._i2c_driver_api.static.*))) + 0x000000000000e4cc _i2c_driver_api_list_end = . + +i2c_target_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _i2c_target_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._i2c_target_driver_api.static.*))) + 0x000000000000e4cc _i2c_target_driver_api_list_end = . + +i2s_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _i2s_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._i2s_driver_api.static.*))) + 0x000000000000e4cc _i2s_driver_api_list_end = . + +i3c_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _i3c_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._i3c_driver_api.static.*))) + 0x000000000000e4cc _i3c_driver_api_list_end = . + +ipm_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _ipm_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._ipm_driver_api.static.*))) + 0x000000000000e4cc _ipm_driver_api_list_end = . + +kscan_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _kscan_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._kscan_driver_api.static.*))) + 0x000000000000e4cc _kscan_driver_api_list_end = . + +led_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _led_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._led_driver_api.static.*))) + 0x000000000000e4cc _led_driver_api_list_end = . + +led_strip_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _led_strip_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._led_strip_driver_api.static.*))) + 0x000000000000e4cc _led_strip_driver_api_list_end = . + +lora_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _lora_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._lora_driver_api.static.*))) + 0x000000000000e4cc _lora_driver_api_list_end = . + +mbox_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _mbox_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._mbox_driver_api.static.*))) + 0x000000000000e4cc _mbox_driver_api_list_end = . + +mdio_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _mdio_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._mdio_driver_api.static.*))) + 0x000000000000e4cc _mdio_driver_api_list_end = . + +mipi_dbi_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _mipi_dbi_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._mipi_dbi_driver_api.static.*))) + 0x000000000000e4cc _mipi_dbi_driver_api_list_end = . + +mipi_dsi_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _mipi_dsi_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._mipi_dsi_driver_api.static.*))) + 0x000000000000e4cc _mipi_dsi_driver_api_list_end = . + +mspi_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _mspi_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._mspi_driver_api.static.*))) + 0x000000000000e4cc _mspi_driver_api_list_end = . + +peci_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _peci_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._peci_driver_api.static.*))) + 0x000000000000e4cc _peci_driver_api_list_end = . + +ps2_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _ps2_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._ps2_driver_api.static.*))) + 0x000000000000e4cc _ps2_driver_api_list_end = . + +ptp_clock_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _ptp_clock_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._ptp_clock_driver_api.static.*))) + 0x000000000000e4cc _ptp_clock_driver_api_list_end = . + +pwm_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _pwm_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._pwm_driver_api.static.*))) + 0x000000000000e4cc _pwm_driver_api_list_end = . + +regulator_parent_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _regulator_parent_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._regulator_parent_driver_api.static.*))) + 0x000000000000e4cc _regulator_parent_driver_api_list_end = . + +regulator_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _regulator_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._regulator_driver_api.static.*))) + 0x000000000000e4cc _regulator_driver_api_list_end = . + +reset_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _reset_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._reset_driver_api.static.*))) + 0x000000000000e4cc _reset_driver_api_list_end = . + +retained_mem_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _retained_mem_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._retained_mem_driver_api.static.*))) + 0x000000000000e4cc _retained_mem_driver_api_list_end = . + +rtc_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _rtc_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._rtc_driver_api.static.*))) + 0x000000000000e4cc _rtc_driver_api_list_end = . + +sdhc_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _sdhc_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._sdhc_driver_api.static.*))) + 0x000000000000e4cc _sdhc_driver_api_list_end = . + +smbus_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _smbus_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._smbus_driver_api.static.*))) + 0x000000000000e4cc _smbus_driver_api_list_end = . + +spi_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _spi_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._spi_driver_api.static.*))) + 0x000000000000e4cc _spi_driver_api_list_end = . + +stepper_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _stepper_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._stepper_driver_api.static.*))) + 0x000000000000e4cc _stepper_driver_api_list_end = . + +syscon_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _syscon_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._syscon_driver_api.static.*))) + 0x000000000000e4cc _syscon_driver_api_list_end = . + +tee_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _tee_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._tee_driver_api.static.*))) + 0x000000000000e4cc _tee_driver_api_list_end = . + +video_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _video_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._video_driver_api.static.*))) + 0x000000000000e4cc _video_driver_api_list_end = . + +w1_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _w1_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._w1_driver_api.static.*))) + 0x000000000000e4cc _w1_driver_api_list_end = . + +wdt_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _wdt_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._wdt_driver_api.static.*))) + 0x000000000000e4cc _wdt_driver_api_list_end = . + +can_transceiver_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _can_transceiver_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._can_transceiver_driver_api.static.*))) + 0x000000000000e4cc _can_transceiver_driver_api_list_end = . + +nrf_clock_control_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _nrf_clock_control_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._nrf_clock_control_driver_api.static.*))) + 0x000000000000e4cc _nrf_clock_control_driver_api_list_end = . + +i3c_target_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _i3c_target_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._i3c_target_driver_api.static.*))) + 0x000000000000e4cc _i3c_target_driver_api_list_end = . + +its_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _its_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._its_driver_api.static.*))) + 0x000000000000e4cc _its_driver_api_list_end = . + +vtd_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _vtd_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._vtd_driver_api.static.*))) + 0x000000000000e4cc _vtd_driver_api_list_end = . + +tgpio_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _tgpio_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._tgpio_driver_api.static.*))) + 0x000000000000e4cc _tgpio_driver_api_list_end = . + +pcie_ctrl_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _pcie_ctrl_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._pcie_ctrl_driver_api.static.*))) + 0x000000000000e4cc _pcie_ctrl_driver_api_list_end = . + +pcie_ep_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _pcie_ep_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._pcie_ep_driver_api.static.*))) + 0x000000000000e4cc _pcie_ep_driver_api_list_end = . + +svc_driver_api_area + 0x000000000000e4cc 0x0 + 0x000000000000e4cc _svc_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._svc_driver_api.static.*))) + 0x000000000000e4cc _svc_driver_api_list_end = . + +uart_driver_api_area + 0x000000000000e4cc 0x4c + 0x000000000000e4cc _uart_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._uart_driver_api.static.*))) + ._uart_driver_api.static.cdc_acm_driver_api_ + 0x000000000000e4cc 0x4c zephyr/libzephyr.a(cdc_acm.c.obj) + 0x000000000000e518 _uart_driver_api_list_end = . + +bc12_emul_driver_api_area + 0x000000000000e518 0x0 + 0x000000000000e518 _bc12_emul_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._bc12_emul_driver_api.static.*))) + 0x000000000000e518 _bc12_emul_driver_api_list_end = . + +bc12_driver_api_area + 0x000000000000e518 0x0 + 0x000000000000e518 _bc12_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._bc12_driver_api.static.*))) + 0x000000000000e518 _bc12_driver_api_list_end = . + +usbc_ppc_driver_api_area + 0x000000000000e518 0x0 + 0x000000000000e518 _usbc_ppc_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._usbc_ppc_driver_api.static.*))) + 0x000000000000e518 _usbc_ppc_driver_api_list_end = . + +tcpc_driver_api_area + 0x000000000000e518 0x0 + 0x000000000000e518 _tcpc_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._tcpc_driver_api.static.*))) + 0x000000000000e518 _tcpc_driver_api_list_end = . + +usbc_vbus_driver_api_area + 0x000000000000e518 0x0 + 0x000000000000e518 _usbc_vbus_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._usbc_vbus_driver_api.static.*))) + 0x000000000000e518 _usbc_vbus_driver_api_list_end = . + +ivshmem_driver_api_area + 0x000000000000e518 0x0 + 0x000000000000e518 _ivshmem_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._ivshmem_driver_api.static.*))) + 0x000000000000e518 _ivshmem_driver_api_list_end = . + +ethphy_driver_api_area + 0x000000000000e518 0x0 + 0x000000000000e518 _ethphy_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._ethphy_driver_api.static.*))) + 0x000000000000e518 _ethphy_driver_api_list_end = . + +ztest 0x000000000000e518 0x0 + 0x000000000000e518 _ztest_expected_result_entry_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._ztest_expected_result_entry.static.*))) + 0x000000000000e518 _ztest_expected_result_entry_list_end = . + 0x000000000000e518 _ztest_suite_node_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._ztest_suite_node.static.*))) + 0x000000000000e518 _ztest_suite_node_list_end = . + 0x000000000000e518 _ztest_unit_test_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._ztest_unit_test.static.*))) + 0x000000000000e518 _ztest_unit_test_list_end = . + 0x000000000000e518 _ztest_test_rule_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._ztest_test_rule.static.*))) + 0x000000000000e518 _ztest_test_rule_list_end = . + +init_array 0x000000000000e518 0x0 + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.ctors*))) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.init_array*))) + 0x0000000000000001 ASSERT ((SIZEOF (init_array) == 0x0), GNU-style constructors required but STATIC_INIT_GNU not enabled) + +bt_l2cap_fixed_chan_area + 0x000000000000e518 0x0 + 0x000000000000e518 _bt_l2cap_fixed_chan_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._bt_l2cap_fixed_chan.static.*))) + 0x000000000000e518 _bt_l2cap_fixed_chan_list_end = . + +bt_gatt_service_static_area + 0x000000000000e518 0x0 + 0x000000000000e518 _bt_gatt_service_static_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._bt_gatt_service_static.static.*))) + 0x000000000000e518 _bt_gatt_service_static_list_end = . + +log_strings_area + 0x000000000000e518 0x0 + 0x000000000000e518 _log_strings_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._log_strings.static.*))) + 0x000000000000e518 _log_strings_list_end = . + +log_stmesp_ptr_area + 0x000000000000e518 0x0 + 0x000000000000e518 _log_stmesp_ptr_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._log_stmesp_ptr.static.*))) + 0x000000000000e518 _log_stmesp_ptr_list_end = . + +log_stmesp_str_area + 0x000000000000e518 0x0 + 0x000000000000e518 _log_stmesp_str_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._log_stmesp_str.static.*))) + 0x000000000000e518 _log_stmesp_str_list_end = . + +log_const_area 0x000000000000e518 0x0 + 0x000000000000e518 _log_const_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._log_const.static.*))) + 0x000000000000e518 _log_const_list_end = . + +log_backend_area + 0x000000000000e518 0x0 + 0x000000000000e518 _log_backend_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._log_backend.static.*))) + 0x000000000000e518 _log_backend_list_end = . + +log_link_area 0x000000000000e518 0x0 + 0x000000000000e518 _log_link_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._log_link.static.*))) + 0x000000000000e518 _log_link_list_end = . + +tracing_backend_area + 0x000000000000e518 0x0 + 0x000000000000e518 _tracing_backend_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._tracing_backend.static.*))) + 0x000000000000e518 _tracing_backend_list_end = . + +zephyr_dbg_info + *(SORT_BY_ALIGNMENT(.dbg_thread_info)) + +intc_table_area + 0x000000000000e518 0x0 + 0x000000000000e518 _intc_table_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._intc_table.static.*))) + 0x000000000000e518 _intc_table_list_end = . + +symbol_to_keep 0x000000000000e518 0x0 + 0x000000000000e518 __symbol_to_keep_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.symbol_to_keep*))) + 0x000000000000e518 __symbol_to_keep_end = . + +shell_area 0x000000000000e518 0x0 + 0x000000000000e518 _shell_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._shell.static.*))) + 0x000000000000e518 _shell_list_end = . + +shell_root_cmds_area + 0x000000000000e518 0x0 + 0x000000000000e518 _shell_root_cmds_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._shell_root_cmds.static.*))) + 0x000000000000e518 _shell_root_cmds_list_end = . + +shell_subcmds_area + 0x000000000000e518 0x0 + 0x000000000000e518 _shell_subcmds_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._shell_subcmds.static.*))) + 0x000000000000e518 _shell_subcmds_list_end = . + +shell_dynamic_subcmds_area + 0x000000000000e518 0x0 + 0x000000000000e518 _shell_dynamic_subcmds_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._shell_dynamic_subcmds.static.*))) + 0x000000000000e518 _shell_dynamic_subcmds_list_end = . + +cfb_font_area 0x000000000000e518 0x0 + 0x000000000000e518 _cfb_font_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._cfb_font.static.*))) + 0x000000000000e518 _cfb_font_list_end = . + +tdata 0x000000000000e518 0x0 + *(SORT_BY_ALIGNMENT(.tdata) SORT_BY_ALIGNMENT(.tdata.*) SORT_BY_ALIGNMENT(.gnu.linkonce.td.*)) + +tbss 0x000000000000e518 0x4 + *(SORT_BY_ALIGNMENT(.tbss) SORT_BY_ALIGNMENT(.tbss.*) SORT_BY_ALIGNMENT(.gnu.linkonce.tb.*) SORT_BY_ALIGNMENT(.tcommon)) + .tbss.z_tls_current + 0x000000000000e518 0x4 zephyr/libzephyr.a(thread_entry.c.obj) + 0x000000000000e518 z_tls_current + 0x000000000000e518 PROVIDE (__tdata_start = LOADADDR (tdata)) + 0x0000000000000001 PROVIDE (__tdata_align = ALIGNOF (tdata)) + 0x0000000000000000 PROVIDE (__tdata_size = (((SIZEOF (tdata) + __tdata_align) - 0x1) & ~ ((__tdata_align - 0x1)))) + [!provide] PROVIDE (__tdata_end = (__tdata_start + __tdata_size)) + 0x0000000000000004 PROVIDE (__tbss_align = ALIGNOF (tbss)) + [!provide] PROVIDE (__tbss_start = ADDR (tbss)) + 0x0000000000000004 PROVIDE (__tbss_size = (((SIZEOF (tbss) + __tbss_align) - 0x1) & ~ ((__tbss_align - 0x1)))) + [!provide] PROVIDE (__tbss_end = (__tbss_start + __tbss_size)) + [!provide] PROVIDE (__tls_start = __tdata_start) + [!provide] PROVIDE (__tls_end = __tbss_end) + [!provide] PROVIDE (__tls_size = (__tbss_end - __tdata_start)) + +rodata 0x000000000000e520 0x2368 + *(SORT_BY_ALIGNMENT(.rodata)) + .rodata 0x000000000000e520 0x7 zephyr/libzephyr.a(cdc_acm.c.obj) + *fill* 0x000000000000e527 0x1 + .rodata 0x000000000000e528 0x8 zephyr/kernel/libkernel.a(system_work_q.c.obj) + *(SORT_BY_ALIGNMENT(.rodata.*)) + .rodata.delay_machine_code.0 + 0x000000000000e530 0x6 zephyr/soc/soc/nrf52833/libsoc__nordic.a(soc.c.obj) + *fill* 0x000000000000e536 0x2 + .rodata.main.str1.4 + 0x000000000000e538 0xf9 app/libapp.a(main.c.obj) + *fill* 0x000000000000e631 0x3 + .rodata.z_impl_gpio_pin_configure.isra.0.str1.4 + 0x000000000000e634 0x366 app/libapp.a(led.c.obj) + *fill* 0x000000000000e99a 0x2 + .rodata.led_init.str1.4 + 0x000000000000e99c 0x17 app/libapp.a(led.c.obj) + *fill* 0x000000000000e9b3 0x1 + .rodata.button_init.str1.4 + 0x000000000000e9b4 0x19 app/libapp.a(button.c.obj) + 0xc2 (size before relaxing) + .rodata.z_impl_gpio_pin_configure.isra.0.str1.4 + 0x000000000000e9cd 0x366 app/libapp.a(actuator.c.obj) + *fill* 0x000000000000e9cd 0x3 + .rodata.battery_adc_init.str1.4 + 0x000000000000e9d0 0xf app/libapp.a(battery_adc.c.obj) + 0xb6 (size before relaxing) + *fill* 0x000000000000e9df 0x1 + .rodata.adc_channel + 0x000000000000e9e0 0x14 app/libapp.a(battery_adc.c.obj) + .rodata.TIMER1_IRQHandler.str1.4 + 0x000000000000e9f4 0xa6 app/libapp.a(timer_count.c.obj) + .rodata.configure_clock_pin.str1.4 + 0x000000000000e9f4 0x57 app/libapp.a(timer_count.c.obj) + *fill* 0x000000000000ea4b 0x1 + .rodata.configure_measurement.str1.4 + 0x000000000000ea4c 0x38 app/libapp.a(timer_count.c.obj) + .rodata.sys_heap_free.str1.4 + 0x000000000000ea84 0xd4 zephyr/libzephyr.a(heap.c.obj) + 0xf4 (size before relaxing) + .rodata.sys_heap_aligned_alloc.str1.4 + 0x000000000000eb58 0x39 zephyr/libzephyr.a(heap.c.obj) + *fill* 0x000000000000eb91 0x3 + .rodata.sys_heap_init.str1.4 + 0x000000000000eb94 0x97 zephyr/libzephyr.a(heap.c.obj) + *fill* 0x000000000000ec2b 0x1 + .rodata.process_event.str1.4 + 0x000000000000ec2c 0x10a zephyr/libzephyr.a(onoff.c.obj) + 0x12e (size before relaxing) + *fill* 0x000000000000ed36 0x2 + .rodata.onoff_release.str1.4 + 0x000000000000ed38 0xe zephyr/libzephyr.a(onoff.c.obj) + *fill* 0x000000000000ed46 0x2 + .rodata.onoff_cancel.str1.4 + 0x000000000000ed48 0x77 zephyr/libzephyr.a(onoff.c.obj) + *fill* 0x000000000000edbf 0x1 + .rodata.sys_notify_finalize.str1.4 + 0x000000000000edc0 0x26 zephyr/libzephyr.a(notify.c.obj) + 0x49 (size before relaxing) + *fill* 0x000000000000ede6 0x2 + .rodata.ring_buf_put.str1.4 + 0x000000000000ede8 0x35 zephyr/libzephyr.a(ring_buffer.c.obj) + 0x55 (size before relaxing) + *fill* 0x000000000000ee1d 0x3 + .rodata.mem_attr_region + 0x000000000000ee20 0x0 zephyr/libzephyr.a(mem_attr.c.obj) + .rodata.custom_handler.str1.4 + 0x000000000000ee20 0x77 zephyr/libzephyr.a(usb_device.c.obj) + 0x97 (size before relaxing) + .rodata.usb_handle_control_transfer.str1.4 + 0x000000000000ee97 0x2 zephyr/libzephyr.a(usb_device.c.obj) + *fill* 0x000000000000ee97 0x1 + .rodata.usb_update_sn_string_descriptor.str1.4 + 0x000000000000ee98 0x11 zephyr/libzephyr.a(usb_descriptor.c.obj) + *fill* 0x000000000000eea9 0x3 + .rodata.usb_get_device_descriptor.str1.4 + 0x000000000000eeac 0xee zephyr/libzephyr.a(usb_descriptor.c.obj) + 0x152 (size before relaxing) + *fill* 0x000000000000ef9a 0x2 + .rodata.str1.4 + 0x000000000000ef9c 0xe zephyr/libzephyr.a(cdc_acm.c.obj) + *fill* 0x000000000000efaa 0x2 + .rodata.z_usb_work_q_init.str1.4 + 0x000000000000efac 0x9 zephyr/libzephyr.a(usb_work_q.c.obj) + *fill* 0x000000000000efb5 0x3 + .rodata.boot_banner.str1.4 + 0x000000000000efb8 0x66 zephyr/libzephyr.a(banner.c.obj) + *fill* 0x000000000000f01e 0x2 + .rodata.mem_manage_fault.str1.4 + 0x000000000000f020 0xa3 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault.c.obj) + 0xc3 (size before relaxing) + *fill* 0x000000000000f0c3 0x1 + .rodata.z_arm_fault.str1.4 + 0x000000000000f0c4 0xa8 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault.c.obj) + 0xac (size before relaxing) + .rodata.z_arm_irq_priority_set.str1.4 + 0x000000000000f16c 0x94 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + 0xb4 (size before relaxing) + .rodata.static_regions + 0x000000000000f200 0xc zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_core_mpu.c.obj) + .rodata.arm_core_mpu_configure_static_mpu_regions.str1.4 + 0x000000000000f20c 0x5c zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_mpu.c.obj) + 0x80 (size before relaxing) + .rodata.arm_core_mpu_configure_dynamic_mpu_regions.str1.4 + 0x000000000000f268 0x2d zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_mpu.c.obj) + *fill* 0x000000000000f295 0x3 + .rodata.z_arm_mpu_init.str1.4 + 0x000000000000f298 0x129 zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_mpu.c.obj) + *fill* 0x000000000000f3c1 0x3 + .rodata.mpu_config + 0x000000000000f3c4 0x8 zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_mpu_regions.c.obj) + 0x000000000000f3c4 mpu_config + .rodata.str1.4 + 0x000000000000f3cc 0xf zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_mpu_regions.c.obj) + *fill* 0x000000000000f3db 0x1 + .rodata.mpu_regions + 0x000000000000f3dc 0x18 zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_mpu_regions.c.obj) + .rodata.usb_init.str1.4 + 0x000000000000f3f4 0xb zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + *fill* 0x000000000000f3ff 0x1 + .rodata.usbd_evt_alloc.part.0.str1.4 + 0x000000000000f400 0x34 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + 0x55 (size before relaxing) + .rodata.usbd_work_handler.str1.4 + 0x000000000000f434 0x55 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + 0x61 (size before relaxing) + *fill* 0x000000000000f489 0x3 + .rodata.usb_dc_set_address.str1.4 + 0x000000000000f48c 0x55 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + *fill* 0x000000000000f4e1 0x3 + .rodata.CSWTCH.96 + 0x000000000000f4e4 0x3 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + *fill* 0x000000000000f4e7 0x1 + .rodata.usbevt_config.0 + 0x000000000000f4e8 0x4 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + .rodata.power_config.1 + 0x000000000000f4ec 0x1 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + *fill* 0x000000000000f4ed 0x3 + .rodata.ep_state_access.part.0.str1.4 + 0x000000000000f4f0 0xa2 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + 0xc1 (size before relaxing) + *fill* 0x000000000000f592 0x2 + .rodata.nrf_usbd_common_irq_handler.str1.4 + 0x000000000000f594 0xe5 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + *fill* 0x000000000000f679 0x3 + .rodata.nrf_usbd_common_uninit.str1.4 + 0x000000000000f67c 0x2a zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + *fill* 0x000000000000f6a6 0x2 + .rodata.nrf_usbd_common_enable.str1.4 + 0x000000000000f6a8 0x25 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + *fill* 0x000000000000f6cd 0x3 + .rodata.nrf_usbd_common_start.str1.4 + 0x000000000000f6d0 0x29 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + *fill* 0x000000000000f6f9 0x3 + .rodata.nrf_usbd_common_ep_max_packet_size_set.str1.4 + 0x000000000000f6fc 0xba zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + *fill* 0x000000000000f7b6 0x2 + .rodata.nrf_usbd_common_init.str1.4 + 0x000000000000f7b8 0xe zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + *fill* 0x000000000000f7c6 0x2 + .rodata.nrf_usbd_common_ep_transfer.str1.4 + 0x000000000000f7c8 0x87 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + *fill* 0x000000000000f84f 0x1 + .rodata.nrf_usbd_common_ep_stall.str1.4 + 0x000000000000f850 0x13 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + *fill* 0x000000000000f863 0x1 + .rodata.nrf_usbd_common_transfer_out_drop.str1.4 + 0x000000000000f864 0x13 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + *fill* 0x000000000000f877 0x1 + .rodata.nrf_usbd_common_disable.str1.4 + 0x000000000000f878 0x2c zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + .rodata.gains.0 + 0x000000000000f8a4 0x2a zephyr/drivers/adc/libdrivers__adc.a(adc_common.c.obj) + *fill* 0x000000000000f8ce 0x2 + .rodata.str1.4 + 0x000000000000f8d0 0xd zephyr/drivers/adc/libdrivers__adc.a(adc_nrfx_saadc.c.obj) + *fill* 0x000000000000f8dd 0x3 + .rodata.get_status.str1.4 + 0x000000000000f8e0 0x64 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + 0x81 (size before relaxing) + .rodata.clock_event_handler.str1.4 + 0x000000000000f944 0x2 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .rodata.z_nrf_clock_control_lf_on.str1.4 + 0x000000000000f944 0x9 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .rodata.transitions.0 + 0x000000000000f944 0xc zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .rodata.str1.4 + 0x000000000000f950 0xf zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + *fill* 0x000000000000f95f 0x1 + .rodata.config + 0x000000000000f960 0x10 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .rodata.gpio_nrfx_manage_callback.str1.4 + 0x000000000000f970 0x83 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + 0xa3 (size before relaxing) + .rodata.nrf_gpio_pin_port_decode.part.0.str1.4 + 0x000000000000f9f3 0x57 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + *fill* 0x000000000000f9f3 0x1 + .rodata.gpio_nrfx_pin_configure.str1.4 + 0x000000000000f9f4 0x40 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + .rodata.nrfx_gpio_handler.str1.4 + 0x000000000000fa34 0xc zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + .rodata.str1.4 + 0x000000000000fa40 0x1e zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + *fill* 0x000000000000fa5e 0x2 + .rodata.gpio_nrfx_p1_cfg + 0x000000000000fa60 0x18 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + .rodata.gpio_nrfx_p0_cfg + 0x000000000000fa78 0x18 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + .rodata.temp_nrf5_init.str1.4 + 0x000000000000fa90 0x4a zephyr/drivers/sensor/nordic/temp/libdrivers__sensor__nordic__temp.a(temp_nrf5.c.obj) + 0x69 (size before relaxing) + *fill* 0x000000000000fada 0x2 + .rodata.temp_nrf5_sample_fetch.str1.4 + 0x000000000000fadc 0x7 zephyr/drivers/sensor/nordic/temp/libdrivers__sensor__nordic__temp.a(temp_nrf5.c.obj) + *fill* 0x000000000000fae3 0x1 + .rodata.str1.4 + 0x000000000000fae4 0xe zephyr/drivers/sensor/nordic/temp/libdrivers__sensor__nordic__temp.a(temp_nrf5.c.obj) + *fill* 0x000000000000faf2 0x2 + .rodata.clock_stop.str1.4 + 0x000000000000faf4 0x74 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_clock.c.obj) + 0x98 (size before relaxing) + .rodata.nrfx_clock_enable.str1.4 + 0x000000000000fb68 0x1e modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_clock.c.obj) + .rodata.nrf_gpio_pin_port_decode.part.0.str1.4 + 0x000000000000fb86 0x75 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + *fill* 0x000000000000fb86 0x2 + .rodata.release_handler.isra.0.str1.4 + 0x000000000000fb88 0x3e modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + 0x54 (size before relaxing) + *fill* 0x000000000000fbc6 0x2 + .rodata.pin_in_event_get.constprop.0.str1.4 + 0x000000000000fbc8 0x65 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + *fill* 0x000000000000fc2d 0x3 + .rodata.nrfx_gpiote_channel_get.str1.4 + 0x000000000000fc30 0xa modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + *fill* 0x000000000000fc3a 0x2 + .rodata.nrfx_gpiote_init.str1.4 + 0x000000000000fc3c 0x42 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + *fill* 0x000000000000fc7e 0x2 + .rodata.nrfx_gpiote_trigger_enable.str1.4 + 0x000000000000fc80 0xb modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + *fill* 0x000000000000fc8b 0x1 + .rodata.port_offset.1 + 0x000000000000fc8c 0x10 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .rodata.ports 0x000000000000fc9c 0x2 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + *fill* 0x000000000000fc9e 0x2 + .rodata.nrfx_power_init.str1.4 + 0x000000000000fca0 0x49 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + 0x69 (size before relaxing) + *fill* 0x000000000000fce9 0x3 + .rodata.nrfx_power_pof_init.str1.4 + 0x000000000000fcec 0x18 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + .rodata.nrfx_power_irq_handler.str1.4 + 0x000000000000fd04 0x68 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + .rodata.nrfx_temp_init.str1.4 + 0x000000000000fd6c 0x3c modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_temp.c.obj) + 0x65 (size before relaxing) + .rodata.nrfx_temp_uninit.str1.4 + 0x000000000000fda8 0x2b modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_temp.c.obj) + *fill* 0x000000000000fdd3 0x1 + .rodata._DoInit.str1.4 + 0x000000000000fdd4 0x9 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + *fill* 0x000000000000fddd 0x3 + .rodata._aInitStr + 0x000000000000fde0 0x11 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + *fill* 0x000000000000fdf1 0x3 + .rodata.z_device_state_init.str1.4 + 0x000000000000fdf4 0x3c zephyr/kernel/libkernel.a(device.c.obj) + 0x7b (size before relaxing) + .rodata.z_fatal_error.str1.4 + 0x000000000000fe30 0x79 zephyr/kernel/libkernel.a(fatal.c.obj) + 0x99 (size before relaxing) + *fill* 0x000000000000fea9 0x3 + .rodata.bg_thread_main.str1.4 + 0x000000000000feac 0x51 zephyr/kernel/libkernel.a(init.c.obj) + 0x93 (size before relaxing) + *fill* 0x000000000000fefd 0x3 + .rodata.z_cstart.str1.4 + 0x000000000000ff00 0x5 zephyr/kernel/libkernel.a(init.c.obj) + *fill* 0x000000000000ff05 0x3 + .rodata.levels.0 + 0x000000000000ff08 0x18 zephyr/kernel/libkernel.a(init.c.obj) + .rodata.init_mem_slab_obj_core_list.str1.4 + 0x000000000000ff20 0x45 zephyr/kernel/libkernel.a(mem_slab.c.obj) + 0x87 (size before relaxing) + *fill* 0x000000000000ff65 0x3 + .rodata.k_mem_slab_alloc.str1.4 + 0x000000000000ff68 0x97 zephyr/kernel/libkernel.a(mem_slab.c.obj) + 0x125 (size before relaxing) + *fill* 0x000000000000ffff 0x1 + .rodata.k_mem_slab_free.str1.4 + 0x0000000000010000 0x83 zephyr/kernel/libkernel.a(mem_slab.c.obj) + 0x87 (size before relaxing) + *fill* 0x0000000000010083 0x1 + .rodata.idle.str1.4 + 0x0000000000010084 0x4c zephyr/kernel/libkernel.a(idle.c.obj) + 0x69 (size before relaxing) + .rodata.z_impl_k_mutex_lock.str1.4 + 0x00000000000100d0 0x5d zephyr/kernel/libkernel.a(mutex.c.obj) + 0x10d (size before relaxing) + *fill* 0x000000000001012d 0x3 + .rodata.z_impl_k_mutex_unlock.str1.4 + 0x0000000000010130 0x17 zephyr/kernel/libkernel.a(mutex.c.obj) + 0x77 (size before relaxing) + .rodata.queue_insert.str1.4 + 0x0000000000010147 0x10d zephyr/kernel/libkernel.a(queue.c.obj) + .rodata.z_impl_k_sem_give.str1.4 + 0x0000000000010147 0x10d zephyr/kernel/libkernel.a(sem.c.obj) + *fill* 0x0000000000010147 0x1 + .rodata.z_impl_k_sem_take.str1.4 + 0x0000000000010148 0x6e zephyr/kernel/libkernel.a(sem.c.obj) + *fill* 0x00000000000101b6 0x2 + .rodata.work_queue_main.str1.4 + 0x00000000000101b8 0x3b zephyr/kernel/libkernel.a(work.c.obj) + 0xeb (size before relaxing) + *fill* 0x00000000000101f3 0x1 + .rodata.submit_to_queue_locked.str1.4 + 0x00000000000101f4 0x1b zephyr/kernel/libkernel.a(work.c.obj) + *fill* 0x000000000001020f 0x1 + .rodata.work_flush_locked.str1.4 + 0x0000000000010210 0x15 zephyr/kernel/libkernel.a(work.c.obj) + *fill* 0x0000000000010225 0x3 + .rodata.k_work_init.str1.4 + 0x0000000000010228 0x14 zephyr/kernel/libkernel.a(work.c.obj) + .rodata.z_work_submit_to_queue.str1.4 + 0x000000000001023c 0x1d zephyr/kernel/libkernel.a(work.c.obj) + *fill* 0x0000000000010259 0x3 + .rodata.k_work_queue_start.str1.4 + 0x000000000001025c 0x44 zephyr/kernel/libkernel.a(work.c.obj) + .rodata.k_work_init_delayable.str1.4 + 0x00000000000102a0 0x15 zephyr/kernel/libkernel.a(work.c.obj) + *fill* 0x00000000000102b5 0x3 + .rodata.z_setup_new_thread.str1.4 + 0x00000000000102b8 0xd5 zephyr/kernel/libkernel.a(thread.c.obj) + 0xf5 (size before relaxing) + *fill* 0x000000000001038d 0x3 + .rodata.z_impl_k_thread_create.str1.4 + 0x0000000000010390 0x25 zephyr/kernel/libkernel.a(thread.c.obj) + 0x39 (size before relaxing) + *fill* 0x00000000000103b5 0x3 + .rodata.unready_thread.str1.4 + 0x00000000000103b8 0x9b zephyr/kernel/libkernel.a(sched.c.obj) + 0xbf (size before relaxing) + .rodata.unpend_thread_no_timeout.part.0.str1.4 + 0x0000000000010453 0x43 zephyr/kernel/libkernel.a(sched.c.obj) + .rodata.z_ready_thread.str1.4 + 0x0000000000010453 0x8d zephyr/kernel/libkernel.a(sched.c.obj) + *fill* 0x0000000000010453 0x1 + .rodata.z_pend_curr.str1.4 + 0x0000000000010454 0x39 zephyr/kernel/libkernel.a(sched.c.obj) + *fill* 0x000000000001048d 0x3 + .rodata.k_sched_lock.str1.4 + 0x0000000000010490 0x31 zephyr/kernel/libkernel.a(sched.c.obj) + 0x45 (size before relaxing) + *fill* 0x00000000000104c1 0x3 + .rodata.k_sched_unlock.str1.4 + 0x00000000000104c4 0x31 zephyr/kernel/libkernel.a(sched.c.obj) + *fill* 0x00000000000104f5 0x3 + .rodata.z_thread_abort.str1.4 + 0x00000000000104f8 0x4e zephyr/kernel/libkernel.a(sched.c.obj) + 0x52 (size before relaxing) + *fill* 0x0000000000010546 0x2 + .rodata.slice_timeout.str1.4 + 0x0000000000010548 0x1d9 zephyr/kernel/libkernel.a(timeslicing.c.obj) + 0x1f9 (size before relaxing) + .rodata.k_sched_time_slice_set.str1.4 + 0x0000000000010721 0x8d zephyr/kernel/libkernel.a(timeslicing.c.obj) + *fill* 0x0000000000010721 0x3 + .rodata.z_add_timeout.str1.4 + 0x0000000000010724 0x44 zephyr/kernel/libkernel.a(timeout.c.obj) + 0xf5 (size before relaxing) + .rodata.z_timer_expiration_handler.str1.4 + 0x0000000000010768 0xad zephyr/kernel/libkernel.a(timer.c.obj) + .rodata.z_thread_aligned_alloc.str1.4 + 0x0000000000010768 0x80 zephyr/kernel/libkernel.a(mempool.c.obj) + 0xa0 (size before relaxing) + .rodata.statics_init.str1.4 + 0x00000000000107e8 0x3d zephyr/kernel/libkernel.a(kheap.c.obj) + 0x7f (size before relaxing) + *fill* 0x0000000000010825 0x3 + .rodata.k_heap_aligned_alloc.str1.4 + 0x0000000000010828 0x46 zephyr/kernel/libkernel.a(kheap.c.obj) + 0xd9 (size before relaxing) + *fill* 0x000000000001086e 0x2 + .rodata.str1.4 + 0x0000000000010870 0x9 zephyr/kernel/libkernel.a(system_work_q.c.obj) + .rodata.__l_vfprintf.str1.1 + 0x0000000000010879 0xf /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_vflprintf.c.o) + *(SORT_BY_ALIGNMENT(.gnu.linkonce.r.*)) + 0x0000000000010888 . = ALIGN (0x4) + +/DISCARD/ + *(SORT_BY_ALIGNMENT(.eh_frame)) + 0x0000000000010888 __rodata_region_end = . + 0x00000000000108a0 . = ALIGN (_region_min_align) + 0x0000000000020000 . = ALIGN ((0x1 << LOG2CEIL ((__rodata_region_end - ADDR (rom_start))))) + 0x0000000000020000 __rom_region_end = ((__rom_region_start + .) - ADDR (rom_start)) + +/DISCARD/ + *(SORT_BY_ALIGNMENT(.got.plt)) + *(SORT_BY_ALIGNMENT(.igot.plt)) + *(SORT_BY_ALIGNMENT(.got)) + *(SORT_BY_ALIGNMENT(.igot)) + 0x0000000020000000 . = 0x20000000 + 0x0000000020000000 . = ALIGN (_region_min_align) + 0x0000000020000000 _image_ram_start = . + +_RTT_SECTION_NAME + 0x0000000020000000 0x4b8 + 0x0000000020000000 __rtt_buff_data_start = . + *(SORT_BY_ALIGNMENT(.rtt_buff_data)) + .rtt_buff_data + 0x0000000020000000 0x4b8 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + 0x0000000020000410 _SEGGER_RTT + 0x00000000200004b8 __rtt_buff_data_end = ALIGN (0x4) + 0x00000000000004b8 __rtt_buff_data_size = (__rtt_buff_data_end - __rtt_buff_data_start) + +.ramfunc 0x00000000200004b8 0x8 load address 0x0000000000010888 + 0x00000000200004b8 __ramfunc_region_start = . + 0x00000000200004c0 . = ALIGN (_region_min_align) + *fill* 0x00000000200004b8 0x8 + 0x00000000200004c0 . = ALIGN ((0x1 << LOG2CEIL (__ramfunc_size))) + 0x00000000200004c0 __ramfunc_start = . + *(SORT_BY_ALIGNMENT(.ramfunc)) + *(SORT_BY_ALIGNMENT(.ramfunc.*)) + 0x00000000200004c0 . = ALIGN (_region_min_align) + 0x00000000200004c0 . = ALIGN ((0x1 << LOG2CEIL (__ramfunc_size))) + 0x00000000200004c0 __ramfunc_end = . + 0x0000000000000000 __ramfunc_size = (__ramfunc_end - __ramfunc_start) + 0x0000000000010888 __ramfunc_load_start = LOADADDR (.ramfunc) + +datas 0x00000000200004c0 0x251 load address 0x0000000000010890 + 0x00000000200004c0 __data_region_start = . + 0x00000000200004c0 __data_start = . + *(SORT_BY_ALIGNMENT(.data)) + *(SORT_BY_ALIGNMENT(.data.*)) + .data.cdc_acm_dev_data_0 + 0x00000000200004c0 0xb0 zephyr/libzephyr.a(cdc_acm.c.obj) + .data.m_data 0x0000000020000570 0xa0 zephyr/drivers/adc/libdrivers__adc.a(adc_nrfx_saadc.c.obj) + .data.sequence + 0x0000000020000610 0x14 app/libapp.a(battery_adc.c.obj) + 0x0000000020000610 sequence + .data._char_out + 0x0000000020000624 0x4 zephyr/libzephyr.a(printk.c.obj) + .data.cdc_acm_tx_rb_0 + 0x0000000020000628 0x20 zephyr/libzephyr.a(cdc_acm.c.obj) + 0x0000000020000628 cdc_acm_tx_rb_0 + .data.cdc_acm_rx_rb_0 + 0x0000000020000648 0x20 zephyr/libzephyr.a(cdc_acm.c.obj) + 0x0000000020000648 cdc_acm_rx_rb_0 + .data.cdc_acm_ep_data_0 + 0x0000000020000668 0x18 zephyr/libzephyr.a(cdc_acm.c.obj) + .data.__stdout + 0x0000000020000680 0x10 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .data.m_cb 0x0000000020000690 0x78 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .data.timeout_list + 0x0000000020000708 0x8 zephyr/kernel/libkernel.a(timeout.c.obj) + .data.m_first_enable + 0x0000000020000710 0x1 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + *(SORT_BY_ALIGNMENT(.kernel.*)) + 0x0000000020000711 __data_end = . + 0x0000000000000251 __data_size = (__data_end - __data_start) + 0x0000000000010890 __data_load_start = LOADADDR (datas) + 0x0000000000010890 __data_region_load_start = LOADADDR (datas) + +device_states 0x0000000020000711 0xc load address 0x0000000000010ae1 + 0x0000000020000711 __device_states_start = . + *(SORT_BY_ALIGNMENT(.z_devstate)) + .z_devstate 0x0000000020000711 0x2 zephyr/libzephyr.a(cdc_acm.c.obj) + .z_devstate 0x0000000020000713 0x2 zephyr/drivers/adc/libdrivers__adc.a(adc_nrfx_saadc.c.obj) + .z_devstate 0x0000000020000715 0x2 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .z_devstate 0x0000000020000717 0x4 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + .z_devstate 0x000000002000071b 0x2 zephyr/drivers/sensor/nordic/temp/libdrivers__sensor__nordic__temp.a(temp_nrf5.c.obj) + *(SORT_BY_ALIGNMENT(.z_devstate.*)) + 0x000000002000071d __device_states_end = . + +log_mpsc_pbuf_area + 0x000000002000071d 0x0 load address 0x0000000000010aed + 0x000000002000071d _log_mpsc_pbuf_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._log_mpsc_pbuf.static.*))) + 0x000000002000071d _log_mpsc_pbuf_list_end = . + +log_msg_ptr_area + 0x000000002000071d 0x0 load address 0x0000000000010aed + 0x000000002000071d _log_msg_ptr_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._log_msg_ptr.static.*))) + 0x000000002000071d _log_msg_ptr_list_end = . + +log_dynamic_area + 0x000000002000071d 0x0 load address 0x0000000000010aed + 0x000000002000071d _log_dynamic_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._log_dynamic.static.*))) + 0x000000002000071d _log_dynamic_list_end = . + +k_timer_area 0x000000002000071d 0x0 load address 0x0000000000010aed + 0x000000002000071d _k_timer_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_timer.static.*))) + 0x000000002000071d _k_timer_list_end = . + +k_mem_slab_area + 0x0000000020000720 0x20 load address 0x0000000000010af0 + 0x0000000020000720 _k_mem_slab_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_mem_slab.static.*))) + ._k_mem_slab.static.fifo_elem_slab_ + 0x0000000020000720 0x20 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + 0x0000000020000720 fifo_elem_slab + 0x0000000020000740 _k_mem_slab_list_end = . + +k_heap_area 0x0000000020000740 0x0 load address 0x0000000000010b10 + 0x0000000020000740 _k_heap_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_heap.static.*))) + 0x0000000020000740 _k_heap_list_end = . + +k_mutex_area 0x0000000020000740 0x14 load address 0x0000000000010b10 + 0x0000000020000740 _k_mutex_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_mutex.static.*))) + ._k_mutex.static.usb_enable_lock_ + 0x0000000020000740 0x14 zephyr/libzephyr.a(usb_device.c.obj) + 0x0000000020000740 usb_enable_lock + 0x0000000020000754 _k_mutex_list_end = . + +k_stack_area 0x0000000020000754 0x0 load address 0x0000000000010b24 + 0x0000000020000754 _k_stack_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_stack.static.*))) + 0x0000000020000754 _k_stack_list_end = . + +k_msgq_area 0x0000000020000754 0x0 load address 0x0000000000010b24 + 0x0000000020000754 _k_msgq_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_msgq.static.*))) + 0x0000000020000754 _k_msgq_list_end = . + +k_mbox_area 0x0000000020000754 0x0 load address 0x0000000000010b24 + 0x0000000020000754 _k_mbox_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_mbox.static.*))) + 0x0000000020000754 _k_mbox_list_end = . + +k_pipe_area 0x0000000020000754 0x0 load address 0x0000000000010b24 + 0x0000000020000754 _k_pipe_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_pipe.static.*))) + 0x0000000020000754 _k_pipe_list_end = . + +k_sem_area 0x0000000020000754 0x10 load address 0x0000000000010b24 + 0x0000000020000754 _k_sem_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_sem.static.*))) + ._k_sem.static.dma_available_ + 0x0000000020000754 0x10 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + 0x0000000020000764 _k_sem_list_end = . + +k_event_area 0x0000000020000764 0x0 load address 0x0000000000010b34 + 0x0000000020000764 _k_event_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_event.static.*))) + 0x0000000020000764 _k_event_list_end = . + +k_queue_area 0x0000000020000764 0x0 load address 0x0000000000010b34 + 0x0000000020000764 _k_queue_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_queue.static.*))) + 0x0000000020000764 _k_queue_list_end = . + +k_fifo_area 0x0000000020000764 0x14 load address 0x0000000000010b34 + 0x0000000020000764 _k_fifo_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_fifo.static.*))) + ._k_fifo.static.usbd_evt_fifo_ + 0x0000000020000764 0x14 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + 0x0000000020000764 usbd_evt_fifo + 0x0000000020000778 _k_fifo_list_end = . + +k_lifo_area 0x0000000020000778 0x0 load address 0x0000000000010b48 + 0x0000000020000778 _k_lifo_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_lifo.static.*))) + 0x0000000020000778 _k_lifo_list_end = . + +k_condvar_area 0x0000000020000778 0x0 load address 0x0000000000010b48 + 0x0000000020000778 _k_condvar_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_condvar.static.*))) + 0x0000000020000778 _k_condvar_list_end = . + +sys_mem_blocks_ptr_area + 0x0000000020000778 0x0 load address 0x0000000000010b48 + 0x0000000020000778 _sys_mem_blocks_ptr_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._sys_mem_blocks_ptr.static.*))) + 0x0000000020000778 _sys_mem_blocks_ptr_list_end = . + +net_buf_pool_area + 0x0000000020000778 0x0 load address 0x0000000000010b48 + 0x0000000020000778 _net_buf_pool_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._net_buf_pool.static.*))) + 0x0000000020000778 _net_buf_pool_list_end = . + +usb_descriptor 0x0000000020000778 0xc7 load address 0x0000000000010b48 + 0x0000000020000778 __usb_descriptor_start = . + *(SORT_BY_ALIGNMENT(.usb.descriptor)) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.usb.descriptor*))) + .usb.descriptor_primary.0 + 0x0000000020000778 0x1b zephyr/libzephyr.a(usb_descriptor.c.obj) + .usb.descriptor_primary.1.0 + 0x0000000020000793 0x42 zephyr/libzephyr.a(cdc_acm.c.obj) + .usb.descriptor_primary.4 + 0x00000000200007d5 0x68 zephyr/libzephyr.a(usb_descriptor.c.obj) + .usb.descriptor_primary.6 + 0x000000002000083d 0x2 zephyr/libzephyr.a(usb_descriptor.c.obj) + 0x000000002000083f __usb_descriptor_end = . + +usb_cfg_data_area + 0x0000000020000840 0x24 load address 0x0000000000010c10 + 0x0000000020000840 _usb_cfg_data_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._usb_cfg_data.static.*))) + ._usb_cfg_data.static.cdc_acm_config_0_ + 0x0000000020000840 0x24 zephyr/libzephyr.a(cdc_acm.c.obj) + 0x0000000020000864 _usb_cfg_data_list_end = . + 0x0000000020000864 __data_region_end = . + 0x0000000000008cf0 PROVIDE (soc_reset_hook = SystemInit) + +.intList 0x00000000ffff8000 0x78 + *(SORT_BY_ALIGNMENT(.irq_info*)) + .irq_info 0x00000000ffff8000 0x8 zephyr/arch/common/libisr_tables.a(isr_tables.c.obj) + 0x00000000ffff8000 _iheader + *(SORT_BY_ALIGNMENT(.intList*)) + .intList 0x00000000ffff8008 0x10 app/libapp.a(timer_count.c.obj) + .intList 0x00000000ffff8018 0x10 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + .intList 0x00000000ffff8028 0x10 zephyr/drivers/adc/libdrivers__adc.a(adc_nrfx_saadc.c.obj) + .intList 0x00000000ffff8038 0x10 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .intList 0x00000000ffff8048 0x10 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + .intList 0x00000000ffff8058 0x10 zephyr/drivers/sensor/nordic/temp/libdrivers__sensor__nordic__temp.a(temp_nrf5.c.obj) + .intList 0x00000000ffff8068 0x10 zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + +.stab + *(SORT_BY_ALIGNMENT(.stab)) + +.stabstr + *(SORT_BY_ALIGNMENT(.stabstr)) + +.stab.excl + *(SORT_BY_ALIGNMENT(.stab.excl)) + +.stab.exclstr + *(SORT_BY_ALIGNMENT(.stab.exclstr)) + +.stab.index + *(SORT_BY_ALIGNMENT(.stab.index)) + +.stab.indexstr + *(SORT_BY_ALIGNMENT(.stab.indexstr)) + +.gnu.build.attributes + *(SORT_BY_ALIGNMENT(.gnu.build.attributes) SORT_BY_ALIGNMENT(.gnu.build.attributes.*)) + +.comment 0x0000000000000000 0x20 + *(SORT_BY_ALIGNMENT(.comment)) + .comment 0x0000000000000000 0x20 zephyr/CMakeFiles/offsets.dir/./arch/arm/core/offsets/offsets.c.obj + 0x21 (size before relaxing) + .comment 0x0000000000000020 0x21 app/libapp.a(main.c.obj) + .comment 0x0000000000000020 0x21 app/libapp.a(led.c.obj) + .comment 0x0000000000000020 0x21 app/libapp.a(button.c.obj) + .comment 0x0000000000000020 0x21 app/libapp.a(actuator.c.obj) + .comment 0x0000000000000020 0x21 app/libapp.a(battery_adc.c.obj) + .comment 0x0000000000000020 0x21 app/libapp.a(temperature.c.obj) + .comment 0x0000000000000020 0x21 app/libapp.a(timer_count.c.obj) + .comment 0x0000000000000020 0x21 zephyr/libzephyr.a(heap.c.obj) + .comment 0x0000000000000020 0x21 zephyr/libzephyr.a(printk.c.obj) + .comment 0x0000000000000020 0x21 zephyr/libzephyr.a(thread_entry.c.obj) + .comment 0x0000000000000020 0x21 zephyr/libzephyr.a(assert.c.obj) + .comment 0x0000000000000020 0x21 zephyr/libzephyr.a(onoff.c.obj) + .comment 0x0000000000000020 0x21 zephyr/libzephyr.a(notify.c.obj) + .comment 0x0000000000000020 0x21 zephyr/libzephyr.a(ring_buffer.c.obj) + .comment 0x0000000000000020 0x21 zephyr/libzephyr.a(last_section_id.c.obj) + .comment 0x0000000000000020 0x21 zephyr/libzephyr.a(configs.c.obj) + .comment 0x0000000000000020 0x21 zephyr/libzephyr.a(mem_attr.c.obj) + .comment 0x0000000000000020 0x21 zephyr/libzephyr.a(usb_device.c.obj) + .comment 0x0000000000000020 0x21 zephyr/libzephyr.a(usb_descriptor.c.obj) + .comment 0x0000000000000020 0x21 zephyr/libzephyr.a(usb_transfer.c.obj) + .comment 0x0000000000000020 0x21 zephyr/libzephyr.a(cdc_acm.c.obj) + .comment 0x0000000000000020 0x21 zephyr/libzephyr.a(usb_work_q.c.obj) + .comment 0x0000000000000020 0x21 zephyr/libzephyr.a(banner.c.obj) + .comment 0x0000000000000020 0x21 zephyr/arch/arch/arm/core/libarch__arm__core.a(fatal.c.obj) + .comment 0x0000000000000020 0x21 zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi.c.obj) + .comment 0x0000000000000020 0x21 zephyr/arch/arch/arm/core/libarch__arm__core.a(tls.c.obj) + .comment 0x0000000000000020 0x21 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(exc_exit.c.obj) + .comment 0x0000000000000020 0x21 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault.c.obj) + .comment 0x0000000000000020 0x21 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(scb.c.obj) + .comment 0x0000000000000020 0x21 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread_abort.c.obj) + .comment 0x0000000000000020 0x21 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + .comment 0x0000000000000020 0x21 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(prep_c.c.obj) + .comment 0x0000000000000020 0x21 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread.c.obj) + .comment 0x0000000000000020 0x21 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(cpu_idle.c.obj) + .comment 0x0000000000000020 0x21 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_init.c.obj) + .comment 0x0000000000000020 0x21 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(isr_wrapper.c.obj) + .comment 0x0000000000000020 0x21 zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_core_mpu.c.obj) + .comment 0x0000000000000020 0x21 zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_mpu.c.obj) + .comment 0x0000000000000020 0x21 zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_mpu_regions.c.obj) + .comment 0x0000000000000020 0x21 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .comment 0x0000000000000020 0x21 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .comment 0x0000000000000020 0x21 zephyr/soc/soc/nrf52833/libsoc__nordic.a(soc.c.obj) + .comment 0x0000000000000020 0x21 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + .comment 0x0000000000000020 0x21 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + .comment 0x0000000000000020 0x21 zephyr/drivers/adc/libdrivers__adc.a(adc_common.c.obj) + .comment 0x0000000000000020 0x21 zephyr/drivers/adc/libdrivers__adc.a(adc_nrfx_saadc.c.obj) + .comment 0x0000000000000020 0x21 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .comment 0x0000000000000020 0x21 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .comment 0x0000000000000020 0x21 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + .comment 0x0000000000000020 0x21 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_nrf.c.obj) + .comment 0x0000000000000020 0x21 zephyr/drivers/sensor/nordic/temp/libdrivers__sensor__nordic__temp.a(temp_nrf5.c.obj) + .comment 0x0000000000000020 0x21 zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .comment 0x0000000000000020 0x21 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(system_nrf52833.c.obj) + .comment 0x0000000000000020 0x21 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_glue.c.obj) + .comment 0x0000000000000020 0x21 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_flag32_allocator.c.obj) + .comment 0x0000000000000020 0x21 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_clock.c.obj) + .comment 0x0000000000000020 0x21 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .comment 0x0000000000000020 0x21 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + .comment 0x0000000000000020 0x21 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_temp.c.obj) + .comment 0x0000000000000020 0x21 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .comment 0x0000000000000020 0x21 modules/segger/libmodules__segger.a(SEGGER_RTT_zephyr.c.obj) + .comment 0x0000000000000020 0x21 zephyr/kernel/libkernel.a(busy_wait.c.obj) + .comment 0x0000000000000020 0x21 zephyr/kernel/libkernel.a(device.c.obj) + .comment 0x0000000000000020 0x21 zephyr/kernel/libkernel.a(fatal.c.obj) + .comment 0x0000000000000020 0x21 zephyr/kernel/libkernel.a(init.c.obj) + .comment 0x0000000000000020 0x21 zephyr/kernel/libkernel.a(init_static.c.obj) + .comment 0x0000000000000020 0x21 zephyr/kernel/libkernel.a(mem_slab.c.obj) + .comment 0x0000000000000020 0x21 zephyr/kernel/libkernel.a(idle.c.obj) + .comment 0x0000000000000020 0x21 zephyr/kernel/libkernel.a(mutex.c.obj) + .comment 0x0000000000000020 0x21 zephyr/kernel/libkernel.a(queue.c.obj) + .comment 0x0000000000000020 0x21 zephyr/kernel/libkernel.a(sem.c.obj) + .comment 0x0000000000000020 0x21 zephyr/kernel/libkernel.a(work.c.obj) + .comment 0x0000000000000020 0x21 zephyr/kernel/libkernel.a(thread.c.obj) + .comment 0x0000000000000020 0x21 zephyr/kernel/libkernel.a(sched.c.obj) + .comment 0x0000000000000020 0x21 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .comment 0x0000000000000020 0x21 zephyr/kernel/libkernel.a(spinlock_validate.c.obj) + .comment 0x0000000000000020 0x21 zephyr/kernel/libkernel.a(xip.c.obj) + .comment 0x0000000000000020 0x21 zephyr/kernel/libkernel.a(timeout.c.obj) + .comment 0x0000000000000020 0x21 zephyr/kernel/libkernel.a(timer.c.obj) + .comment 0x0000000000000020 0x21 zephyr/kernel/libkernel.a(mempool.c.obj) + .comment 0x0000000000000020 0x21 zephyr/kernel/libkernel.a(kheap.c.obj) + .comment 0x0000000000000020 0x21 zephyr/kernel/libkernel.a(system_work_q.c.obj) + .comment 0x0000000000000020 0x21 zephyr/arch/common/libisr_tables.a(isr_tables.c.obj) + +.debug + *(SORT_BY_ALIGNMENT(.debug)) + +.line + *(SORT_BY_ALIGNMENT(.line)) + +.debug_srcinfo + *(SORT_BY_ALIGNMENT(.debug_srcinfo)) + +.debug_sfnames + *(SORT_BY_ALIGNMENT(.debug_sfnames)) + +.debug_aranges 0x0000000000000000 0x1c38 + *(SORT_BY_ALIGNMENT(.debug_aranges)) + .debug_aranges + 0x0000000000000000 0x20 zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi_on_reset.S.obj) + .debug_aranges + 0x0000000000000020 0x20 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault_s.S.obj) + .debug_aranges + 0x0000000000000040 0x20 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(reset.S.obj) + .debug_aranges + 0x0000000000000060 0x28 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(swap_helper.S.obj) + .debug_aranges + 0x0000000000000088 0x20 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(__aeabi_read_tp.S.obj) + .debug_aranges + 0x00000000000000a8 0x20 zephyr/CMakeFiles/offsets.dir/./arch/arm/core/offsets/offsets.c.obj + .debug_aranges + 0x00000000000000c8 0x20 app/libapp.a(main.c.obj) + .debug_aranges + 0x00000000000000e8 0x58 app/libapp.a(led.c.obj) + .debug_aranges + 0x0000000000000140 0x28 app/libapp.a(button.c.obj) + .debug_aranges + 0x0000000000000168 0x58 app/libapp.a(actuator.c.obj) + .debug_aranges + 0x00000000000001c0 0x28 app/libapp.a(battery_adc.c.obj) + .debug_aranges + 0x00000000000001e8 0x28 app/libapp.a(temperature.c.obj) + .debug_aranges + 0x0000000000000210 0x48 app/libapp.a(timer_count.c.obj) + .debug_aranges + 0x0000000000000258 0x80 zephyr/libzephyr.a(heap.c.obj) + .debug_aranges + 0x00000000000002d8 0x50 zephyr/libzephyr.a(printk.c.obj) + .debug_aranges + 0x0000000000000328 0x20 zephyr/libzephyr.a(thread_entry.c.obj) + .debug_aranges + 0x0000000000000348 0x28 zephyr/libzephyr.a(assert.c.obj) + .debug_aranges + 0x0000000000000370 0x70 zephyr/libzephyr.a(onoff.c.obj) + .debug_aranges + 0x00000000000003e0 0x28 zephyr/libzephyr.a(notify.c.obj) + .debug_aranges + 0x0000000000000408 0x60 zephyr/libzephyr.a(ring_buffer.c.obj) + .debug_aranges + 0x0000000000000468 0x18 zephyr/libzephyr.a(last_section_id.c.obj) + .debug_aranges + 0x0000000000000480 0x20 zephyr/libzephyr.a(configs.c.obj) + .debug_aranges + 0x00000000000004a0 0x28 zephyr/libzephyr.a(mem_attr.c.obj) + .debug_aranges + 0x00000000000004c8 0xd0 zephyr/libzephyr.a(usb_device.c.obj) + .debug_aranges + 0x0000000000000598 0x48 zephyr/libzephyr.a(usb_descriptor.c.obj) + .debug_aranges + 0x00000000000005e0 0x60 zephyr/libzephyr.a(usb_transfer.c.obj) + .debug_aranges + 0x0000000000000640 0xe0 zephyr/libzephyr.a(cdc_acm.c.obj) + .debug_aranges + 0x0000000000000720 0x20 zephyr/libzephyr.a(usb_work_q.c.obj) + .debug_aranges + 0x0000000000000740 0x20 zephyr/libzephyr.a(banner.c.obj) + .debug_aranges + 0x0000000000000760 0x30 zephyr/arch/arch/arm/core/libarch__arm__core.a(fatal.c.obj) + .debug_aranges + 0x0000000000000790 0x20 zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi.c.obj) + .debug_aranges + 0x00000000000007b0 0x20 zephyr/arch/arch/arm/core/libarch__arm__core.a(tls.c.obj) + .debug_aranges + 0x00000000000007d0 0x20 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(exc_exit.c.obj) + .debug_aranges + 0x00000000000007f0 0x40 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault.c.obj) + .debug_aranges + 0x0000000000000830 0x30 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(scb.c.obj) + .debug_aranges + 0x0000000000000860 0x20 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread_abort.c.obj) + .debug_aranges + 0x0000000000000880 0x40 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + .debug_aranges + 0x00000000000008c0 0x20 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(prep_c.c.obj) + .debug_aranges + 0x00000000000008e0 0x40 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread.c.obj) + .debug_aranges + 0x0000000000000920 0x30 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(cpu_idle.c.obj) + .debug_aranges + 0x0000000000000950 0x20 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_init.c.obj) + .debug_aranges + 0x0000000000000970 0x20 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(isr_wrapper.c.obj) + .debug_aranges + 0x0000000000000990 0x28 zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_core_mpu.c.obj) + .debug_aranges + 0x00000000000009b8 0x40 zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_mpu.c.obj) + .debug_aranges + 0x00000000000009f8 0x18 zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_mpu_regions.c.obj) + .debug_aranges + 0x0000000000000a10 0x38 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .debug_aranges + 0x0000000000000a48 0x58 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .debug_aranges + 0x0000000000000aa0 0x28 zephyr/soc/soc/nrf52833/libsoc__nordic.a(soc.c.obj) + .debug_aranges + 0x0000000000000ac8 0x108 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + .debug_aranges + 0x0000000000000bd0 0x150 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + .debug_aranges + 0x0000000000000d20 0x20 zephyr/drivers/adc/libdrivers__adc.a(adc_common.c.obj) + .debug_aranges + 0x0000000000000d40 0x40 zephyr/drivers/adc/libdrivers__adc.a(adc_nrfx_saadc.c.obj) + .debug_aranges + 0x0000000000000d80 0xb8 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .debug_aranges + 0x0000000000000e38 0x30 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .debug_aranges + 0x0000000000000e68 0x70 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + .debug_aranges + 0x0000000000000ed8 0x38 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_nrf.c.obj) + .debug_aranges + 0x0000000000000f10 0x40 zephyr/drivers/sensor/nordic/temp/libdrivers__sensor__nordic__temp.a(temp_nrf5.c.obj) + .debug_aranges + 0x0000000000000f50 0xc0 zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .debug_aranges + 0x0000000000001010 0x40 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(system_nrf52833.c.obj) + .debug_aranges + 0x0000000000001050 0x30 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_glue.c.obj) + .debug_aranges + 0x0000000000001080 0x30 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_flag32_allocator.c.obj) + .debug_aranges + 0x00000000000010b0 0x60 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_clock.c.obj) + .debug_aranges + 0x0000000000001110 0x168 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .debug_aranges + 0x0000000000001278 0xc8 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + .debug_aranges + 0x0000000000001340 0x48 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_temp.c.obj) + .debug_aranges + 0x0000000000001388 0x128 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .debug_aranges + 0x00000000000014b0 0x30 modules/segger/libmodules__segger.a(SEGGER_RTT_zephyr.c.obj) + .debug_aranges + 0x00000000000014e0 0x20 zephyr/kernel/libkernel.a(busy_wait.c.obj) + .debug_aranges + 0x0000000000001500 0x38 zephyr/kernel/libkernel.a(device.c.obj) + .debug_aranges + 0x0000000000001538 0x38 zephyr/kernel/libkernel.a(fatal.c.obj) + .debug_aranges + 0x0000000000001570 0x60 zephyr/kernel/libkernel.a(init.c.obj) + .debug_aranges + 0x00000000000015d0 0x20 zephyr/kernel/libkernel.a(init_static.c.obj) + .debug_aranges + 0x00000000000015f0 0x40 zephyr/kernel/libkernel.a(mem_slab.c.obj) + .debug_aranges + 0x0000000000001630 0x28 zephyr/kernel/libkernel.a(idle.c.obj) + .debug_aranges + 0x0000000000001658 0x30 zephyr/kernel/libkernel.a(mutex.c.obj) + .debug_aranges + 0x0000000000001688 0x98 zephyr/kernel/libkernel.a(queue.c.obj) + .debug_aranges + 0x0000000000001720 0x38 zephyr/kernel/libkernel.a(sem.c.obj) + .debug_aranges + 0x0000000000001758 0xf8 zephyr/kernel/libkernel.a(work.c.obj) + .debug_aranges + 0x0000000000001850 0x88 zephyr/kernel/libkernel.a(thread.c.obj) + .debug_aranges + 0x00000000000018d8 0x160 zephyr/kernel/libkernel.a(sched.c.obj) + .debug_aranges + 0x0000000000001a38 0x40 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .debug_aranges + 0x0000000000001a78 0x30 zephyr/kernel/libkernel.a(spinlock_validate.c.obj) + .debug_aranges + 0x0000000000001aa8 0x20 zephyr/kernel/libkernel.a(xip.c.obj) + .debug_aranges + 0x0000000000001ac8 0x78 zephyr/kernel/libkernel.a(timeout.c.obj) + .debug_aranges + 0x0000000000001b40 0x48 zephyr/kernel/libkernel.a(timer.c.obj) + .debug_aranges + 0x0000000000001b88 0x28 zephyr/kernel/libkernel.a(mempool.c.obj) + .debug_aranges + 0x0000000000001bb0 0x50 zephyr/kernel/libkernel.a(kheap.c.obj) + .debug_aranges + 0x0000000000001c00 0x20 zephyr/kernel/libkernel.a(system_work_q.c.obj) + .debug_aranges + 0x0000000000001c20 0x18 zephyr/arch/common/libisr_tables.a(isr_tables.c.obj) + +.debug_pubnames + *(SORT_BY_ALIGNMENT(.debug_pubnames)) + +.debug_info 0x0000000000000000 0x818b0 + *(SORT_BY_ALIGNMENT(.debug_info) SORT_BY_ALIGNMENT(.gnu.linkonce.wi.*)) + .debug_info 0x0000000000000000 0xdc zephyr/CMakeFiles/offsets.dir/./arch/arm/core/offsets/offsets.c.obj + .debug_info 0x00000000000000dc 0x724 app/libapp.a(main.c.obj) + .debug_info 0x0000000000000800 0x1a7e app/libapp.a(led.c.obj) + .debug_info 0x000000000000227e 0xb1f app/libapp.a(button.c.obj) + .debug_info 0x0000000000002d9d 0x1734 app/libapp.a(actuator.c.obj) + .debug_info 0x00000000000044d1 0x16d0 app/libapp.a(battery_adc.c.obj) + .debug_info 0x0000000000005ba1 0x5bd app/libapp.a(temperature.c.obj) + .debug_info 0x000000000000615e 0x1dbd app/libapp.a(timer_count.c.obj) + .debug_info 0x0000000000007f1b 0x430f zephyr/libzephyr.a(heap.c.obj) + .debug_info 0x000000000000c22a 0x5a7 zephyr/libzephyr.a(printk.c.obj) + .debug_info 0x000000000000c7d1 0x764 zephyr/libzephyr.a(thread_entry.c.obj) + .debug_info 0x000000000000cf35 0x247 zephyr/libzephyr.a(assert.c.obj) + .debug_info 0x000000000000d17c 0x3ded zephyr/libzephyr.a(onoff.c.obj) + .debug_info 0x0000000000010f69 0x39e zephyr/libzephyr.a(notify.c.obj) + .debug_info 0x0000000000011307 0x119f zephyr/libzephyr.a(ring_buffer.c.obj) + .debug_info 0x00000000000124a6 0x95 zephyr/libzephyr.a(last_section_id.c.obj) + .debug_info 0x000000000001253b 0x38 zephyr/libzephyr.a(configs.c.obj) + .debug_info 0x0000000000012573 0x2ba zephyr/libzephyr.a(mem_attr.c.obj) + .debug_info 0x000000000001282d 0x3bcd zephyr/libzephyr.a(usb_device.c.obj) + .debug_info 0x00000000000163fa 0x1b0f zephyr/libzephyr.a(usb_descriptor.c.obj) + .debug_info 0x0000000000017f09 0x17ae zephyr/libzephyr.a(usb_transfer.c.obj) + .debug_info 0x00000000000196b7 0x33a1 zephyr/libzephyr.a(cdc_acm.c.obj) + .debug_info 0x000000000001ca58 0x987 zephyr/libzephyr.a(usb_work_q.c.obj) + .debug_info 0x000000000001d3df 0xdc zephyr/libzephyr.a(banner.c.obj) + .debug_info 0x000000000001d4bb 0x6e3 zephyr/arch/arch/arm/core/libarch__arm__core.a(fatal.c.obj) + .debug_info 0x000000000001db9e 0xb6 zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi.c.obj) + .debug_info 0x000000000001dc54 0x23 zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi_on_reset.S.obj) + .debug_info 0x000000000001dc77 0x73d zephyr/arch/arch/arm/core/libarch__arm__core.a(tls.c.obj) + .debug_info 0x000000000001e3b4 0x7bc zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(exc_exit.c.obj) + .debug_info 0x000000000001eb70 0x14de zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault.c.obj) + .debug_info 0x000000000002004e 0x23 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault_s.S.obj) + .debug_info 0x0000000000020071 0x23 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(reset.S.obj) + .debug_info 0x0000000000020094 0x742 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(scb.c.obj) + .debug_info 0x00000000000207d6 0x86c zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread_abort.c.obj) + .debug_info 0x0000000000021042 0x22 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(swap_helper.S.obj) + .debug_info 0x0000000000021064 0x97e zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + .debug_info 0x00000000000219e2 0x3f6 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(prep_c.c.obj) + .debug_info 0x0000000000021dd8 0xb44 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread.c.obj) + .debug_info 0x000000000002291c 0x48b zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(cpu_idle.c.obj) + .debug_info 0x0000000000022da7 0x584 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_init.c.obj) + .debug_info 0x000000000002332b 0x1a3 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(isr_wrapper.c.obj) + .debug_info 0x00000000000234ce 0x23 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(__aeabi_read_tp.S.obj) + .debug_info 0x00000000000234f1 0x792 zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_core_mpu.c.obj) + .debug_info 0x0000000000023c83 0x1593 zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_mpu.c.obj) + .debug_info 0x0000000000025216 0x1cc zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_mpu_regions.c.obj) + .debug_info 0x00000000000253e2 0x427 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .debug_info 0x0000000000025809 0x11bd zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .debug_info 0x00000000000269c6 0x524 zephyr/soc/soc/nrf52833/libsoc__nordic.a(soc.c.obj) + .debug_info 0x0000000000026eea 0x6f16 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + .debug_info 0x000000000002de00 0x493d zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + .debug_info 0x000000000003273d 0x218 zephyr/drivers/adc/libdrivers__adc.a(adc_common.c.obj) + .debug_info 0x0000000000032955 0x3116 zephyr/drivers/adc/libdrivers__adc.a(adc_nrfx_saadc.c.obj) + .debug_info 0x0000000000035a6b 0x4090 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .debug_info 0x0000000000039afb 0x91b zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .debug_info 0x000000000003a416 0x2aec zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + .debug_info 0x000000000003cf02 0xb57 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_nrf.c.obj) + .debug_info 0x000000000003da59 0x21bb zephyr/drivers/sensor/nordic/temp/libdrivers__sensor__nordic__temp.a(temp_nrf5.c.obj) + .debug_info 0x000000000003fc14 0x3d5b zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .debug_info 0x000000000004396f 0x14be modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(system_nrf52833.c.obj) + .debug_info 0x0000000000044e2d 0x25d modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_glue.c.obj) + .debug_info 0x000000000004508a 0x354 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_flag32_allocator.c.obj) + .debug_info 0x00000000000453de 0x1a8d modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_clock.c.obj) + .debug_info 0x0000000000046e6b 0x8692 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .debug_info 0x000000000004f4fd 0x2574 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + .debug_info 0x0000000000051a71 0x113a modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_temp.c.obj) + .debug_info 0x0000000000052bab 0x23b9 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .debug_info 0x0000000000054f64 0x4ab modules/segger/libmodules__segger.a(SEGGER_RTT_zephyr.c.obj) + .debug_info 0x000000000005540f 0xdb zephyr/kernel/libkernel.a(busy_wait.c.obj) + .debug_info 0x00000000000554ea 0x426 zephyr/kernel/libkernel.a(device.c.obj) + .debug_info 0x0000000000055910 0xd13 zephyr/kernel/libkernel.a(fatal.c.obj) + .debug_info 0x0000000000056623 0x20dc zephyr/kernel/libkernel.a(init.c.obj) + .debug_info 0x00000000000586ff 0x38 zephyr/kernel/libkernel.a(init_static.c.obj) + .debug_info 0x0000000000058737 0x1eb1 zephyr/kernel/libkernel.a(mem_slab.c.obj) + .debug_info 0x000000000005a5e8 0x99e zephyr/kernel/libkernel.a(idle.c.obj) + .debug_info 0x000000000005af86 0x1f0f zephyr/kernel/libkernel.a(mutex.c.obj) + .debug_info 0x000000000005ce95 0x3e3b zephyr/kernel/libkernel.a(queue.c.obj) + .debug_info 0x0000000000060cd0 0x1c6a zephyr/kernel/libkernel.a(sem.c.obj) + .debug_info 0x000000000006293a 0x8e51 zephyr/kernel/libkernel.a(work.c.obj) + .debug_info 0x000000000006b78b 0x17c3 zephyr/kernel/libkernel.a(thread.c.obj) + .debug_info 0x000000000006cf4e 0xb35c zephyr/kernel/libkernel.a(sched.c.obj) + .debug_info 0x00000000000782aa 0x144c zephyr/kernel/libkernel.a(timeslicing.c.obj) + .debug_info 0x00000000000796f6 0x6f7 zephyr/kernel/libkernel.a(spinlock_validate.c.obj) + .debug_info 0x0000000000079ded 0x12a zephyr/kernel/libkernel.a(xip.c.obj) + .debug_info 0x0000000000079f17 0x2c42 zephyr/kernel/libkernel.a(timeout.c.obj) + .debug_info 0x000000000007cb59 0x1f3b zephyr/kernel/libkernel.a(timer.c.obj) + .debug_info 0x000000000007ea94 0x92f zephyr/kernel/libkernel.a(mempool.c.obj) + .debug_info 0x000000000007f3c3 0x1a34 zephyr/kernel/libkernel.a(kheap.c.obj) + .debug_info 0x0000000000080df7 0x8ea zephyr/kernel/libkernel.a(system_work_q.c.obj) + .debug_info 0x00000000000816e1 0x1cf zephyr/arch/common/libisr_tables.a(isr_tables.c.obj) + +.debug_abbrev 0x0000000000000000 0x11e69 + *(SORT_BY_ALIGNMENT(.debug_abbrev)) + .debug_abbrev 0x0000000000000000 0x62 zephyr/CMakeFiles/offsets.dir/./arch/arm/core/offsets/offsets.c.obj + .debug_abbrev 0x0000000000000062 0x288 app/libapp.a(main.c.obj) + .debug_abbrev 0x00000000000002ea 0x441 app/libapp.a(led.c.obj) + .debug_abbrev 0x000000000000072b 0x341 app/libapp.a(button.c.obj) + .debug_abbrev 0x0000000000000a6c 0x377 app/libapp.a(actuator.c.obj) + .debug_abbrev 0x0000000000000de3 0x3d5 app/libapp.a(battery_adc.c.obj) + .debug_abbrev 0x00000000000011b8 0x27b app/libapp.a(temperature.c.obj) + .debug_abbrev 0x0000000000001433 0x571 app/libapp.a(timer_count.c.obj) + .debug_abbrev 0x00000000000019a4 0x43e zephyr/libzephyr.a(heap.c.obj) + .debug_abbrev 0x0000000000001de2 0x335 zephyr/libzephyr.a(printk.c.obj) + .debug_abbrev 0x0000000000002117 0x2ad zephyr/libzephyr.a(thread_entry.c.obj) + .debug_abbrev 0x00000000000023c4 0x1ca zephyr/libzephyr.a(assert.c.obj) + .debug_abbrev 0x000000000000258e 0x4bf zephyr/libzephyr.a(onoff.c.obj) + .debug_abbrev 0x0000000000002a4d 0x20d zephyr/libzephyr.a(notify.c.obj) + .debug_abbrev 0x0000000000002c5a 0x262 zephyr/libzephyr.a(ring_buffer.c.obj) + .debug_abbrev 0x0000000000002ebc 0x46 zephyr/libzephyr.a(last_section_id.c.obj) + .debug_abbrev 0x0000000000002f02 0x2e zephyr/libzephyr.a(configs.c.obj) + .debug_abbrev 0x0000000000002f30 0x142 zephyr/libzephyr.a(mem_attr.c.obj) + .debug_abbrev 0x0000000000003072 0x6a0 zephyr/libzephyr.a(usb_device.c.obj) + .debug_abbrev 0x0000000000003712 0x4e9 zephyr/libzephyr.a(usb_descriptor.c.obj) + .debug_abbrev 0x0000000000003bfb 0x5be zephyr/libzephyr.a(usb_transfer.c.obj) + .debug_abbrev 0x00000000000041b9 0x6a6 zephyr/libzephyr.a(cdc_acm.c.obj) + .debug_abbrev 0x000000000000485f 0x2c8 zephyr/libzephyr.a(usb_work_q.c.obj) + .debug_abbrev 0x0000000000004b27 0x9c zephyr/libzephyr.a(banner.c.obj) + .debug_abbrev 0x0000000000004bc3 0x2ac zephyr/arch/arch/arm/core/libarch__arm__core.a(fatal.c.obj) + .debug_abbrev 0x0000000000004e6f 0x70 zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi.c.obj) + .debug_abbrev 0x0000000000004edf 0x14 zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi_on_reset.S.obj) + .debug_abbrev 0x0000000000004ef3 0x27f zephyr/arch/arch/arm/core/libarch__arm__core.a(tls.c.obj) + .debug_abbrev 0x0000000000005172 0x17f zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(exc_exit.c.obj) + .debug_abbrev 0x00000000000052f1 0x463 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault.c.obj) + .debug_abbrev 0x0000000000005754 0x14 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault_s.S.obj) + .debug_abbrev 0x0000000000005768 0x14 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(reset.S.obj) + .debug_abbrev 0x000000000000577c 0x262 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(scb.c.obj) + .debug_abbrev 0x00000000000059de 0x227 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread_abort.c.obj) + .debug_abbrev 0x0000000000005c05 0x12 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(swap_helper.S.obj) + .debug_abbrev 0x0000000000005c17 0x29a zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + .debug_abbrev 0x0000000000005eb1 0x17d zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(prep_c.c.obj) + .debug_abbrev 0x000000000000602e 0x3af zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread.c.obj) + .debug_abbrev 0x00000000000063dd 0x16f zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(cpu_idle.c.obj) + .debug_abbrev 0x000000000000654c 0x168 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_init.c.obj) + .debug_abbrev 0x00000000000066b4 0x136 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(isr_wrapper.c.obj) + .debug_abbrev 0x00000000000067ea 0x14 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(__aeabi_read_tp.S.obj) + .debug_abbrev 0x00000000000067fe 0x22d zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_core_mpu.c.obj) + .debug_abbrev 0x0000000000006a2b 0x40c zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_mpu.c.obj) + .debug_abbrev 0x0000000000006e37 0xca zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_mpu_regions.c.obj) + .debug_abbrev 0x0000000000006f01 0x20c zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .debug_abbrev 0x000000000000710d 0x4a4 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .debug_abbrev 0x00000000000075b1 0x273 zephyr/soc/soc/nrf52833/libsoc__nordic.a(soc.c.obj) + .debug_abbrev 0x0000000000007824 0x6d3 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + .debug_abbrev 0x0000000000007ef7 0x6c2 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + .debug_abbrev 0x00000000000085b9 0x10a zephyr/drivers/adc/libdrivers__adc.a(adc_common.c.obj) + .debug_abbrev 0x00000000000086c3 0x621 zephyr/drivers/adc/libdrivers__adc.a(adc_nrfx_saadc.c.obj) + .debug_abbrev 0x0000000000008ce4 0x6da zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .debug_abbrev 0x00000000000093be 0x362 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .debug_abbrev 0x0000000000009720 0x600 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + .debug_abbrev 0x0000000000009d20 0x2a9 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_nrf.c.obj) + .debug_abbrev 0x0000000000009fc9 0x506 zephyr/drivers/sensor/nordic/temp/libdrivers__sensor__nordic__temp.a(temp_nrf5.c.obj) + .debug_abbrev 0x000000000000a4cf 0x6cf zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .debug_abbrev 0x000000000000ab9e 0x33d modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(system_nrf52833.c.obj) + .debug_abbrev 0x000000000000aedb 0x155 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_glue.c.obj) + .debug_abbrev 0x000000000000b030 0x10b modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_flag32_allocator.c.obj) + .debug_abbrev 0x000000000000b13b 0x468 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_clock.c.obj) + .debug_abbrev 0x000000000000b5a3 0x558 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .debug_abbrev 0x000000000000bafb 0x5bc modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + .debug_abbrev 0x000000000000c0b7 0x3a5 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_temp.c.obj) + .debug_abbrev 0x000000000000c45c 0x39e modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .debug_abbrev 0x000000000000c7fa 0x2d9 modules/segger/libmodules__segger.a(SEGGER_RTT_zephyr.c.obj) + .debug_abbrev 0x000000000000cad3 0x91 zephyr/kernel/libkernel.a(busy_wait.c.obj) + .debug_abbrev 0x000000000000cb64 0x20a zephyr/kernel/libkernel.a(device.c.obj) + .debug_abbrev 0x000000000000cd6e 0x3d5 zephyr/kernel/libkernel.a(fatal.c.obj) + .debug_abbrev 0x000000000000d143 0x6fd zephyr/kernel/libkernel.a(init.c.obj) + .debug_abbrev 0x000000000000d840 0x2e zephyr/kernel/libkernel.a(init_static.c.obj) + .debug_abbrev 0x000000000000d86e 0x57d zephyr/kernel/libkernel.a(mem_slab.c.obj) + .debug_abbrev 0x000000000000ddeb 0x30e zephyr/kernel/libkernel.a(idle.c.obj) + .debug_abbrev 0x000000000000e0f9 0x459 zephyr/kernel/libkernel.a(mutex.c.obj) + .debug_abbrev 0x000000000000e552 0x57f zephyr/kernel/libkernel.a(queue.c.obj) + .debug_abbrev 0x000000000000ead1 0x49a zephyr/kernel/libkernel.a(sem.c.obj) + .debug_abbrev 0x000000000000ef6b 0x6ae zephyr/kernel/libkernel.a(work.c.obj) + .debug_abbrev 0x000000000000f619 0x536 zephyr/kernel/libkernel.a(thread.c.obj) + .debug_abbrev 0x000000000000fb4f 0x674 zephyr/kernel/libkernel.a(sched.c.obj) + .debug_abbrev 0x00000000000101c3 0x457 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .debug_abbrev 0x000000000001061a 0x221 zephyr/kernel/libkernel.a(spinlock_validate.c.obj) + .debug_abbrev 0x000000000001083b 0xbe zephyr/kernel/libkernel.a(xip.c.obj) + .debug_abbrev 0x00000000000108f9 0x4f2 zephyr/kernel/libkernel.a(timeout.c.obj) + .debug_abbrev 0x0000000000010deb 0x507 zephyr/kernel/libkernel.a(timer.c.obj) + .debug_abbrev 0x00000000000112f2 0x31e zephyr/kernel/libkernel.a(mempool.c.obj) + .debug_abbrev 0x0000000000011610 0x4ea zephyr/kernel/libkernel.a(kheap.c.obj) + .debug_abbrev 0x0000000000011afa 0x255 zephyr/kernel/libkernel.a(system_work_q.c.obj) + .debug_abbrev 0x0000000000011d4f 0x11a zephyr/arch/common/libisr_tables.a(isr_tables.c.obj) + +.debug_line 0x0000000000000000 0x3e0ae + *(SORT_BY_ALIGNMENT(.debug_line) SORT_BY_ALIGNMENT(.debug_line.*) SORT_BY_ALIGNMENT(.debug_line_end)) + .debug_line 0x0000000000000000 0x12f zephyr/CMakeFiles/offsets.dir/./arch/arm/core/offsets/offsets.c.obj + .debug_line 0x000000000000012f 0x6b6 app/libapp.a(main.c.obj) + .debug_line 0x00000000000007e5 0x97f app/libapp.a(led.c.obj) + .debug_line 0x0000000000001164 0x487 app/libapp.a(button.c.obj) + .debug_line 0x00000000000015eb 0x8e2 app/libapp.a(actuator.c.obj) + .debug_line 0x0000000000001ecd 0x780 app/libapp.a(battery_adc.c.obj) + .debug_line 0x000000000000264d 0x360 app/libapp.a(temperature.c.obj) + .debug_line 0x00000000000029ad 0xb02 app/libapp.a(timer_count.c.obj) + .debug_line 0x00000000000034af 0x2044 zephyr/libzephyr.a(heap.c.obj) + .debug_line 0x00000000000054f3 0x4a2 zephyr/libzephyr.a(printk.c.obj) + .debug_line 0x0000000000005995 0x44f zephyr/libzephyr.a(thread_entry.c.obj) + .debug_line 0x0000000000005de4 0x33f zephyr/libzephyr.a(assert.c.obj) + .debug_line 0x0000000000006123 0x1a99 zephyr/libzephyr.a(onoff.c.obj) + .debug_line 0x0000000000007bbc 0x2e5 zephyr/libzephyr.a(notify.c.obj) + .debug_line 0x0000000000007ea1 0xf5c zephyr/libzephyr.a(ring_buffer.c.obj) + .debug_line 0x0000000000008dfd 0x136 zephyr/libzephyr.a(last_section_id.c.obj) + .debug_line 0x0000000000008f33 0x2a2 zephyr/libzephyr.a(configs.c.obj) + .debug_line 0x00000000000091d5 0x27f zephyr/libzephyr.a(mem_attr.c.obj) + .debug_line 0x0000000000009454 0x19df zephyr/libzephyr.a(usb_device.c.obj) + .debug_line 0x000000000000ae33 0xb3d zephyr/libzephyr.a(usb_descriptor.c.obj) + .debug_line 0x000000000000b970 0xde6 zephyr/libzephyr.a(usb_transfer.c.obj) + .debug_line 0x000000000000c756 0x140a zephyr/libzephyr.a(cdc_acm.c.obj) + .debug_line 0x000000000000db60 0x44e zephyr/libzephyr.a(usb_work_q.c.obj) + .debug_line 0x000000000000dfae 0xbd zephyr/libzephyr.a(banner.c.obj) + .debug_line 0x000000000000e06b 0x3e5 zephyr/arch/arch/arm/core/libarch__arm__core.a(fatal.c.obj) + .debug_line 0x000000000000e450 0xb7 zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi.c.obj) + .debug_line 0x000000000000e507 0x6d zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi_on_reset.S.obj) + .debug_line 0x000000000000e574 0x45a zephyr/arch/arch/arm/core/libarch__arm__core.a(tls.c.obj) + .debug_line 0x000000000000e9ce 0x371 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(exc_exit.c.obj) + .debug_line 0x000000000000ed3f 0xb0c zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault.c.obj) + .debug_line 0x000000000000f84b 0x7a zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault_s.S.obj) + .debug_line 0x000000000000f8c5 0x95 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(reset.S.obj) + .debug_line 0x000000000000f95a 0x58b zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(scb.c.obj) + .debug_line 0x000000000000fee5 0x43d zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread_abort.c.obj) + .debug_line 0x0000000000010322 0xd3 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(swap_helper.S.obj) + .debug_line 0x00000000000103f5 0x465 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + .debug_line 0x000000000001085a 0x348 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(prep_c.c.obj) + .debug_line 0x0000000000010ba2 0x67b zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread.c.obj) + .debug_line 0x000000000001121d 0x346 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(cpu_idle.c.obj) + .debug_line 0x0000000000011563 0x266 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_init.c.obj) + .debug_line 0x00000000000117c9 0x279 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(isr_wrapper.c.obj) + .debug_line 0x0000000000011a42 0x7b zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(__aeabi_read_tp.S.obj) + .debug_line 0x0000000000011abd 0x498 zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_core_mpu.c.obj) + .debug_line 0x0000000000011f55 0xf97 zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_mpu.c.obj) + .debug_line 0x0000000000012eec 0x24f zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_mpu_regions.c.obj) + .debug_line 0x000000000001313b 0x336 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .debug_line 0x0000000000013471 0x959 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .debug_line 0x0000000000013dca 0x2aa zephyr/soc/soc/nrf52833/libsoc__nordic.a(soc.c.obj) + .debug_line 0x0000000000014074 0x3480 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + .debug_line 0x00000000000174f4 0x2d25 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + .debug_line 0x000000000001a219 0x25f zephyr/drivers/adc/libdrivers__adc.a(adc_common.c.obj) + .debug_line 0x000000000001a478 0x11c1 zephyr/drivers/adc/libdrivers__adc.a(adc_nrfx_saadc.c.obj) + .debug_line 0x000000000001b639 0x1c7e zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .debug_line 0x000000000001d2b7 0x48e zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .debug_line 0x000000000001d745 0xf36 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + .debug_line 0x000000000001e67b 0x4d0 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_nrf.c.obj) + .debug_line 0x000000000001eb4b 0x9b1 zephyr/drivers/sensor/nordic/temp/libdrivers__sensor__nordic__temp.a(temp_nrf5.c.obj) + .debug_line 0x000000000001f4fc 0x1da8 zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .debug_line 0x00000000000212a4 0x678 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(system_nrf52833.c.obj) + .debug_line 0x000000000002191c 0x2ce modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_glue.c.obj) + .debug_line 0x0000000000021bea 0x336 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_flag32_allocator.c.obj) + .debug_line 0x0000000000021f20 0xddb modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_clock.c.obj) + .debug_line 0x0000000000022cfb 0x3495 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .debug_line 0x0000000000026190 0x11fc modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + .debug_line 0x000000000002738c 0x87c modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_temp.c.obj) + .debug_line 0x0000000000027c08 0x1979 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .debug_line 0x0000000000029581 0x34f modules/segger/libmodules__segger.a(SEGGER_RTT_zephyr.c.obj) + .debug_line 0x00000000000298d0 0x19c zephyr/kernel/libkernel.a(busy_wait.c.obj) + .debug_line 0x0000000000029a6c 0x424 zephyr/kernel/libkernel.a(device.c.obj) + .debug_line 0x0000000000029e90 0x6fb zephyr/kernel/libkernel.a(fatal.c.obj) + .debug_line 0x000000000002a58b 0xe67 zephyr/kernel/libkernel.a(init.c.obj) + .debug_line 0x000000000002b3f2 0x66 zephyr/kernel/libkernel.a(init_static.c.obj) + .debug_line 0x000000000002b458 0xd16 zephyr/kernel/libkernel.a(mem_slab.c.obj) + .debug_line 0x000000000002c16e 0x559 zephyr/kernel/libkernel.a(idle.c.obj) + .debug_line 0x000000000002c6c7 0xda0 zephyr/kernel/libkernel.a(mutex.c.obj) + .debug_line 0x000000000002d467 0x1a2f zephyr/kernel/libkernel.a(queue.c.obj) + .debug_line 0x000000000002ee96 0xdad zephyr/kernel/libkernel.a(sem.c.obj) + .debug_line 0x000000000002fc43 0x3cbb zephyr/kernel/libkernel.a(work.c.obj) + .debug_line 0x00000000000338fe 0xd66 zephyr/kernel/libkernel.a(thread.c.obj) + .debug_line 0x0000000000034664 0x5071 zephyr/kernel/libkernel.a(sched.c.obj) + .debug_line 0x00000000000396d5 0x8b0 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .debug_line 0x0000000000039f85 0x44d zephyr/kernel/libkernel.a(spinlock_validate.c.obj) + .debug_line 0x000000000003a3d2 0x182 zephyr/kernel/libkernel.a(xip.c.obj) + .debug_line 0x000000000003a554 0x17f1 zephyr/kernel/libkernel.a(timeout.c.obj) + .debug_line 0x000000000003bd45 0xe8f zephyr/kernel/libkernel.a(timer.c.obj) + .debug_line 0x000000000003cbd4 0x3e2 zephyr/kernel/libkernel.a(mempool.c.obj) + .debug_line 0x000000000003cfb6 0xbda zephyr/kernel/libkernel.a(kheap.c.obj) + .debug_line 0x000000000003db90 0x39a zephyr/kernel/libkernel.a(system_work_q.c.obj) + .debug_line 0x000000000003df2a 0x184 zephyr/arch/common/libisr_tables.a(isr_tables.c.obj) + +.debug_frame 0x0000000000000000 0x4bf8 + *(SORT_BY_ALIGNMENT(.debug_frame)) + .debug_frame 0x0000000000000000 0x20 zephyr/CMakeFiles/offsets.dir/./arch/arm/core/offsets/offsets.c.obj + .debug_frame 0x0000000000000020 0x3c app/libapp.a(main.c.obj) + .debug_frame 0x000000000000005c 0x11c app/libapp.a(led.c.obj) + .debug_frame 0x0000000000000178 0x60 app/libapp.a(button.c.obj) + .debug_frame 0x00000000000001d8 0x124 app/libapp.a(actuator.c.obj) + .debug_frame 0x00000000000002fc 0x6c app/libapp.a(battery_adc.c.obj) + .debug_frame 0x0000000000000368 0x44 app/libapp.a(temperature.c.obj) + .debug_frame 0x00000000000003ac 0xcc app/libapp.a(timer_count.c.obj) + .debug_frame 0x0000000000000478 0x1f4 zephyr/libzephyr.a(heap.c.obj) + .debug_frame 0x000000000000066c 0xc4 zephyr/libzephyr.a(printk.c.obj) + .debug_frame 0x0000000000000730 0x28 zephyr/libzephyr.a(thread_entry.c.obj) + .debug_frame 0x0000000000000758 0x54 zephyr/libzephyr.a(assert.c.obj) + .debug_frame 0x00000000000007ac 0x1b0 zephyr/libzephyr.a(onoff.c.obj) + .debug_frame 0x000000000000095c 0x38 zephyr/libzephyr.a(notify.c.obj) + .debug_frame 0x0000000000000994 0x110 zephyr/libzephyr.a(ring_buffer.c.obj) + .debug_frame 0x0000000000000aa4 0x20 zephyr/libzephyr.a(configs.c.obj) + .debug_frame 0x0000000000000ac4 0x30 zephyr/libzephyr.a(mem_attr.c.obj) + .debug_frame 0x0000000000000af4 0x300 zephyr/libzephyr.a(usb_device.c.obj) + .debug_frame 0x0000000000000df4 0xac zephyr/libzephyr.a(usb_descriptor.c.obj) + .debug_frame 0x0000000000000ea0 0x154 zephyr/libzephyr.a(usb_transfer.c.obj) + .debug_frame 0x0000000000000ff4 0x2ac zephyr/libzephyr.a(cdc_acm.c.obj) + .debug_frame 0x00000000000012a0 0x30 zephyr/libzephyr.a(usb_work_q.c.obj) + .debug_frame 0x00000000000012d0 0x2c zephyr/libzephyr.a(banner.c.obj) + .debug_frame 0x00000000000012fc 0x48 zephyr/arch/arch/arm/core/libarch__arm__core.a(fatal.c.obj) + .debug_frame 0x0000000000001344 0x2c zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi.c.obj) + .debug_frame 0x0000000000001370 0x30 zephyr/arch/arch/arm/core/libarch__arm__core.a(tls.c.obj) + .debug_frame 0x00000000000013a0 0x20 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(exc_exit.c.obj) + .debug_frame 0x00000000000013c0 0xa4 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault.c.obj) + .debug_frame 0x0000000000001464 0x40 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(scb.c.obj) + .debug_frame 0x00000000000014a4 0x20 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread_abort.c.obj) + .debug_frame 0x00000000000014c4 0x6c zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + .debug_frame 0x0000000000001530 0x28 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(prep_c.c.obj) + .debug_frame 0x0000000000001558 0x74 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread.c.obj) + .debug_frame 0x00000000000015cc 0x40 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(cpu_idle.c.obj) + .debug_frame 0x000000000000160c 0x20 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_init.c.obj) + .debug_frame 0x000000000000162c 0x2c zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(isr_wrapper.c.obj) + .debug_frame 0x0000000000001658 0x3c zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_core_mpu.c.obj) + .debug_frame 0x0000000000001694 0xa8 zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_mpu.c.obj) + .debug_frame 0x000000000000173c 0x60 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .debug_frame 0x000000000000179c 0xe8 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .debug_frame 0x0000000000001884 0x30 zephyr/soc/soc/nrf52833/libsoc__nordic.a(soc.c.obj) + .debug_frame 0x00000000000018b4 0x3bc zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + .debug_frame 0x0000000000001c70 0x3b0 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + .debug_frame 0x0000000000002020 0x2c zephyr/drivers/adc/libdrivers__adc.a(adc_common.c.obj) + .debug_frame 0x000000000000204c 0xc0 zephyr/drivers/adc/libdrivers__adc.a(adc_nrfx_saadc.c.obj) + .debug_frame 0x000000000000210c 0x21c zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .debug_frame 0x0000000000002328 0x54 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .debug_frame 0x000000000000237c 0x120 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + .debug_frame 0x000000000000249c 0x60 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_nrf.c.obj) + .debug_frame 0x00000000000024fc 0x88 zephyr/drivers/sensor/nordic/temp/libdrivers__sensor__nordic__temp.a(temp_nrf5.c.obj) + .debug_frame 0x0000000000002584 0x258 zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .debug_frame 0x00000000000027dc 0x68 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(system_nrf52833.c.obj) + .debug_frame 0x0000000000002844 0x40 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_glue.c.obj) + .debug_frame 0x0000000000002884 0x58 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_flag32_allocator.c.obj) + .debug_frame 0x00000000000028dc 0x100 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_clock.c.obj) + .debug_frame 0x00000000000029dc 0x40c modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .debug_frame 0x0000000000002de8 0x1d0 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + .debug_frame 0x0000000000002fb8 0x98 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_temp.c.obj) + .debug_frame 0x0000000000003050 0x434 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .debug_frame 0x0000000000003484 0x48 modules/segger/libmodules__segger.a(SEGGER_RTT_zephyr.c.obj) + .debug_frame 0x00000000000034cc 0x20 zephyr/kernel/libkernel.a(busy_wait.c.obj) + .debug_frame 0x00000000000034ec 0x64 zephyr/kernel/libkernel.a(device.c.obj) + .debug_frame 0x0000000000003550 0x78 zephyr/kernel/libkernel.a(fatal.c.obj) + .debug_frame 0x00000000000035c8 0x11c zephyr/kernel/libkernel.a(init.c.obj) + .debug_frame 0x00000000000036e4 0x20 zephyr/kernel/libkernel.a(init_static.c.obj) + .debug_frame 0x0000000000003704 0xf0 zephyr/kernel/libkernel.a(mem_slab.c.obj) + .debug_frame 0x00000000000037f4 0x40 zephyr/kernel/libkernel.a(idle.c.obj) + .debug_frame 0x0000000000003834 0x6c zephyr/kernel/libkernel.a(mutex.c.obj) + .debug_frame 0x00000000000038a0 0x22c zephyr/kernel/libkernel.a(queue.c.obj) + .debug_frame 0x0000000000003acc 0xa4 zephyr/kernel/libkernel.a(sem.c.obj) + .debug_frame 0x0000000000003b70 0x370 zephyr/kernel/libkernel.a(work.c.obj) + .debug_frame 0x0000000000003ee0 0x178 zephyr/kernel/libkernel.a(thread.c.obj) + .debug_frame 0x0000000000004058 0x490 zephyr/kernel/libkernel.a(sched.c.obj) + .debug_frame 0x00000000000044e8 0x9c zephyr/kernel/libkernel.a(timeslicing.c.obj) + .debug_frame 0x0000000000004584 0x40 zephyr/kernel/libkernel.a(spinlock_validate.c.obj) + .debug_frame 0x00000000000045c4 0x2c zephyr/kernel/libkernel.a(xip.c.obj) + .debug_frame 0x00000000000045f0 0x1c0 zephyr/kernel/libkernel.a(timeout.c.obj) + .debug_frame 0x00000000000047b0 0xe0 zephyr/kernel/libkernel.a(timer.c.obj) + .debug_frame 0x0000000000004890 0x4c zephyr/kernel/libkernel.a(mempool.c.obj) + .debug_frame 0x00000000000048dc 0x10c zephyr/kernel/libkernel.a(kheap.c.obj) + .debug_frame 0x00000000000049e8 0x2c zephyr/kernel/libkernel.a(system_work_q.c.obj) + .debug_frame 0x0000000000004a14 0x28 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(memcpy.c.o) + .debug_frame 0x0000000000004a3c 0x20 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(memset.c.o) + .debug_frame 0x0000000000004a5c 0x20 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(strlen.S.o) + .debug_frame 0x0000000000004a7c 0x28 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_string_strnlen.c.o) + .debug_frame 0x0000000000004aa4 0x60 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_vflprintf.c.o) + .debug_frame 0x0000000000004b04 0x24 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_mulsf3.o) + .debug_frame 0x0000000000004b28 0x4c /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_addsubsf3.o) + .debug_frame 0x0000000000004b74 0x24 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_fixsfsi.o) + .debug_frame 0x0000000000004b98 0x2c /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_aeabi_uldivmod.o) + .debug_frame 0x0000000000004bc4 0x34 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_udivmoddi4.o) + +.debug_str 0x0000000000000000 0x10972 + *(SORT_BY_ALIGNMENT(.debug_str)) + .debug_str 0x0000000000000000 0x37e zephyr/CMakeFiles/offsets.dir/./arch/arm/core/offsets/offsets.c.obj + 0x3b7 (size before relaxing) + .debug_str 0x000000000000037e 0x68c app/libapp.a(main.c.obj) + 0x80f (size before relaxing) + .debug_str 0x0000000000000a0a 0x450 app/libapp.a(led.c.obj) + 0xb81 (size before relaxing) + .debug_str 0x0000000000000e5a 0xa1 app/libapp.a(button.c.obj) + 0x8e5 (size before relaxing) + .debug_str 0x0000000000000efb 0x98 app/libapp.a(actuator.c.obj) + 0x9d9 (size before relaxing) + .debug_str 0x0000000000000f93 0x456 app/libapp.a(battery_adc.c.obj) + 0xe78 (size before relaxing) + .debug_str 0x00000000000013e9 0x337 app/libapp.a(temperature.c.obj) + 0x616 (size before relaxing) + .debug_str 0x0000000000001720 0x812 app/libapp.a(timer_count.c.obj) + 0x1233 (size before relaxing) + .debug_str 0x0000000000001f32 0x3d3 zephyr/libzephyr.a(heap.c.obj) + 0x75c (size before relaxing) + .debug_str 0x0000000000002305 0x12d zephyr/libzephyr.a(printk.c.obj) + 0x623 (size before relaxing) + .debug_str 0x0000000000002432 0x1bd zephyr/libzephyr.a(thread_entry.c.obj) + 0x7d4 (size before relaxing) + .debug_str 0x00000000000025ef 0x60 zephyr/libzephyr.a(assert.c.obj) + 0x3ba (size before relaxing) + .debug_str 0x000000000000264f 0x4cb zephyr/libzephyr.a(onoff.c.obj) + 0x8e7 (size before relaxing) + .debug_str 0x0000000000002b1a 0x48 zephyr/libzephyr.a(notify.c.obj) + 0x3ac (size before relaxing) + .debug_str 0x0000000000002b62 0x1b2 zephyr/libzephyr.a(ring_buffer.c.obj) + 0x4d7 (size before relaxing) + .debug_str 0x0000000000002d14 0x43 zephyr/libzephyr.a(last_section_id.c.obj) + 0x2b8 (size before relaxing) + .debug_str 0x0000000000002d57 0x83 zephyr/libzephyr.a(configs.c.obj) + 0x254 (size before relaxing) + .debug_str 0x0000000000002dda 0xb5 zephyr/libzephyr.a(mem_attr.c.obj) + 0x589 (size before relaxing) + .debug_str 0x0000000000002e8f 0xcfc zephyr/libzephyr.a(usb_device.c.obj) + 0x1492 (size before relaxing) + .debug_str 0x0000000000003b8b 0x346 zephyr/libzephyr.a(usb_descriptor.c.obj) + 0xe66 (size before relaxing) + .debug_str 0x0000000000003ed1 0x1f7 zephyr/libzephyr.a(usb_transfer.c.obj) + 0x9a9 (size before relaxing) + .debug_str 0x00000000000040c8 0x7af zephyr/libzephyr.a(cdc_acm.c.obj) + 0x16f7 (size before relaxing) + .debug_str 0x0000000000004877 0xdb zephyr/libzephyr.a(usb_work_q.c.obj) + 0x8ba (size before relaxing) + .debug_str 0x0000000000004952 0x41 zephyr/libzephyr.a(banner.c.obj) + 0x2b4 (size before relaxing) + .debug_str 0x0000000000004993 0x108 zephyr/arch/arch/arm/core/libarch__arm__core.a(fatal.c.obj) + 0x555 (size before relaxing) + .debug_str 0x0000000000004a9b 0x5c zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi.c.obj) + 0x2c8 (size before relaxing) + .debug_str 0x0000000000004af7 0x48 zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi_on_reset.S.obj) + 0x9c (size before relaxing) + .debug_str 0x0000000000004b3f 0x9d zephyr/arch/arch/arm/core/libarch__arm__core.a(tls.c.obj) + 0x7ca (size before relaxing) + .debug_str 0x0000000000004bdc 0xcd zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(exc_exit.c.obj) + 0x5e6 (size before relaxing) + .debug_str 0x0000000000004ca9 0x6a2 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault.c.obj) + 0xc67 (size before relaxing) + .debug_str 0x000000000000534b 0x40 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault_s.S.obj) + 0xa0 (size before relaxing) + .debug_str 0x000000000000538b 0x3e zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(reset.S.obj) + 0x9e (size before relaxing) + .debug_str 0x00000000000053c9 0x11f zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(scb.c.obj) + 0x4ff (size before relaxing) + .debug_str 0x00000000000054e8 0x63 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread_abort.c.obj) + 0x630 (size before relaxing) + .debug_str 0x000000000000554b 0x44 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(swap_helper.S.obj) + 0xa4 (size before relaxing) + .debug_str 0x000000000000558f 0xb3 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + 0x7f8 (size before relaxing) + .debug_str 0x0000000000005642 0xbb zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(prep_c.c.obj) + 0x435 (size before relaxing) + .debug_str 0x00000000000056fd 0x10a zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread.c.obj) + 0x764 (size before relaxing) + .debug_str 0x0000000000005807 0x78 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(cpu_idle.c.obj) + 0x3b5 (size before relaxing) + .debug_str 0x000000000000587f 0x41 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_init.c.obj) + 0x697 (size before relaxing) + .debug_str 0x00000000000058c0 0x70 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(isr_wrapper.c.obj) + 0x334 (size before relaxing) + .debug_str 0x0000000000005930 0x48 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(__aeabi_read_tp.S.obj) + 0xa8 (size before relaxing) + .debug_str 0x0000000000005978 0x16f zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_core_mpu.c.obj) + 0x712 (size before relaxing) + .debug_str 0x0000000000005ae7 0x26a zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_mpu.c.obj) + 0x8f2 (size before relaxing) + .debug_str 0x0000000000005d51 0x43 zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_mpu_regions.c.obj) + 0x3e2 (size before relaxing) + .debug_str 0x0000000000005d94 0xb1 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + 0x5b6 (size before relaxing) + .debug_str 0x0000000000005e45 0x2c1 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + 0x84c (size before relaxing) + .debug_str 0x0000000000006106 0x130 zephyr/soc/soc/nrf52833/libsoc__nordic.a(soc.c.obj) + 0x50e (size before relaxing) + .debug_str 0x0000000000006236 0x151e zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + 0x25a6 (size before relaxing) + .debug_str 0x0000000000007754 0x6f9 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + 0x1bad (size before relaxing) + .debug_str 0x0000000000007e4d 0x48 zephyr/drivers/adc/libdrivers__adc.a(adc_common.c.obj) + 0x403 (size before relaxing) + .debug_str 0x0000000000007e95 0x1233 zephyr/drivers/adc/libdrivers__adc.a(adc_nrfx_saadc.c.obj) + 0x1d34 (size before relaxing) + .debug_str 0x00000000000090c8 0xc0c zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + 0x19c8 (size before relaxing) + .debug_str 0x0000000000009cd4 0xfe zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + 0x6c8 (size before relaxing) + .debug_str 0x0000000000009dd2 0x811 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + 0x1659 (size before relaxing) + .debug_str 0x000000000000a5e3 0x2ff zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_nrf.c.obj) + 0x7b8 (size before relaxing) + .debug_str 0x000000000000a8e2 0xdf5 zephyr/drivers/sensor/nordic/temp/libdrivers__sensor__nordic__temp.a(temp_nrf5.c.obj) + 0x1911 (size before relaxing) + .debug_str 0x000000000000b6d7 0x97e zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + 0x15fb (size before relaxing) + .debug_str 0x000000000000c055 0x166 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(system_nrf52833.c.obj) + 0x8f9 (size before relaxing) + .debug_str 0x000000000000c1bb 0x7b modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_glue.c.obj) + 0x4cf (size before relaxing) + .debug_str 0x000000000000c236 0xa6 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_flag32_allocator.c.obj) + 0x51a (size before relaxing) + .debug_str 0x000000000000c2dc 0x1ee modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_clock.c.obj) + 0x118e (size before relaxing) + .debug_str 0x000000000000c4ca 0x11b0 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + 0x249a (size before relaxing) + .debug_str 0x000000000000d67a 0x932 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + 0x167d (size before relaxing) + .debug_str 0x000000000000dfac 0x172 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_temp.c.obj) + 0xc77 (size before relaxing) + .debug_str 0x000000000000e11e 0x525 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + 0x801 (size before relaxing) + .debug_str 0x000000000000e643 0x7c modules/segger/libmodules__segger.a(SEGGER_RTT_zephyr.c.obj) + 0x615 (size before relaxing) + .debug_str 0x000000000000e6bf 0x32 zephyr/kernel/libkernel.a(busy_wait.c.obj) + 0x2e1 (size before relaxing) + .debug_str 0x000000000000e6f1 0xb6 zephyr/kernel/libkernel.a(device.c.obj) + 0x3c8 (size before relaxing) + .debug_str 0x000000000000e7a7 0x8b zephyr/kernel/libkernel.a(fatal.c.obj) + 0x833 (size before relaxing) + .debug_str 0x000000000000e832 0x53a zephyr/kernel/libkernel.a(init.c.obj) + 0x110b (size before relaxing) + .debug_str 0x000000000000ed6c 0x34 zephyr/kernel/libkernel.a(init_static.c.obj) + 0x213 (size before relaxing) + .debug_str 0x000000000000eda0 0x26b zephyr/kernel/libkernel.a(mem_slab.c.obj) + 0xc64 (size before relaxing) + .debug_str 0x000000000000f00b 0x51 zephyr/kernel/libkernel.a(idle.c.obj) + 0x6aa (size before relaxing) + .debug_str 0x000000000000f05c 0x12c zephyr/kernel/libkernel.a(mutex.c.obj) + 0xada (size before relaxing) + .debug_str 0x000000000000f188 0x33c zephyr/kernel/libkernel.a(queue.c.obj) + 0xd82 (size before relaxing) + .debug_str 0x000000000000f4c4 0x3f zephyr/kernel/libkernel.a(sem.c.obj) + 0xa7c (size before relaxing) + .debug_str 0x000000000000f503 0x68e zephyr/kernel/libkernel.a(work.c.obj) + 0x139c (size before relaxing) + .debug_str 0x000000000000fb91 0x22e zephyr/kernel/libkernel.a(thread.c.obj) + 0xbb8 (size before relaxing) + .debug_str 0x000000000000fdbf 0x65a zephyr/kernel/libkernel.a(sched.c.obj) + 0x1369 (size before relaxing) + .debug_str 0x0000000000010419 0xbd zephyr/kernel/libkernel.a(timeslicing.c.obj) + 0xac4 (size before relaxing) + .debug_str 0x00000000000104d6 0x3f zephyr/kernel/libkernel.a(spinlock_validate.c.obj) + 0x5d4 (size before relaxing) + .debug_str 0x0000000000010515 0xa5 zephyr/kernel/libkernel.a(xip.c.obj) + 0x333 (size before relaxing) + .debug_str 0x00000000000105ba 0x133 zephyr/kernel/libkernel.a(timeout.c.obj) + 0x975 (size before relaxing) + .debug_str 0x00000000000106ed 0x6c zephyr/kernel/libkernel.a(timer.c.obj) + 0xb01 (size before relaxing) + .debug_str 0x0000000000010759 0x89 zephyr/kernel/libkernel.a(mempool.c.obj) + 0x634 (size before relaxing) + .debug_str 0x00000000000107e2 0xc2 zephyr/kernel/libkernel.a(kheap.c.obj) + 0x934 (size before relaxing) + .debug_str 0x00000000000108a4 0x60 zephyr/kernel/libkernel.a(system_work_q.c.obj) + 0x87d (size before relaxing) + .debug_str 0x0000000000010904 0x6e zephyr/arch/common/libisr_tables.a(isr_tables.c.obj) + 0x3cd (size before relaxing) + +.debug_loc 0x0000000000000000 0x46a1d + *(SORT_BY_ALIGNMENT(.debug_loc)) + .debug_loc 0x0000000000000000 0x19b app/libapp.a(main.c.obj) + .debug_loc 0x000000000000019b 0x9cb app/libapp.a(led.c.obj) + .debug_loc 0x0000000000000b66 0x2cc app/libapp.a(button.c.obj) + .debug_loc 0x0000000000000e32 0x9b1 app/libapp.a(actuator.c.obj) + .debug_loc 0x00000000000017e3 0x63b app/libapp.a(battery_adc.c.obj) + .debug_loc 0x0000000000001e1e 0x7b app/libapp.a(temperature.c.obj) + .debug_loc 0x0000000000001e99 0x65f app/libapp.a(timer_count.c.obj) + .debug_loc 0x00000000000024f8 0x59d0 zephyr/libzephyr.a(heap.c.obj) + .debug_loc 0x0000000000007ec8 0x19e zephyr/libzephyr.a(printk.c.obj) + .debug_loc 0x0000000000008066 0xd7 zephyr/libzephyr.a(thread_entry.c.obj) + .debug_loc 0x000000000000813d 0x51 zephyr/libzephyr.a(assert.c.obj) + .debug_loc 0x000000000000818e 0x3112 zephyr/libzephyr.a(onoff.c.obj) + .debug_loc 0x000000000000b2a0 0x20b zephyr/libzephyr.a(notify.c.obj) + .debug_loc 0x000000000000b4ab 0x15e8 zephyr/libzephyr.a(ring_buffer.c.obj) + .debug_loc 0x000000000000ca93 0x6f zephyr/libzephyr.a(mem_attr.c.obj) + .debug_loc 0x000000000000cb02 0x222b zephyr/libzephyr.a(usb_device.c.obj) + .debug_loc 0x000000000000ed2d 0x9b1 zephyr/libzephyr.a(usb_descriptor.c.obj) + .debug_loc 0x000000000000f6de 0x9f0 zephyr/libzephyr.a(usb_transfer.c.obj) + .debug_loc 0x00000000000100ce 0x1729 zephyr/libzephyr.a(cdc_acm.c.obj) + .debug_loc 0x00000000000117f7 0x34 zephyr/libzephyr.a(usb_work_q.c.obj) + .debug_loc 0x000000000001182b 0x16e zephyr/arch/arch/arm/core/libarch__arm__core.a(fatal.c.obj) + .debug_loc 0x0000000000011999 0x85 zephyr/arch/arch/arm/core/libarch__arm__core.a(tls.c.obj) + .debug_loc 0x0000000000011a1e 0xaa2 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault.c.obj) + .debug_loc 0x00000000000124c0 0x230 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(scb.c.obj) + .debug_loc 0x00000000000126f0 0x57 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread_abort.c.obj) + .debug_loc 0x0000000000012747 0x231 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + .debug_loc 0x0000000000012978 0x218 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread.c.obj) + .debug_loc 0x0000000000012b90 0x56 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(cpu_idle.c.obj) + .debug_loc 0x0000000000012be6 0x6a zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_init.c.obj) + .debug_loc 0x0000000000012c50 0x3f zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(isr_wrapper.c.obj) + .debug_loc 0x0000000000012c8f 0x7b zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_core_mpu.c.obj) + .debug_loc 0x0000000000012d0a 0xdf2 zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_mpu.c.obj) + .debug_loc 0x0000000000013afc 0x112 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .debug_loc 0x0000000000013c0e 0x75f zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .debug_loc 0x000000000001436d 0xd9 zephyr/soc/soc/nrf52833/libsoc__nordic.a(soc.c.obj) + .debug_loc 0x0000000000014446 0x375e zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + .debug_loc 0x0000000000017ba4 0x29f1 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + .debug_loc 0x000000000001a595 0xb9 zephyr/drivers/adc/libdrivers__adc.a(adc_common.c.obj) + .debug_loc 0x000000000001a64e 0x19ef zephyr/drivers/adc/libdrivers__adc.a(adc_nrfx_saadc.c.obj) + .debug_loc 0x000000000001c03d 0x2a48 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .debug_loc 0x000000000001ea85 0x7c zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .debug_loc 0x000000000001eb01 0x1bde zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + .debug_loc 0x00000000000206df 0x1dc zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_nrf.c.obj) + .debug_loc 0x00000000000208bb 0x4b3 zephyr/drivers/sensor/nordic/temp/libdrivers__sensor__nordic__temp.a(temp_nrf5.c.obj) + .debug_loc 0x0000000000020d6e 0x22b7 zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .debug_loc 0x0000000000023025 0x154 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(system_nrf52833.c.obj) + .debug_loc 0x0000000000023179 0x258 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_glue.c.obj) + .debug_loc 0x00000000000233d1 0x357 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_flag32_allocator.c.obj) + .debug_loc 0x0000000000023728 0xbe3 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_clock.c.obj) + .debug_loc 0x000000000002430b 0x8220 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .debug_loc 0x000000000002c52b 0xde3 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + .debug_loc 0x000000000002d30e 0x647 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_temp.c.obj) + .debug_loc 0x000000000002d955 0x2c23 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .debug_loc 0x0000000000030578 0x6b modules/segger/libmodules__segger.a(SEGGER_RTT_zephyr.c.obj) + .debug_loc 0x00000000000305e3 0x25 zephyr/kernel/libkernel.a(busy_wait.c.obj) + .debug_loc 0x0000000000030608 0xc8 zephyr/kernel/libkernel.a(device.c.obj) + .debug_loc 0x00000000000306d0 0x1d5 zephyr/kernel/libkernel.a(fatal.c.obj) + .debug_loc 0x00000000000308a5 0x975 zephyr/kernel/libkernel.a(init.c.obj) + .debug_loc 0x000000000003121a 0xcfb zephyr/kernel/libkernel.a(mem_slab.c.obj) + .debug_loc 0x0000000000031f15 0x11e zephyr/kernel/libkernel.a(idle.c.obj) + .debug_loc 0x0000000000032033 0xcce zephyr/kernel/libkernel.a(mutex.c.obj) + .debug_loc 0x0000000000032d01 0x26e9 zephyr/kernel/libkernel.a(queue.c.obj) + .debug_loc 0x00000000000353ea 0xb77 zephyr/kernel/libkernel.a(sem.c.obj) + .debug_loc 0x0000000000035f61 0x5ba9 zephyr/kernel/libkernel.a(work.c.obj) + .debug_loc 0x000000000003bb0a 0xcd3 zephyr/kernel/libkernel.a(thread.c.obj) + .debug_loc 0x000000000003c7dd 0x65f9 zephyr/kernel/libkernel.a(sched.c.obj) + .debug_loc 0x0000000000042dd6 0x553 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .debug_loc 0x0000000000043329 0xd1 zephyr/kernel/libkernel.a(spinlock_validate.c.obj) + .debug_loc 0x00000000000433fa 0x1c69 zephyr/kernel/libkernel.a(timeout.c.obj) + .debug_loc 0x0000000000045063 0xbad zephyr/kernel/libkernel.a(timer.c.obj) + .debug_loc 0x0000000000045c10 0x2e5 zephyr/kernel/libkernel.a(mempool.c.obj) + .debug_loc 0x0000000000045ef5 0xb28 zephyr/kernel/libkernel.a(kheap.c.obj) + +.debug_macinfo + *(SORT_BY_ALIGNMENT(.debug_macinfo)) + +.debug_weaknames + *(SORT_BY_ALIGNMENT(.debug_weaknames)) + +.debug_funcnames + *(SORT_BY_ALIGNMENT(.debug_funcnames)) + +.debug_typenames + *(SORT_BY_ALIGNMENT(.debug_typenames)) + +.debug_varnames + *(SORT_BY_ALIGNMENT(.debug_varnames)) + +.debug_pubtypes + *(SORT_BY_ALIGNMENT(.debug_pubtypes)) + +.debug_ranges 0x0000000000000000 0xf1b0 + *(SORT_BY_ALIGNMENT(.debug_ranges)) + .debug_ranges 0x0000000000000000 0x20 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(swap_helper.S.obj) + .debug_ranges 0x0000000000000020 0x10 zephyr/CMakeFiles/offsets.dir/./arch/arm/core/offsets/offsets.c.obj + .debug_ranges 0x0000000000000030 0x30 app/libapp.a(main.c.obj) + .debug_ranges 0x0000000000000060 0x190 app/libapp.a(led.c.obj) + .debug_ranges 0x00000000000001f0 0xb0 app/libapp.a(button.c.obj) + .debug_ranges 0x00000000000002a0 0x330 app/libapp.a(actuator.c.obj) + .debug_ranges 0x00000000000005d0 0xf0 app/libapp.a(battery_adc.c.obj) + .debug_ranges 0x00000000000006c0 0x18 app/libapp.a(temperature.c.obj) + .debug_ranges 0x00000000000006d8 0x2c0 app/libapp.a(timer_count.c.obj) + .debug_ranges 0x0000000000000998 0xf70 zephyr/libzephyr.a(heap.c.obj) + .debug_ranges 0x0000000000001908 0x88 zephyr/libzephyr.a(printk.c.obj) + .debug_ranges 0x0000000000001990 0x28 zephyr/libzephyr.a(thread_entry.c.obj) + .debug_ranges 0x00000000000019b8 0x18 zephyr/libzephyr.a(assert.c.obj) + .debug_ranges 0x00000000000019d0 0x788 zephyr/libzephyr.a(onoff.c.obj) + .debug_ranges 0x0000000000002158 0x38 zephyr/libzephyr.a(notify.c.obj) + .debug_ranges 0x0000000000002190 0x250 zephyr/libzephyr.a(ring_buffer.c.obj) + .debug_ranges 0x00000000000023e0 0x10 zephyr/libzephyr.a(configs.c.obj) + .debug_ranges 0x00000000000023f0 0x18 zephyr/libzephyr.a(mem_attr.c.obj) + .debug_ranges 0x0000000000002408 0x618 zephyr/libzephyr.a(usb_device.c.obj) + .debug_ranges 0x0000000000002a20 0x208 zephyr/libzephyr.a(usb_descriptor.c.obj) + .debug_ranges 0x0000000000002c28 0x260 zephyr/libzephyr.a(usb_transfer.c.obj) + .debug_ranges 0x0000000000002e88 0x320 zephyr/libzephyr.a(cdc_acm.c.obj) + .debug_ranges 0x00000000000031a8 0x10 zephyr/libzephyr.a(usb_work_q.c.obj) + .debug_ranges 0x00000000000031b8 0x10 zephyr/libzephyr.a(banner.c.obj) + .debug_ranges 0x00000000000031c8 0x20 zephyr/arch/arch/arm/core/libarch__arm__core.a(fatal.c.obj) + .debug_ranges 0x00000000000031e8 0x10 zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi.c.obj) + .debug_ranges 0x00000000000031f8 0x48 zephyr/arch/arch/arm/core/libarch__arm__core.a(tls.c.obj) + .debug_ranges 0x0000000000003240 0x10 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(exc_exit.c.obj) + .debug_ranges 0x0000000000003250 0x180 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault.c.obj) + .debug_ranges 0x00000000000033d0 0x60 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(scb.c.obj) + .debug_ranges 0x0000000000003430 0x10 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread_abort.c.obj) + .debug_ranges 0x0000000000003440 0x48 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + .debug_ranges 0x0000000000003488 0x28 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(prep_c.c.obj) + .debug_ranges 0x00000000000034b0 0x30 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread.c.obj) + .debug_ranges 0x00000000000034e0 0x20 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(cpu_idle.c.obj) + .debug_ranges 0x0000000000003500 0x38 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_init.c.obj) + .debug_ranges 0x0000000000003538 0x28 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(isr_wrapper.c.obj) + .debug_ranges 0x0000000000003560 0x18 zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_core_mpu.c.obj) + .debug_ranges 0x0000000000003578 0x5e8 zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_mpu.c.obj) + .debug_ranges 0x0000000000003b60 0x40 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .debug_ranges 0x0000000000003ba0 0x200 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .debug_ranges 0x0000000000003da0 0x18 zephyr/soc/soc/nrf52833/libsoc__nordic.a(soc.c.obj) + .debug_ranges 0x0000000000003db8 0xdf0 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + .debug_ranges 0x0000000000004ba8 0xb38 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + .debug_ranges 0x00000000000056e0 0x30 zephyr/drivers/adc/libdrivers__adc.a(adc_common.c.obj) + .debug_ranges 0x0000000000005710 0x528 zephyr/drivers/adc/libdrivers__adc.a(adc_nrfx_saadc.c.obj) + .debug_ranges 0x0000000000005c38 0x780 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .debug_ranges 0x00000000000063b8 0x38 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .debug_ranges 0x00000000000063f0 0x3e8 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + .debug_ranges 0x00000000000067d8 0x48 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_nrf.c.obj) + .debug_ranges 0x0000000000006820 0x70 zephyr/drivers/sensor/nordic/temp/libdrivers__sensor__nordic__temp.a(temp_nrf5.c.obj) + .debug_ranges 0x0000000000006890 0x7d8 zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .debug_ranges 0x0000000000007068 0x108 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(system_nrf52833.c.obj) + .debug_ranges 0x0000000000007170 0x20 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_glue.c.obj) + .debug_ranges 0x0000000000007190 0x68 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_flag32_allocator.c.obj) + .debug_ranges 0x00000000000071f8 0x328 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_clock.c.obj) + .debug_ranges 0x0000000000007520 0x17a0 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .debug_ranges 0x0000000000008cc0 0x580 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + .debug_ranges 0x0000000000009240 0xe8 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_temp.c.obj) + .debug_ranges 0x0000000000009328 0x510 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .debug_ranges 0x0000000000009838 0x20 modules/segger/libmodules__segger.a(SEGGER_RTT_zephyr.c.obj) + .debug_ranges 0x0000000000009858 0x10 zephyr/kernel/libkernel.a(busy_wait.c.obj) + .debug_ranges 0x0000000000009868 0x90 zephyr/kernel/libkernel.a(device.c.obj) + .debug_ranges 0x00000000000098f8 0x70 zephyr/kernel/libkernel.a(fatal.c.obj) + .debug_ranges 0x0000000000009968 0x360 zephyr/kernel/libkernel.a(init.c.obj) + .debug_ranges 0x0000000000009cc8 0x10 zephyr/kernel/libkernel.a(init_static.c.obj) + .debug_ranges 0x0000000000009cd8 0x300 zephyr/kernel/libkernel.a(mem_slab.c.obj) + .debug_ranges 0x0000000000009fd8 0x78 zephyr/kernel/libkernel.a(idle.c.obj) + .debug_ranges 0x000000000000a050 0x238 zephyr/kernel/libkernel.a(mutex.c.obj) + .debug_ranges 0x000000000000a288 0x888 zephyr/kernel/libkernel.a(queue.c.obj) + .debug_ranges 0x000000000000ab10 0x410 zephyr/kernel/libkernel.a(sem.c.obj) + .debug_ranges 0x000000000000af20 0x1018 zephyr/kernel/libkernel.a(work.c.obj) + .debug_ranges 0x000000000000bf38 0x218 zephyr/kernel/libkernel.a(thread.c.obj) + .debug_ranges 0x000000000000c150 0x2040 zephyr/kernel/libkernel.a(sched.c.obj) + .debug_ranges 0x000000000000e190 0x170 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .debug_ranges 0x000000000000e300 0x20 zephyr/kernel/libkernel.a(spinlock_validate.c.obj) + .debug_ranges 0x000000000000e320 0x10 zephyr/kernel/libkernel.a(xip.c.obj) + .debug_ranges 0x000000000000e330 0x980 zephyr/kernel/libkernel.a(timeout.c.obj) + .debug_ranges 0x000000000000ecb0 0x298 zephyr/kernel/libkernel.a(timer.c.obj) + .debug_ranges 0x000000000000ef48 0x30 zephyr/kernel/libkernel.a(mempool.c.obj) + .debug_ranges 0x000000000000ef78 0x228 zephyr/kernel/libkernel.a(kheap.c.obj) + .debug_ranges 0x000000000000f1a0 0x10 zephyr/kernel/libkernel.a(system_work_q.c.obj) + +.debug_addr + *(SORT_BY_ALIGNMENT(.debug_addr)) + +.debug_line_str + *(SORT_BY_ALIGNMENT(.debug_line_str)) + +.debug_loclists + *(SORT_BY_ALIGNMENT(.debug_loclists)) + +.debug_macro + *(SORT_BY_ALIGNMENT(.debug_macro)) + +.debug_names + *(SORT_BY_ALIGNMENT(.debug_names)) + +.debug_rnglists + *(SORT_BY_ALIGNMENT(.debug_rnglists)) + +.debug_str_offsets + *(SORT_BY_ALIGNMENT(.debug_str_offsets)) + +.debug_sup + *(SORT_BY_ALIGNMENT(.debug_sup)) + +/DISCARD/ + *(SORT_BY_ALIGNMENT(.note.GNU-stack)) + +.ARM.attributes + 0x0000000000000000 0x32 + *(SORT_BY_ALIGNMENT(.ARM.attributes)) + .ARM.attributes + 0x0000000000000000 0x30 zephyr/CMakeFiles/zephyr_pre0.dir/misc/empty_file.c.obj + .ARM.attributes + 0x0000000000000030 0x30 zephyr/CMakeFiles/offsets.dir/./arch/arm/core/offsets/offsets.c.obj + .ARM.attributes + 0x0000000000000060 0x30 app/libapp.a(main.c.obj) + .ARM.attributes + 0x0000000000000090 0x30 app/libapp.a(led.c.obj) + .ARM.attributes + 0x00000000000000c0 0x30 app/libapp.a(button.c.obj) + .ARM.attributes + 0x00000000000000f0 0x30 app/libapp.a(actuator.c.obj) + .ARM.attributes + 0x0000000000000120 0x30 app/libapp.a(battery_adc.c.obj) + .ARM.attributes + 0x0000000000000150 0x30 app/libapp.a(temperature.c.obj) + .ARM.attributes + 0x0000000000000180 0x30 app/libapp.a(timer_count.c.obj) + .ARM.attributes + 0x00000000000001b0 0x30 zephyr/libzephyr.a(heap.c.obj) + .ARM.attributes + 0x00000000000001e0 0x30 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .ARM.attributes + 0x0000000000000210 0x30 zephyr/libzephyr.a(printk.c.obj) + .ARM.attributes + 0x0000000000000240 0x30 zephyr/libzephyr.a(sem.c.obj) + .ARM.attributes + 0x0000000000000270 0x30 zephyr/libzephyr.a(thread_entry.c.obj) + .ARM.attributes + 0x00000000000002a0 0x30 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .ARM.attributes + 0x00000000000002d0 0x30 zephyr/libzephyr.a(assert.c.obj) + .ARM.attributes + 0x0000000000000300 0x30 zephyr/libzephyr.a(dec.c.obj) + .ARM.attributes + 0x0000000000000330 0x30 zephyr/libzephyr.a(hex.c.obj) + .ARM.attributes + 0x0000000000000360 0x30 zephyr/libzephyr.a(rb.c.obj) + .ARM.attributes + 0x0000000000000390 0x30 zephyr/libzephyr.a(timeutil.c.obj) + .ARM.attributes + 0x00000000000003c0 0x30 zephyr/libzephyr.a(bitarray.c.obj) + .ARM.attributes + 0x00000000000003f0 0x30 zephyr/libzephyr.a(onoff.c.obj) + .ARM.attributes + 0x0000000000000420 0x30 zephyr/libzephyr.a(notify.c.obj) + .ARM.attributes + 0x0000000000000450 0x30 zephyr/libzephyr.a(ring_buffer.c.obj) + .ARM.attributes + 0x0000000000000480 0x30 zephyr/libzephyr.a(last_section_id.c.obj) + .ARM.attributes + 0x00000000000004b0 0x30 zephyr/libzephyr.a(configs.c.obj) + .ARM.attributes + 0x00000000000004e0 0x30 zephyr/libzephyr.a(mem_attr.c.obj) + .ARM.attributes + 0x0000000000000510 0x30 zephyr/libzephyr.a(tracing_none.c.obj) + .ARM.attributes + 0x0000000000000540 0x30 zephyr/libzephyr.a(usb_device.c.obj) + .ARM.attributes + 0x0000000000000570 0x30 zephyr/libzephyr.a(usb_descriptor.c.obj) + .ARM.attributes + 0x00000000000005a0 0x30 zephyr/libzephyr.a(usb_transfer.c.obj) + .ARM.attributes + 0x00000000000005d0 0x30 zephyr/libzephyr.a(cdc_acm.c.obj) + .ARM.attributes + 0x0000000000000600 0x30 zephyr/libzephyr.a(usb_work_q.c.obj) + .ARM.attributes + 0x0000000000000630 0x30 zephyr/libzephyr.a(banner.c.obj) + .ARM.attributes + 0x0000000000000660 0x30 zephyr/libzephyr.a(flash_map_partition_manager.c.obj) + .ARM.attributes + 0x0000000000000690 0x30 zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .ARM.attributes + 0x00000000000006c0 0x30 zephyr/arch/arch/arm/core/libarch__arm__core.a(fatal.c.obj) + .ARM.attributes + 0x00000000000006f0 0x30 zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi.c.obj) + .ARM.attributes + 0x0000000000000720 0x1c zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi_on_reset.S.obj) + .ARM.attributes + 0x000000000000073c 0x30 zephyr/arch/arch/arm/core/libarch__arm__core.a(tls.c.obj) + .ARM.attributes + 0x000000000000076c 0x30 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(exc_exit.c.obj) + .ARM.attributes + 0x000000000000079c 0x30 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault.c.obj) + .ARM.attributes + 0x00000000000007cc 0x1c zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault_s.S.obj) + .ARM.attributes + 0x00000000000007e8 0x30 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fpu.c.obj) + .ARM.attributes + 0x0000000000000818 0x1c zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(reset.S.obj) + .ARM.attributes + 0x0000000000000834 0x30 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(scb.c.obj) + .ARM.attributes + 0x0000000000000864 0x30 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread_abort.c.obj) + .ARM.attributes + 0x0000000000000894 0x1e zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(vector_table.S.obj) + .ARM.attributes + 0x00000000000008b2 0x1c zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(swap_helper.S.obj) + .ARM.attributes + 0x00000000000008ce 0x30 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + .ARM.attributes + 0x00000000000008fe 0x30 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(prep_c.c.obj) + .ARM.attributes + 0x000000000000092e 0x30 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread.c.obj) + .ARM.attributes + 0x000000000000095e 0x30 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(cpu_idle.c.obj) + .ARM.attributes + 0x000000000000098e 0x30 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_init.c.obj) + .ARM.attributes + 0x00000000000009be 0x30 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(isr_wrapper.c.obj) + .ARM.attributes + 0x00000000000009ee 0x1c zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(__aeabi_read_tp.S.obj) + .ARM.attributes + 0x0000000000000a0a 0x30 zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_core_mpu.c.obj) + .ARM.attributes + 0x0000000000000a3a 0x30 zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_mpu.c.obj) + .ARM.attributes + 0x0000000000000a6a 0x30 zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_mpu_regions.c.obj) + .ARM.attributes + 0x0000000000000a9a 0x30 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .ARM.attributes + 0x0000000000000aca 0x30 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .ARM.attributes + 0x0000000000000afa 0x30 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .ARM.attributes + 0x0000000000000b2a 0x30 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + .ARM.attributes + 0x0000000000000b5a 0x30 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .ARM.attributes + 0x0000000000000b8a 0x30 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .ARM.attributes + 0x0000000000000bba 0x30 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .ARM.attributes + 0x0000000000000bea 0x30 zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .ARM.attributes + 0x0000000000000c1a 0x30 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .ARM.attributes + 0x0000000000000c4a 0x30 zephyr/soc/soc/nrf52833/libsoc__nordic.a(validate_base_addresses.c.obj) + .ARM.attributes + 0x0000000000000c7a 0x30 zephyr/soc/soc/nrf52833/libsoc__nordic.a(validate_binding_headers.c.obj) + .ARM.attributes + 0x0000000000000caa 0x30 zephyr/soc/soc/nrf52833/libsoc__nordic.a(validate_enabled_instances.c.obj) + .ARM.attributes + 0x0000000000000cda 0x30 zephyr/soc/soc/nrf52833/libsoc__nordic.a(soc.c.obj) + .ARM.attributes + 0x0000000000000d0a 0x30 zephyr/soc/soc/nrf52833/libsoc__nordic.a(reboot.c.obj) + .ARM.attributes + 0x0000000000000d3a 0x30 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + .ARM.attributes + 0x0000000000000d6a 0x30 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + .ARM.attributes + 0x0000000000000d9a 0x30 zephyr/drivers/adc/libdrivers__adc.a(adc_common.c.obj) + .ARM.attributes + 0x0000000000000dca 0x30 zephyr/drivers/adc/libdrivers__adc.a(adc_nrfx_saadc.c.obj) + .ARM.attributes + 0x0000000000000dfa 0x30 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .ARM.attributes + 0x0000000000000e2a 0x30 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .ARM.attributes + 0x0000000000000e5a 0x30 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + .ARM.attributes + 0x0000000000000e8a 0x30 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_weak_impl.c.obj) + .ARM.attributes + 0x0000000000000eba 0x30 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_nrf.c.obj) + .ARM.attributes + 0x0000000000000eea 0x30 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .ARM.attributes + 0x0000000000000f1a 0x30 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_nrf.c.obj) + .ARM.attributes + 0x0000000000000f4a 0x30 zephyr/drivers/sensor/nordic/temp/libdrivers__sensor__nordic__temp.a(temp_nrf5.c.obj) + .ARM.attributes + 0x0000000000000f7a 0x30 zephyr/drivers/serial/libdrivers__serial.a(empty_file.c.obj) + .ARM.attributes + 0x0000000000000faa 0x30 zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .ARM.attributes + 0x0000000000000fda 0x30 zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .ARM.attributes + 0x000000000000100a 0x30 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(system_nrf52833.c.obj) + .ARM.attributes + 0x000000000000103a 0x30 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_glue.c.obj) + .ARM.attributes + 0x000000000000106a 0x30 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_flag32_allocator.c.obj) + .ARM.attributes + 0x000000000000109a 0x30 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_ram_ctrl.c.obj) + .ARM.attributes + 0x00000000000010ca 0x30 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_clock.c.obj) + .ARM.attributes + 0x00000000000010fa 0x30 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_gpiote.c.obj) + .ARM.attributes + 0x000000000000112a 0x30 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + .ARM.attributes + 0x000000000000115a 0x30 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_temp.c.obj) + .ARM.attributes + 0x000000000000118a 0x30 modules/segger/libmodules__segger.a(SEGGER_RTT.c.obj) + .ARM.attributes + 0x00000000000011ba 0x30 modules/segger/libmodules__segger.a(SEGGER_RTT_zephyr.c.obj) + .ARM.attributes + 0x00000000000011ea 0x30 zephyr/kernel/libkernel.a(busy_wait.c.obj) + .ARM.attributes + 0x000000000000121a 0x30 zephyr/kernel/libkernel.a(device.c.obj) + .ARM.attributes + 0x000000000000124a 0x30 zephyr/kernel/libkernel.a(fatal.c.obj) + .ARM.attributes + 0x000000000000127a 0x30 zephyr/kernel/libkernel.a(init.c.obj) + .ARM.attributes + 0x00000000000012aa 0x30 zephyr/kernel/libkernel.a(init_static.c.obj) + .ARM.attributes + 0x00000000000012da 0x30 zephyr/kernel/libkernel.a(mem_slab.c.obj) + .ARM.attributes + 0x000000000000130a 0x30 zephyr/kernel/libkernel.a(idle.c.obj) + .ARM.attributes + 0x000000000000133a 0x30 zephyr/kernel/libkernel.a(mutex.c.obj) + .ARM.attributes + 0x000000000000136a 0x30 zephyr/kernel/libkernel.a(queue.c.obj) + .ARM.attributes + 0x000000000000139a 0x30 zephyr/kernel/libkernel.a(sem.c.obj) + .ARM.attributes + 0x00000000000013ca 0x30 zephyr/kernel/libkernel.a(work.c.obj) + .ARM.attributes + 0x00000000000013fa 0x30 zephyr/kernel/libkernel.a(thread.c.obj) + .ARM.attributes + 0x000000000000142a 0x30 zephyr/kernel/libkernel.a(sched.c.obj) + .ARM.attributes + 0x000000000000145a 0x30 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .ARM.attributes + 0x000000000000148a 0x30 zephyr/kernel/libkernel.a(spinlock_validate.c.obj) + .ARM.attributes + 0x00000000000014ba 0x30 zephyr/kernel/libkernel.a(xip.c.obj) + .ARM.attributes + 0x00000000000014ea 0x30 zephyr/kernel/libkernel.a(timeout.c.obj) + .ARM.attributes + 0x000000000000151a 0x30 zephyr/kernel/libkernel.a(timer.c.obj) + .ARM.attributes + 0x000000000000154a 0x30 zephyr/kernel/libkernel.a(mempool.c.obj) + .ARM.attributes + 0x000000000000157a 0x30 zephyr/kernel/libkernel.a(kheap.c.obj) + .ARM.attributes + 0x00000000000015aa 0x30 zephyr/kernel/libkernel.a(system_work_q.c.obj) + .ARM.attributes + 0x00000000000015da 0x30 zephyr/arch/common/libisr_tables.a(isr_tables.c.obj) + .ARM.attributes + 0x000000000000160a 0x1c /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(strcmp.S.o) + .ARM.attributes + 0x0000000000001626 0x32 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(memcpy.c.o) + .ARM.attributes + 0x0000000000001658 0x32 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(memset.c.o) + .ARM.attributes + 0x000000000000168a 0x17 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(strlen.S.o) + .ARM.attributes + 0x00000000000016a1 0x32 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_ctype_ctype_.c.o) + .ARM.attributes + 0x00000000000016d3 0x32 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_errno_errno.c.o) + .ARM.attributes + 0x0000000000001705 0x32 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_string_strnlen.c.o) + .ARM.attributes + 0x0000000000001737 0x32 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_puts.c.o) + .ARM.attributes + 0x0000000000001769 0x32 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_vflprintf.c.o) + .ARM.attributes + 0x000000000000179b 0x32 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_vflscanf.c.o) + .ARM.attributes + 0x00000000000017cd 0x32 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_string_strchr.c.o) + .ARM.attributes + 0x00000000000017ff 0x32 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_fgetc.c.o) + .ARM.attributes + 0x0000000000001831 0x32 /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v7e-m/nofp/libc.a(libc_tinystdio_ungetc.c.o) + .ARM.attributes + 0x0000000000001863 0x1e /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_muldf3.o) + .ARM.attributes + 0x0000000000001881 0x1e /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_mulsf3.o) + .ARM.attributes + 0x000000000000189f 0x1e /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_addsubdf3.o) + .ARM.attributes + 0x00000000000018bd 0x1e /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_muldivdf3.o) + .ARM.attributes + 0x00000000000018db 0x1e /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_truncdfsf2.o) + .ARM.attributes + 0x00000000000018f9 0x1e /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_addsubsf3.o) + .ARM.attributes + 0x0000000000001917 0x1e /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_cmpsf2.o) + .ARM.attributes + 0x0000000000001935 0x1e /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_fixsfsi.o) + .ARM.attributes + 0x0000000000001953 0x1e /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_aeabi_ldivmod.o) + .ARM.attributes + 0x0000000000001971 0x1e /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_aeabi_uldivmod.o) + .ARM.attributes + 0x000000000000198f 0x2e /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_popcountsi2.o) + .ARM.attributes + 0x00000000000019bd 0x2e /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_fixdfdi.o) + .ARM.attributes + 0x00000000000019eb 0x2e /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_fixunsdfdi.o) + .ARM.attributes + 0x0000000000001a19 0x2e /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_udivmoddi4.o) + .ARM.attributes + 0x0000000000001a47 0x1e /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_dvmd_tls.o) + .ARM.attributes + 0x0000000000001a65 0x1e /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_cmpdf2.o) + .ARM.attributes + 0x0000000000001a83 0x1e /home/miguel/ncs/toolchains/7cbc0036f4/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v7e-m/nofp/libgcc.a(_arm_fixunsdfsi.o) + *(SORT_BY_ALIGNMENT(.gnu.attributes)) + +.last_section 0x0000000000010c34 0x4 + *(SORT_BY_ALIGNMENT(.last_section)) + .last_section 0x0000000000010c34 0x4 zephyr/libzephyr.a(last_section_id.c.obj) + 0x0000000000010c38 _flash_used = ((LOADADDR (.last_section) + SIZEOF (.last_section)) - __rom_region_start) + +bss 0x0000000020000868 0x11ec + 0x0000000020000868 . = ALIGN (0x4) + 0x0000000020000868 __bss_start = . + 0x0000000020000868 __kernel_ram_start = . + *(SORT_BY_ALIGNMENT(.bss)) + *(SORT_BY_ALIGNMENT(.bss.*)) + .bss.led1_timer + 0x0000000020000868 0x38 app/libapp.a(led.c.obj) + .bss.led0_timer + 0x00000000200008a0 0x38 app/libapp.a(led.c.obj) + .bss.usb_dev 0x00000000200008d8 0xcc zephyr/libzephyr.a(usb_device.c.obj) + *fill* 0x00000000200009a4 0x4 + .bss.cdc_acm_data_devlist + 0x00000000200009a8 0x8 zephyr/libzephyr.a(cdc_acm.c.obj) + .bss.z_usb_work_q + 0x00000000200009b0 0xa0 zephyr/libzephyr.a(usb_work_q.c.obj) + 0x00000000200009b0 z_usb_work_q + .bss.usbd_ctx 0x0000000020000a50 0x290 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + .bss.usbd_work_queue + 0x0000000020000ce0 0xa0 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + .bss.cc_data 0x0000000020000d80 0x10 zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .bss.last_count + 0x0000000020000d90 0x8 zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .bss.anchor 0x0000000020000d98 0x8 zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .bss.z_idle_threads + 0x0000000020000da0 0x80 zephyr/kernel/libkernel.a(init.c.obj) + 0x0000000020000da0 z_idle_threads + .bss.z_main_thread + 0x0000000020000e20 0x80 zephyr/kernel/libkernel.a(init.c.obj) + 0x0000000020000e20 z_main_thread + .bss.pending_cancels + 0x0000000020000ea0 0x8 zephyr/kernel/libkernel.a(work.c.obj) + .bss._thread_dummy + 0x0000000020000ea8 0x80 zephyr/kernel/libkernel.a(sched.c.obj) + 0x0000000020000ea8 _thread_dummy + .bss.slice_timeouts + 0x0000000020000f28 0x18 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .bss.curr_tick + 0x0000000020000f40 0x8 zephyr/kernel/libkernel.a(timeout.c.obj) + .bss.k_sys_work_q + 0x0000000020000f48 0xa0 zephyr/kernel/libkernel.a(system_work_q.c.obj) + 0x0000000020000f48 k_sys_work_q + .bss.sample_buffer + 0x0000000020000fe8 0x4 app/libapp.a(battery_adc.c.obj) + .bss.timer_status + 0x0000000020000fec 0x4 app/libapp.a(timer_count.c.obj) + 0x0000000020000fec timer_status + .bss.count 0x0000000020000ff0 0x4 app/libapp.a(timer_count.c.obj) + 0x0000000020000ff0 count + .bss.sn.1 0x0000000020000ff4 0x12 zephyr/libzephyr.a(usb_descriptor.c.obj) + *fill* 0x0000000020001006 0x2 + .bss.ut_data 0x0000000020001008 0x100 zephyr/libzephyr.a(usb_transfer.c.obj) + .bss.z_arm_tls_ptr + 0x0000000020001108 0x4 zephyr/arch/arch/arm/core/libarch__arm__core.a(tls.c.obj) + 0x0000000020001108 z_arm_tls_ptr + .bss.dynamic_regions.0 + 0x000000002000110c 0xc zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_core_mpu.c.obj) + .bss._stdout_hook + 0x0000000020001118 0x4 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .bss.z_malloc_heap + 0x000000002000111c 0xc zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .bss.ep_isoout_bufs + 0x0000000020001128 0x400 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + .bss.ep_out_bufs + 0x0000000020001528 0x200 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + .bss.m_tx_buffer + 0x0000000020001728 0x40 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + .bss.m_ep_state + 0x0000000020001768 0x1b0 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + .bss.m_ep_dma_waiting + 0x0000000020001918 0x4 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + .bss.m_ep_ready + 0x000000002000191c 0x4 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + .bss.m_event_handler + 0x0000000020001920 0x4 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + .bss.cli.1 0x0000000020001924 0x10 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .bss.on.2 0x0000000020001934 0x4 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .bss.data 0x0000000020001938 0x58 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .bss.hfclk_users + 0x0000000020001990 0x4 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_nrf.c.obj) + .bss.gpio_nrfx_p1_data + 0x0000000020001994 0xc zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + .bss.gpio_nrfx_p0_data + 0x00000000200019a0 0xc zephyr/drivers/gpio/libdrivers__gpio.a(gpio_nrfx.c.obj) + .bss.temp_nrf5_data_0 + 0x00000000200019ac 0x2c zephyr/drivers/sensor/nordic/temp/libdrivers__sensor__nordic__temp.a(temp_nrf5.c.obj) + .bss.force_isr_mask + 0x00000000200019d8 0x4 zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .bss.int_mask 0x00000000200019dc 0x4 zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .bss.overflow_cnt + 0x00000000200019e0 0x4 zephyr/drivers/timer/libdrivers__timer.a(nrf_rtc_timer.c.obj) + .bss.m_clock_cb + 0x00000000200019e4 0x8 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_clock.c.obj) + .bss.m_usbevt_handler + 0x00000000200019ec 0x4 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + .bss.m_sleepevt_handler + 0x00000000200019f0 0x4 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + .bss.m_pofwarn_handler + 0x00000000200019f4 0x4 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + .bss.m_data_handler + 0x00000000200019f8 0x4 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_temp.c.obj) + .bss._kernel 0x00000000200019fc 0x20 zephyr/kernel/libkernel.a(init.c.obj) + 0x00000000200019fc _kernel + .bss.lock 0x0000000020001a1c 0x4 zephyr/kernel/libkernel.a(mutex.c.obj) + .bss.lock 0x0000000020001a20 0x4 zephyr/kernel/libkernel.a(sem.c.obj) + .bss.lock 0x0000000020001a24 0x4 zephyr/kernel/libkernel.a(work.c.obj) + .bss._sched_spinlock + 0x0000000020001a28 0x4 zephyr/kernel/libkernel.a(sched.c.obj) + 0x0000000020001a28 _sched_spinlock + .bss.pending_current + 0x0000000020001a2c 0x4 zephyr/kernel/libkernel.a(timeslicing.c.obj) + 0x0000000020001a2c pending_current + .bss.slice_expired + 0x0000000020001a30 0x1 zephyr/kernel/libkernel.a(timeslicing.c.obj) + *fill* 0x0000000020001a31 0x3 + .bss.slice_max_prio + 0x0000000020001a34 0x4 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .bss.slice_ticks + 0x0000000020001a38 0x4 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .bss.announce_remaining + 0x0000000020001a3c 0x4 zephyr/kernel/libkernel.a(timeout.c.obj) + .bss.timeout_lock + 0x0000000020001a40 0x4 zephyr/kernel/libkernel.a(timeout.c.obj) + .bss.lock 0x0000000020001a44 0x4 zephyr/kernel/libkernel.a(timer.c.obj) + .bss.initialized.0 + 0x0000000020001a48 0x1 zephyr/libzephyr.a(usb_descriptor.c.obj) + .bss.__warned.0 + 0x0000000020001a49 0x1 zephyr/libzephyr.a(cdc_acm.c.obj) + .bss.static_regions_num + 0x0000000020001a4a 0x1 zephyr/arch/arch/arm/core/mpu/libarch__arm__core__mpu.a(arm_mpu.c.obj) + .bss.m_dma_odd + 0x0000000020001a4b 0x1 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + .bss.dma_ep 0x0000000020001a4c 0x1 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + .bss.m_last_setup_dir + 0x0000000020001a4d 0x1 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + .bss.m_bus_suspend + 0x0000000020001a4e 0x1 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + .bss.m_drv_state + 0x0000000020001a4f 0x1 zephyr/drivers/usb/common/nrf_usbd_common/libdrivers__usb__common__nrf_usbd_common.a(nrf_usbd_common.c.obj) + .bss.nrfx_clock_irq_enabled + 0x0000000020001a50 0x1 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_clock.c.obj) + 0x0000000020001a50 nrfx_clock_irq_enabled + .bss.nrfx_power_irq_enabled + 0x0000000020001a51 0x1 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_power.c.obj) + 0x0000000020001a51 nrfx_power_irq_enabled + .bss.m_temp_state + 0x0000000020001a52 0x1 modules/hal_nordic/modules/hal_nordic/nrfx/libmodules__hal_nordic__nrfx.a(nrfx_temp.c.obj) + .bss.z_sys_post_kernel + 0x0000000020001a53 0x1 zephyr/kernel/libkernel.a(init.c.obj) + 0x0000000020001a53 z_sys_post_kernel + *(SORT_BY_ALIGNMENT(COMMON)) + *(SORT_BY_ALIGNMENT(.kernel_bss.*)) + 0x0000000020001a54 __bss_end = ALIGN (0x4) + +noinit 0x0000000020001a80 0x2540 + *(SORT_BY_ALIGNMENT(.noinit)) + *(SORT_BY_ALIGNMENT(.noinit.*)) + .noinit."WEST_TOPDIR/zephyr/subsys/usb/device/usb_work_q.c".0 + 0x0000000020001a80 0x440 zephyr/libzephyr.a(usb_work_q.c.obj) + 0x0000000020001a80 z_usb_work_q_stack + .noinit."WEST_TOPDIR/zephyr/drivers/usb/device/usb_dc_nrfx.c".0 + 0x0000000020001ec0 0x440 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + .noinit."WEST_TOPDIR/zephyr/kernel/init.c".2 + 0x0000000020002300 0x840 zephyr/kernel/libkernel.a(init.c.obj) + 0x0000000020002300 z_interrupt_stacks + .noinit."WEST_TOPDIR/zephyr/kernel/init.c".1 + 0x0000000020002b40 0x180 zephyr/kernel/libkernel.a(init.c.obj) + .noinit."WEST_TOPDIR/zephyr/kernel/init.c".0 + 0x0000000020002cc0 0x440 zephyr/kernel/libkernel.a(init.c.obj) + 0x0000000020002cc0 z_main_stack + .noinit."WEST_TOPDIR/zephyr/kernel/system_work_q.c".0 + 0x0000000020003100 0x440 zephyr/kernel/libkernel.a(system_work_q.c.obj) + .noinit."WEST_TOPDIR/zephyr/subsys/usb/device/class/cdc_acm.c".1 + 0x0000000020003540 0x400 zephyr/libzephyr.a(cdc_acm.c.obj) + .noinit."WEST_TOPDIR/zephyr/subsys/usb/device/class/cdc_acm.c".0 + 0x0000000020003940 0x400 zephyr/libzephyr.a(cdc_acm.c.obj) + .noinit."WEST_TOPDIR/zephyr/drivers/usb/device/usb_dc_nrfx.c".k_mem_slab_buf_fifo_elem_slab + 0x0000000020003d40 0x280 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_nrfx.c.obj) + 0x0000000020003d40 _k_mem_slab_buf_fifo_elem_slab + *(SORT_BY_ALIGNMENT(.kernel_noinit.*)) + 0x0000000020020000 __kernel_ram_end = 0x20020000 + 0x000000000001f798 __kernel_ram_size = (__kernel_ram_end - __kernel_ram_start) + +.last_ram_section + 0x0000000020003fc0 0x0 + 0x0000000020003fc0 _image_ram_end = . + 0x0000000000003fc0 _image_ram_size = (_image_ram_end - _image_ram_start) + 0x0000000020003fc0 _end = . + 0x0000000020003fc0 z_mapped_end = . +OUTPUT(zephyr/zephyr_pre0.elf elf32-littlearm) +LOAD linker stubs diff --git a/build/PHF000-Firmware/zephyr_modules.txt b/build/PHF000-Firmware/zephyr_modules.txt new file mode 100644 index 0000000..384549c --- /dev/null +++ b/build/PHF000-Firmware/zephyr_modules.txt @@ -0,0 +1,46 @@ +"nrf":"/home/miguel/ncs/v3.0.2/nrf":"/home/miguel/ncs/v3.0.2/nrf" +"hostap":"/home/miguel/ncs/v3.0.2/modules/lib/hostap":"${ZEPHYR_HOSTAP_CMAKE_DIR}" +"mcuboot":"/home/miguel/ncs/v3.0.2/bootloader/mcuboot":"${ZEPHYR_MCUBOOT_CMAKE_DIR}" +"mbedtls":"/home/miguel/ncs/v3.0.2/modules/crypto/mbedtls":"${ZEPHYR_MBEDTLS_CMAKE_DIR}" +"oberon-psa-crypto":"/home/miguel/ncs/v3.0.2/modules/crypto/oberon-psa-crypto":"${ZEPHYR_OBERON_PSA_CRYPTO_CMAKE_DIR}" +"trusted-firmware-m":"/home/miguel/ncs/v3.0.2/modules/tee/tf-m/trusted-firmware-m":"${ZEPHYR_TRUSTED_FIRMWARE_M_CMAKE_DIR}" +"psa-arch-tests":"/home/miguel/ncs/v3.0.2/modules/tee/tf-m/psa-arch-tests":"" +"cjson":"/home/miguel/ncs/v3.0.2/modules/lib/cjson":"${ZEPHYR_CJSON_CMAKE_DIR}" +"azure-sdk-for-c":"/home/miguel/ncs/v3.0.2/modules/lib/azure-sdk-for-c":"${ZEPHYR_AZURE_SDK_FOR_C_CMAKE_DIR}" +"cirrus-logic":"/home/miguel/ncs/v3.0.2/modules/hal/cirrus-logic":"/home/miguel/ncs/v3.0.2/modules/hal/cirrus-logic" +"openthread":"/home/miguel/ncs/v3.0.2/modules/lib/openthread":"${ZEPHYR_OPENTHREAD_CMAKE_DIR}" +"suit-generator":"/home/miguel/ncs/v3.0.2/modules/lib/suit-generator":"" +"suit-processor":"/home/miguel/ncs/v3.0.2/modules/lib/suit-processor":"/home/miguel/ncs/v3.0.2/modules/lib/suit-processor/ncs" +"memfault-firmware-sdk":"/home/miguel/ncs/v3.0.2/modules/lib/memfault-firmware-sdk":"/home/miguel/ncs/v3.0.2/modules/lib/memfault-firmware-sdk/ports/zephyr" +"coremark":"/home/miguel/ncs/v3.0.2/modules/benchmark/coremark":"${ZEPHYR_COREMARK_CMAKE_DIR}" +"canopennode":"/home/miguel/ncs/v3.0.2/modules/lib/canopennode":"${ZEPHYR_CANOPENNODE_CMAKE_DIR}" +"chre":"/home/miguel/ncs/v3.0.2/modules/lib/chre":"/home/miguel/ncs/v3.0.2/modules/lib/chre/platform/zephyr" +"lz4":"/home/miguel/ncs/v3.0.2/modules/lib/lz4":"${ZEPHYR_LZ4_CMAKE_DIR}" +"nanopb":"/home/miguel/ncs/v3.0.2/modules/lib/nanopb":"${ZEPHYR_NANOPB_CMAKE_DIR}" +"tf-m-tests":"/home/miguel/ncs/v3.0.2/modules/tee/tf-m/tf-m-tests":"" +"zscilib":"/home/miguel/ncs/v3.0.2/modules/lib/zscilib":"/home/miguel/ncs/v3.0.2/modules/lib/zscilib" +"cmsis":"/home/miguel/ncs/v3.0.2/modules/hal/cmsis":"${ZEPHYR_CMSIS_CMAKE_DIR}" +"cmsis-dsp":"/home/miguel/ncs/v3.0.2/modules/lib/cmsis-dsp":"${ZEPHYR_CMSIS_DSP_CMAKE_DIR}" +"cmsis-nn":"/home/miguel/ncs/v3.0.2/modules/lib/cmsis-nn":"${ZEPHYR_CMSIS_NN_CMAKE_DIR}" +"fatfs":"/home/miguel/ncs/v3.0.2/modules/fs/fatfs":"${ZEPHYR_FATFS_CMAKE_DIR}" +"hal_nordic":"/home/miguel/ncs/v3.0.2/modules/hal/nordic":"${ZEPHYR_HAL_NORDIC_CMAKE_DIR}" +"hal_st":"/home/miguel/ncs/v3.0.2/modules/hal/st":"/home/miguel/ncs/v3.0.2/modules/hal/st" +"hal_tdk":"/home/miguel/ncs/v3.0.2/modules/hal/tdk":"/home/miguel/ncs/v3.0.2/modules/hal/tdk" +"hal_wurthelektronik":"/home/miguel/ncs/v3.0.2/modules/hal/wurthelektronik":"/home/miguel/ncs/v3.0.2/modules/hal/wurthelektronik" +"liblc3":"/home/miguel/ncs/v3.0.2/modules/lib/liblc3":"${ZEPHYR_LIBLC3_CMAKE_DIR}" +"libmetal":"/home/miguel/ncs/v3.0.2/modules/hal/libmetal":"/home/miguel/ncs/v3.0.2/modules/hal/libmetal" +"littlefs":"/home/miguel/ncs/v3.0.2/modules/fs/littlefs":"${ZEPHYR_LITTLEFS_CMAKE_DIR}" +"loramac-node":"/home/miguel/ncs/v3.0.2/modules/lib/loramac-node":"${ZEPHYR_LORAMAC_NODE_CMAKE_DIR}" +"lvgl":"/home/miguel/ncs/v3.0.2/modules/lib/gui/lvgl":"${ZEPHYR_LVGL_CMAKE_DIR}" +"mipi-sys-t":"/home/miguel/ncs/v3.0.2/modules/debug/mipi-sys-t":"/home/miguel/ncs/v3.0.2/modules/debug/mipi-sys-t" +"nrf_wifi":"/home/miguel/ncs/v3.0.2/modules/lib/nrf_wifi":"${ZEPHYR_NRF_WIFI_CMAKE_DIR}" +"open-amp":"/home/miguel/ncs/v3.0.2/modules/lib/open-amp":"/home/miguel/ncs/v3.0.2/modules/lib/open-amp" +"percepio":"/home/miguel/ncs/v3.0.2/modules/debug/percepio":"${ZEPHYR_PERCEPIO_CMAKE_DIR}" +"picolibc":"/home/miguel/ncs/v3.0.2/modules/lib/picolibc":"/home/miguel/ncs/v3.0.2/modules/lib/picolibc" +"segger":"/home/miguel/ncs/v3.0.2/modules/debug/segger":"${ZEPHYR_SEGGER_CMAKE_DIR}" +"tinycrypt":"/home/miguel/ncs/v3.0.2/modules/crypto/tinycrypt":"/home/miguel/ncs/v3.0.2/modules/crypto/tinycrypt" +"uoscore-uedhoc":"/home/miguel/ncs/v3.0.2/modules/lib/uoscore-uedhoc":"${ZEPHYR_UOSCORE_UEDHOC_CMAKE_DIR}" +"zcbor":"/home/miguel/ncs/v3.0.2/modules/lib/zcbor":"${ZEPHYR_ZCBOR_CMAKE_DIR}" +"nrfxlib":"/home/miguel/ncs/v3.0.2/nrfxlib":"${ZEPHYR_NRFXLIB_CMAKE_DIR}" +"nrf_hw_models":"/home/miguel/ncs/v3.0.2/modules/bsim_hw_models/nrf_hw_models":"/home/miguel/ncs/v3.0.2/modules/bsim_hw_models/nrf_hw_models" +"connectedhomeip":"/home/miguel/ncs/v3.0.2/modules/lib/matter":"/home/miguel/ncs/v3.0.2/modules/lib/matter/config/nrfconnect/chip-module" diff --git a/build/PHF000-Firmware/zephyr_settings.txt b/build/PHF000-Firmware/zephyr_settings.txt new file mode 100644 index 0000000..a85374e --- /dev/null +++ b/build/PHF000-Firmware/zephyr_settings.txt @@ -0,0 +1,13 @@ +# WARNING. THIS FILE IS AUTO-GENERATED. DO NOT MODIFY! +# +# This file contains build system settings derived from your modules. +# +# Modules may be set via ZEPHYR_MODULES, ZEPHYR_EXTRA_MODULES, +# and/or the west manifest file. +# +# See the Modules guide for more information. +"BOARD_ROOT":"/home/miguel/ncs/v3.0.2/nrf" +"DTS_ROOT":"/home/miguel/ncs/v3.0.2/nrf" +"SNIPPET_ROOT":"/home/miguel/ncs/v3.0.2/nrf" +"SOC_ROOT":"/home/miguel/ncs/v3.0.2/nrf" +"MODULE_EXT_ROOT":"/home/miguel/ncs/v3.0.2/nrf" diff --git a/build/PHF000-Firmware_sysbuild_cache.txt b/build/PHF000-Firmware_sysbuild_cache.txt new file mode 100644 index 0000000..9871a13 --- /dev/null +++ b/build/PHF000-Firmware_sysbuild_cache.txt @@ -0,0 +1,33 @@ +APPLICATION_BINARY_DIR:PATH=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build +APPLICATION_SOURCE_DIR:PATH=/home/miguel/ncs/v3.0.2/zephyr/share/sysbuild/template +APP_DIR:PATH=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware +BOARD_DIR:PATH=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/boards/Mi_labs/phf000_board +BOARD_DIRECTORIES:INTERNAL=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/boards/Mi_labs/phf000_board +BOARD_EXTENSIONS:BOOL=ON +BOARD_ROOT:PATH=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware +CACHED_BOARD:STRING=phf000_board/nrf52833 +CACHED_SHIELD:STRING= +CACHED_SNIPPET:STRING= +CONFIG_SPEED_OPTIMIZATIONS:UNINITIALIZED=y +CONF_FILE:UNINITIALIZED=prj.conf +FIND_PACKAGE_MESSAGE_DETAILS_Python3:INTERNAL=[/home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/python3.12][cfound components: Interpreter ][v3.12.4(3.10)] +HWM:INTERNAL=v2 +HWMv2:INTERNAL=True +PHF000-Firmware_NCS_RUNNER_HEX:INTERNAL=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/merged.hex +WEST:INTERNAL=/home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/python3.12;-m;west +WEST_PYTHON:UNINITIALIZED=/home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/python3.12 +ZEPHYR_BASE:PATH=/home/miguel/ncs/v3.0.2/zephyr +ZEPHYR_RUNNER_CONFIG_KERNEL_HEX:STRING= +Zephyr_DIR:PATH=/home/miguel/ncs/v3.0.2/zephyr/share/zephyr-package/cmake +_Python3_EXECUTABLE:INTERNAL=/home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/python3.12 +_Python3_INTERPRETER_PROPERTIES:INTERNAL=Python;3;12;4;64;;cpython-312-x86_64-linux-gnu;/home/miguel/ncs/toolchains/7cbc0036f4/usr/local/lib/python3.12;/home/miguel/ncs/toolchains/7cbc0036f4/usr/local/lib/python3.12;/home/miguel/ncs/toolchains/7cbc0036f4/usr/local/lib/python3.12/site-packages;/home/miguel/ncs/toolchains/7cbc0036f4/usr/local/lib/python3.12/site-packages +_Python3_INTERPRETER_SIGNATURE:INTERNAL=f1fe4e1b796bf757de4220aae6969482 +sysbuild_BINARY_DIR:STATIC=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild +sysbuild_IS_TOP_LEVEL:STATIC=OFF +sysbuild_SOURCE_DIR:STATIC=/home/miguel/ncs/v3.0.2/zephyr/share/sysbuild/template +sysbuild_toplevel_BINARY_DIR:STATIC=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build +sysbuild_toplevel_IS_TOP_LEVEL:STATIC=ON +sysbuild_toplevel_SOURCE_DIR:STATIC=/home/miguel/ncs/v3.0.2/zephyr/share/sysbuild +BOARD:STRING=phf000_board/nrf52833 +SYSBUILD_NAME:STRING=PHF000-Firmware +SYSBUILD_MAIN_APP:BOOL=True diff --git a/build/PHF000-Firmware_sysbuild_cache.txt.tmp b/build/PHF000-Firmware_sysbuild_cache.txt.tmp new file mode 100644 index 0000000..9871a13 --- /dev/null +++ b/build/PHF000-Firmware_sysbuild_cache.txt.tmp @@ -0,0 +1,33 @@ +APPLICATION_BINARY_DIR:PATH=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build +APPLICATION_SOURCE_DIR:PATH=/home/miguel/ncs/v3.0.2/zephyr/share/sysbuild/template +APP_DIR:PATH=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware +BOARD_DIR:PATH=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/boards/Mi_labs/phf000_board +BOARD_DIRECTORIES:INTERNAL=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/boards/Mi_labs/phf000_board +BOARD_EXTENSIONS:BOOL=ON +BOARD_ROOT:PATH=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware +CACHED_BOARD:STRING=phf000_board/nrf52833 +CACHED_SHIELD:STRING= +CACHED_SNIPPET:STRING= +CONFIG_SPEED_OPTIMIZATIONS:UNINITIALIZED=y +CONF_FILE:UNINITIALIZED=prj.conf +FIND_PACKAGE_MESSAGE_DETAILS_Python3:INTERNAL=[/home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/python3.12][cfound components: Interpreter ][v3.12.4(3.10)] +HWM:INTERNAL=v2 +HWMv2:INTERNAL=True +PHF000-Firmware_NCS_RUNNER_HEX:INTERNAL=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/merged.hex +WEST:INTERNAL=/home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/python3.12;-m;west +WEST_PYTHON:UNINITIALIZED=/home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/python3.12 +ZEPHYR_BASE:PATH=/home/miguel/ncs/v3.0.2/zephyr +ZEPHYR_RUNNER_CONFIG_KERNEL_HEX:STRING= +Zephyr_DIR:PATH=/home/miguel/ncs/v3.0.2/zephyr/share/zephyr-package/cmake +_Python3_EXECUTABLE:INTERNAL=/home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/python3.12 +_Python3_INTERPRETER_PROPERTIES:INTERNAL=Python;3;12;4;64;;cpython-312-x86_64-linux-gnu;/home/miguel/ncs/toolchains/7cbc0036f4/usr/local/lib/python3.12;/home/miguel/ncs/toolchains/7cbc0036f4/usr/local/lib/python3.12;/home/miguel/ncs/toolchains/7cbc0036f4/usr/local/lib/python3.12/site-packages;/home/miguel/ncs/toolchains/7cbc0036f4/usr/local/lib/python3.12/site-packages +_Python3_INTERPRETER_SIGNATURE:INTERNAL=f1fe4e1b796bf757de4220aae6969482 +sysbuild_BINARY_DIR:STATIC=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild +sysbuild_IS_TOP_LEVEL:STATIC=OFF +sysbuild_SOURCE_DIR:STATIC=/home/miguel/ncs/v3.0.2/zephyr/share/sysbuild/template +sysbuild_toplevel_BINARY_DIR:STATIC=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build +sysbuild_toplevel_IS_TOP_LEVEL:STATIC=ON +sysbuild_toplevel_SOURCE_DIR:STATIC=/home/miguel/ncs/v3.0.2/zephyr/share/sysbuild +BOARD:STRING=phf000_board/nrf52833 +SYSBUILD_NAME:STRING=PHF000-Firmware +SYSBUILD_MAIN_APP:BOOL=True diff --git a/build/_sysbuild/autoconf.h b/build/_sysbuild/autoconf.h new file mode 100644 index 0000000..59ddb04 --- /dev/null +++ b/build/_sysbuild/autoconf.h @@ -0,0 +1,71 @@ +#define SB_CONFIG_BOARD "phf000_board" +#define SB_CONFIG_BOARD_REVISION "" +#define SB_CONFIG_BOARD_PHF000_BOARD 1 +#define SB_CONFIG_BOARD_PHF000_BOARD_NRF52833 1 +#define SB_CONFIG_BOARD_QUALIFIERS "nrf52833" +#define SB_CONFIG_SOC "nrf52833" +#define SB_CONFIG_SOC_SERIES "nrf52" +#define SB_CONFIG_SOC_FAMILY "nordic_nrf" +#define SB_CONFIG_SOC_TOOLCHAIN_NAME "amd_acp_6_0_adsp" +#define SB_CONFIG_SOC_FAMILY_NORDIC_NRF 1 +#define SB_CONFIG_SOC_SERIES_NRF52X 1 +#define SB_CONFIG_SOC_NRF52833 1 +#define SB_CONFIG_SOC_NRF52833_QDAA 1 +#define SB_CONFIG_PARTITION_MANAGER 1 +#define SB_CONFIG_BUILD_OUTPUT_BIN 1 +#define SB_CONFIG_BUILD_OUTPUT_HEX 1 +#define SB_CONFIG_APPCORE_REMOTE_BOARD_TARGET_CPUCLUSTER "cpuapp" +#define SB_CONFIG_APPCORE_REMOTE_DOMAIN "CPUAPP" +#define SB_CONFIG_BT_FAST_PAIR_MODEL_ID 0x1000000 +#define SB_CONFIG_BT_FAST_PAIR_ANTI_SPOOFING_PRIVATE_KEY "" +#define SB_CONFIG_APPROTECT_NO_SYSBUILD 1 +#define SB_CONFIG_ZEPHYR_NRF_MODULE 1 +#define SB_CONFIG_ZEPHYR_HOSTAP_MODULE 1 +#define SB_CONFIG_ZEPHYR_MCUBOOT_MODULE 1 +#define SB_CONFIG_ZEPHYR_MBEDTLS_MODULE 1 +#define SB_CONFIG_ZEPHYR_OBERON_PSA_CRYPTO_MODULE 1 +#define SB_CONFIG_ZEPHYR_TRUSTED_FIRMWARE_M_MODULE 1 +#define SB_CONFIG_ZEPHYR_PSA_ARCH_TESTS_MODULE 1 +#define SB_CONFIG_ZEPHYR_CJSON_MODULE 1 +#define SB_CONFIG_ZEPHYR_AZURE_SDK_FOR_C_MODULE 1 +#define SB_CONFIG_ZEPHYR_CIRRUS_LOGIC_MODULE 1 +#define SB_CONFIG_ZEPHYR_OPENTHREAD_MODULE 1 +#define SB_CONFIG_ZEPHYR_SUIT_GENERATOR_MODULE 1 +#define SB_CONFIG_ZEPHYR_SUIT_PROCESSOR_MODULE 1 +#define SB_CONFIG_ZEPHYR_MEMFAULT_FIRMWARE_SDK_MODULE 1 +#define SB_CONFIG_ZEPHYR_COREMARK_MODULE 1 +#define SB_CONFIG_ZEPHYR_CANOPENNODE_MODULE 1 +#define SB_CONFIG_ZEPHYR_CHRE_MODULE 1 +#define SB_CONFIG_ZEPHYR_LZ4_MODULE 1 +#define SB_CONFIG_ZEPHYR_NANOPB_MODULE 1 +#define SB_CONFIG_ZEPHYR_TF_M_TESTS_MODULE 1 +#define SB_CONFIG_ZEPHYR_ZSCILIB_MODULE 1 +#define SB_CONFIG_ZEPHYR_CMSIS_MODULE 1 +#define SB_CONFIG_ZEPHYR_CMSIS_DSP_MODULE 1 +#define SB_CONFIG_ZEPHYR_CMSIS_NN_MODULE 1 +#define SB_CONFIG_ZEPHYR_FATFS_MODULE 1 +#define SB_CONFIG_ZEPHYR_HAL_NORDIC_MODULE 1 +#define SB_CONFIG_ZEPHYR_HAL_ST_MODULE 1 +#define SB_CONFIG_ZEPHYR_HAL_TDK_MODULE 1 +#define SB_CONFIG_ZEPHYR_HAL_WURTHELEKTRONIK_MODULE 1 +#define SB_CONFIG_ZEPHYR_LIBLC3_MODULE 1 +#define SB_CONFIG_ZEPHYR_LIBMETAL_MODULE 1 +#define SB_CONFIG_ZEPHYR_LITTLEFS_MODULE 1 +#define SB_CONFIG_ZEPHYR_LORAMAC_NODE_MODULE 1 +#define SB_CONFIG_ZEPHYR_LVGL_MODULE 1 +#define SB_CONFIG_ZEPHYR_MIPI_SYS_T_MODULE 1 +#define SB_CONFIG_ZEPHYR_NRF_WIFI_MODULE 1 +#define SB_CONFIG_ZEPHYR_OPEN_AMP_MODULE 1 +#define SB_CONFIG_ZEPHYR_PERCEPIO_MODULE 1 +#define SB_CONFIG_ZEPHYR_PICOLIBC_MODULE 1 +#define SB_CONFIG_ZEPHYR_SEGGER_MODULE 1 +#define SB_CONFIG_ZEPHYR_TINYCRYPT_MODULE 1 +#define SB_CONFIG_ZEPHYR_UOSCORE_UEDHOC_MODULE 1 +#define SB_CONFIG_ZEPHYR_ZCBOR_MODULE 1 +#define SB_CONFIG_ZEPHYR_NRFXLIB_MODULE 1 +#define SB_CONFIG_ZEPHYR_NRF_HW_MODELS_MODULE 1 +#define SB_CONFIG_ZEPHYR_CONNECTEDHOMEIP_MODULE 1 +#define SB_CONFIG_WARN_DEPRECATED 1 +#define SB_CONFIG_SUPPORT_BOOTLOADER 1 +#define SB_CONFIG_SUPPORT_BOOTLOADER_MCUBOOT_ZEPHYR 1 +#define SB_CONFIG_BOOTLOADER_NONE 1 diff --git a/build/_sysbuild/cmake_install.cmake b/build/_sysbuild/cmake_install.cmake new file mode 100644 index 0000000..fdb5643 --- /dev/null +++ b/build/_sysbuild/cmake_install.cmake @@ -0,0 +1,44 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/share/sysbuild/template + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Install shared libraries without execute permission? +if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) + set(CMAKE_INSTALL_SO_NO_EXE "1") +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild/sysbuild/images/cmake_install.cmake") +endif() + diff --git a/build/_sysbuild/empty.conf b/build/_sysbuild/empty.conf new file mode 100644 index 0000000..e69de29 diff --git a/build/_sysbuild/sysbuild/images/CMakeFiles/PHF000-Firmware-complete b/build/_sysbuild/sysbuild/images/CMakeFiles/PHF000-Firmware-complete new file mode 100644 index 0000000..e69de29 diff --git a/build/_sysbuild/sysbuild/images/CMakeFiles/PHF000-Firmware.dir/Labels.json b/build/_sysbuild/sysbuild/images/CMakeFiles/PHF000-Firmware.dir/Labels.json new file mode 100644 index 0000000..a945246 --- /dev/null +++ b/build/_sysbuild/sysbuild/images/CMakeFiles/PHF000-Firmware.dir/Labels.json @@ -0,0 +1,43 @@ +{ + "sources" : + [ + { + "file" : "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild/sysbuild/images/CMakeFiles/PHF000-Firmware" + }, + { + "file" : "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild/sysbuild/images/CMakeFiles/PHF000-Firmware.rule" + }, + { + "file" : "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild/sysbuild/images/CMakeFiles/PHF000-Firmware-complete.rule" + }, + { + "file" : "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild/sysbuild/images/PHF000-Firmware-prefix/src/PHF000-Firmware-stamp/PHF000-Firmware-build.rule" + }, + { + "file" : "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild/sysbuild/images/PHF000-Firmware-prefix/src/PHF000-Firmware-stamp/PHF000-Firmware-configure.rule" + }, + { + "file" : "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild/sysbuild/images/PHF000-Firmware-prefix/src/PHF000-Firmware-stamp/PHF000-Firmware-download.rule" + }, + { + "file" : "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild/sysbuild/images/PHF000-Firmware-prefix/src/PHF000-Firmware-stamp/PHF000-Firmware-install.rule" + }, + { + "file" : "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild/sysbuild/images/PHF000-Firmware-prefix/src/PHF000-Firmware-stamp/PHF000-Firmware-mkdir.rule" + }, + { + "file" : "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild/sysbuild/images/PHF000-Firmware-prefix/src/PHF000-Firmware-stamp/PHF000-Firmware-patch.rule" + }, + { + "file" : "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild/sysbuild/images/PHF000-Firmware-prefix/src/PHF000-Firmware-stamp/PHF000-Firmware-update.rule" + } + ], + "target" : + { + "labels" : + [ + "PHF000-Firmware" + ], + "name" : "PHF000-Firmware" + } +} \ No newline at end of file diff --git a/build/_sysbuild/sysbuild/images/CMakeFiles/PHF000-Firmware.dir/Labels.txt b/build/_sysbuild/sysbuild/images/CMakeFiles/PHF000-Firmware.dir/Labels.txt new file mode 100644 index 0000000..0ed76bc --- /dev/null +++ b/build/_sysbuild/sysbuild/images/CMakeFiles/PHF000-Firmware.dir/Labels.txt @@ -0,0 +1,13 @@ +# Target labels + PHF000-Firmware +# Source files and their labels +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild/sysbuild/images/CMakeFiles/PHF000-Firmware +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild/sysbuild/images/CMakeFiles/PHF000-Firmware.rule +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild/sysbuild/images/CMakeFiles/PHF000-Firmware-complete.rule +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild/sysbuild/images/PHF000-Firmware-prefix/src/PHF000-Firmware-stamp/PHF000-Firmware-build.rule +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild/sysbuild/images/PHF000-Firmware-prefix/src/PHF000-Firmware-stamp/PHF000-Firmware-configure.rule +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild/sysbuild/images/PHF000-Firmware-prefix/src/PHF000-Firmware-stamp/PHF000-Firmware-download.rule +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild/sysbuild/images/PHF000-Firmware-prefix/src/PHF000-Firmware-stamp/PHF000-Firmware-install.rule +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild/sysbuild/images/PHF000-Firmware-prefix/src/PHF000-Firmware-stamp/PHF000-Firmware-mkdir.rule +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild/sysbuild/images/PHF000-Firmware-prefix/src/PHF000-Firmware-stamp/PHF000-Firmware-patch.rule +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild/sysbuild/images/PHF000-Firmware-prefix/src/PHF000-Firmware-stamp/PHF000-Firmware-update.rule diff --git a/build/_sysbuild/sysbuild/images/PHF000-Firmware-prefix/src/PHF000-Firmware-stamp/PHF000-Firmware-configure b/build/_sysbuild/sysbuild/images/PHF000-Firmware-prefix/src/PHF000-Firmware-stamp/PHF000-Firmware-configure new file mode 100644 index 0000000..e69de29 diff --git a/build/_sysbuild/sysbuild/images/PHF000-Firmware-prefix/src/PHF000-Firmware-stamp/PHF000-Firmware-done b/build/_sysbuild/sysbuild/images/PHF000-Firmware-prefix/src/PHF000-Firmware-stamp/PHF000-Firmware-done new file mode 100644 index 0000000..e69de29 diff --git a/build/_sysbuild/sysbuild/images/PHF000-Firmware-prefix/src/PHF000-Firmware-stamp/PHF000-Firmware-download b/build/_sysbuild/sysbuild/images/PHF000-Firmware-prefix/src/PHF000-Firmware-stamp/PHF000-Firmware-download new file mode 100644 index 0000000..e69de29 diff --git a/build/_sysbuild/sysbuild/images/PHF000-Firmware-prefix/src/PHF000-Firmware-stamp/PHF000-Firmware-install b/build/_sysbuild/sysbuild/images/PHF000-Firmware-prefix/src/PHF000-Firmware-stamp/PHF000-Firmware-install new file mode 100644 index 0000000..e69de29 diff --git a/build/_sysbuild/sysbuild/images/PHF000-Firmware-prefix/src/PHF000-Firmware-stamp/PHF000-Firmware-mkdir b/build/_sysbuild/sysbuild/images/PHF000-Firmware-prefix/src/PHF000-Firmware-stamp/PHF000-Firmware-mkdir new file mode 100644 index 0000000..e69de29 diff --git a/build/_sysbuild/sysbuild/images/PHF000-Firmware-prefix/src/PHF000-Firmware-stamp/PHF000-Firmware-patch b/build/_sysbuild/sysbuild/images/PHF000-Firmware-prefix/src/PHF000-Firmware-stamp/PHF000-Firmware-patch new file mode 100644 index 0000000..e69de29 diff --git a/build/_sysbuild/sysbuild/images/PHF000-Firmware-prefix/src/PHF000-Firmware-stamp/PHF000-Firmware-update b/build/_sysbuild/sysbuild/images/PHF000-Firmware-prefix/src/PHF000-Firmware-stamp/PHF000-Firmware-update new file mode 100644 index 0000000..e69de29 diff --git a/build/_sysbuild/sysbuild/images/PHF000-Firmware-prefix/tmp/PHF000-Firmware-cfgcmd.txt b/build/_sysbuild/sysbuild/images/PHF000-Firmware-prefix/tmp/PHF000-Firmware-cfgcmd.txt new file mode 100644 index 0000000..6a6ed5f --- /dev/null +++ b/build/_sysbuild/sysbuild/images/PHF000-Firmware-prefix/tmp/PHF000-Firmware-cfgcmd.txt @@ -0,0 +1 @@ +cmd='' diff --git a/build/_sysbuild/sysbuild/images/PHF000-Firmware-prefix/tmp/PHF000-Firmware-cfgcmd.txt.in b/build/_sysbuild/sysbuild/images/PHF000-Firmware-prefix/tmp/PHF000-Firmware-cfgcmd.txt.in new file mode 100644 index 0000000..b3f09ef --- /dev/null +++ b/build/_sysbuild/sysbuild/images/PHF000-Firmware-prefix/tmp/PHF000-Firmware-cfgcmd.txt.in @@ -0,0 +1 @@ +cmd='@cmd@' diff --git a/build/_sysbuild/sysbuild/images/boards/cmake_install.cmake b/build/_sysbuild/sysbuild/images/boards/cmake_install.cmake new file mode 100644 index 0000000..e7a3c1f --- /dev/null +++ b/build/_sysbuild/sysbuild/images/boards/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/share/sysbuild/images/boards + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Install shared libraries without execute permission? +if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) + set(CMAKE_INSTALL_SO_NO_EXE "1") +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + diff --git a/build/_sysbuild/sysbuild/images/bootloader/cmake_install.cmake b/build/_sysbuild/sysbuild/images/bootloader/cmake_install.cmake new file mode 100644 index 0000000..fd44acb --- /dev/null +++ b/build/_sysbuild/sysbuild/images/bootloader/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/share/sysbuild/images/bootloader + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Install shared libraries without execute permission? +if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) + set(CMAKE_INSTALL_SO_NO_EXE "1") +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + diff --git a/build/_sysbuild/sysbuild/images/cmake_install.cmake b/build/_sysbuild/sysbuild/images/cmake_install.cmake new file mode 100644 index 0000000..ffcb5a5 --- /dev/null +++ b/build/_sysbuild/sysbuild/images/cmake_install.cmake @@ -0,0 +1,64 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/share/sysbuild/images + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Install shared libraries without execute permission? +if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) + set(CMAKE_INSTALL_SO_NO_EXE "1") +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild/sysbuild/images/bootloader/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/modules/nrf/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/modules/mcuboot/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild/sysbuild/images/boards/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild/sysbuild/images/soc/cmake_install.cmake") +endif() + diff --git a/build/_sysbuild/sysbuild/images/soc/cmake_install.cmake b/build/_sysbuild/sysbuild/images/soc/cmake_install.cmake new file mode 100644 index 0000000..fc9e6c2 --- /dev/null +++ b/build/_sysbuild/sysbuild/images/soc/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/share/sysbuild/images/soc + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Install shared libraries without execute permission? +if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) + set(CMAKE_INSTALL_SO_NO_EXE "1") +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + diff --git a/build/build.ninja b/build/build.ninja new file mode 100644 index 0000000..09743a8 --- /dev/null +++ b/build/build.ninja @@ -0,0 +1,679 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Ninja" Generator, CMake Version 3.21 + +# This file contains all the build statements describing the +# compilation DAG. + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# +# Which is the root file. +# ============================================================================= + +# ============================================================================= +# Project: sysbuild_toplevel +# Configurations: +# ============================================================================= + +############################################# +# Minimal version of Ninja required by this file + +ninja_required_version = 1.5 + +# ============================================================================= +# Include auxiliary files. + + +############################################# +# Include rules file. + +include CMakeFiles/rules.ninja + +# ============================================================================= + +############################################# +# Logical path to working directory; prefix for absolute paths. + +cmake_ninja_workdir = /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/ + +############################################# +# Utility command for rebuild_cache + +build CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/ncs/v3.0.2/zephyr/share/sysbuild -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build rebuild_cache: phony CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/ncs/v3.0.2/zephyr/share/sysbuild -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build edit_cache: phony CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/share/sysbuild/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build _sysbuild/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/ncs/v3.0.2/zephyr/share/sysbuild -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build _sysbuild/edit_cache: phony _sysbuild/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for partition_manager_report + +build _sysbuild/partition_manager_report: phony _sysbuild/CMakeFiles/partition_manager_report + + +############################################# +# Utility command for merged_hex + +build _sysbuild/merged_hex: phony _sysbuild/CMakeFiles/merged_hex merged.hex _sysbuild/PHF000-Firmware_extra_byproducts _sysbuild/sysbuild/images/PHF000-Firmware + + +############################################# +# Utility command for partition_manager + +build _sysbuild/partition_manager: phony + + +############################################# +# Utility command for sysbuild_menuconfig + +build _sysbuild/sysbuild_menuconfig: phony _sysbuild/CMakeFiles/sysbuild_menuconfig + + +############################################# +# Utility command for shields + +build _sysbuild/shields: phony _sysbuild/CMakeFiles/shields + + +############################################# +# Utility command for build_info_yaml_saved + +build _sysbuild/build_info_yaml_saved: phony _sysbuild/CMakeFiles/build_info_yaml_saved + + +############################################# +# Utility command for rebuild_cache + +build _sysbuild/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/ncs/v3.0.2/zephyr/share/sysbuild -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build _sysbuild/rebuild_cache: phony _sysbuild/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for PHF000-Firmware_devicetree_target + +build _sysbuild/PHF000-Firmware_devicetree_target: phony + + +############################################# +# Utility command for config-twister + +build _sysbuild/config-twister: phony _sysbuild/CMakeFiles/config-twister + + +############################################# +# Utility command for sysbuild_guiconfig + +build _sysbuild/sysbuild_guiconfig: phony _sysbuild/CMakeFiles/sysbuild_guiconfig + + +############################################# +# Utility command for PHF000-Firmware_cache + +build _sysbuild/PHF000-Firmware_cache: phony + + +############################################# +# Utility command for snippets + +build _sysbuild/snippets: phony _sysbuild/CMakeFiles/snippets + + +############################################# +# Utility command for boards + +build _sysbuild/boards: phony _sysbuild/CMakeFiles/boards + + +############################################# +# Utility command for PHF000-Firmware_extra_byproducts + +build _sysbuild/PHF000-Firmware_extra_byproducts: phony _sysbuild/CMakeFiles/PHF000-Firmware_extra_byproducts PHF000-Firmware/zephyr/zephyr.bin PHF000-Firmware/zephyr/zephyr.elf PHF000-Firmware/zephyr/zephyr.hex _sysbuild/sysbuild/images/PHF000-Firmware + + +############################################# +# Custom command for _sysbuild/CMakeFiles/partition_manager_report + +build _sysbuild/CMakeFiles/partition_manager_report | ${cmake_ninja_workdir}_sysbuild/CMakeFiles/partition_manager_report: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/python3.12 /home/miguel/ncs/v3.0.2/nrf/scripts/partition_manager_report.py --input /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/partitions.yml + + +############################################# +# Phony custom command for _sysbuild/CMakeFiles/merged_hex + +build _sysbuild/CMakeFiles/merged_hex | ${cmake_ninja_workdir}_sysbuild/CMakeFiles/merged_hex: phony merged.hex || _sysbuild/PHF000-Firmware_extra_byproducts _sysbuild/sysbuild/images/PHF000-Firmware + + +############################################# +# Custom command for merged.hex + +build merged.hex | ${cmake_ninja_workdir}merged.hex: CUSTOM_COMMAND PHF000-Firmware/zephyr/zephyr.hex || _sysbuild/PHF000-Firmware_extra_byproducts _sysbuild/sysbuild/images/PHF000-Firmware + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/python3.12 /home/miguel/ncs/v3.0.2/zephyr/scripts/build/mergehex.py -o /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/merged.hex --overlap=replace /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware/zephyr/zephyr.hex + DESC = Generating ../merged.hex + restat = 1 + + +############################################# +# Custom command for _sysbuild/CMakeFiles/sysbuild_menuconfig + +build _sysbuild/CMakeFiles/sysbuild_menuconfig | ${cmake_ninja_workdir}_sysbuild/CMakeFiles/sysbuild_menuconfig: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/zephyr/kconfig && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E env ZEPHYR_BASE=/home/miguel/ncs/v3.0.2/zephyr PYTHON_EXECUTABLE=/home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/python3.12 srctree=/home/miguel/ncs/v3.0.2/zephyr KERNELVERSION= APPVERSION= APP_VERSION_EXTENDED_STRING= APP_VERSION_TWEAK_STRING= CONFIG_=SB_CONFIG_ KCONFIG_CONFIG=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/zephyr/.config KCONFIG_BOARD_DIR=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/Kconfig/boards BOARD=phf000_board BOARD_REVISION= BOARD_QUALIFIERS=/nrf52833 HWM_SCHEME=v2 KCONFIG_BINARY_DIR=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/Kconfig APPLICATION_SOURCE_DIR=/home/miguel/ncs/v3.0.2/zephyr/share/sysbuild ZEPHYR_TOOLCHAIN_VARIANT= TOOLCHAIN_KCONFIG_DIR= TOOLCHAIN_HAS_NEWLIB=n TOOLCHAIN_HAS_PICOLIBC=n EDT_PICKLE= NCS_MEMFAULT_FIRMWARE_SDK_KCONFIG=/home/miguel/ncs/v3.0.2/nrf/modules/memfault-firmware-sdk/Kconfig BOARD=phf000_board ZEPHYR_NRF_MODULE_DIR=/home/miguel/ncs/v3.0.2/nrf ZEPHYR_HOSTAP_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/lib/hostap ZEPHYR_HOSTAP_KCONFIG=/home/miguel/ncs/v3.0.2/zephyr/modules/hostap/Kconfig ZEPHYR_MCUBOOT_MODULE_DIR=/home/miguel/ncs/v3.0.2/bootloader/mcuboot ZEPHYR_MCUBOOT_KCONFIG=/home/miguel/ncs/v3.0.2/nrf/modules/mcuboot/Kconfig ZEPHYR_MBEDTLS_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/crypto/mbedtls ZEPHYR_MBEDTLS_KCONFIG=/home/miguel/ncs/v3.0.2/zephyr/modules/mbedtls/Kconfig ZEPHYR_OBERON_PSA_CRYPTO_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/crypto/oberon-psa-crypto ZEPHYR_TRUSTED_FIRMWARE_M_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/tee/tf-m/trusted-firmware-m ZEPHYR_TRUSTED_FIRMWARE_M_KCONFIG=/home/miguel/ncs/v3.0.2/nrf/modules/trusted-firmware-m/Kconfig ZEPHYR_PSA_ARCH_TESTS_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/tee/tf-m/psa-arch-tests ZEPHYR_CJSON_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/lib/cjson ZEPHYR_CJSON_KCONFIG=/home/miguel/ncs/v3.0.2/nrf/modules/cjson/Kconfig ZEPHYR_AZURE_SDK_FOR_C_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/lib/azure-sdk-for-c ZEPHYR_AZURE_SDK_FOR_C_KCONFIG=/home/miguel/ncs/v3.0.2/nrf/modules/azure-sdk-for-c/Kconfig ZEPHYR_CIRRUS_LOGIC_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/hal/cirrus-logic ZEPHYR_OPENTHREAD_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/lib/openthread ZEPHYR_OPENTHREAD_KCONFIG=/home/miguel/ncs/v3.0.2/nrf/modules/openthread/Kconfig ZEPHYR_SUIT_GENERATOR_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/lib/suit-generator ZEPHYR_SUIT_PROCESSOR_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/lib/suit-processor ZEPHYR_MEMFAULT_FIRMWARE_SDK_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/lib/memfault-firmware-sdk ZEPHYR_COREMARK_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/benchmark/coremark ZEPHYR_COREMARK_KCONFIG=/home/miguel/ncs/v3.0.2/nrf/modules/coremark/Kconfig ZEPHYR_CANOPENNODE_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/lib/canopennode ZEPHYR_CANOPENNODE_KCONFIG=/home/miguel/ncs/v3.0.2/zephyr/modules/canopennode/Kconfig ZEPHYR_CHRE_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/lib/chre ZEPHYR_LZ4_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/lib/lz4 ZEPHYR_LZ4_KCONFIG=/home/miguel/ncs/v3.0.2/zephyr/modules/lz4/Kconfig ZEPHYR_NANOPB_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/lib/nanopb ZEPHYR_NANOPB_KCONFIG=/home/miguel/ncs/v3.0.2/zephyr/modules/nanopb/Kconfig ZEPHYR_TF_M_TESTS_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/tee/tf-m/tf-m-tests ZEPHYR_ZSCILIB_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/lib/zscilib ZEPHYR_CMSIS_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/hal/cmsis ZEPHYR_CMSIS_KCONFIG=/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/Kconfig ZEPHYR_CMSIS_DSP_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/lib/cmsis-dsp ZEPHYR_CMSIS_DSP_KCONFIG=/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis-dsp/Kconfig ZEPHYR_CMSIS_NN_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/lib/cmsis-nn ZEPHYR_CMSIS_NN_KCONFIG=/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis-nn/Kconfig ZEPHYR_FATFS_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/fs/fatfs ZEPHYR_FATFS_KCONFIG=/home/miguel/ncs/v3.0.2/zephyr/modules/fatfs/Kconfig ZEPHYR_HAL_NORDIC_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/hal/nordic ZEPHYR_HAL_NORDIC_KCONFIG=/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/Kconfig ZEPHYR_HAL_ST_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/hal/st ZEPHYR_HAL_ST_KCONFIG=/home/miguel/ncs/v3.0.2/zephyr/modules/hal_st/Kconfig ZEPHYR_HAL_TDK_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/hal/tdk ZEPHYR_HAL_TDK_KCONFIG=/home/miguel/ncs/v3.0.2/zephyr/modules/hal_tdk/Kconfig ZEPHYR_HAL_WURTHELEKTRONIK_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/hal/wurthelektronik ZEPHYR_LIBLC3_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/lib/liblc3 ZEPHYR_LIBLC3_KCONFIG=/home/miguel/ncs/v3.0.2/zephyr/modules/liblc3/Kconfig ZEPHYR_LIBMETAL_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/hal/libmetal ZEPHYR_LITTLEFS_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/fs/littlefs ZEPHYR_LITTLEFS_KCONFIG=/home/miguel/ncs/v3.0.2/zephyr/modules/littlefs/Kconfig ZEPHYR_LORAMAC_NODE_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/lib/loramac-node ZEPHYR_LORAMAC_NODE_KCONFIG=/home/miguel/ncs/v3.0.2/zephyr/modules/loramac-node/Kconfig ZEPHYR_LVGL_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/lib/gui/lvgl ZEPHYR_LVGL_KCONFIG=/home/miguel/ncs/v3.0.2/zephyr/modules/lvgl/Kconfig ZEPHYR_MIPI_SYS_T_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/debug/mipi-sys-t ZEPHYR_NRF_WIFI_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/lib/nrf_wifi ZEPHYR_NRF_WIFI_KCONFIG=/home/miguel/ncs/v3.0.2/zephyr/modules/nrf_wifi/Kconfig ZEPHYR_OPEN_AMP_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/lib/open-amp ZEPHYR_PERCEPIO_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/debug/percepio ZEPHYR_PERCEPIO_KCONFIG=/home/miguel/ncs/v3.0.2/zephyr/modules/percepio/Kconfig ZEPHYR_PICOLIBC_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/lib/picolibc ZEPHYR_SEGGER_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/debug/segger ZEPHYR_SEGGER_KCONFIG=/home/miguel/ncs/v3.0.2/zephyr/modules/segger/Kconfig ZEPHYR_TINYCRYPT_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/crypto/tinycrypt ZEPHYR_UOSCORE_UEDHOC_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/lib/uoscore-uedhoc ZEPHYR_UOSCORE_UEDHOC_KCONFIG=/home/miguel/ncs/v3.0.2/zephyr/modules/uoscore-uedhoc/Kconfig ZEPHYR_ZCBOR_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/lib/zcbor ZEPHYR_ZCBOR_KCONFIG=/home/miguel/ncs/v3.0.2/zephyr/modules/zcbor/Kconfig ZEPHYR_NRFXLIB_MODULE_DIR=/home/miguel/ncs/v3.0.2/nrfxlib ZEPHYR_NRF_HW_MODELS_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/bsim_hw_models/nrf_hw_models ZEPHYR_CONNECTEDHOMEIP_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/lib/matter ARCH=* ARCH_DIR=/home/miguel/ncs/v3.0.2/zephyr/arch SHIELD_AS_LIST= DTS_POST_CPP= DTS_ROOT_BINDINGS= /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/python3.12 /home/miguel/ncs/v3.0.2/zephyr/scripts/kconfig/menuconfig.py /home/miguel/ncs/v3.0.2/zephyr/share/sysbuild/Kconfig + pool = console + + +############################################# +# Custom command for _sysbuild/CMakeFiles/shields + +build _sysbuild/CMakeFiles/shields | ${cmake_ninja_workdir}_sysbuild/CMakeFiles/shields: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo adafruit_2_8_tft_touch_v2 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo adafruit_2_8_tft_touch_v2_nano && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo adafruit_adalogger_featherwing && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo adafruit_aw9523 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo adafruit_can_picowbell && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo adafruit_data_logger && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo adafruit_neopixel_grid_bff && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo adafruit_neopixel_grid_bff_display && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo adafruit_pca9685 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo adafruit_winc1500 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo amg88xx_eval_kit && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo amg88xx_grid_eye_eval_shield && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo arceli_eth_w5500 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo arduino_uno_click && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo atmel_rf2xx && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo atmel_rf2xx_arduino && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo atmel_rf2xx_legacy && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo atmel_rf2xx_mikrobus && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo atmel_rf2xx_xplained && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo atmel_rf2xx_xpro && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo boostxl_ulpsense && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo buydisplay_2_8_tft_touch_arduino && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo buydisplay_3_5_tft_touch_arduino && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo coverage_support && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo dac80508_evm && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo dfrobot_can_bus_v2_0 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo dvp_fpc24_mt9m114 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo esp_8266 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo esp_8266_arduino && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo esp_8266_mikrobus && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo eval_adxl362_ardz && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo eval_adxl372_ardz && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo frdm_cr20a && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo frdm_kw41z && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo frdm_stbc_agm01 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo ftdi_vm800c && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo g1120b0mipi && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo inventek_eswifi && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo inventek_eswifi_arduino_spi && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo inventek_eswifi_arduino_uart && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo keyestudio_can_bus_ks0411 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo lcd_par_s035_8080 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo link_board_eth && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo lmp90100_evb && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo ls013b7dh03 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo m5stack_core2_ext && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo max7219_8x8 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo mikroe_accel13_click && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo mikroe_adc_click && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo mikroe_ble_tiny_click && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo mikroe_eth3_click && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo mikroe_eth_click && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo mikroe_mcp2518fd_click && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo mikroe_weather_click_i2c && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo mikroe_weather_click_spi && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo mikroe_wifi_bt_click && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo mikroe_wifi_bt_click_arduino && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo mikroe_wifi_bt_click_mikrobus && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo npm1100_ek && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo npm1300_ek && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo npm6001_ek && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo nrf21540ek && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo nrf21540ek_fwd && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo nrf2220ek && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo nrf2220ek_fwd && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo nrf2240ek && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo nrf2240ek_fwd && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo nrf7002eb && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo nrf7002eb2 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo nrf7002eb2_coex && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo nrf7002eb2_nrf7000 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo nrf7002eb2_nrf7001 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo nrf7002eb_coex && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo nrf7002eb_interposer_p1 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo nrf7002ek && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo nrf7002ek_coex && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo nrf7002ek_nrf7000 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo nrf7002ek_nrf7001 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo nxp_btb44_ov5640 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo p3t1755dp_ard_i2c && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo p3t1755dp_ard_i3c && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo pca63565 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo pca63566 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo pca63566_fwd && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo pmod_acl && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo pmod_sd && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo renesas_us159_da14531evz && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo reyax_lora && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo rk043fn02h_ct && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo rk043fn66hs_ctg && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo rk055hdmipi4m && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo rk055hdmipi4ma0 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo rpi_pico_uno_flexypin && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo rtkmipilcdb00000be && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo seeed_w5500 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo seeed_xiao_expansion_board && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo seeed_xiao_round_display && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo semtech_sx1262mb2das && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo semtech_sx1272mb2das && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo semtech_sx1276mb1mas && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo sh1106_128x64 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo sparkfun_carrier_asset_tracker && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo sparkfun_max3421e && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo sparkfun_sara_r4 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo ssd1306_128x32 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo ssd1306_128x64 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo ssd1306_128x64_spi && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo st7735r_ada_160x128 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo st7789v_tl019fqv01 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo st7789v_waveshare_240x240 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo st_b_lcd40_dsi1_mb1166 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo st_b_lcd40_dsi1_mb1166_a09 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo tcan4550evm && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo ti_bp_bassensorsmkii && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo v2c_daplink && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo v2c_daplink_cfg && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo waveshare_epaper_gdeh0154a07 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo waveshare_epaper_gdeh0213b1 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo waveshare_epaper_gdeh0213b72 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo waveshare_epaper_gdeh029a1 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo waveshare_epaper_gdew042t2 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo waveshare_epaper_gdew042t2-p && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo waveshare_epaper_gdew075t7 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo waveshare_epaper_gdey0213b74 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo waveshare_pico_ups_b && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo weact_ov2640_cam_module && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo wnc_m14a2a && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo x_nucleo_53l0a1 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo x_nucleo_bnrg2a1 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo x_nucleo_eeprma2 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo x_nucleo_idb05a1 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo x_nucleo_iks01a1 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo x_nucleo_iks01a2 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo x_nucleo_iks01a2_shub && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo x_nucleo_iks01a3 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo x_nucleo_iks01a3_shub && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo x_nucleo_iks02a1 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo x_nucleo_iks02a1_mic && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo x_nucleo_iks02a1_shub && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo x_nucleo_iks4a1 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo x_nucleo_iks4a1_shub1 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo x_nucleo_iks4a1_shub2 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo x_nucleo_wb05kn1_spi && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo x_nucleo_wb05kn1_uart + pool = console + + +############################################# +# Phony custom command for _sysbuild/CMakeFiles/build_info_yaml_saved + +build _sysbuild/CMakeFiles/build_info_yaml_saved | ${cmake_ninja_workdir}_sysbuild/CMakeFiles/build_info_yaml_saved: phony build_info.yml + + +############################################# +# Phony custom command for _sysbuild/CMakeFiles/config-twister + +build _sysbuild/CMakeFiles/config-twister | ${cmake_ninja_workdir}_sysbuild/CMakeFiles/config-twister: phony zephyr/.config + + +############################################# +# Custom command for _sysbuild/CMakeFiles/sysbuild_guiconfig + +build _sysbuild/CMakeFiles/sysbuild_guiconfig | ${cmake_ninja_workdir}_sysbuild/CMakeFiles/sysbuild_guiconfig: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/zephyr/kconfig && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E env ZEPHYR_BASE=/home/miguel/ncs/v3.0.2/zephyr PYTHON_EXECUTABLE=/home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/python3.12 srctree=/home/miguel/ncs/v3.0.2/zephyr KERNELVERSION= APPVERSION= APP_VERSION_EXTENDED_STRING= APP_VERSION_TWEAK_STRING= CONFIG_=SB_CONFIG_ KCONFIG_CONFIG=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/zephyr/.config KCONFIG_BOARD_DIR=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/Kconfig/boards BOARD=phf000_board BOARD_REVISION= BOARD_QUALIFIERS=/nrf52833 HWM_SCHEME=v2 KCONFIG_BINARY_DIR=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/Kconfig APPLICATION_SOURCE_DIR=/home/miguel/ncs/v3.0.2/zephyr/share/sysbuild ZEPHYR_TOOLCHAIN_VARIANT= TOOLCHAIN_KCONFIG_DIR= TOOLCHAIN_HAS_NEWLIB=n TOOLCHAIN_HAS_PICOLIBC=n EDT_PICKLE= NCS_MEMFAULT_FIRMWARE_SDK_KCONFIG=/home/miguel/ncs/v3.0.2/nrf/modules/memfault-firmware-sdk/Kconfig BOARD=phf000_board ZEPHYR_NRF_MODULE_DIR=/home/miguel/ncs/v3.0.2/nrf ZEPHYR_HOSTAP_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/lib/hostap ZEPHYR_HOSTAP_KCONFIG=/home/miguel/ncs/v3.0.2/zephyr/modules/hostap/Kconfig ZEPHYR_MCUBOOT_MODULE_DIR=/home/miguel/ncs/v3.0.2/bootloader/mcuboot ZEPHYR_MCUBOOT_KCONFIG=/home/miguel/ncs/v3.0.2/nrf/modules/mcuboot/Kconfig ZEPHYR_MBEDTLS_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/crypto/mbedtls ZEPHYR_MBEDTLS_KCONFIG=/home/miguel/ncs/v3.0.2/zephyr/modules/mbedtls/Kconfig ZEPHYR_OBERON_PSA_CRYPTO_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/crypto/oberon-psa-crypto ZEPHYR_TRUSTED_FIRMWARE_M_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/tee/tf-m/trusted-firmware-m ZEPHYR_TRUSTED_FIRMWARE_M_KCONFIG=/home/miguel/ncs/v3.0.2/nrf/modules/trusted-firmware-m/Kconfig ZEPHYR_PSA_ARCH_TESTS_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/tee/tf-m/psa-arch-tests ZEPHYR_CJSON_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/lib/cjson ZEPHYR_CJSON_KCONFIG=/home/miguel/ncs/v3.0.2/nrf/modules/cjson/Kconfig ZEPHYR_AZURE_SDK_FOR_C_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/lib/azure-sdk-for-c ZEPHYR_AZURE_SDK_FOR_C_KCONFIG=/home/miguel/ncs/v3.0.2/nrf/modules/azure-sdk-for-c/Kconfig ZEPHYR_CIRRUS_LOGIC_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/hal/cirrus-logic ZEPHYR_OPENTHREAD_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/lib/openthread ZEPHYR_OPENTHREAD_KCONFIG=/home/miguel/ncs/v3.0.2/nrf/modules/openthread/Kconfig ZEPHYR_SUIT_GENERATOR_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/lib/suit-generator ZEPHYR_SUIT_PROCESSOR_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/lib/suit-processor ZEPHYR_MEMFAULT_FIRMWARE_SDK_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/lib/memfault-firmware-sdk ZEPHYR_COREMARK_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/benchmark/coremark ZEPHYR_COREMARK_KCONFIG=/home/miguel/ncs/v3.0.2/nrf/modules/coremark/Kconfig ZEPHYR_CANOPENNODE_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/lib/canopennode ZEPHYR_CANOPENNODE_KCONFIG=/home/miguel/ncs/v3.0.2/zephyr/modules/canopennode/Kconfig ZEPHYR_CHRE_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/lib/chre ZEPHYR_LZ4_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/lib/lz4 ZEPHYR_LZ4_KCONFIG=/home/miguel/ncs/v3.0.2/zephyr/modules/lz4/Kconfig ZEPHYR_NANOPB_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/lib/nanopb ZEPHYR_NANOPB_KCONFIG=/home/miguel/ncs/v3.0.2/zephyr/modules/nanopb/Kconfig ZEPHYR_TF_M_TESTS_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/tee/tf-m/tf-m-tests ZEPHYR_ZSCILIB_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/lib/zscilib ZEPHYR_CMSIS_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/hal/cmsis ZEPHYR_CMSIS_KCONFIG=/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis/Kconfig ZEPHYR_CMSIS_DSP_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/lib/cmsis-dsp ZEPHYR_CMSIS_DSP_KCONFIG=/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis-dsp/Kconfig ZEPHYR_CMSIS_NN_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/lib/cmsis-nn ZEPHYR_CMSIS_NN_KCONFIG=/home/miguel/ncs/v3.0.2/zephyr/modules/cmsis-nn/Kconfig ZEPHYR_FATFS_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/fs/fatfs ZEPHYR_FATFS_KCONFIG=/home/miguel/ncs/v3.0.2/zephyr/modules/fatfs/Kconfig ZEPHYR_HAL_NORDIC_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/hal/nordic ZEPHYR_HAL_NORDIC_KCONFIG=/home/miguel/ncs/v3.0.2/zephyr/modules/hal_nordic/Kconfig ZEPHYR_HAL_ST_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/hal/st ZEPHYR_HAL_ST_KCONFIG=/home/miguel/ncs/v3.0.2/zephyr/modules/hal_st/Kconfig ZEPHYR_HAL_TDK_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/hal/tdk ZEPHYR_HAL_TDK_KCONFIG=/home/miguel/ncs/v3.0.2/zephyr/modules/hal_tdk/Kconfig ZEPHYR_HAL_WURTHELEKTRONIK_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/hal/wurthelektronik ZEPHYR_LIBLC3_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/lib/liblc3 ZEPHYR_LIBLC3_KCONFIG=/home/miguel/ncs/v3.0.2/zephyr/modules/liblc3/Kconfig ZEPHYR_LIBMETAL_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/hal/libmetal ZEPHYR_LITTLEFS_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/fs/littlefs ZEPHYR_LITTLEFS_KCONFIG=/home/miguel/ncs/v3.0.2/zephyr/modules/littlefs/Kconfig ZEPHYR_LORAMAC_NODE_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/lib/loramac-node ZEPHYR_LORAMAC_NODE_KCONFIG=/home/miguel/ncs/v3.0.2/zephyr/modules/loramac-node/Kconfig ZEPHYR_LVGL_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/lib/gui/lvgl ZEPHYR_LVGL_KCONFIG=/home/miguel/ncs/v3.0.2/zephyr/modules/lvgl/Kconfig ZEPHYR_MIPI_SYS_T_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/debug/mipi-sys-t ZEPHYR_NRF_WIFI_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/lib/nrf_wifi ZEPHYR_NRF_WIFI_KCONFIG=/home/miguel/ncs/v3.0.2/zephyr/modules/nrf_wifi/Kconfig ZEPHYR_OPEN_AMP_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/lib/open-amp ZEPHYR_PERCEPIO_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/debug/percepio ZEPHYR_PERCEPIO_KCONFIG=/home/miguel/ncs/v3.0.2/zephyr/modules/percepio/Kconfig ZEPHYR_PICOLIBC_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/lib/picolibc ZEPHYR_SEGGER_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/debug/segger ZEPHYR_SEGGER_KCONFIG=/home/miguel/ncs/v3.0.2/zephyr/modules/segger/Kconfig ZEPHYR_TINYCRYPT_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/crypto/tinycrypt ZEPHYR_UOSCORE_UEDHOC_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/lib/uoscore-uedhoc ZEPHYR_UOSCORE_UEDHOC_KCONFIG=/home/miguel/ncs/v3.0.2/zephyr/modules/uoscore-uedhoc/Kconfig ZEPHYR_ZCBOR_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/lib/zcbor ZEPHYR_ZCBOR_KCONFIG=/home/miguel/ncs/v3.0.2/zephyr/modules/zcbor/Kconfig ZEPHYR_NRFXLIB_MODULE_DIR=/home/miguel/ncs/v3.0.2/nrfxlib ZEPHYR_NRF_HW_MODELS_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/bsim_hw_models/nrf_hw_models ZEPHYR_CONNECTEDHOMEIP_MODULE_DIR=/home/miguel/ncs/v3.0.2/modules/lib/matter ARCH=* ARCH_DIR=/home/miguel/ncs/v3.0.2/zephyr/arch SHIELD_AS_LIST= DTS_POST_CPP= DTS_ROOT_BINDINGS= /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/python3.12 /home/miguel/ncs/v3.0.2/zephyr/scripts/kconfig/guiconfig.py /home/miguel/ncs/v3.0.2/zephyr/share/sysbuild/Kconfig + pool = console + + +############################################# +# Custom command for _sysbuild/CMakeFiles/snippets + +build _sysbuild/CMakeFiles/snippets | ${cmake_ninja_workdir}_sysbuild/CMakeFiles/snippets: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo bt-ll-sw-split && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo cdc-acm-console && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo ci-shell && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo diagnostic-logs && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo hpf-gpio-icbmsg && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo hpf-gpio-icmsg && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo hpf-gpio-mbox && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo hpf-mspi && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo hw-flow-control && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo matter-debug && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo nordic-bt-rpc && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo nordic-flpr && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo nordic-flpr-xip && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo nordic-log-stm && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo nordic-log-stm-dict && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo nordic-ppr && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo nordic-ppr-xip && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo nrf54l09-switch-uart && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo nrf70-driver-debug && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo nrf70-driver-verbose-debug && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo nrf70-fw-patch-ext-flash && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo nrf70-wifi && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo nrf91-modem-trace-ext-flash && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo nrf91-modem-trace-ram && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo nrf91-modem-trace-rtt && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo nrf91-modem-trace-uart && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo nus-console && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo power-consumption-tests && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo ram-console && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo rtt-console && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo rtt-tracing && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo serial-console && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo tfm-enable-share-uart && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo wifi-enterprise && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo wifi-ipv4 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo wpa-supplicant-debug && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo xen_dom0 && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo zperf + pool = console + + +############################################# +# Custom command for _sysbuild/CMakeFiles/boards + +build _sysbuild/CMakeFiles/boards | ${cmake_ninja_workdir}_sysbuild/CMakeFiles/boards: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/python3.12 /home/miguel/ncs/v3.0.2/zephyr/scripts/list_boards.py --board-root=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware --board-root=/home/miguel/ncs/v3.0.2/nrf --board-root=/home/miguel/ncs/v3.0.2/zephyr --arch-root=/home/miguel/ncs/v3.0.2/zephyr --soc-root=/home/miguel/ncs/v3.0.2/nrf --soc-root=/home/miguel/ncs/v3.0.2/zephyr + pool = console + + +############################################# +# Custom command for _sysbuild/CMakeFiles/PHF000-Firmware_extra_byproducts + +build _sysbuild/CMakeFiles/PHF000-Firmware_extra_byproducts PHF000-Firmware/zephyr/zephyr.bin PHF000-Firmware/zephyr/zephyr.elf PHF000-Firmware/zephyr/zephyr.hex | ${cmake_ninja_workdir}_sysbuild/CMakeFiles/PHF000-Firmware_extra_byproducts ${cmake_ninja_workdir}PHF000-Firmware/zephyr/zephyr.bin ${cmake_ninja_workdir}PHF000-Firmware/zephyr/zephyr.elf ${cmake_ninja_workdir}PHF000-Firmware/zephyr/zephyr.hex: CUSTOM_COMMAND || _sysbuild/sysbuild/images/PHF000-Firmware + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E true + restat = 1 + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/share/sysbuild/cmake/modules/sysbuild_images.cmake +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build _sysbuild/sysbuild/images/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild/sysbuild/images && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/ncs/v3.0.2/zephyr/share/sysbuild -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build _sysbuild/sysbuild/images/rebuild_cache: phony _sysbuild/sysbuild/images/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for menuconfig + +build _sysbuild/sysbuild/images/menuconfig: phony _sysbuild/sysbuild/images/CMakeFiles/menuconfig + + +############################################# +# Utility command for guiconfig + +build _sysbuild/sysbuild/images/guiconfig: phony _sysbuild/sysbuild/images/CMakeFiles/guiconfig + + +############################################# +# Utility command for edit_cache + +build _sysbuild/sysbuild/images/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild/sysbuild/images && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/ncs/v3.0.2/zephyr/share/sysbuild -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build _sysbuild/sysbuild/images/edit_cache: phony _sysbuild/sysbuild/images/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for hardenconfig + +build _sysbuild/sysbuild/images/hardenconfig: phony _sysbuild/sysbuild/images/CMakeFiles/hardenconfig + + +############################################# +# Utility command for PHF000-Firmware + +build _sysbuild/sysbuild/images/PHF000-Firmware: phony _sysbuild/sysbuild/images/CMakeFiles/PHF000-Firmware _sysbuild/sysbuild/images/CMakeFiles/PHF000-Firmware-complete _sysbuild/sysbuild/images/PHF000-Firmware-prefix/src/PHF000-Firmware-stamp/PHF000-Firmware-done _sysbuild/sysbuild/images/PHF000-Firmware-prefix/src/PHF000-Firmware-stamp/PHF000-Firmware-build _sysbuild/sysbuild/images/PHF000-Firmware-prefix/src/PHF000-Firmware-stamp/PHF000-Firmware-configure _sysbuild/sysbuild/images/PHF000-Firmware-prefix/src/PHF000-Firmware-stamp/PHF000-Firmware-download _sysbuild/sysbuild/images/PHF000-Firmware-prefix/src/PHF000-Firmware-stamp/PHF000-Firmware-install _sysbuild/sysbuild/images/PHF000-Firmware-prefix/src/PHF000-Firmware-stamp/PHF000-Firmware-mkdir _sysbuild/sysbuild/images/PHF000-Firmware-prefix/src/PHF000-Firmware-stamp/PHF000-Firmware-patch _sysbuild/sysbuild/images/PHF000-Firmware-prefix/src/PHF000-Firmware-stamp/PHF000-Firmware-update + + +############################################# +# Custom command for _sysbuild/sysbuild/images/CMakeFiles/menuconfig + +build _sysbuild/sysbuild/images/CMakeFiles/menuconfig | ${cmake_ninja_workdir}_sysbuild/sysbuild/images/CMakeFiles/menuconfig: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/ninja menuconfig + pool = console + + +############################################# +# Custom command for _sysbuild/sysbuild/images/CMakeFiles/guiconfig + +build _sysbuild/sysbuild/images/CMakeFiles/guiconfig | ${cmake_ninja_workdir}_sysbuild/sysbuild/images/CMakeFiles/guiconfig: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/ninja guiconfig + pool = console + + +############################################# +# Custom command for _sysbuild/sysbuild/images/CMakeFiles/hardenconfig + +build _sysbuild/sysbuild/images/CMakeFiles/hardenconfig | ${cmake_ninja_workdir}_sysbuild/sysbuild/images/CMakeFiles/hardenconfig: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/ninja hardenconfig + pool = console + + +############################################# +# Phony custom command for _sysbuild/sysbuild/images/CMakeFiles/PHF000-Firmware + +build _sysbuild/sysbuild/images/CMakeFiles/PHF000-Firmware | ${cmake_ninja_workdir}_sysbuild/sysbuild/images/CMakeFiles/PHF000-Firmware: phony _sysbuild/sysbuild/images/CMakeFiles/PHF000-Firmware-complete + + +############################################# +# Custom command for _sysbuild/sysbuild/images/CMakeFiles/PHF000-Firmware-complete + +build _sysbuild/sysbuild/images/CMakeFiles/PHF000-Firmware-complete _sysbuild/sysbuild/images/PHF000-Firmware-prefix/src/PHF000-Firmware-stamp/PHF000-Firmware-done | ${cmake_ninja_workdir}_sysbuild/sysbuild/images/CMakeFiles/PHF000-Firmware-complete ${cmake_ninja_workdir}_sysbuild/sysbuild/images/PHF000-Firmware-prefix/src/PHF000-Firmware-stamp/PHF000-Firmware-done: CUSTOM_COMMAND _sysbuild/sysbuild/images/PHF000-Firmware-prefix/src/PHF000-Firmware-stamp/PHF000-Firmware-install _sysbuild/sysbuild/images/PHF000-Firmware-prefix/src/PHF000-Firmware-stamp/PHF000-Firmware-mkdir _sysbuild/sysbuild/images/PHF000-Firmware-prefix/src/PHF000-Firmware-stamp/PHF000-Firmware-download _sysbuild/sysbuild/images/PHF000-Firmware-prefix/src/PHF000-Firmware-stamp/PHF000-Firmware-update _sysbuild/sysbuild/images/PHF000-Firmware-prefix/src/PHF000-Firmware-stamp/PHF000-Firmware-patch _sysbuild/sysbuild/images/PHF000-Firmware-prefix/src/PHF000-Firmware-stamp/PHF000-Firmware-configure _sysbuild/sysbuild/images/PHF000-Firmware-prefix/src/PHF000-Firmware-stamp/PHF000-Firmware-build _sysbuild/sysbuild/images/PHF000-Firmware-prefix/src/PHF000-Firmware-stamp/PHF000-Firmware-install + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild/sysbuild/images && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E make_directory /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild/sysbuild/images/CMakeFiles && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E touch /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild/sysbuild/images/CMakeFiles/PHF000-Firmware-complete && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E touch /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild/sysbuild/images/PHF000-Firmware-prefix/src/PHF000-Firmware-stamp/PHF000-Firmware-done + DESC = Completed 'PHF000-Firmware' + restat = 1 + + +############################################# +# Custom command for _sysbuild/sysbuild/images/PHF000-Firmware-prefix/src/PHF000-Firmware-stamp/PHF000-Firmware-build + +build _sysbuild/sysbuild/images/PHF000-Firmware-prefix/src/PHF000-Firmware-stamp/PHF000-Firmware-build | ${cmake_ninja_workdir}_sysbuild/sysbuild/images/PHF000-Firmware-prefix/src/PHF000-Firmware-stamp/PHF000-Firmware-build: CUSTOM_COMMAND _sysbuild/sysbuild/images/PHF000-Firmware-prefix/src/PHF000-Firmware-stamp/PHF000-Firmware-configure + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --build . + DESC = Performing build step for 'PHF000-Firmware' + pool = console + + +############################################# +# Custom command for _sysbuild/sysbuild/images/PHF000-Firmware-prefix/src/PHF000-Firmware-stamp/PHF000-Firmware-configure + +build _sysbuild/sysbuild/images/PHF000-Firmware-prefix/src/PHF000-Firmware-stamp/PHF000-Firmware-configure | ${cmake_ninja_workdir}_sysbuild/sysbuild/images/PHF000-Firmware-prefix/src/PHF000-Firmware-stamp/PHF000-Firmware-configure: CUSTOM_COMMAND _sysbuild/sysbuild/images/PHF000-Firmware-prefix/tmp/PHF000-Firmware-cfgcmd.txt _sysbuild/sysbuild/images/PHF000-Firmware-prefix/src/PHF000-Firmware-stamp/PHF000-Firmware-patch + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo_append && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E touch /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild/sysbuild/images/PHF000-Firmware-prefix/src/PHF000-Firmware-stamp/PHF000-Firmware-configure + DESC = No configure step for 'PHF000-Firmware' + restat = 1 + + +############################################# +# Custom command for _sysbuild/sysbuild/images/PHF000-Firmware-prefix/src/PHF000-Firmware-stamp/PHF000-Firmware-download + +build _sysbuild/sysbuild/images/PHF000-Firmware-prefix/src/PHF000-Firmware-stamp/PHF000-Firmware-download | ${cmake_ninja_workdir}_sysbuild/sysbuild/images/PHF000-Firmware-prefix/src/PHF000-Firmware-stamp/PHF000-Firmware-download: CUSTOM_COMMAND _sysbuild/sysbuild/images/PHF000-Firmware-prefix/src/PHF000-Firmware-stamp/PHF000-Firmware-mkdir + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild/sysbuild/images && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo_append && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E touch /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild/sysbuild/images/PHF000-Firmware-prefix/src/PHF000-Firmware-stamp/PHF000-Firmware-download + DESC = No download step for 'PHF000-Firmware' + restat = 1 + + +############################################# +# Custom command for _sysbuild/sysbuild/images/PHF000-Firmware-prefix/src/PHF000-Firmware-stamp/PHF000-Firmware-install + +build _sysbuild/sysbuild/images/PHF000-Firmware-prefix/src/PHF000-Firmware-stamp/PHF000-Firmware-install | ${cmake_ninja_workdir}_sysbuild/sysbuild/images/PHF000-Firmware-prefix/src/PHF000-Firmware-stamp/PHF000-Firmware-install: CUSTOM_COMMAND _sysbuild/sysbuild/images/PHF000-Firmware-prefix/src/PHF000-Firmware-stamp/PHF000-Firmware-build + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo_append && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E touch /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild/sysbuild/images/PHF000-Firmware-prefix/src/PHF000-Firmware-stamp/PHF000-Firmware-install + DESC = No install step for 'PHF000-Firmware' + restat = 1 + + +############################################# +# Custom command for _sysbuild/sysbuild/images/PHF000-Firmware-prefix/src/PHF000-Firmware-stamp/PHF000-Firmware-mkdir + +build _sysbuild/sysbuild/images/PHF000-Firmware-prefix/src/PHF000-Firmware-stamp/PHF000-Firmware-mkdir | ${cmake_ninja_workdir}_sysbuild/sysbuild/images/PHF000-Firmware-prefix/src/PHF000-Firmware-stamp/PHF000-Firmware-mkdir: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild/sysbuild/images && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E make_directory /home/miguel/Documents/GardenProject/Software/PHF000-Firmware && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E make_directory /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E make_directory /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild/sysbuild/images/PHF000-Firmware-prefix && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E make_directory /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild/sysbuild/images/PHF000-Firmware-prefix/tmp && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E make_directory /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild/sysbuild/images/PHF000-Firmware-prefix/src/PHF000-Firmware-stamp && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E make_directory /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild/sysbuild/images/PHF000-Firmware-prefix/src && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E make_directory /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild/sysbuild/images/PHF000-Firmware-prefix/src/PHF000-Firmware-stamp && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E touch /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild/sysbuild/images/PHF000-Firmware-prefix/src/PHF000-Firmware-stamp/PHF000-Firmware-mkdir + DESC = Creating directories for 'PHF000-Firmware' + restat = 1 + + +############################################# +# Custom command for _sysbuild/sysbuild/images/PHF000-Firmware-prefix/src/PHF000-Firmware-stamp/PHF000-Firmware-patch + +build _sysbuild/sysbuild/images/PHF000-Firmware-prefix/src/PHF000-Firmware-stamp/PHF000-Firmware-patch | ${cmake_ninja_workdir}_sysbuild/sysbuild/images/PHF000-Firmware-prefix/src/PHF000-Firmware-stamp/PHF000-Firmware-patch: CUSTOM_COMMAND _sysbuild/sysbuild/images/PHF000-Firmware-prefix/src/PHF000-Firmware-stamp/PHF000-Firmware-update + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild/sysbuild/images && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo_append && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E touch /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild/sysbuild/images/PHF000-Firmware-prefix/src/PHF000-Firmware-stamp/PHF000-Firmware-patch + DESC = No patch step for 'PHF000-Firmware' + restat = 1 + + +############################################# +# Custom command for _sysbuild/sysbuild/images/PHF000-Firmware-prefix/src/PHF000-Firmware-stamp/PHF000-Firmware-update + +build _sysbuild/sysbuild/images/PHF000-Firmware-prefix/src/PHF000-Firmware-stamp/PHF000-Firmware-update | ${cmake_ninja_workdir}_sysbuild/sysbuild/images/PHF000-Firmware-prefix/src/PHF000-Firmware-stamp/PHF000-Firmware-update: CUSTOM_COMMAND _sysbuild/sysbuild/images/PHF000-Firmware-prefix/src/PHF000-Firmware-stamp/PHF000-Firmware-download + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild/sysbuild/images && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E echo_append && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake -E touch /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild/sysbuild/images/PHF000-Firmware-prefix/src/PHF000-Firmware-stamp/PHF000-Firmware-update + DESC = No update step for 'PHF000-Firmware' + restat = 1 + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/share/sysbuild/images/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build _sysbuild/sysbuild/images/bootloader/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild/sysbuild/images/bootloader && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/ncs/v3.0.2/zephyr/share/sysbuild -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build _sysbuild/sysbuild/images/bootloader/rebuild_cache: phony _sysbuild/sysbuild/images/bootloader/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build _sysbuild/sysbuild/images/bootloader/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild/sysbuild/images/bootloader && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/ncs/v3.0.2/zephyr/share/sysbuild -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build _sysbuild/sysbuild/images/bootloader/edit_cache: phony _sysbuild/sysbuild/images/bootloader/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/share/sysbuild/images/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build modules/nrf/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/modules/nrf && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/ncs/v3.0.2/zephyr/share/sysbuild -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/nrf/rebuild_cache: phony modules/nrf/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build modules/nrf/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/modules/nrf && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/ncs/v3.0.2/zephyr/share/sysbuild -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/nrf/edit_cache: phony modules/nrf/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/share/sysbuild/images/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build modules/mcuboot/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/modules/mcuboot && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/ncs/v3.0.2/zephyr/share/sysbuild -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/mcuboot/rebuild_cache: phony modules/mcuboot/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build modules/mcuboot/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/modules/mcuboot && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/ncs/v3.0.2/zephyr/share/sysbuild -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/mcuboot/edit_cache: phony modules/mcuboot/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/share/sysbuild/images/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build _sysbuild/sysbuild/images/boards/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild/sysbuild/images/boards && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/ncs/v3.0.2/zephyr/share/sysbuild -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build _sysbuild/sysbuild/images/boards/rebuild_cache: phony _sysbuild/sysbuild/images/boards/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build _sysbuild/sysbuild/images/boards/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild/sysbuild/images/boards && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/ncs/v3.0.2/zephyr/share/sysbuild -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build _sysbuild/sysbuild/images/boards/edit_cache: phony _sysbuild/sysbuild/images/boards/CMakeFiles/edit_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/miguel/ncs/v3.0.2/zephyr/share/sysbuild/images/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build _sysbuild/sysbuild/images/soc/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild/sysbuild/images/soc && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake --regenerate-during-build -S/home/miguel/ncs/v3.0.2/zephyr/share/sysbuild -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build _sysbuild/sysbuild/images/soc/rebuild_cache: phony _sysbuild/sysbuild/images/soc/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for edit_cache + +build _sysbuild/sysbuild/images/soc/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild/sysbuild/images/soc && /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/cmake-gui -S/home/miguel/ncs/v3.0.2/zephyr/share/sysbuild -B/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build _sysbuild/sysbuild/images/soc/edit_cache: phony _sysbuild/sysbuild/images/soc/CMakeFiles/edit_cache.util + +# ============================================================================= +# Target aliases. + +build PHF000-Firmware: phony _sysbuild/sysbuild/images/PHF000-Firmware + +build PHF000-Firmware_cache: phony _sysbuild/PHF000-Firmware_cache + +build PHF000-Firmware_devicetree_target: phony _sysbuild/PHF000-Firmware_devicetree_target + +build PHF000-Firmware_extra_byproducts: phony _sysbuild/PHF000-Firmware_extra_byproducts + +build boards: phony _sysbuild/boards + +build build_info_yaml_saved: phony _sysbuild/build_info_yaml_saved + +build config-twister: phony _sysbuild/config-twister + +build guiconfig: phony _sysbuild/sysbuild/images/guiconfig + +build hardenconfig: phony _sysbuild/sysbuild/images/hardenconfig + +build menuconfig: phony _sysbuild/sysbuild/images/menuconfig + +build merged_hex: phony _sysbuild/merged_hex + +build partition_manager: phony _sysbuild/partition_manager + +build partition_manager_report: phony _sysbuild/partition_manager_report + +build shields: phony _sysbuild/shields + +build snippets: phony _sysbuild/snippets + +build sysbuild_guiconfig: phony _sysbuild/sysbuild_guiconfig + +build sysbuild_menuconfig: phony _sysbuild/sysbuild_menuconfig + +# ============================================================================= +# Folder targets. + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build + +build all: phony _sysbuild/all + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild + +build _sysbuild/all: phony _sysbuild/merged_hex _sysbuild/build_info_yaml_saved _sysbuild/sysbuild/images/all + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild/sysbuild/images + +build _sysbuild/sysbuild/images/all: phony _sysbuild/sysbuild/images/PHF000-Firmware _sysbuild/sysbuild/images/bootloader/all modules/nrf/all modules/mcuboot/all _sysbuild/sysbuild/images/boards/all _sysbuild/sysbuild/images/soc/all + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild/sysbuild/images/boards + +build _sysbuild/sysbuild/images/boards/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild/sysbuild/images/bootloader + +build _sysbuild/sysbuild/images/bootloader/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild/sysbuild/images/soc + +build _sysbuild/sysbuild/images/soc/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/modules/mcuboot + +build modules/mcuboot/all: phony + +# ============================================================================= + +############################################# +# Folder: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/modules/nrf + +build modules/nrf/all: phony + +# ============================================================================= +# Built-in targets + + +############################################# +# Re-run CMake if any of its inputs changed. + +build build.ninja: RERUN_CMAKE | /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/boards/Mi_labs/phf000_board/Kconfig.phf000_board /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/boards/Mi_labs/phf000_board/board.yml /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/share/cmake-3.21/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/share/cmake-3.21/Modules/CMakeGenericSystem.cmake /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/share/cmake-3.21/Modules/CMakeInitializeConfigs.cmake /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/share/cmake-3.21/Modules/CMakeSystemSpecificInformation.cmake /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/share/cmake-3.21/Modules/CMakeSystemSpecificInitialize.cmake /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/share/cmake-3.21/Modules/CheckCCompilerFlag.cmake /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/share/cmake-3.21/Modules/CheckCSourceCompiles.cmake /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/share/cmake-3.21/Modules/CheckCXXCompilerFlag.cmake /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/share/cmake-3.21/Modules/CheckCXXSourceCompiles.cmake /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/share/cmake-3.21/Modules/ExternalProject.cmake /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/share/cmake-3.21/Modules/FindPackageHandleStandardArgs.cmake /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/share/cmake-3.21/Modules/FindPackageMessage.cmake /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/share/cmake-3.21/Modules/FindPython/Support.cmake /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/share/cmake-3.21/Modules/FindPython3.cmake /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/share/cmake-3.21/Modules/Internal/CheckCompilerFlag.cmake /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/share/cmake-3.21/Modules/Internal/CheckSourceCompiles.cmake /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/share/cmake-3.21/Modules/Platform/Linux.cmake /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/share/cmake-3.21/Modules/Platform/UnixPaths.cmake /home/miguel/ncs/v3.0.2/bootloader/mcuboot/boot/zephyr/sysbuild/CMakeLists.txt /home/miguel/ncs/v3.0.2/nrf/cmake/extensions.cmake /home/miguel/ncs/v3.0.2/nrf/cmake/sysbuild/b0_mcuboot_signing.cmake /home/miguel/ncs/v3.0.2/nrf/cmake/sysbuild/modules/ncs_sysbuild_extensions.cmake /home/miguel/ncs/v3.0.2/nrf/cmake/sysbuild/partition_manager.cmake /home/miguel/ncs/v3.0.2/nrf/cmake/sysbuild/suit.cmake /home/miguel/ncs/v3.0.2/nrf/cmake/sysbuild/suit_provisioning.cmake /home/miguel/ncs/v3.0.2/nrf/cmake/sysbuild/suit_utilities.cmake /home/miguel/ncs/v3.0.2/nrf/modules/modules.cmake /home/miguel/ncs/v3.0.2/nrf/snippets/ci-shell/snippet.yml /home/miguel/ncs/v3.0.2/nrf/snippets/hpf/gpio/icbmsg/snippet.yml /home/miguel/ncs/v3.0.2/nrf/snippets/hpf/gpio/icmsg/snippet.yml /home/miguel/ncs/v3.0.2/nrf/snippets/hpf/gpio/mbox/snippet.yml /home/miguel/ncs/v3.0.2/nrf/snippets/hpf/mspi/snippet.yml /home/miguel/ncs/v3.0.2/nrf/snippets/hw-flow-control/snippet.yml /home/miguel/ncs/v3.0.2/nrf/snippets/matter-debug/snippet.yml /home/miguel/ncs/v3.0.2/nrf/snippets/matter-diagnostic-logs/snippet.yml /home/miguel/ncs/v3.0.2/nrf/snippets/matter-power-consumption-tests/snippet.yml /home/miguel/ncs/v3.0.2/nrf/snippets/nordic-bt-rpc/snippet.yml /home/miguel/ncs/v3.0.2/nrf/snippets/nrf54l09-switch-uart/snippet.yml /home/miguel/ncs/v3.0.2/nrf/snippets/nrf70-driver-debug/snippet.yml /home/miguel/ncs/v3.0.2/nrf/snippets/nrf70-driver-verbose-debug/snippet.yml /home/miguel/ncs/v3.0.2/nrf/snippets/nrf70-fw-patch-ext-flash/snippet.yml /home/miguel/ncs/v3.0.2/nrf/snippets/nrf70-wifi/snippet.yml /home/miguel/ncs/v3.0.2/nrf/snippets/nrf91-modem-trace-ext-flash/snippet.yml /home/miguel/ncs/v3.0.2/nrf/snippets/nrf91-modem-trace-ram/snippet.yml /home/miguel/ncs/v3.0.2/nrf/snippets/nrf91-modem-trace-rtt/snippet.yml /home/miguel/ncs/v3.0.2/nrf/snippets/nrf91-modem-trace-uart/snippet.yml /home/miguel/ncs/v3.0.2/nrf/snippets/tfm-enable-share-uart/snippet.yml /home/miguel/ncs/v3.0.2/nrf/snippets/wpa-supplicant-debug/snippet.yml /home/miguel/ncs/v3.0.2/nrf/snippets/zperf/snippet.yml /home/miguel/ncs/v3.0.2/nrf/soc/nordic/Kconfig.soc /home/miguel/ncs/v3.0.2/nrf/soc/nordic/nrf54l/Kconfig.soc /home/miguel/ncs/v3.0.2/nrf/soc/nordic/nrf71/Kconfig.soc /home/miguel/ncs/v3.0.2/nrf/subsys/bootloader/cmake/packaging.cmake /home/miguel/ncs/v3.0.2/nrf/sysbuild/CMakeLists.txt /home/miguel/ncs/v3.0.2/nrf/sysbuild/Kconfig.appcore /home/miguel/ncs/v3.0.2/nrf/sysbuild/Kconfig.approtect /home/miguel/ncs/v3.0.2/nrf/sysbuild/Kconfig.bt_fast_pair /home/miguel/ncs/v3.0.2/nrf/sysbuild/Kconfig.cracen /home/miguel/ncs/v3.0.2/nrf/sysbuild/Kconfig.dfu /home/miguel/ncs/v3.0.2/nrf/sysbuild/Kconfig.flprcore /home/miguel/ncs/v3.0.2/nrf/sysbuild/Kconfig.hpf /home/miguel/ncs/v3.0.2/nrf/sysbuild/Kconfig.lwm2m_carrier /home/miguel/ncs/v3.0.2/nrf/sysbuild/Kconfig.matter /home/miguel/ncs/v3.0.2/nrf/sysbuild/Kconfig.mcuboot /home/miguel/ncs/v3.0.2/nrf/sysbuild/Kconfig.netcore /home/miguel/ncs/v3.0.2/nrf/sysbuild/Kconfig.pprcore /home/miguel/ncs/v3.0.2/nrf/sysbuild/Kconfig.secureboot /home/miguel/ncs/v3.0.2/nrf/sysbuild/Kconfig.suit /home/miguel/ncs/v3.0.2/nrf/sysbuild/Kconfig.suit_provisioning /home/miguel/ncs/v3.0.2/nrf/sysbuild/Kconfig.sysbuild /home/miguel/ncs/v3.0.2/nrf/sysbuild/Kconfig.tfm /home/miguel/ncs/v3.0.2/nrf/sysbuild/Kconfig.wifi /home/miguel/ncs/v3.0.2/nrf/sysbuild/Kconfig.xip /home/miguel/ncs/v3.0.2/nrf/sysbuild/Kconfig.zip /home/miguel/ncs/v3.0.2/nrf/sysbuild/appcore.cmake /home/miguel/ncs/v3.0.2/nrf/sysbuild/extensions.cmake /home/miguel/ncs/v3.0.2/nrf/sysbuild/hpf.cmake /home/miguel/ncs/v3.0.2/nrf/sysbuild/mcuboot.cmake /home/miguel/ncs/v3.0.2/nrf/sysbuild/netcore.cmake /home/miguel/ncs/v3.0.2/nrf/sysbuild/secureboot.cmake /home/miguel/ncs/v3.0.2/nrf/sysbuild/suit.cmake /home/miguel/ncs/v3.0.2/nrf/sysbuild/suit_provisioning/Kconfig.nrf54h20 /home/miguel/ncs/v3.0.2/nrf/sysbuild/suit_provisioning/Kconfig.nrf9280 /home/miguel/ncs/v3.0.2/nrf/sysbuild/suit_provisioning/Kconfig.template.manifest_config /home/miguel/ncs/v3.0.2/zephyr/VERSION /home/miguel/ncs/v3.0.2/zephyr/boards/Kconfig.v2 /home/miguel/ncs/v3.0.2/zephyr/boards/deprecated.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/modules/FindDeprecated.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/modules/boards.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/modules/extensions.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/modules/hwm_v2.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/modules/kconfig.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/modules/python.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/modules/shields.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/modules/snippets.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/modules/user_cache.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/modules/version.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/modules/west.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/modules/yaml.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/modules/zephyr_module.cmake /home/miguel/ncs/v3.0.2/zephyr/modules/Kconfig.sysbuild /home/miguel/ncs/v3.0.2/zephyr/modules/modules.cmake /home/miguel/ncs/v3.0.2/zephyr/scripts/snippets.py /home/miguel/ncs/v3.0.2/zephyr/share/sysbuild-package/cmake/SysbuildConfig.cmake /home/miguel/ncs/v3.0.2/zephyr/share/sysbuild-package/cmake/SysbuildConfigVersion.cmake /home/miguel/ncs/v3.0.2/zephyr/share/sysbuild/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/share/sysbuild/Kconfig /home/miguel/ncs/v3.0.2/zephyr/share/sysbuild/Kconfig.v2 /home/miguel/ncs/v3.0.2/zephyr/share/sysbuild/build/Kconfig /home/miguel/ncs/v3.0.2/zephyr/share/sysbuild/cmake/domains.cmake /home/miguel/ncs/v3.0.2/zephyr/share/sysbuild/cmake/modules/native_simulator_sb_extensions.cmake /home/miguel/ncs/v3.0.2/zephyr/share/sysbuild/cmake/modules/sysbuild_default.cmake /home/miguel/ncs/v3.0.2/zephyr/share/sysbuild/cmake/modules/sysbuild_extensions.cmake /home/miguel/ncs/v3.0.2/zephyr/share/sysbuild/cmake/modules/sysbuild_images.cmake /home/miguel/ncs/v3.0.2/zephyr/share/sysbuild/cmake/modules/sysbuild_kconfig.cmake /home/miguel/ncs/v3.0.2/zephyr/share/sysbuild/cmake/modules/sysbuild_root.cmake /home/miguel/ncs/v3.0.2/zephyr/share/sysbuild/cmake/modules/sysbuild_snippets.cmake /home/miguel/ncs/v3.0.2/zephyr/share/sysbuild/image_configurations/ALL_image_default.cmake /home/miguel/ncs/v3.0.2/zephyr/share/sysbuild/image_configurations/MAIN_image_default.cmake /home/miguel/ncs/v3.0.2/zephyr/share/sysbuild/images/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/share/sysbuild/images/Kconfig /home/miguel/ncs/v3.0.2/zephyr/share/sysbuild/images/boards/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/share/sysbuild/images/bootloader/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/share/sysbuild/images/bootloader/Kconfig /home/miguel/ncs/v3.0.2/zephyr/share/sysbuild/images/soc/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/share/sysbuild/template/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake /home/miguel/ncs/v3.0.2/zephyr/share/zephyr-package/cmake/ZephyrConfigVersion.cmake /home/miguel/ncs/v3.0.2/zephyr/share/zephyr-package/cmake/zephyr_package_search.cmake /home/miguel/ncs/v3.0.2/zephyr/snippets/bt-ll-sw-split/snippet.yml /home/miguel/ncs/v3.0.2/zephyr/snippets/cdc-acm-console/snippet.yml /home/miguel/ncs/v3.0.2/zephyr/snippets/nordic-flpr-xip/snippet.yml /home/miguel/ncs/v3.0.2/zephyr/snippets/nordic-flpr/snippet.yml /home/miguel/ncs/v3.0.2/zephyr/snippets/nordic-log-stm-dict/snippet.yml /home/miguel/ncs/v3.0.2/zephyr/snippets/nordic-log-stm/snippet.yml /home/miguel/ncs/v3.0.2/zephyr/snippets/nordic-ppr-xip/snippet.yml /home/miguel/ncs/v3.0.2/zephyr/snippets/nordic-ppr/snippet.yml /home/miguel/ncs/v3.0.2/zephyr/snippets/nus-console/snippet.yml /home/miguel/ncs/v3.0.2/zephyr/snippets/ram-console/snippet.yml /home/miguel/ncs/v3.0.2/zephyr/snippets/rtt-console/snippet.yml /home/miguel/ncs/v3.0.2/zephyr/snippets/rtt-tracing/snippet.yml /home/miguel/ncs/v3.0.2/zephyr/snippets/serial-console/snippet.yml /home/miguel/ncs/v3.0.2/zephyr/snippets/wifi-enterprise/snippet.yml /home/miguel/ncs/v3.0.2/zephyr/snippets/wifi-ipv4/snippet.yml /home/miguel/ncs/v3.0.2/zephyr/snippets/xen_dom0/snippet.yml /home/miguel/ncs/v3.0.2/zephyr/soc/Kconfig.v2 /home/miguel/ncs/v3.0.2/zephyr/soc/adi/max32/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/altr/qemu_nios2/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/altr/zephyr_nios2f/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/ambiq/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/ambiq/apollo3x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/ambiq/apollo4x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/amd/acp_6_0/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/andestech/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/andestech/ae350/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/arm/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/arm/beetle/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/arm/designstart/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/arm/fvp_aemv8a/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/arm/fvp_aemv8r/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/arm/mps2/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/arm/mps3/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/arm/musca/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/arm/qemu_cortex_a53/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/arm/qemu_virt_arm64/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/aspeed/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/aspeed/ast10x0/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam/sam3x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam/sam4e/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam/sam4l/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam/sam4s/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam/same70/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam/samv71/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/samc20/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/samc21/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/samd20/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/samd21/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/samd51/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/same51/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/same53/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/same54/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/saml21/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/samr21/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/samr34/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/samr35/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/brcm/bcm2711/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/brcm/bcm2712/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/brcm/bcmvk/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/brcm/bcmvk/valkyrie/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/brcm/bcmvk/viper/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/cdns/dc233c/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/cdns/sample_controller32/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/cdns/xtensa_sample_controller/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/efinix/sapphire/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/ene/kb1200/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/espressif/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/espressif/Kconfig.sysbuild /home/miguel/ncs/v3.0.2/zephyr/soc/espressif/esp32/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/espressif/esp32c2/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/espressif/esp32c3/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/espressif/esp32c6/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/espressif/esp32s2/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/espressif/esp32s3/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/gaisler/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/gaisler/gr716a/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/gaisler/leon3/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32a50x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32e10x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32e50x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32f3x0/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32f403/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32f4xx/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32l23x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32vf103/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat1a/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat1a/psoc6_01/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat1a/psoc6_02/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat1a/psoc6_03/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat1a/psoc6_04/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat1a/psoc6_legacy/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat1b/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat1b/cyw20829/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat3/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat3/xmc4xxx/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/intel/alder_lake/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/intel/apollo_lake/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/intel/atom/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/intel/elkhart_lake/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_adsp/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_adsp/ace/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_adsp/cavs/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_ish/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_ish/intel_ish5/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_niosv/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_niosv/niosv/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_socfpga/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_socfpga/agilex/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_socfpga/agilex5/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_socfpga_std/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_socfpga_std/cyclonev/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/intel/lakemont/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/intel/raptor_lake/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/ite/ec/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/ite/ec/it8xxx2/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/litex/litex_vexriscv/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/lowrisc/opentitan/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/mediatek/mt8xxx/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/microchip/mec/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/microchip/mec/mec15xx/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/microchip/mec/mec172x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/microchip/mec/mec174x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/microchip/mec/mec175x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/microchip/mec/mech172x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/microchip/miv/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/microchip/miv/miv/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/microchip/miv/polarfire/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/native/inf_clock/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/neorv32/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/Kconfig.sysbuild /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/vpr/Kconfig.sysbuild /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf51/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf53/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf54h/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf54l/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf91/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf92/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/sysbuild.cmake /home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/npcm/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/npcm/npcm4/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/npcx/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/npcx/npcx4/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/npcx/npcx7/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/npcx/npcx9/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/numaker/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/numaker/m2l31x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/numaker/m46x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/numicro/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/numicro/m48x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx6sx/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx7d/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx8/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx8m/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx8ulp/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx8x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx9/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx9/imx93/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx9/imx95/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imxrt/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imxrt/Kconfig.sysbuild /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imxrt/imxrt10xx/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imxrt/imxrt118x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imxrt/imxrt11xx/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imxrt/imxrt5xx/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imxrt/imxrt6xx/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/k2x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/k6x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/k8x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/ke1xf/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/ke1xz/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/kl2x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/kv5x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/kwx/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/layerscape/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/layerscape/ls1046a/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/lpc/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/lpc/lpc11u6x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/lpc/lpc51u68/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/lpc/lpc54xxx/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/lpc/lpc55xxx/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/mcx/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/mcx/mcxa/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/mcx/mcxc/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/mcx/mcxn/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/mcx/mcxw/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/rw/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/s32/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/s32/s32k1/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/s32/s32k3/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/s32/s32ze/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/openisa/rv32m1/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/qemu/malta/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/qemu/virt_riscv/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/qemu/virt_riscv/qemu_virt_riscv32/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/qemu/virt_riscv/qemu_virt_riscv32e/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/qemu/virt_riscv/qemu_virt_riscv64/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/quicklogic/eos_s3/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/raspberrypi/rpi_pico/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/raspberrypi/rpi_pico/rp2040/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/raspberrypi/rpi_pico/rp2350/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/realtek/ec/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/realtek/ec/rts5912/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra2a1/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra4e2/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra4m1/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra4m2/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra4m3/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra4w1/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra6e1/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra6e2/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra6m1/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra6m2/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra6m3/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra6m4/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra6m5/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra8d1/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra8m1/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra8t1/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/rcar/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/rcar/rcar_gen3/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/rcar/rcar_gen4/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/rz/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/rz/rzg3s/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/rzt2m/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/smartbond/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/smartbond/da1469x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/renode/cortex_r8_virtual/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/renode/riscv_virtual/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/rockchip/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/rockchip/rk3399/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/rockchip/rk3568/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/sensry/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/sensry/ganymed/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/sensry/ganymed/sy1xx/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/sifive/sifive_freedom/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/sifive/sifive_freedom/fe300/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/sifive/sifive_freedom/fu500/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/sifive/sifive_freedom/fu700/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s0/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s0/efm32hg/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s0/efm32wg/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/efm32gg11b/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/efm32gg12b/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/efm32jg12b/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/efm32pg12b/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/efm32pg1b/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/efr32bg13p/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/efr32fg13p/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/efr32fg1p/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/efr32mg12p/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s2/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s2/efr32bg22/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s2/efr32bg27/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s2/efr32mg21/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s2/efr32mg24/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s2/efr32zg23/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_sim3/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_sim3/sim3u/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/snps/arc_iot/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/snps/emsdp/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/snps/emsk/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/snps/hsdk/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/snps/hsdk4xd/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_classic/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_classic/em/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_classic/hs/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_classic/sem/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_classic/vpx5/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_v/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_v/rmx/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/snps/qemu_arc/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32c0x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f0x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f1x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f2x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f3x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f4x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f7x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32g0x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32g4x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32h5x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32h7rsx/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32h7x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l0x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l1x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l4x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l5x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32mp1x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32u0x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32u5x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32wb0x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32wbax/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32wbx/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32wlx/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/starfive/jh71xx/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/telink/tlsr/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/telink/tlsr/tlsr951x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/ti/k3/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/ti/k3/am6x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/ti/lm3s6965/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/ti/simplelink/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/ti/simplelink/cc13x2_cc26x2/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/ti/simplelink/cc13x2x7_cc26x2x7/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/ti/simplelink/cc32xx/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/ti/simplelink/msp432p4xx/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/wch/ch32v00x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/xen/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/xlnx/zynq7000/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/xlnx/zynq7000/xc7zxxx/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/xlnx/zynq7000/xc7zxxxs/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/xlnx/zynqmp/Kconfig.soc CMakeCache.txt CMakeFiles/3.21.0/CMakeSystem.cmake Kconfig/Kconfig.sysbuild.modules Kconfig/boards/Kconfig.phf000_board Kconfig/boards/Kconfig.sysbuild Kconfig/soc/Kconfig.soc Kconfig/soc/Kconfig.sysbuild PHF000-Firmware/CMakeCache.tmp PHF000-Firmware/zephyr/.config PHF000-Firmware/zephyr/dts.cmake _sysbuild/autoconf.h _sysbuild/empty.conf _sysbuild/sysbuild/images/PHF000-Firmware-prefix/tmp/PHF000-Firmware-cfgcmd.txt.in zephyr/.config zephyr/snippets_generated.cmake + pool = console + + +############################################# +# A missing CMake input file is not an error. + +build /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/boards/Mi_labs/phf000_board/Kconfig.phf000_board /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/boards/Mi_labs/phf000_board/board.yml /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/share/cmake-3.21/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/share/cmake-3.21/Modules/CMakeGenericSystem.cmake /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/share/cmake-3.21/Modules/CMakeInitializeConfigs.cmake /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/share/cmake-3.21/Modules/CMakeSystemSpecificInformation.cmake /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/share/cmake-3.21/Modules/CMakeSystemSpecificInitialize.cmake /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/share/cmake-3.21/Modules/CheckCCompilerFlag.cmake /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/share/cmake-3.21/Modules/CheckCSourceCompiles.cmake /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/share/cmake-3.21/Modules/CheckCXXCompilerFlag.cmake /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/share/cmake-3.21/Modules/CheckCXXSourceCompiles.cmake /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/share/cmake-3.21/Modules/ExternalProject.cmake /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/share/cmake-3.21/Modules/FindPackageHandleStandardArgs.cmake /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/share/cmake-3.21/Modules/FindPackageMessage.cmake /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/share/cmake-3.21/Modules/FindPython/Support.cmake /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/share/cmake-3.21/Modules/FindPython3.cmake /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/share/cmake-3.21/Modules/Internal/CheckCompilerFlag.cmake /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/share/cmake-3.21/Modules/Internal/CheckSourceCompiles.cmake /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/share/cmake-3.21/Modules/Platform/Linux.cmake /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/share/cmake-3.21/Modules/Platform/UnixPaths.cmake /home/miguel/ncs/v3.0.2/bootloader/mcuboot/boot/zephyr/sysbuild/CMakeLists.txt /home/miguel/ncs/v3.0.2/nrf/cmake/extensions.cmake /home/miguel/ncs/v3.0.2/nrf/cmake/sysbuild/b0_mcuboot_signing.cmake /home/miguel/ncs/v3.0.2/nrf/cmake/sysbuild/modules/ncs_sysbuild_extensions.cmake /home/miguel/ncs/v3.0.2/nrf/cmake/sysbuild/partition_manager.cmake /home/miguel/ncs/v3.0.2/nrf/cmake/sysbuild/suit.cmake /home/miguel/ncs/v3.0.2/nrf/cmake/sysbuild/suit_provisioning.cmake /home/miguel/ncs/v3.0.2/nrf/cmake/sysbuild/suit_utilities.cmake /home/miguel/ncs/v3.0.2/nrf/modules/modules.cmake /home/miguel/ncs/v3.0.2/nrf/snippets/ci-shell/snippet.yml /home/miguel/ncs/v3.0.2/nrf/snippets/hpf/gpio/icbmsg/snippet.yml /home/miguel/ncs/v3.0.2/nrf/snippets/hpf/gpio/icmsg/snippet.yml /home/miguel/ncs/v3.0.2/nrf/snippets/hpf/gpio/mbox/snippet.yml /home/miguel/ncs/v3.0.2/nrf/snippets/hpf/mspi/snippet.yml /home/miguel/ncs/v3.0.2/nrf/snippets/hw-flow-control/snippet.yml /home/miguel/ncs/v3.0.2/nrf/snippets/matter-debug/snippet.yml /home/miguel/ncs/v3.0.2/nrf/snippets/matter-diagnostic-logs/snippet.yml /home/miguel/ncs/v3.0.2/nrf/snippets/matter-power-consumption-tests/snippet.yml /home/miguel/ncs/v3.0.2/nrf/snippets/nordic-bt-rpc/snippet.yml /home/miguel/ncs/v3.0.2/nrf/snippets/nrf54l09-switch-uart/snippet.yml /home/miguel/ncs/v3.0.2/nrf/snippets/nrf70-driver-debug/snippet.yml /home/miguel/ncs/v3.0.2/nrf/snippets/nrf70-driver-verbose-debug/snippet.yml /home/miguel/ncs/v3.0.2/nrf/snippets/nrf70-fw-patch-ext-flash/snippet.yml /home/miguel/ncs/v3.0.2/nrf/snippets/nrf70-wifi/snippet.yml /home/miguel/ncs/v3.0.2/nrf/snippets/nrf91-modem-trace-ext-flash/snippet.yml /home/miguel/ncs/v3.0.2/nrf/snippets/nrf91-modem-trace-ram/snippet.yml /home/miguel/ncs/v3.0.2/nrf/snippets/nrf91-modem-trace-rtt/snippet.yml /home/miguel/ncs/v3.0.2/nrf/snippets/nrf91-modem-trace-uart/snippet.yml /home/miguel/ncs/v3.0.2/nrf/snippets/tfm-enable-share-uart/snippet.yml /home/miguel/ncs/v3.0.2/nrf/snippets/wpa-supplicant-debug/snippet.yml /home/miguel/ncs/v3.0.2/nrf/snippets/zperf/snippet.yml /home/miguel/ncs/v3.0.2/nrf/soc/nordic/Kconfig.soc /home/miguel/ncs/v3.0.2/nrf/soc/nordic/nrf54l/Kconfig.soc /home/miguel/ncs/v3.0.2/nrf/soc/nordic/nrf71/Kconfig.soc /home/miguel/ncs/v3.0.2/nrf/subsys/bootloader/cmake/packaging.cmake /home/miguel/ncs/v3.0.2/nrf/sysbuild/CMakeLists.txt /home/miguel/ncs/v3.0.2/nrf/sysbuild/Kconfig.appcore /home/miguel/ncs/v3.0.2/nrf/sysbuild/Kconfig.approtect /home/miguel/ncs/v3.0.2/nrf/sysbuild/Kconfig.bt_fast_pair /home/miguel/ncs/v3.0.2/nrf/sysbuild/Kconfig.cracen /home/miguel/ncs/v3.0.2/nrf/sysbuild/Kconfig.dfu /home/miguel/ncs/v3.0.2/nrf/sysbuild/Kconfig.flprcore /home/miguel/ncs/v3.0.2/nrf/sysbuild/Kconfig.hpf /home/miguel/ncs/v3.0.2/nrf/sysbuild/Kconfig.lwm2m_carrier /home/miguel/ncs/v3.0.2/nrf/sysbuild/Kconfig.matter /home/miguel/ncs/v3.0.2/nrf/sysbuild/Kconfig.mcuboot /home/miguel/ncs/v3.0.2/nrf/sysbuild/Kconfig.netcore /home/miguel/ncs/v3.0.2/nrf/sysbuild/Kconfig.pprcore /home/miguel/ncs/v3.0.2/nrf/sysbuild/Kconfig.secureboot /home/miguel/ncs/v3.0.2/nrf/sysbuild/Kconfig.suit /home/miguel/ncs/v3.0.2/nrf/sysbuild/Kconfig.suit_provisioning /home/miguel/ncs/v3.0.2/nrf/sysbuild/Kconfig.sysbuild /home/miguel/ncs/v3.0.2/nrf/sysbuild/Kconfig.tfm /home/miguel/ncs/v3.0.2/nrf/sysbuild/Kconfig.wifi /home/miguel/ncs/v3.0.2/nrf/sysbuild/Kconfig.xip /home/miguel/ncs/v3.0.2/nrf/sysbuild/Kconfig.zip /home/miguel/ncs/v3.0.2/nrf/sysbuild/appcore.cmake /home/miguel/ncs/v3.0.2/nrf/sysbuild/extensions.cmake /home/miguel/ncs/v3.0.2/nrf/sysbuild/hpf.cmake /home/miguel/ncs/v3.0.2/nrf/sysbuild/mcuboot.cmake /home/miguel/ncs/v3.0.2/nrf/sysbuild/netcore.cmake /home/miguel/ncs/v3.0.2/nrf/sysbuild/secureboot.cmake /home/miguel/ncs/v3.0.2/nrf/sysbuild/suit.cmake /home/miguel/ncs/v3.0.2/nrf/sysbuild/suit_provisioning/Kconfig.nrf54h20 /home/miguel/ncs/v3.0.2/nrf/sysbuild/suit_provisioning/Kconfig.nrf9280 /home/miguel/ncs/v3.0.2/nrf/sysbuild/suit_provisioning/Kconfig.template.manifest_config /home/miguel/ncs/v3.0.2/zephyr/VERSION /home/miguel/ncs/v3.0.2/zephyr/boards/Kconfig.v2 /home/miguel/ncs/v3.0.2/zephyr/boards/deprecated.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/modules/FindDeprecated.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/modules/boards.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/modules/extensions.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/modules/hwm_v2.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/modules/kconfig.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/modules/python.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/modules/shields.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/modules/snippets.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/modules/user_cache.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/modules/version.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/modules/west.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/modules/yaml.cmake /home/miguel/ncs/v3.0.2/zephyr/cmake/modules/zephyr_module.cmake /home/miguel/ncs/v3.0.2/zephyr/modules/Kconfig.sysbuild /home/miguel/ncs/v3.0.2/zephyr/modules/modules.cmake /home/miguel/ncs/v3.0.2/zephyr/scripts/snippets.py /home/miguel/ncs/v3.0.2/zephyr/share/sysbuild-package/cmake/SysbuildConfig.cmake /home/miguel/ncs/v3.0.2/zephyr/share/sysbuild-package/cmake/SysbuildConfigVersion.cmake /home/miguel/ncs/v3.0.2/zephyr/share/sysbuild/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/share/sysbuild/Kconfig /home/miguel/ncs/v3.0.2/zephyr/share/sysbuild/Kconfig.v2 /home/miguel/ncs/v3.0.2/zephyr/share/sysbuild/build/Kconfig /home/miguel/ncs/v3.0.2/zephyr/share/sysbuild/cmake/domains.cmake /home/miguel/ncs/v3.0.2/zephyr/share/sysbuild/cmake/modules/native_simulator_sb_extensions.cmake /home/miguel/ncs/v3.0.2/zephyr/share/sysbuild/cmake/modules/sysbuild_default.cmake /home/miguel/ncs/v3.0.2/zephyr/share/sysbuild/cmake/modules/sysbuild_extensions.cmake /home/miguel/ncs/v3.0.2/zephyr/share/sysbuild/cmake/modules/sysbuild_images.cmake /home/miguel/ncs/v3.0.2/zephyr/share/sysbuild/cmake/modules/sysbuild_kconfig.cmake /home/miguel/ncs/v3.0.2/zephyr/share/sysbuild/cmake/modules/sysbuild_root.cmake /home/miguel/ncs/v3.0.2/zephyr/share/sysbuild/cmake/modules/sysbuild_snippets.cmake /home/miguel/ncs/v3.0.2/zephyr/share/sysbuild/image_configurations/ALL_image_default.cmake /home/miguel/ncs/v3.0.2/zephyr/share/sysbuild/image_configurations/MAIN_image_default.cmake /home/miguel/ncs/v3.0.2/zephyr/share/sysbuild/images/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/share/sysbuild/images/Kconfig /home/miguel/ncs/v3.0.2/zephyr/share/sysbuild/images/boards/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/share/sysbuild/images/bootloader/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/share/sysbuild/images/bootloader/Kconfig /home/miguel/ncs/v3.0.2/zephyr/share/sysbuild/images/soc/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/share/sysbuild/template/CMakeLists.txt /home/miguel/ncs/v3.0.2/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake /home/miguel/ncs/v3.0.2/zephyr/share/zephyr-package/cmake/ZephyrConfigVersion.cmake /home/miguel/ncs/v3.0.2/zephyr/share/zephyr-package/cmake/zephyr_package_search.cmake /home/miguel/ncs/v3.0.2/zephyr/snippets/bt-ll-sw-split/snippet.yml /home/miguel/ncs/v3.0.2/zephyr/snippets/cdc-acm-console/snippet.yml /home/miguel/ncs/v3.0.2/zephyr/snippets/nordic-flpr-xip/snippet.yml /home/miguel/ncs/v3.0.2/zephyr/snippets/nordic-flpr/snippet.yml /home/miguel/ncs/v3.0.2/zephyr/snippets/nordic-log-stm-dict/snippet.yml /home/miguel/ncs/v3.0.2/zephyr/snippets/nordic-log-stm/snippet.yml /home/miguel/ncs/v3.0.2/zephyr/snippets/nordic-ppr-xip/snippet.yml /home/miguel/ncs/v3.0.2/zephyr/snippets/nordic-ppr/snippet.yml /home/miguel/ncs/v3.0.2/zephyr/snippets/nus-console/snippet.yml /home/miguel/ncs/v3.0.2/zephyr/snippets/ram-console/snippet.yml /home/miguel/ncs/v3.0.2/zephyr/snippets/rtt-console/snippet.yml /home/miguel/ncs/v3.0.2/zephyr/snippets/rtt-tracing/snippet.yml /home/miguel/ncs/v3.0.2/zephyr/snippets/serial-console/snippet.yml /home/miguel/ncs/v3.0.2/zephyr/snippets/wifi-enterprise/snippet.yml /home/miguel/ncs/v3.0.2/zephyr/snippets/wifi-ipv4/snippet.yml /home/miguel/ncs/v3.0.2/zephyr/snippets/xen_dom0/snippet.yml /home/miguel/ncs/v3.0.2/zephyr/soc/Kconfig.v2 /home/miguel/ncs/v3.0.2/zephyr/soc/adi/max32/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/altr/qemu_nios2/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/altr/zephyr_nios2f/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/ambiq/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/ambiq/apollo3x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/ambiq/apollo4x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/amd/acp_6_0/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/andestech/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/andestech/ae350/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/arm/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/arm/beetle/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/arm/designstart/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/arm/fvp_aemv8a/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/arm/fvp_aemv8r/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/arm/mps2/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/arm/mps3/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/arm/musca/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/arm/qemu_cortex_a53/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/arm/qemu_virt_arm64/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/aspeed/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/aspeed/ast10x0/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam/sam3x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam/sam4e/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam/sam4l/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam/sam4s/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam/same70/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam/samv71/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/samc20/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/samc21/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/samd20/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/samd21/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/samd51/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/same51/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/same53/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/same54/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/saml21/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/samr21/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/samr34/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/samr35/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/brcm/bcm2711/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/brcm/bcm2712/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/brcm/bcmvk/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/brcm/bcmvk/valkyrie/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/brcm/bcmvk/viper/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/cdns/dc233c/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/cdns/sample_controller32/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/cdns/xtensa_sample_controller/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/efinix/sapphire/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/ene/kb1200/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/espressif/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/espressif/Kconfig.sysbuild /home/miguel/ncs/v3.0.2/zephyr/soc/espressif/esp32/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/espressif/esp32c2/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/espressif/esp32c3/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/espressif/esp32c6/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/espressif/esp32s2/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/espressif/esp32s3/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/gaisler/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/gaisler/gr716a/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/gaisler/leon3/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32a50x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32e10x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32e50x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32f3x0/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32f403/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32f4xx/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32l23x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32vf103/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat1a/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat1a/psoc6_01/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat1a/psoc6_02/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat1a/psoc6_03/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat1a/psoc6_04/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat1a/psoc6_legacy/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat1b/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat1b/cyw20829/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat3/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat3/xmc4xxx/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/intel/alder_lake/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/intel/apollo_lake/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/intel/atom/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/intel/elkhart_lake/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_adsp/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_adsp/ace/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_adsp/cavs/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_ish/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_ish/intel_ish5/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_niosv/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_niosv/niosv/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_socfpga/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_socfpga/agilex/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_socfpga/agilex5/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_socfpga_std/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_socfpga_std/cyclonev/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/intel/lakemont/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/intel/raptor_lake/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/ite/ec/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/ite/ec/it8xxx2/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/litex/litex_vexriscv/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/lowrisc/opentitan/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/mediatek/mt8xxx/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/microchip/mec/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/microchip/mec/mec15xx/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/microchip/mec/mec172x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/microchip/mec/mec174x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/microchip/mec/mec175x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/microchip/mec/mech172x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/microchip/miv/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/microchip/miv/miv/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/microchip/miv/polarfire/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/native/inf_clock/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/neorv32/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/Kconfig.sysbuild /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/vpr/Kconfig.sysbuild /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf51/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf53/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf54h/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf54l/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf91/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf92/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nordic/sysbuild.cmake /home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/npcm/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/npcm/npcm4/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/npcx/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/npcx/npcx4/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/npcx/npcx7/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/npcx/npcx9/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/numaker/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/numaker/m2l31x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/numaker/m46x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/numicro/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/numicro/m48x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx6sx/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx7d/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx8/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx8m/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx8ulp/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx8x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx9/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx9/imx93/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx9/imx95/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imxrt/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imxrt/Kconfig.sysbuild /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imxrt/imxrt10xx/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imxrt/imxrt118x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imxrt/imxrt11xx/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imxrt/imxrt5xx/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imxrt/imxrt6xx/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/k2x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/k6x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/k8x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/ke1xf/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/ke1xz/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/kl2x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/kv5x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/kwx/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/layerscape/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/layerscape/ls1046a/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/lpc/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/lpc/lpc11u6x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/lpc/lpc51u68/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/lpc/lpc54xxx/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/lpc/lpc55xxx/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/mcx/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/mcx/mcxa/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/mcx/mcxc/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/mcx/mcxn/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/mcx/mcxw/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/rw/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/s32/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/s32/s32k1/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/s32/s32k3/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/nxp/s32/s32ze/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/openisa/rv32m1/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/qemu/malta/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/qemu/virt_riscv/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/qemu/virt_riscv/qemu_virt_riscv32/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/qemu/virt_riscv/qemu_virt_riscv32e/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/qemu/virt_riscv/qemu_virt_riscv64/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/quicklogic/eos_s3/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/raspberrypi/rpi_pico/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/raspberrypi/rpi_pico/rp2040/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/raspberrypi/rpi_pico/rp2350/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/realtek/ec/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/realtek/ec/rts5912/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra2a1/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra4e2/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra4m1/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra4m2/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra4m3/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra4w1/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra6e1/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra6e2/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra6m1/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra6m2/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra6m3/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra6m4/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra6m5/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra8d1/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra8m1/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra8t1/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/rcar/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/rcar/rcar_gen3/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/rcar/rcar_gen4/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/rz/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/rz/rzg3s/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/rzt2m/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/smartbond/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/renesas/smartbond/da1469x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/renode/cortex_r8_virtual/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/renode/riscv_virtual/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/rockchip/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/rockchip/rk3399/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/rockchip/rk3568/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/sensry/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/sensry/ganymed/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/sensry/ganymed/sy1xx/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/sifive/sifive_freedom/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/sifive/sifive_freedom/fe300/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/sifive/sifive_freedom/fu500/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/sifive/sifive_freedom/fu700/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s0/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s0/efm32hg/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s0/efm32wg/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/efm32gg11b/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/efm32gg12b/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/efm32jg12b/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/efm32pg12b/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/efm32pg1b/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/efr32bg13p/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/efr32fg13p/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/efr32fg1p/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/efr32mg12p/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s2/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s2/efr32bg22/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s2/efr32bg27/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s2/efr32mg21/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s2/efr32mg24/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s2/efr32zg23/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_sim3/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_sim3/sim3u/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/snps/arc_iot/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/snps/emsdp/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/snps/emsk/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/snps/hsdk/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/snps/hsdk4xd/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_classic/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_classic/em/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_classic/hs/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_classic/sem/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_classic/vpx5/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_v/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_v/rmx/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/snps/qemu_arc/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32c0x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f0x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f1x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f2x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f3x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f4x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f7x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32g0x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32g4x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32h5x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32h7rsx/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32h7x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l0x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l1x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l4x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l5x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32mp1x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32u0x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32u5x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32wb0x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32wbax/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32wbx/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32wlx/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/starfive/jh71xx/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/telink/tlsr/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/telink/tlsr/tlsr951x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/ti/k3/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/ti/k3/am6x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/ti/lm3s6965/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/ti/simplelink/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/ti/simplelink/cc13x2_cc26x2/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/ti/simplelink/cc13x2x7_cc26x2x7/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/ti/simplelink/cc32xx/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/ti/simplelink/msp432p4xx/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/wch/ch32v00x/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/xen/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/xlnx/zynq7000/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/xlnx/zynq7000/xc7zxxx/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/xlnx/zynq7000/xc7zxxxs/Kconfig.soc /home/miguel/ncs/v3.0.2/zephyr/soc/xlnx/zynqmp/Kconfig.soc CMakeCache.txt CMakeFiles/3.21.0/CMakeSystem.cmake Kconfig/Kconfig.sysbuild.modules Kconfig/boards/Kconfig.phf000_board Kconfig/boards/Kconfig.sysbuild Kconfig/soc/Kconfig.soc Kconfig/soc/Kconfig.sysbuild PHF000-Firmware/CMakeCache.tmp PHF000-Firmware/zephyr/.config PHF000-Firmware/zephyr/dts.cmake _sysbuild/autoconf.h _sysbuild/empty.conf _sysbuild/sysbuild/images/PHF000-Firmware-prefix/tmp/PHF000-Firmware-cfgcmd.txt.in zephyr/.config zephyr/snippets_generated.cmake: phony + + +############################################# +# Clean all the built files. + +build clean: CLEAN + + +############################################# +# Print all primary targets available. + +build help: HELP + + +############################################# +# Make the all target the default. + +default all diff --git a/build/build_info.yml b/build/build_info.yml new file mode 100644 index 0000000..67494bb --- /dev/null +++ b/build/build_info.yml @@ -0,0 +1,25 @@ +cmake: + application: + source-dir: /home/miguel/ncs/v3.0.2/zephyr/share/sysbuild + board: + name: phf000_board + path: + - /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/boards/Mi_labs/phf000_board + qualifiers: nrf52833 + revision: + images: + - name: PHF000-Firmware + source-dir: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware + type: MAIN + kconfig: + files: + - /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild/empty.conf + - /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild/empty.conf + user-files: + - /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild/empty.conf + sysbuild: true +version: 0.1.0 +west: + command: /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/west build --build-dir /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build /home/miguel/Documents/GardenProject/Software/PHF000-Firmware --pristine --board phf000_board/nrf52833 --sysbuild -- -DCONF_FILE=prj.conf -DCONFIG_SPEED_OPTIMIZATIONS=y -DBOARD_ROOT=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware + topdir: /home/miguel/ncs/v3.0.2 + version: 1.2.0 diff --git a/build/build_info.yml.bak b/build/build_info.yml.bak new file mode 100644 index 0000000..014807c --- /dev/null +++ b/build/build_info.yml.bak @@ -0,0 +1,25 @@ +cmake: + application: + source-dir: /home/miguel/ncs/v3.0.2/zephyr/share/sysbuild + board: + name: phf000_board + path: + - /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/boards/Mi_labs/phf000_board + qualifiers: nrf52833 + revision: + images: + - name: PHF000-Firmware + source-dir: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware + type: MAIN + kconfig: + files: + - /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild/empty.conf + - /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild/empty.conf + user-files: + - /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild/empty.conf + sysbuild: ON +version: 0.1.0 +west: + command: /home/miguel/ncs/toolchains/7cbc0036f4/usr/local/bin/west build --build-dir /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build /home/miguel/Documents/GardenProject/Software/PHF000-Firmware --pristine --board phf000_board/nrf52833 --sysbuild -- -DCONF_FILE=prj.conf -DCONFIG_SPEED_OPTIMIZATIONS=y -DBOARD_ROOT=/home/miguel/Documents/GardenProject/Software/PHF000-Firmware + topdir: /home/miguel/ncs/v3.0.2 + version: 1.2.0 diff --git a/build/cmake_install.cmake b/build/cmake_install.cmake new file mode 100644 index 0000000..d9d1d41 --- /dev/null +++ b/build/cmake_install.cmake @@ -0,0 +1,54 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/zephyr/share/sysbuild + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Install shared libraries without execute permission? +if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) + set(CMAKE_INSTALL_SO_NO_EXE "1") +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/_sysbuild/cmake_install.cmake") +endif() + +if(CMAKE_INSTALL_COMPONENT) + set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") +else() + set(CMAKE_INSTALL_MANIFEST "install_manifest.txt") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +file(WRITE "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/${CMAKE_INSTALL_MANIFEST}" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") diff --git a/build/domains.yaml b/build/domains.yaml new file mode 100644 index 0000000..19304e3 --- /dev/null +++ b/build/domains.yaml @@ -0,0 +1,7 @@ +default: PHF000-Firmware +build_dir: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build +domains: + - name: PHF000-Firmware + build_dir: /home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/PHF000-Firmware +flash_order: + - PHF000-Firmware \ No newline at end of file diff --git a/build/merged.hex b/build/merged.hex new file mode 100644 index 0000000..5a9510d --- /dev/null +++ b/build/merged.hex @@ -0,0 +1,4295 @@ +:020000040000FA +:10000000C0300020C545000085410000B14500001A +:10001000B1450000B1450000B145000000000000FE +:100020000000000000000000000000003547000054 +:10003000B145000000000000D1460000B1450000BD +:1000400071490000714900007149000071490000C8 +:1000500071490000714900007149000071490000B8 +:1000600071490000714900007149000071490000A8 +:100070007149000071490000714900007149000098 +:100080007149000071490000714900007149000088 +:100090007149000071490000714900007149000078 +:1000A0007149000071490000714900007149000068 +:1000B0007149000071490000714900007149000058 +:1000C0007149000071490000714900007149000048 +:1000D0007149000071490000714900007149000038 +:1000E0007149000071490000714900007149000028 +:1000F0007149000071490000714900007149000018 +:100100004FF0FF0C1CEAD0521EBF1CEAD15392EAFA +:100110000C0F93EA0C0F6FD01A4480EA010C4002D6 +:1001200018BF5FEA41211ED04FF0006343EA501030 +:1001300043EA5111A0FB01310CF00040B1F5000F72 +:100140003EBF490041EAD3715B0040EA010062F121 +:100150007F02FD2A1DD8B3F1004F40EBC25008BF0B +:1001600020F00100704790F0000F0CF0004C08BF29 +:1001700049024CEA502040EA51207F3AC2BFD2F1F6 +:10018000FF0340EAC250704740F400004FF0000304 +:10019000013A5DDC12F1190FDCBF00F0004070473E +:1001A000C2F10002410021FA02F1C2F1200200FA7C +:1001B00002FC5FEA310040F1000053EA4C0308BF43 +:1001C00020EADC70704792F0000F00F0004C02BF94 +:1001D000400010F4000F013AF9D040EA0C0093F00F +:1001E000000F01F0004C02BF490011F4000F013B69 +:1001F000F9D041EA0C018FE70CEAD15392EA0C0FD7 +:1002000018BF93EA0C0F0AD030F0004C18BF31F041 +:10021000004CD8D180EA010000F00040704790F017 +:10022000000F17BF90F0004F084691F0000F91F0BB +:10023000004F14D092EA0C0F01D142020FD193EA81 +:100240000C0F03D14B0218BF084608D180EA010009 +:1002500000F0004040F0FE4040F40000704740F0E5 +:10026000FE4040F44000704780F0004002E000BFD4 +:1002700081F0004142001FBF5FEA410392EA030F91 +:100280007FEA226C7FEA236C6AD04FEA1262D2EBDB +:100290001363C1BFD218414048404140B8BF5B42E0 +:1002A000192B88BF704710F0004F40F4000020F079 +:1002B0007F4018BF404211F0004F41F4000121F08F +:1002C0007F4118BF494292EA030F3FD0A2F10102D9 +:1002D00041FA03FC10EB0C00C3F1200301FA03F117 +:1002E00000F0004302D5494260EB4000B0F5000F3A +:1002F00013D3B0F1807F06D340084FEA310102F1F9 +:100300000102FE2A51D2B1F1004F40EBC25008BFAA +:1003100020F0010040EA03007047490040EB000074 +:10032000013A28BFB0F5000FEDD2B0FA80FCACF175 +:10033000080CB2EB0C0200FA0CF0AABF00EBC250A2 +:1003400052421843BCBFD0401843704792F0000F90 +:1003500081F4000106BF80F400000132013BB5E7E3 +:100360004FEA41037FEA226C18BF7FEA236C21D059 +:1003700092EA030F04D092F0000F08BF08467047BE +:1003800090EA010F1CBF0020704712F07F4F04D18C +:10039000400028BF40F00040704712F100723CBF9F +:1003A00000F50000704700F0004343F0FE4040F4C9 +:1003B000000070477FEA226216BF08467FEA236387 +:1003C0000146420206BF5FEA412390EA010F40F472 +:1003D000800070474FF0000304E000BF10F00043BE +:1003E00048BF40425FEA000C08BF704743F09643A5 +:1003F00001464FF000001CE050EA010208BF7047C0 +:100400004FF000030AE000BF50EA010208BF704746 +:1004100011F0004302D5404261EB41015FEA010C5B +:1004200002BF84460146002043F0B64308BFA3F153 +:100430008053A3F50003BCFA8CF2083AA3EBC25335 +:1004400010DB01FA02FC634400FA02FCC2F1200254 +:10045000BCF1004F20FA02F243EB020008BF20F08B +:100460000100704702F1200201FA02FCC2F12002F1 +:1004700050EA4C0021FA02F243EB020008BF20EAE6 +:10048000DC7070474FEA4002B2F1FE4F0FD34FF0DD +:100490009E03B3EB12620DD94FEA002343F00043F1 +:1004A00010F0004F23FA02F018BF404270474FF09F +:1004B0000000704712F1610F01D1420205D110F026 +:1004C000004008BF6FF0004070474FF000007047D9 +:1004D00053B94AB9002908BF00281CBF4FF0FF31AB +:1004E0004FF0FF3000F00CB8ADF1080C6DE904CE10 +:1004F00000F010F8DDF804E0DDE9022304B07047F5 +:10050000704700BF034613F8012B002AFBD1181ACD +:10051000013870472DE9F04786468C460846089E0C +:10052000154674461946002B40F0C2808542B2FA47 +:1005300082F245D94AB1C2F1200300FA02FC2EFA38 +:1005400003F3954043EA0C0C94404FEA154EA8B2D1 +:10055000BCFBFEF8230C0EFB18CC08FB00F943EAA9 +:100560000C43994528D9EB1808F1FF3704D2994577 +:1005700002D9A8F102072B44A3EB0903A4B2B3FBF1 +:10058000FEFC0EFB1C330CFB00F044EA0344A042CB +:1005900014D92C190CF1FF3304D2A04202D9ACF1CA +:1005A00002032C44241A43EA07401EB1D44000231E +:1005B00034607360BDE8F0874746DDE76346F1E7E6 +:1005C00092BB431B01214FEA154EAFB2B3FBFEFCB9 +:1005D000200C0EFB1C330CFB07F840EA0343984544 +:1005E00062D9EB180CF1FF3004D2984502D9ACF176 +:1005F00002002B44A3EB0803A4B2B3FBFEFC0EFBEA +:100600001C330CFB07F744EA0344A7424ED92C19CC +:100610000CF1FF3304D2A74202D9ACF102032C44FF +:10062000E41B43EA0040C0E7C2F1200320FA03F1D3 +:10063000954090402EFA03F303434FEA154EAFB2B4 +:10064000B1FBFEFC0EFB1C10190C0CFB07F841EA79 +:100650000041884504FA02F422D969180CF1FF30F0 +:1006600004D2884502D9ACF102002944A1EB08016B +:100670009BB2B1FBFEFC0EFB1C110CFB07F743EA1F +:1006800001439F420ED9EB180CF1FF3104D29F4277 +:1006900002D9ACF102012B44DB1B41EA004192E795 +:1006A0006046E3E76146F7E76046A3E76346B7E7DE +:1006B000834206D916B9002108467BE7C6E900E067 +:1006C000F9E7B3FA83F78FB9834201D3724508D8AB +:1006D000BEEB020460EB030301209C461EB900211F +:1006E00068E73846FAE7C6E9004CF8E7C7F1200C9E +:1006F000BB4022FA0CF41C432EFA0CF120FA0CF346 +:10070000B84001434FEA14490EFA07F5B3FBF9F874 +:100710001FFA84FE09FB18300B0C08FB0EFA43EAA3 +:1007200000439A4502FA07F240D9E31808F1FF3076 +:1007300004D29A4502D9A8F102002344A3EB0A038C +:1007400089B2B3FBF9F809FB183308FB0EFE41EA46 +:1007500003418E452CD9611808F1FF3304D28E4530 +:1007600002D9A8F10203214443EA0040A0FB029809 +:10077000A1EB0E014145CE46434602D306D14D457D +:1007800004D2B9EB020E68EB04030138002EA6D0A8 +:10079000B5EB0E0261EB030101FA0CFC22FA07F340 +:1007A0004CEA0303F940C6E9003198E74046C5E743 +:1007B0004346D9E7704700BF2DE9F041002082B0E1 +:1007C00002F0BAFC002867D100F096F900F03AFA7E +:1007D00000F06AFB00F0EEFB011E68DB00F0B6FCE7 +:1007E000011E60DB00F05AFD00F028FE4FF47A7124 +:1007F000002000F0E9F9684600F02AFC2E4F2F4E49 +:100800002F4D0124014640BB0099304601F05AFAB1 +:1008100001A800F0A7FC014640BB0199294801F05E +:1008200051FA00F045FE011E04DB274801F04AFAA8 +:1008300000F004FE00F044FAB0F1000824DB27D1F8 +:10084000C4B94446002140F267600CF03DF86846A8 +:1008500000F0FEFB01460028D6D0384601F032FAFF +:1008600001A800F07FFC01460028D6D0284601F000 +:1008700029FAD6E700F032FB00F054FB00F076FBDB +:10088000012000F06DF9DCE7104801F01BFAD9E710 +:100890000F4801F017FAD4E70E4801F013FA0020D0 +:1008A00002B0BDE8F0810C4801F00CFA9AE70B4861 +:1008B00001F008FA92E700BF9CE500008CE500001B +:1008C000D4E50000C0E50000F4E5000008E6000003 +:1008D00020E6000038E500006CE500004CE5000073 +:1008E0002DE9F04112F0FC6FD0E9017605696AD17B +:1008F000134602F03002302A56D0494A494C1A4079 +:10090000A24242D003F00602042A32D013F440225D +:1009100007D09C0375D5B2F5402F1BD0424A9A43AD +:1009200015D03C684FF0010C0CFA01FC1CEA040FD6 +:1009300023F4801256D02C68DB074CBF4CEA040429 +:1009400024EA0C042C603368BDE8F041184783F4B6 +:100950004023E6E73549364A364840F2EF3301F0A6 +:10096000EDF9354801F0EAF9314840F2EF3101F094 +:10097000DBF932492F482E4A4FF47A7301F0DEF941 +:100980002B484FF47A7101F0CFF92D49284A2948B4 +:1009900040F2E53301F0D2F92A4801F0CFF92448BA +:1009A00040F2E53101F0C0F92749214A214840F2DF +:1009B000E13301F0C3F9254801F0C0F91C4840F2C9 +:1009C000E13101F0B1F92249194A1A4840F2DE3307 +:1009D00001F0B4F91F4801F0B1F9154840F2DE31D9 +:1009E00001F0A2F91C49124A124840F2FB3301F00F +:1009F000A5F91A4801F0A2F90D4840F2FB3101F0C7 +:100A000093F917490A4A0B4840F2EB3301F096F983 +:100A1000144801F093F9064840F2EB3101F084F9F3 +:100A2000020003000200010001001000D8E80000ED +:100A300034E60000C8E600001CE9000020E80000E1 +:100A400088E70000D0E700000CE7000048E700005E +:100A500068E60000E8E6000048E9000088E90000D8 +:100A600054E800009CE800000C4843681B689B05A4 +:100A700004D583684FF400715B6918470849094A37 +:100A8000094810B540F2B56301F058F9074801F084 +:100A900055F9044840F2B56101F046F980E20000E2 +:100AA00048E9000034E60000C8E6000088E90000DC +:100AB0000C4843681B689B0603D5836820215B694B +:100AC00018470949094A0A4810B540F2B56301F0D0 +:100AD00035F9084801F032F9044840F2B56101F0F7 +:100AE00023F900BF94E2000048E9000034E600006A +:100AF000C8E6000088E9000008B5114809F058FB75 +:100B000018B1104809F054FB20B9BDE808400E4860 +:100B100001F0D8B80D4A0A480521FFF7E1FE0B4A5B +:100B200008480921FFF7DCFE09490A4800220CF0B9 +:100B30005BFEBDE808400849084800220CF054BE9E +:100B400094E2000080E200009CE900000100160031 +:100B5000B10A0000A0080020690A0000680800200F +:100B600010B1012809D07047114843681B689A06E4 +:100B70000DD5836820215B6918470E4843681B68C0 +:100B80009B0504D583684FF400715B6918470A49D7 +:100B90000A4A0B4810B540F2B56301F0CFF8094896 +:100BA00001F0CCF8054840F2B56101F0BDF800BF96 +:100BB00094E2000080E2000048E9000034E6000012 +:100BC000C8E6000088E9000000B583B020B1012824 +:100BD0001BD003B05DF804FB21EAE1734FF4004C35 +:100BE000014640F2E732C3FB0C21104600234FF4CC +:100BF0007A72FFF76DFC02460B461048CDE90021E2 +:100C00000CF002FE03B05DF804FB21EAE1734FF43F +:100C1000004240F2E7300021C3FB02014FF47A7238 +:100C20000023FFF755FC02460B460548CDE900219D +:100C30000CF0EAFD03B05DF804FB00BFA008002043 +:100C40006808002010B582B0164C204609F0B0FAB2 +:100C500098B1D4E901321B6821690192DB0012D5F9 +:100C60000B68114A43F080530B60019B1B681C21E9 +:100C7000204602B0BDE8104018470C4802B0BDE85D +:100C8000104001F01FB80A490A4A0B4840F2FB33F2 +:100C900001F054F8094801F051F8064840F2FB31E0 +:100CA00001F042F894E2000011000100B4E90000F4 +:100CB00048E9000034E60000C8E6000088E90000CA +:100CC00000B5124843681B68DB0085B00FD5036987 +:100CD0000193836803A95B68984728B9019B03982F +:100CE0001B685840C0F3007005B05DF804FB08496C +:100CF000084A094840F2336301F020F8074801F040 +:100D00001DF8044840F2336101F00EF894E200004F +:100D100048E9000034E60000C8E6000088E9000069 +:100D20002DE9F04112F0FC6FD0E9017605696AD136 +:100D3000134602F03002302A56D0494A494C1A4034 +:100D4000A24242D003F00602042A32D013F4402219 +:100D500007D09C0375D5B2F5402F1BD0424A9A4369 +:100D600015D03C684FF0010C0CFA01FC1CEA040F92 +:100D700023F4801256D02C68DB074CBF4CEA0404E5 +:100D800024EA0C042C603368BDE8F041184783F472 +:100D90004023E6E73549364A364840F2EF3300F063 +:100DA000CDFF354800F0CAFF314840F2EF3100F086 +:100DB000BBFF32492F482E4A4FF47A7300F0BEFF32 +:100DC0002B484FF47A7100F0AFFF2D49284A29488B +:100DD00040F2E53300F0B2FF2A4800F0AFFF2448AC +:100DE00040F2E53100F0A0FF2749214A214840F2B6 +:100DF000E13300F0A3FF254800F0A0FF1C4840F2BB +:100E0000E13100F091FF2249194A1A4840F2DE33DD +:100E100000F094FF1F4800F091FF154840F2DE31CA +:100E200000F082FF1C49124A124840F2FB3300F0E6 +:100E300085FF1A4800F082FF0D4840F2FB3100F0B8 +:100E400073FF17490A4A0B4840F2EB3300F076FF74 +:100E5000144800F073FF064840F2EB3100F064FFE5 +:100E6000020003000200010001001000D8E80000A9 +:100E700034E60000C8E600001CE9000020E800009D +:100E800088E70000D0E700000CE7000048E700001A +:100E900068E60000E8E6000048E9000088E9000094 +:100EA00054E800009CE8000010B50A4C4FF4B01262 +:100EB0000A212046FFF734FF074A03212046FFF7A7 +:100EC0002FFF4FF4B01220460921BDE81040FFF774 +:100ED00027BF00BF94E20000000216000C484368E0 +:100EE0001B685B0504D583684FF480615B69184714 +:100EF0000849094A094810B540F2B56300F01EFFE1 +:100F0000074800F01BFF044840F2B56100F00CFFF9 +:100F100094E2000048E9000034E60000C8E6000062 +:100F200088E900000C4843681B681B0703D58368E9 +:100F300008215B6918470949094A0A4810B540F277 +:100F4000B56300F0FBFE084800F0F8FE044840F2EC +:100F5000B56100F0E9FE00BF94E2000048E900003E +:100F600034E60000C8E6000088E900000C48436849 +:100F70001B689B0504D583684FF400715B691847B3 +:100F80000849094A094810B540F2B56300F0D6FE99 +:100F9000074800F0D3FE044840F2B56100F0C4FEFB +:100FA00094E2000048E9000034E60000C8E60000D2 +:100FB00088E9000010B582B01C4C204609F0F8F812 +:100FC000F0B11B48D0E901321B6801929B00026915 +:100FD0001DD5136823F000531360019B4FF4C0220A +:100FE0001B681D219847A36812491B682046984733 +:100FF00020B9114B40210C2259601A8202B010BD59 +:101000000E4800F05FFE6FF0120002B010BD0C49F8 +:101010000C4A0D4840F2FB3300F090FE0B4800F004 +:101020008DFE084840F2FB3100F07EFEBCE200007D +:1010300094E20000E6E9000010060020D0E900007C +:1010400048E9000034E60000C8E6000088E9000036 +:101050002DE9F041344E736832691B6884B09C00FE +:10106000019251D5019B1B6807469900B3684FF068 +:10107000005154BFDB681B69304698470021A4200B +:101080000BF022FC29482A4985686B68984704467A +:1010900018B1204604B0BDE8F081DFF898802B89B4 +:1010A000D8F8002003A902FB03F3039306F0B8FA73 +:1010B000044618B9039B1B13C8F80030D8F8000089 +:1010C000FFF788F91C49FFF71BF8FFF7DBF9736896 +:1010D00038601A683369920016D51B689B0009D5E1 +:1010E000B3681148DB684FF000519847204604B0C0 +:1010F000BDE8F081B3680C481B694FF00051984778 +:10110000204604B0BDE8F0810C490D4A0D4840F27C +:101110008C6300F013FE0C4800F010FE084840F20B +:101120008C6100F001FE00BF94E20000BCE2000010 +:1011300010060020E80F0020ED25B43F48E900002C +:1011400034E60000C8E6000088E9000000B583B07E +:101150000723002101A88DF8043008F02DFF03B00B +:101160005DF804FB10B5044608F05AFF044BD3F8B1 +:101170000835002BB8BF03339B102360002010BD3F +:1011800000C000401D4BD3F8402102B9704730B574 +:101190001B491C4C01220020C3F84001C3F8440144 +:1011A0000A641948D1F8405505601848DA600225EC +:1011B000CA60416825605A600B68026983B0019279 +:1011C0005A070BD5019B1B685B07836854BF1B69DB +:1011D000DB68042103B0BDE8304018470C490D4AD4 +:1011E0000D4840F28C6300F0A9FD0C4800F0A6FD0C +:1011F000084840F28C6100F097FD00BF009000406D +:1012000000A00040EC0F0020F00F002094E200004E +:1012100048E9000034E60000C8E6000088E9000064 +:1012200008B543090DD0012B25D017491748184A96 +:101230004FF46C7300F082FD15484FF46C7100F0B0 +:1012400073FD4FF0FF33C340D907EED503464FF08F +:10125000A04202EB830200F18050D2F800170D4B40 +:1012600000F5CC500B40800043F00C030121C2F884 +:101270000037016008BD00F01F0340F2FF32DA4082 +:10128000D207D2D5044AE4E728EA0000C8E6000005 +:10129000F4E90000F0F8FCFF0003005010B55B4BD0 +:1012A0004FF4007282B0C3F880211A600022052139 +:1012B000092003F081FA564C204608F079FF0028F7 +:1012C00000F08980D4E901321B68216901925B0733 +:1012D00040F18D800B6823F004030B60019B4FF4F9 +:1012E00020221B68022120469847002879DB0B202A +:1012F000FFF796FF4749484B012202204A6000242D +:10130000C1F80425C1F808050420CA60C1F84041AD +:101310005A60C3F80445C3F810054CF25030C3F8C6 +:1013200040050320C3F84425C3F808054FF4803076 +:10133000DA60C3F804033948C3F84041C3F84441B4 +:10134000C0F81025D0F81025354C42F43062C0F8B2 +:101350001025D0F8102503F5B03342F48032C0F8E0 +:101360001025D3F8002500F58040083042F0020235 +:10137000C3F80025C3F81845C3F81C05D3F80425A5 +:1013800042F00202C3F80425D3F8002504F54154C5 +:10139000043842F00402C3F80025C3F82045C3F81E +:1013A0002405D3F8042542F00402C3F80425D3F839 +:1013B0000025A0F56C6042F01002C3F80025C3F8C8 +:1013C0003005C3F83415D3F8042542F01002C3F8F1 +:1013D000042502B010BD134802B0BDE8104000F073 +:1013E00071BC114802B0BDE8104000F06BBC0F4961 +:1013F0000F4A104840F2FB3300F0A0FC0E4800F00A +:101400009DFC0B4840F2FB3100F08EFC00E100E057 +:1014100094E2000000A00040009000400060004006 +:10142000006100404CEA000068EA000048E9000062 +:1014300034E60000C8E6000088E9000010B5154C4D +:101440002368012B16D014484268036912685207BA +:1014500011D51B685B0783684FF0040154BFDB683C +:101460001B699847A42000210BF02EFA0B4A012398 +:101470002360136010BD0A490A4A0B4840F28C638E +:1014800000F05CFC094800F059FC064840F28C6111 +:1014900000F04AFCEC0F002094E2000000900040B5 +:1014A00048E9000034E60000C8E6000088E90000D2 +:1014B000034B186802280ABF024B40421868704765 +:1014C000EC0F0020F00F00208368B3F5004F00EB15 +:1014D000C10C0DD3DCF80C3099421FD0DCF8081099 +:1014E000043200EBC10C40F82230CCF80C300CE098 +:1014F000BCF80630994211D0BCF80410043200EB5D +:10150000C10C40F82230ACF80630826800EBC30012 +:10151000B2F5004F2CBF816081807047C368012104 +:101520009140043223EA01030021C36040F82210F5 +:10153000704700BF70B48668541AB6F5004F00EBD0 +:10154000C1034FEA4405A1EB02011FD35E685D6051 +:1015500001EB5601866800EBC2034D00B6F5004F63 +:101560002CBF5D605D808568B5F5004F2CBF40F8ED +:10157000324020F832408468B4F5004F0CD35B68E9 +:1015800002EB530370BC40F833107047B3F802C04D +:101590005D8001EB5C01DDE75B8802EB530270BC10 +:1015A00020F83210704700BF8368B3F5004F10B5C4 +:1015B00000EBC10100EBC20C19D3DCF804304C681D +:1015C0005B0803EB54035C004C608168B1F5004F8D +:1015D00006D3DCF8041002EB510240F8323010BDA3 +:1015E000BCF8021002EB510220F8323010BD4B88DB +:1015F000BCF802E05B0803EB5E034FEA430EA1F880 +:1016000002E0E2E78368B3F5004F00EBC1020AD2C3 +:1016100052880123DA400132D21AB2FA82F2C2F1C0 +:101620001F02FFF751BF52685208012A01D002235E +:10163000F1E7704730B58468B4F5004F00EBC102A4 +:1016400023D2538801255B0801335B1BB3FA83F374 +:10165000C3F11F0300EB830CDCF81050DDB9C56843 +:101660004FF0010E0EFA03F3B4F5004F45EA0305FF +:10167000C560CCF810102CBF916091808368B3F5E1 +:10168000004F2CBFD160D18030BD53685B08012B67 +:10169000FAD00225D8E700EBC50CB4F5004F2BBFFC +:1016A000DCF80830BCF80430936093808468B4F5AB +:1016B000004F2CBFD560D580826800EBC303B2F524 +:1016C000004F2CBFD960D9808368B3F5004F2CBF81 +:1016D000CCF80810ACF8041030BD00BFF8B5836832 +:1016E000B3F5004F04460D464FEAC10600EBC107B3 +:1016F00014D3796805EB510100EBC1035B68D8078F +:1017000036D5A159691A04EBC1035B68DB0714D510 +:1017100029462046BDE8F840FFF78CBF798805EBE5 +:10172000510100EBC1035B88DA0721D5A15B691A7F +:1017300004EBC1035B88DB07EAD42046FFF762FFB6 +:10174000A368B3F5004F2CBFA159A15B2046691ACD +:101750002A46FFF729FFA368B3F5004F2CBFA35912 +:10176000A35BED1A29462046BDE8F840FFF762BFAB +:101770002046FFF747FFA368B3F5004F2CBF7A68F8 +:101780007A88294605EB52022046FFF70DFFA36831 +:10179000B3F5004FB5D2A15B691A04EBC1035B88B6 +:1017A000C9E700BF2DE9F0418668B6F5004F2CBFB0 +:1017B00001F1FF330B46B3FA83F3C3F11F0200EBD1 +:1017C00082073D69A5B12C464FF0030CB6F5004FDA +:1017D00000EBC40E17D3DEF80480B1EB580F21D90B +:1017E000DEF80C403C61BCF1010C01D0A542EDD10A +:1017F000C268C3F120034FF0FF349C4014400AD16B +:101800002046BDE8F081BEF80280B1EB580F09D93F +:10181000BEF80640E6E794FAA4F2B2FA82F2131D8B +:1018200050F823402146FFF74FFE2046BDE8F081E7 +:10183000C1B310B500688368B3F5004F0C4618D2E9 +:101840000439091A21F007020244C908538813F029 +:10185000010F36D001EB530C30F83CE0ACEB0E0C32 +:101860008C4520D123F001035380BDE81040FFF7E1 +:1018700035BF0839091A21F007020244C908536824 +:1018800013F0010F1DD001EB530C50F83CE0ACEB12 +:101890000E0C614507D123F001035360BDE81040F1 +:1018A000FFF71CBF70470E4A0E480F49B72300F0E0 +:1018B00045FA0E48214600F041FA0948B72100F0E8 +:1018C00033FA074A07480A49AF2300F037FA0948B4 +:1018D000214600F033FA0248AF2100F025FA00BF9C +:1018E00084EA0000C8E60000F4EA00001CEB0000F7 +:1018F000A8EA0000BCEA0000F8B5056881B3AB684F +:10190000B3EBD10F2CD9B3F5004F34BF0423082318 +:10191000CC1D1C44E40821462846FFF743FFF8B1DC +:10192000AB68B3F5004F4FEAC00605EBC0070FD315 +:101930007B68B4EB530F15D343F001037B60AB68B6 +:10194000B3F5004F34BF042308231E44A819F8BD83 +:101950007B88B4EB530F05D343F001037B80EEE7A4 +:101960000020F8BD0444014622462846FFF7E2FD68 +:101970002146FFF75FFEAB68B3F5004F01D27B88CD +:10198000EAE77B68D8E700BF2DE9F8434E1E0768F9 +:101990000E40BB6814465ED0B3F5004FC1F100099C +:1019A00009EA01092CBF082204224A4506F1FF3149 +:1019B00028BF4A46314240F09080002C56D0B3EB0D +:1019C000D40F53D9E11DB3F5004F3144A1EB02010F +:1019D00034BF042308231944C9083846FFF7E2FE40 +:1019E0008046002842D0BB68B3F5004F34BF0422C4 +:1019F000082209EBC00515443D4406F1FF321544A9 +:101A0000B5FBF6F506FB05F5A5EB090534BF6FF050 +:101A100003016FF007012C4407342944C91B24F04B +:101A20000704E41BB0EBD10F4FEAE4044FEAD10600 +:101A30002DD3B3F5004F07EBC6081BD3D8F80430FD +:101A400006EB5302944236D343F00103C8F8043046 +:101A50002846BDE8F883B3F5004F34BF04220822BE +:101A6000914223D9B1460E46002CA8D10025284624 +:101A7000BDE8F883B8F8023006EB530294421AD35B +:101A800043F00103A8F802302846BDE8F883414638 +:101A900032463846FFF74EFD4146FFF7CBFDBB68A7 +:101AA000B3F5004F07EBC608E4D3C7E72146BDE80E +:101AB000F843FFF721BF314622463846FFF73AFD8B +:101AC0002146FFF7B7FDBB68B3F5004F02D2B8F867 +:101AD0000230D5E7D8F80430B6E70749074A084886 +:101AE0004FF4A27300F02AF9064800F027F90348E2 +:101AF0004FF4A27100F018F958EB000084EA0000DE +:101B0000C8E6000074EB0000B2F5802FF8B56AD289 +:101B1000042A88BF042340F29580D21ACC1D8D1868 +:101B200024F0070425F007052D1B172D4FEAD507D4 +:101B300079D9B5F5802F2CBF07F1FF323A46B2FABA +:101B400082F2C2F124064FF000034FEA860606F146 +:101B500007060460C4E902732CBF0223012303EBD0 +:101B6000D603BB42C2F120024FEAD6064CD89200FF +:101B7000002104F110000CF0C3FA7300BA1BB5F594 +:101B8000802F04EBC6014FEA420043F001032CD240 +:101B90006380002323804880A368B3F5004F2CBFE7 +:101BA00044F8366024F83660A1686319B1F5004F37 +:101BB0004FF000012CBF59605980A368B3F5004F66 +:101BC0002CBF62516253A268B2F5004F04EBC70309 +:101BD00010D35A6842F001025A6031462046BDE8EF +:101BE000F840FFF727BD082397E7636000232360D1 +:101BF0004860D1E75A8842F001025A8031462046B7 +:101C0000BDE8F840FFF716BD1649174A17484FF4CC +:101C1000037300F093F8164800F090F812484FF460 +:101C2000037100F081F813490F4A104840F2FB138A +:101C300000F084F80E4800F081F80B4840F2FB11E8 +:101C400000F072F80C49084A08484FF4F97300F0A4 +:101C500075F8074800F072F803484FF4F97100F086 +:101C600063F800BF00EC000084EA0000C8E6000052 +:101C7000B8EB0000D4EB000094EB000000207047AC +:101C8000014B1B68184700BF24060020014B186059 +:101C9000704700BF2406002000B585B000230093E4 +:101CA000CDE902330A46064B01934FF0020C014680 +:101CB00068468DF802C00BF0B9FF05B05DF804FB73 +:101CC000811C00000FB400B587B008AA002352F8A9 +:101CD000041BCDE90433CDE901234FF0020C064B80 +:101CE0008DF80AC002A803930BF0A0FF07B05DF8BF +:101CF00004EB04B0704700BF811C000080B50546AE +:101D00000E4614461F460AF08BFE03460CF064FA9A +:101D1000214604463046034E3A463351A847A0595F +:101D200002F0BCFC08000000002383F31188BFF31D +:101D30006F8F0423184602DF704700BF0FB400B551 +:101D400083B004A951F8040B0191FFF7A5FF03B07C +:101D50005DF804EB04B070472DE9F04F0546808B29 +:101D600010F0080C83B0144640F0518100F00702D7 +:101D70000229AB46CDF804C0154692B254D0DBF828 +:101D80001870002FC0F2E280511F012940F2078134 +:101D9000042A40F0898120F00702DBF8006092B24B +:101DA000ABF81C20002E00F03A8142F02002ABF884 +:101DB0001C205DB3DBF808504FF000084646C246D1 +:101DC000002D50D1002E4FD1BAF1000F1ED0354654 +:101DD0004AE0BAF1000F02D0BF495846D047EFF3AE +:101DE0001184202282F31288BFF36F8F48460BF0D4 +:101DF000BDF8002800F0198148460BF0DDF8BBF86B +:101E00001C2022F0080292B2ABF81C20D1064DD55E +:101E100022F0100290B2012100F0070202291546BB +:101E2000ABF81C0092B2AAD1002A71D1DBF80020D5 +:101E3000002A5ED0002D40F01681DBF81020D2F889 +:101E400000A0BAF1000F00F0238120F0070242F059 +:101E500006022E46ABF81C204FF006082F46DBF892 +:101E60000850002DAED0012542F008020BF11409F4 +:101E7000ABF81C2048460BF087F8002800F0E38000 +:101E800084F31188BFF36F8FBDB9002EA1D0304607 +:101E9000394650F8045B00F06FFB044618B3314636 +:101EA0003B4642465846A0472E46EEE7930620D5CD +:101EB00022F0200290B20221AEE7DBF808100029E0 +:101EC000E3D00C684D683B4642465846A847002C74 +:101ED000DBD0214624684D683B4642465846A84719 +:101EE000002CF6D1D1E72E46CFE7BBF81E60002EBE +:101EF00040D05D46143528460BF046F8002800F027 +:101F0000BE8084F31188BFF36F8F03B0BDE8F08FFC +:101F1000022AEAD0012AECD1DBF80020002AE8D01E +:101F2000012D40F0FD80DBF81020D2F808A0BAF1B6 +:101F3000000F00F0E98020F0070242F005020026C1 +:101F4000ABF81C204FF00508374688E720F0070261 +:101F5000019BDBF80060CBF8043042F00102ABF8E3 +:101F60001C20CBF800304FF00108454529D04FF038 +:101F7000000A74E7022D40F0A380DBF81020D2F8AD +:101F800004A0BAF1000F00F0D78020F0070242F061 +:101F90000402ABF81C204FF0040837465FE7019BB2 +:101FA000DBF80060CBF80430062ACBF800300FD005 +:101FB00020F007024FF0000892B24545ABF81C2014 +:101FC000D5D1002E3FF422AF4FF0000A55464BE723 +:101FD0004EB1BBF81E203146013292B2ABF81E2042 +:101FE00009680029F8D120F00701BBF81E0041F074 +:101FF0000202ABF81C2089B210B14FF00208B4E71E +:1020000041F02202ABF81C204FF00208ADE7012995 +:102010000CBF40F0100240F02002AA836AE7002DB6 +:102020003FF4F4AEB046B24619E72C4A2C482D498D +:102030008823FFF783FE2C484946FFF77FFE274899 +:102040008821FFF771FE2949244A254840F23113BF +:10205000FFF774FE49462648FFF770FE1F4840F21E +:102060003111FFF761FE23491D48234A4FF4AB733A +:10207000FFF764FE20484FF4AB71FFF755FE1B4994 +:10208000164A174840F23113FFF758FE2946E2E797 +:102090001A491348184A4FF4AD73FFF74FFE16481C +:1020A0004FF4AD71FFF740FE15490D48124A40F25A +:1020B0001B13FFF743FE104840F21B11FFF734FEDD +:1020C000104907480C4A40F25D13FFF737FE0A48F3 +:1020D00040F25D11FFF728FE61210000A8EC00002E +:1020E000C8E6000008ED000020ED0000D8EC00007C +:1020F000F0EC000054EC00002CEC000060EC000060 +:1021000098E8000078EC000011491248124A4FF498 +:10211000B473FFF713FE10484FF4B471FFF704FED9 +:102120000E490C480C4A4FF4B273FFF707FE0A48F9 +:102130004FF4B271FFF7F8FD05490648064A40F230 +:102140006113FFF7FBFD044840F26111FFF7ECFD5E +:1021500060EC0000C8E600002CEC000090EC0000F1 +:10216000F8B504460D4600F11406EFF3118720235D +:1021700083F31288BFF36F8F30460AF0F7FE50B139 +:1021800030460AF019FFA5613A4620460121BDE814 +:10219000F840FFF7E1BD074A074808498823FFF7E1 +:1021A000CDFD07483146FFF7C9FD02488821FFF7FA +:1021B000BBFD00BFA8EC0000C8E6000008ED000071 +:1021C00020ED000088B138B50C4659B10B684BB111 +:1021D0004B683BB10546202200210BF091FF2C619A +:1021E000002038BD6FF0150038BD6FF01500704746 +:1021F0002DE9F84F002800F08380894600297FD020 +:1022000001F1040A0446504600F0A4F9051E27D146 +:10221000D9F80830032B73D804F11408EFF3118BAD +:10222000202383F31288BFF36F8F40460AF09EFE8F +:10223000074600286AD040460AF0BEFEE38BA68B14 +:102240004FF6FF72934206F0070640D0022E3AD0B6 +:10225000062E49D8DFE806F008444848081C080064 +:10226000DADA2846BDE8F88F0023C9F80030636841 +:102270008BB3C3F80090C4F80490002E43D12046DD +:102280005A4602213546FFF767FD2846BDE8F88F1C +:102290006FF08505002740460AF076FE002843D0FF +:1022A0008BF31188BFF36F8F002FDAD050460021D7 +:1022B00000F062F907460028D3D03246494620464E +:1022C0000023B847CDE70133E3833546E3E76FF0FA +:1022D0000A050027DFE7C4F80090C4F80490CCE7B3 +:1022E0006FF004050027D6E717491848184A4FF43D +:1022F000E473FFF723FD16484FF4E471FFF714FD74 +:102300006FF01505ADE735460027C4E7114A0F48C1 +:1023100011498823FFF712FD10484146FFF70EFDD3 +:102320000C488821FFF700FD0A4A08480C4940F292 +:102330003113FFF703FD0B484146FFF7FFFC05484B +:1023400040F23111FFF7F0FC90EC0000C8E600000D +:102350002CEC0000A8EC000008ED000020ED0000CF +:10236000D8EC0000F0EC0000F8B5054600F11406CA +:10237000EFF31187202383F31288BFF36F8F30466A +:102380000AF0F4FD30B330460AF016FEAC8B04F0D0 +:102390000704022C10D1EB8B002B39D0013B9BB2F0 +:1023A000EB8383B130460AF0EFFD08B387F3118861 +:1023B000BFF36F8F2046F8BD012C0CBF6FF00404F3 +:1023C0006FF08504EEE728463A462146FFF7C4FC45 +:1023D0002046F8BD144A154815498823FFF7AEFC7E +:1023E00014483146FFF7AAFC0F488821FFF79CFCF0 +:1023F0000D4A0E48104940F23113FFF79FFC0F4879 +:102400003146FFF79BFC084840F23111FFF78CFC86 +:102410000B4906480B4A40F2EF13FFF78FFC0948BF +:1024200040F2EF11FFF780FCA8EC0000C8E60000C6 +:1024300008ED000020ED0000D8EC0000F0EC0000FA +:1024400038ED00002CEC0000F8B5002850D00C4608 +:1024500000294DD0054600F11406EFF31187202323 +:1024600083F31288BFF36F8F30460AF07FFD002898 +:1024700041D030460AF0A0FD2B68A98B43B19C42A5 +:1024800002D12CE09C4210D01A461B68002BF9D1D7 +:102490006FF0770430460AF077FD002839D087F3D3 +:1024A0001188BFF36F8F2046F8BD236813606B68F7 +:1024B0009C421BD0002201F0070322601A1F022A4F +:1024C0000BD91C491C481D4A40F22D23FFF736FC4E +:1024D0001A4840F22D21FFF727FC1C46DAE76A680C +:1024E00023682B609442E5D16B60E3E76A60E1E723 +:1024F0006FF01504D7E7124A0F4812498823FFF7F7 +:102500001DFC11483146FFF719FC0D488821FFF7E3 +:102510000BFC0B4A08480D4940F23113FFF70EFC43 +:102520000B483146FFF70AFC054840F23111FFF72E +:10253000FBFB00BF48ED0000C8E600002CEC0000EB +:10254000A8EC000008ED000020ED0000D8EC000031 +:10255000F0EC000030B1436803F00303012B07D017 +:10256000032B02D06FF0150070470368002BF9D0E1 +:10257000002383601846704708B54268816002F006 +:102580000302032A034603D1006800225A6008BDF3 +:102590004AB907490748084A4523FFF7CFFB0648D1 +:1025A0004521FFF7C1FB002000225A6008BD00BF93 +:1025B00098E80000C8E60000C0ED00002DE9F041F9 +:1025C000054688461646002700E024B36968E86897 +:1025D000EB696A690C1A9C4228BFE41AA1EB02025B +:1025E0002CBFC0182046A3EB0404A3EB020328BFB2 +:1025F000081AB34228BF33469C4228BF1C462B68AA +:102600000A196A604146224618440BF06BFD361BDE +:102610002744A044D9D1D5E90123D21A97420CD836 +:10262000EA68E9693B446B60AB609B1A8B4224BF4C +:102630005218EA603846BDE8F08105490548064A67 +:102640004923FFF77BFB04484921FFF76DFB00BFDF +:1026500014EE0000C8E60000E8ED000070B5034687 +:1026600080691E69DC69A6EB000E744598BF0019ED +:1026700015461A689ABFAEEB040EA6EB000CF446A2 +:10268000A4EB0E0002EB0C049A680C60921BAA42A9 +:1026900028BF2A461969904228BF10460144196193 +:1026A00070BD00BFD0E90423D21A8A420AD38269DE +:1026B0001944C3690161A1EB020C6345416104D96E +:1026C000002070476FF0150070471A448261F7E7E9 +:1026D0002DE9F0410546036988461646002700E0CB +:1026E0002CB3D5E906145A1AA24226BF121B0919A7 +:1026F0001146A4EB0204AA68D5F800C0A2EB0302BD +:1027000028BF591AB24228BF3246944228BF144605 +:1027100023442B61B8F1000F06D0404622466144A5 +:102720000BF0E0FC2B69A044361B2744D8D16A6922 +:102730009B1A9F420CD8A969D319EA692B616B6176 +:102740005B1A934224BF8918A9613846BDE8F0811D +:1027500004490548054A8E23FFF7F0FA03488E2105 +:10276000FFF7E2FA14EE0000C8E60000E8ED000012 +:10277000704700BF014B03600020704720EE00004F +:1027800010B5044603F0CEFB10F1780F00D088B9E5 +:1027900014F0700F0FD104F07F02230648BF1032EF +:1027A00001239340DB430549D1F8C4201A4000209F +:1027B000C1F8C42010BD4FF0FF33F4E7D808002063 +:1027C0002DE9F0471C4C1D4EB44225D819D21C4FA0 +:1027D00082468846914663687A6A93420DD3A5691A +:1027E0005DB199789AF8042091420ED05B79012B63 +:1027F00003D14A4641465046A8472434B4420BD838 +:10280000E9D36FF08500BDE8F0874A46414650465F +:102810002B46BDE8F04718470A490B4A0B484FF4CE +:10282000BB63FFF78BFA0A48FFF788FA06484FF4B4 +:10283000BB61FFF779FA00BF400800206408002060 +:10284000D808002054EE000020EE0000C8E600008A +:1028500078EE00002DE9F041154B164EB34218D822 +:102860000FD2154C676A5C68BC4206D31D6925B15E +:1028700094F802C00479A44507D02433B34208D8A1 +:10288000F1D36FF08500BDE8F0812B46BDE8F04143 +:1028900018470A490A4A0B4840F2BB53FFF74EFA61 +:1028A0000948FFF74BFA064840F2BB51FFF73CFAE4 +:1028B0004008002064080020D808002054EE0000E2 +:1028C00020EE0000C8E6000078EE00002DE9F0419F +:1028D000124C134DAC420DD806460F46904618D206 +:1028E000636923B1424639463046984798B124344B +:1028F000AC42F4D90B490C4A0C484FF4C163FFF7C2 +:102900001DFA0B48FFF71AFA07484FF4C161FFF7A9 +:102910000BFA6FF08500BDE8F08100BF4008002091 +:102920006408002054EE000020EE0000C8E600001D +:1029300078EE000043061FD010B5184B184CA34288 +:102940001CD817D29C464FF0080E9CF81C10DCF8DF +:10295000203051B11EFB013102E008338B4204D01C +:102960001A798242F9D1012010BD0CF1240CA44542 +:1029700004D8EAD3002010BD0120704709490A4A53 +:102980000A484FF47D73FFF7D9F90948FFF7D6F9E4 +:1029900005484FF47D71FFF7C7F900BF40080020DC +:1029A0006408002054EE000020EE0000C8E600009D +:1029B00078EE0000F0B5C4B283B020460E468DF824 +:1029C0000740FFF7B7FF054630B16306114F06D049 +:1029D00097F8BA301BB91D46284603B0F0BD204613 +:1029E0005EB103F00FFAFB69002BF5D00DF1070182 +:1029F00008209847284603B0F0BD03F02BFAFB6986 +:102A0000002BE9D00DF1070109209847284603B0B3 +:102A1000F0BD00BFD808002030B502794179847834 +:102A2000C37883B042EA012203F0030314F0700F6D +:102A30008DF80040ADF802208DF8043031D104F05B +:102A40007F03220648BF103301259D40184BD3F861 +:102A5000C4301D4208D0204600F07CFF2046FFF71E +:102A60008FFE08F027FFF0B1684603F0A7F910F1D8 +:102A7000780F00D090B99DF8000003F027FA10F10C +:102A8000780F00D050B90A4BD3F8C42001202A4354 +:102A900083F8B900C3F8C42003B030BD002003B0F0 +:102AA00030BD0025E0E7962009F040FFDCE700BFDD +:102AB000D80800202DE9F047A84EB36904460D461A +:102AC000174613B1984700286AD0237803F01F03F4 +:102AD000012B07D0022B50D0002B63D06FF01500D4 +:102AE000BDE8F08796F8BA30D7F80090002BF5D003 +:102AF000776AB4F8048097F800C05FFA88FEBCF1EA +:102B0000000FEBD062463B4603E013441A78002ADC +:102B1000E4D059780229F8D118797045F5D994F99B +:102B200000206378002AC0F289800B2BD6D14FF0A9 +:102B300000084FF0FF09C2464D460BE0052B03D1BC +:102B4000A388AB4200F041813B781F443B78002BC7 +:102B500000F031817B78042BF0D1BD78A38897F801 +:102B600003909D42F0D163889945EDD1072D40F245 +:102B70004481BA464FF00008E6E794F900206378F4 +:102B8000002A2DDB012B00F0B280032BA6D1638835 +:102B9000002BA3D1A0880121FFF70CFF00289DD0B6 +:102BA00000209DE794F9001038686278002932DB34 +:102BB000013A082A92D801A353F822F0DF2C000032 +:102BC000DD2A0000D12C0000DD2A0000C32C00000B +:102BD000DD2A0000DD2A0000DD2A00007B2C000039 +:102BE000002B7FF47BAF24793F682046FFF7A2FEDD +:102BF00000283FF473AF630604D096F8BA30002B78 +:102C00003FF46CAF3946204603F044F9002202231A +:102C10007A702B60C4E7062A7DD0082A00F09880DD +:102C2000002A7FF45BAF0123038096F8C3305B007A +:102C3000022243F0010303702A60B1E7002B00F089 +:102C4000A0800A2B07D049E7674497F800C0BCF181 +:102C5000000F3FF443AF7B78042BF5D1BB78984548 +:102C6000F2D1B8F1070F96BFB044002398F8BB30FB +:102C700089F8003001222A6092E76388756A002B88 +:102C800000F08A802B78002B3FF428AF4FF0FF082C +:102C90000020474606E0022B37D02B781D442B78C6 +:102CA000002B5DD06B78042B2CD0052BF3D16388DF +:102CB000BB42F2D1B8F1000FEFD12846FFF7ACFECE +:102CC000EBE7A07803F034F800283FF469AF05E79C +:102CD0006388012B7FF402AF86F8C33060E7638816 +:102CE000012B7FF4FBAE002386F8C33058E76188E0 +:102CF00000297FF4F3AEA088FFF75CFE00287FF484 +:102D00004FAFEBE695F80380C7E76F796388BB4266 +:102D100008BF0120C1E76088040A221F012AA446D7 +:102D20007FF6DCAE072C3FF6D9AE726A1178002927 +:102D30003FF4D4AEC6B204E00A44117800293FF44F +:102D4000CDAE5078A042F7D1B3421ED00133F3E7A5 +:102D500096F8BA20027001232B6021E7D8080020E2 +:102D600000283FF4BBAE2849F2690B604B606388D2 +:102D700086F8BA30002A3FF413AF01390320904798 +:102D80000EE7A9F8003029600AE7BCF1020F3A60AB +:102D90002BD013782B6003E71B49C6F8BB304B6080 +:102DA000F369628886F8BA20002B3FF4F9AE013946 +:102DB00003209847F4E6F36913B15146072098477A +:102DC000B8F1000F7FF4ECAE88E6A3784B450FD046 +:102DD00097F80280404600F0BDFD4046FFF7D0FC6A +:102DE000B0FA80F84FEA5818AEE653882B60D7E661 +:102DF0003846FFF711FE8046A6E67319BA4683F8F7 +:102E0000BB904FF001089FE693090020F0B51B4CE2 +:102E1000237D83B03BBBD4E902760425019601AB48 +:102E200032463946802003F0A3F80B3003D109F075 +:102E300003FC013DF3D1D4E9022301990A445B1A52 +:102E4000C4E902236BB961B12369E2889A4208DDC3 +:102E500094F8C82093FBF2F102FB11330BB9012364 +:102E6000237503B0F0BD00231A4619468020237550 +:102E700003B0BDE8F04003F07BB800BFD8080020E5 +:102E800030B585B000230193B0B90C4601B3454C71 +:102E9000D4E90212002A01AB68DD03F0B7F900287B +:102EA0006ADBD4E9022301990A445B1AC4E90223CC +:102EB000002B44D005B030BD802864D1394BDA688E +:102EC00012B91B7D002BF5D0FFF7A0FF05B030BD78 +:102ED00008220B460DEB020103F098F9002840DBB5 +:102EE000304DBDF80820DDF80A10BDF80E302A80FC +:102EF000C5F80210120605F13801C5E90344EB805C +:102F00002C75A96003D4802B36D8002B47D12B78A1 +:102F1000C3F341130A3355F8233013B3224A02F1A5 +:102F20000801A2F10800984700281ADBEB882A69FB +:102F30009342A8BF1346EB60FFF768FFBAE7237818 +:102F4000C3F341130A3304F1380254F82330A2606A +:102F50003BB104F1080204F1100120469847002813 +:102F6000B2DA802002F04EFF05B030BD024603F019 +:102F70004DF900289EDAF4E7802002F043FF00209C +:102F800002F040FF96E7094909480A4A4FF4C57321 +:102F9000FEF7D4FE07484FF4C571FEF7C5FEC5E93C +:102FA000033387E7D8080020E008002098E80000F5 +:102FB000C8E6000020EE00002DE9F04F042883B0A1 +:102FC00006460F461DD001281FD0474B474D0193A1 +:102FD000019BAB426AD80AD2434CE3681BB13A4624 +:102FE0003146204698472434AC425FD8F5D3404B55 +:102FF0001B6A002B51D03946304603B0BDE8F04F74 +:1030000018473C4B00221A605A60DFF8E4B09BF886 +:10301000B930002BD9D0344B344D01931C4600F00D +:10302000CBFCAC4251D834D2DDF8048098F81C3087 +:10303000D8F82090A3B34FF0000A544617E02306B7 +:1030400004F07F0148BF10310123DBF8C44003FACC +:1030500001F1C9430C400028CBF8C44019DB98F8B3 +:103060001C100AF1010A5FFA8AF4A14218D909EB8F +:10307000C404207902F056FF247914F0700FDED0DA +:10308000DBF8C4404FF0FF310C400028CBF8C440BF +:10309000E5DA00238BF8B9309AE703B0BDE8F08F8A +:1030A00008F12408A84510D8C0D3F2E71249134A02 +:1030B000134840F2EE43FEF741FE1248FEF73EFE93 +:1030C0000E4840F2EE41FEF72FFE0B490B4A0C482A +:1030D00040F2C243FEF732FE0A48FEF72FFE0748D1 +:1030E00040F2C241FEF720FE4008002064080020A4 +:1030F000D80800209309002054EE000020EE0000C4 +:10310000C8E6000078EE00002DE9F84381468846C5 +:1031100017461E46042533463A464146484602F0C5 +:1031200027FF10F10B0F044603D109F085FA013D8A +:10313000F1D12046BDE8F8832DE9F041044682B084 +:10314000554D56484FF0FF334FF0FF3207F0ACFBC0 +:1031500095F8B830002B40F08D806E6A002E58D064 +:103160004F48C5E9070403F09BF802F0D7FD041EA1 +:1031700048DB00F045FC041E44DB7378012B76D15C +:10318000F379002B73D00026684685F8C830ADF877 +:1031900002308DF804608DF8006002F00FFE041E0E +:1031A00030DB802768468DF8007002F007FE041EB1 +:1031B00028DB3C49304603F039F8041E22DB39494C +:1031C000384603F033F8041E1CDB374BDFF8DC8095 +:1031D000434552D830D2344F3B7F3E6A43B300243C +:1031E000234604E03A7F0134E3B29A4220D906EB49 +:1031F000C30256F83310107903F018F80028F1D004 +:103200004FF0FF34254807F02DFC204602B0BDE802 +:10321000F08100F09DF8264A264BEB62C5E90902D1 +:10322000254B264A2A630646AB61002898D1E7E77A +:103230002437474521D8CFD3002002F047FE041E93 +:10324000E0DBD5F8C430802043F00103C5F8C4307A +:1032500002F03CFE041ED5DBD5F8C430012243F455 +:103260008033C5F8C43085F8B8200024CAE76FF071 +:103270001504C7E76FF07704C4E71149114A1248F3 +:103280004FF4C363FEF75AFD1048FEF757FD0D4893 +:103290004FF4C361FEF748FDD80800204007002026 +:1032A000B92F0000812E0000400800206408002093 +:1032B000B52A000055280000C1270000CD280000D5 +:1032C00054EE000020EE0000C8E6000078EE00009A +:1032D00030B51D4D1D4C0FCD8BB00DF1140CACE86D +:1032E0000F0000232A688CF80020CDE90133CDE9D6 +:1032F0000333C4E90033C4E902332382102101A857 +:1033000005F0A0F900281CDD0828B8BF08200938FE +:1033100001AA2346104404F1100510F8012F02F011 +:103320000F010AAC283104EB12126944023312F87F +:10333000144C11F8142C03F8024CAB4203F8012C86 +:10334000EBD102480BB030BD98EE0000F40F002026 +:10335000AB4B1B780BB1AB4870472DE9F04FA94C34 +:1033600087B0237883B34FF000094FF00117C846A8 +:103370004E46CDF804906378052B00F28A80DFE892 +:1033800003F0039C99038A2EB8F1030F00F0D0805C +:10339000B8F1000F40F03281B9F1000F00F0A480C5 +:1033A000A4EB0903C3F3072289F80230019B89F8D3 +:1033B000032089F80430217808F101085FFA88F8C1 +:1033C0000C442378002BD6D18F4B02349C42C8D1B9 +:1033D0008B4A8C480123137007B0BDE8F08F002E94 +:1033E00000F08280307F00287ED00021CDE9029855 +:1033F0004FF0010AB0460E4602E00136864273D213 +:10340000D8F82030A27803EBC60B9BF80430934227 +:10341000F3D101250EE00AFA05F33B4206D14B46F3 +:1034200004A88DF8103002F0B3FC08B30135102D5C +:1034300055D0A278E37803F003038DF81430237994 +:103440006179120643EA0123ADF812305FFA85F97B +:10345000E1D505F110030AFA03F33B42E6D149F046 +:10346000800304A88DF8103002F092FC0028DDD112 +:103470009DF81020A270DC4613064646CB46DDF8C8 +:103480000C80DDF808908CF8042048D40123AB4070 +:103490001F43217894E7E378002BFAD1A378002B1F +:1034A00000F08A80019B217803F1010B5FFA8BF316 +:1034B000019385E72178A14682E74FF0000A402377 +:1034C00004A88DF810A0ADF812308DF814A002F009 +:1034D0005FFC58B9BDF812302178E37170E798F8B5 +:1034E0001C00013686428BD3002075E7082304A810 +:1034F000ADF8123002F04CFC0028EBD04349444AAE +:103500004448ADF812A040F28F13FEF717FC424872 +:10351000FEF714FC3E4840F28F11FEF705FC0BF15C +:103520001003DBB2012202FA03F321781F4347E7BD +:10353000FFF7CEFEA51C824650B1FCF7E3FF38B181 +:10354000102802465146A8BF102228460AF0CAFD9C +:1035500021784FEA510C0229ACF102037FF62CAF1F +:10356000CA1EACF1030001F1030EA0EB52000231C0 +:103570002B442844AEEB050E491B00250AE0A3EBC3 +:103580000C0298420EF8125093F801A001F812A014 +:103590003FF411AF13F80129203A5E2AEFD91F49F1 +:1035A0001B4A1C48CB23FEF7C9FB1D48FEF7C6FB90 +:1035B0001748CB21FEF7B8FB1A4E1B4A964206D895 +:1035C00092D273689C4211D024369642F8D917499A +:1035D0000F4A10484FF49B73FEF7B0FB1448FEF7F8 +:1035E000ADFB0B484FF49B71FEF79EFBB368002BBD +:1035F0003FF458AF01992046984753E7A51CA7E729 +:10360000481A0020780700203F080020E4EE000060 +:10361000ACEE0000C8E60000F0EE000018EF00007D +:1036200050EF0000400800206408002054EE000025 +:1036300078EE0000006848B150F8043C5B688B42AB +:10364000A0F1040002D040680028F5D1704700BF07 +:10365000006858B150F8043C5B685B689B788B420B +:10366000A0F1040002D040680028F3D1704700BFE9 +:103670000068C8B100B504384FF0080E03685B68F5 +:103680001A7F1B6A5AB11EFB023C01E0634506D05B +:103690001A798A4203F10803F8D15DF804FB406807 +:1036A0000028FAD00438E9E7704700BF2DE9F0415F +:1036B00050F8283C10F82C5C103382B0044622D11C +:1036C000036950F8202C980739D522B9590760D4DE +:1036D00043F00403236154F8241C01AB2846FFF790 +:1036E00013FD00284ED154E90913019A9B1A114485 +:1036F00044E9091354F81C3C134444F81C3C54F8A6 +:10370000283C103311D054F81C6C54E9067808F0AA +:10371000D1F868B944F8180CA4F1100007F0F8FBD0 +:103720001FB1424631462846B84702B0BDE8F08195 +:1037300021461D4807F07EFF02B0BDE8F08154F835 +:10374000241C01AB284602F095FCD8B954E90923A2 +:10375000019F54F81C6C3A44DB1B3E4444E90923A6 +:1037600044F81C6CE7B1284602F0A0FDB7FBF0F36B +:1037700003FB107797B954F8203C7BB1284602F040 +:10378000C5FCBCE76FF0150354F81C6C44F8283CEA +:10379000BBE754F81C6C44F8282CB6E754F81C6CB2 +:1037A000002344F8283CB0E7B0090020094B03F59A +:1037B00080711A78824204D040338B42F9D10020C4 +:1037C00070475A68002AF7D0103214BF0020012039 +:1037D000704700BF08100020F0B51B4F83B00546AE +:1037E0000E463B4600241A78AA4212D00134042C1B +:1037F00003F14003F7D1012E09D101AB01220DF1F4 +:103800000301284602F036FC019B002BF5D103B0E2 +:10381000F0BD5A68002AE9D0731E012BF7D808F0D2 +:1038200049F807EB841707F12C0138B1012E05D0B8 +:10383000064803B0BDE8F04007F0FCBE084603B000 +:10384000BDE8F040FFF732BF08100020B0090020AB +:103850002DE9F04F3C4F83B09046064601919946C2 +:10386000BC4607F580729CF80030B34223D00CF1BF +:10387000400C9445F7D1EFF3118B202383F312888A +:10388000BFF36F8FDFF8C4A000250022002350464D +:1038900007F0D8FB0446C8B10135042D0AF1400AEF +:1038A000F3D16FF00B048BF31188BFF36F8F2046B9 +:1038B00003B0BDE8F08FDCF80440002CD7D014F141 +:1038C000100FD8D1204603B0BDE8F08F07EB851369 +:1038D000AD015A6812F1100F2FD0019A9A600C9A1C +:1038E0005A610D9A9A61C3E903806FF00F02304666 +:1038F0007E55C3F83C905A60019302F0D7FC68B93A +:1039000019F0020F05D02C357919114807F092FEF5 +:10391000C9E7304602F0FAFB0446C4E7304602F03D +:10392000C5FCB8FBF0F202FB1082002AE8D0019B34 +:10393000DA6B42F00402DA63E2E70192504607F0E4 +:10394000E7FA019A1446AEE7081000202410002080 +:10395000B009002038B5EFF31185202383F31288D6 +:10396000BFF36F8F124C0022234693F800C08445AA +:1039700009D00132042A03F14003F6D185F31188FE +:10398000BFF36F8F38BD59680029F2D01031F5D1DF +:1039900004EB821319466FF08B022C3105485A60F4 +:1039A00007F048FE85F31188BFF36F8F38BD00BF65 +:1039B00008100020B0090020F8B50F4C202704F5AE +:1039C0008076EFF3118587F31288BFF36F8F54F879 +:1039D000283C103307D085F31188BFF36F8F403434 +:1039E000B442EED1F8BD6FF08B03214644F8283C79 +:1039F000024807F01FFEEEE734100020B009002057 +:103A000070B5094C094E04F580753146204607F023 +:103A10007BFD0122A4F110001146403407F06CFA3E +:103A2000AC42F2D1002070BD34100020AD36000051 +:103A30004B1CDBB28170817680F82530C37600F8AC +:103A4000061C704750E90231D0F89C00184700BFAF +:103A50000369002283F84A20704700BF036993F886 +:103A60004A0010B193F8480000B97047D3F890208D +:103A700053685169D0695B1AC01A70470369002204 +:103A800083F84B20704700BF036993F8490008B1E1 +:103A900093F84B00704700BF0169D1F8902050693E +:103AA0005368D2691B1A9A4204BF002381F8483038 +:103AB000D1F88C301A699B689A4204BF002381F8C0 +:103AC00049300120704700BF0369C3E90012704705 +:103AD0000229036906D0042910D0012909D06FF00A +:103AE0008500704793F89B30C3F3400313600020B8 +:103AF0007047D3F8943013600020704793F89B30E0 +:103B000003F00103F2E700BF01690B68012281F8AD +:103B10004B2013B191F8493003B97047014808317F +:103B200007F088BDB009002001690B68012281F807 +:103B30004A2013B191F8483003B970470148083161 +:103B400007F078BDB009002030B514460A1E83B0D6 +:103B5000054616DDD4F88C0004F14C01FEF72EFD6D +:103B60002368012284F8492013B194F84B30F3B94B +:103B7000D4F88C305A685969DB69521A9B1A3F2B6A +:103B800010D994F89E300BB903B030BD0B4B4022D6 +:103B9000CDE9003404F14C0101232846FFF758FE1B +:103BA00003B030BD012384F8A03003B030BD04F170 +:103BB0000801034807F03EFDDAE700BF493B00007B +:103BC000B009002070B50569EFF31186202383F357 +:103BD0001288BFF36F8FD5F89000FEF7EFFC044614 +:103BE00086F31188BFF36F8F08B9204670BD00229D +:103BF000002305F11801024807F0D0FD204670BDF2 +:103C0000B009002070B51446136801220D4684F8EF +:103C1000482013B194F84A30BBB9D4F890301A69EF +:103C20009B689A421CD004F118013DB9BDE8704070 +:103C3000114840F6CD42002307F0B0BDBDE870400A +:103C40000D480022002307F0A9BD0B4804F108012C +:103C500007F0F0FCD4F890301A699B689A42E2D1E0 +:103C60004DB904F118010448BDE8704040F6CD425A +:103C7000002307F093BD70BDB009002070B5044665 +:103C80000E46017915481546FFF7E2FC10B394F98A +:103C900000206378002A06DB202B10D0222B0AD0CC +:103CA0006FF0850070BD212BFAD1103807232860F2 +:103CB0003360002070BD638800F8093CF9E72B6889 +:103CC0001A6840F8102C9A889B7900F80A3C20F872 +:103CD0000C2CEEE76FF0120070BD00BFA8090020A9 +:103CE00008B501460348FFF7C3FC10B1012300F8F3 +:103CF000073C08BDA809002038B50E4B0469596877 +:103D0000C4F8A400002504F1A802C4F8A85069B1C1 +:103D10000A605A6004F10800074907F0F5FB04F156 +:103D20001800064907F00CFD002038BDC3E9002249 +:103D3000F0E700BFA8090020453A0000413D00001F +:103D4000F0B5D0F88C305B681B6A1E7D85B00446E8 +:103D50003046FFF72BFD10B994F886300BB905B04B +:103D6000F0BD05464FF48062A06F03A9FEF776FC14 +:103D700007460028F3D083060A4B039984F8305095 +:103D800008BF00F1FF37A4F11802CDE90032304638 +:103D900002233A46FFF75CFDA06F3946FEF782FC2E +:103DA00005B0F0BD053C000070B5046982B0002389 +:103DB0008DF8071084F84830202609E007F07AFDD6 +:103DC00010BB94F8A130FBB12120002108F07CFD4C +:103DD000EFF3118586F31288BFF36F8F0122D4F8B9 +:103DE00090000DF10701FEF7E9FB85F31188BFF3A1 +:103DF0006F8F0128E2D12122002304F11801064827 +:103E000007F0CCFC02B070BD044B1A78002AF2D146 +:103E100001221A70EFE700BFB0090020491A002004 +:103E200030B5002385B081F89D300D46016AADF8AC +:103E30000C204FF40030029008790A4C42F2A101A4 +:103E400001910A2201A9FFF75FF904E0012006F0C1 +:103E500087F9013C03D095F89D30002BF6D005B0D2 +:103E600030BD00BFA186010010B54029046913468A +:103E700060D019D801391F2913D81F2911D8DFE8BC +:103E800001F03B1010101010103E10101010101008 +:103E9000104D1010101010101010101010101010E5 +:103EA00010326FF0120010BDB1F5807F4BD0B1F52C +:103EB000007F0DD194F89C2002F0BF02002B36D178 +:103EC00084F89C2001694068FFF7AAFF002010BD1C +:103ED0008029E6D194F89C2002F0EF02002BEFD06D +:103EE00042F01002ECE794F89C2002F0FB02002B59 +:103EF000E6D042F00402E3E7C4F89430E6E794F831 +:103F00009C2002F0FE020BB142F0010284F89C20DA +:103F1000016940680122FFF783FFD7E794F89C20EE +:103F200002F0FD02002BCBD042F00202C8E742F0C3 +:103F30004002C5E794F89C2002F0F702002BBFD0A6 +:103F400042F00802BCE794F89C2002F0DF02002B4C +:103F5000B6D042F02002B3E7036993F8492012B1CA +:103F600093F84B2032B993F84A0010B193F8480007 +:103F700010B9704701207047D3F8903058685A69DB +:103F8000DB69801AC01A18BF0120704770B5046938 +:103F900082B00546D4F88C00FEF79AFB94F8A03066 +:103FA000064673B1D4F88C104B684A699A1ACB69EB +:103FB0009B1A3F2B05D994F89E302BB9002384F827 +:103FC000A030304602B070BD6B68064A196A012302 +:103FD000087BCDE9002404F14C014022FFF738FCB6 +:103FE000ECE700BF493B000070B5046982B00546AC +:103FF0000122D4F88C00FEF76BFB94F8A030064643 +:1040000073B1D4F88C104B684A699A1ACB699B1A21 +:104010003F2B05D994F89E3043B9002384F8A03093 +:10402000701E18BF4FF0FF3002B070BD6B68064ABB +:10403000196A0123087BCDE9002404F14C014022D8 +:10404000FFF706FCE9E700BF493B000070B50246F8 +:1040500082B00D462C481146FFF7ECFA68B10368B0 +:10406000691E04465D68052907D8DFE801F00806E7 +:1040700024080345012300F8053C02B070BD234A23 +:1040800092E8030000230A0C44F8100C24F80C1CDE +:1040900004F80A2C19464022A4F1580024F8063CE2 +:1040A00024F85C3C24F8093C04F8043C02B0BDE868 +:1040B00070400AF025B810F8063C002BDDD1012332 +:1040C00000F8063C296A124A087BA4F1A406CDE94F +:1040D0000026A4F158014022FFF7BAFB14F85C2C2B +:1040E000002ACAD12B6A0B49187DCDE9001602239C +:1040F0001146FFF7ADFBC0E710F8053C002BBCD024 +:10410000002300F8053CB8E7A809002020E50000DE +:10411000493B0000053C000030B5094D094983B01A +:10412000002400944FF0FF334FF48062284607F0DC +:1041300091FA0549284607F0C3FB204603B030BD7D +:10414000B0090020801A0020ACEF000008B5044838 +:10415000FDF7B8FDBDE808400248FDF7B3BD00BF5C +:10416000B8EF0000F0EF0000012801D1EFF3058364 +:1041700006F036B801460068012801D1EFF3058347 +:1041800006F02EB808B500F005F8BDE8084000F0CC +:1041900025B800BF30BFFFF7FDBF00BF2DE9F041DC +:1041A0000B4EDFF8308006EB0807CC1B0546324685 +:1041B0000949204609F096FFA01942460021083C13 +:1041C00009F09EFF2C6707F10800BDE8F08100BFF1 +:1041D000000000000400000018E50000074A936892 +:1041E00093F90E10002907DB5269934204D0044A68 +:1041F000536843F080535360704700BFFC190020A0 +:1042000000ED00E0F8B5314B9C6A15469A6A14F04F +:10421000100F14BF1124102412F0080F9A6A18BF4F +:104220001224960707D55F6B9A6A14062BD46FF099 +:104230001507132401E06FF01507244B9A6A12F05A +:10424000010F9A6A18BF142412F0200F9A6A18BF3F +:104250001524D10602D49B6A9A0703D51B4E7368B6 +:104260001B0517D4194B9A6A920603D55A6A22F491 +:1042700000525A62154A936A002143F0FF03936289 +:1042800029702046F8BD0029D3D09A6A22F0800216 +:104290009A62CEE70146384600F0FEFA88B9B36A62 +:1042A000D906DFD50A490B4A0B4840F22D13FDF71A +:1042B00045FD0A48FDF742FD064840F22D11FDF785 +:1042C00033FD80F309880224CCE700BF00ED00E055 +:1042D00054F0000020F00000C8E60000A0F000004C +:1042E00010B4144B9A6A996A12F0007F9A6A9C6A19 +:1042F00014BF1E201D2011F0807F18BF1F2012F454 +:10430000002F9A6A996A18BF212014F4802F18BFD1 +:10431000222012F4003F9A6A6FEA02426FEA1242C8 +:1043200018BF23209A6211F4803F18BF242010BCCC +:10433000704700BF00ED00E010B41A4A936A946A17 +:1043400013F4805F14BF1723162314F4006F946ACC +:1043500018BF1823A40509D5936B936A1B0404D5D1 +:1043600018B1936A23F40043936219230D4A946AA7 +:10437000906A14F4806F18BF1A23C40510D4926A8F +:1043800012F4005F0CBF18461C20064A936A43F4DF +:104390007F4393624FF0000C10BC81F800C070475F +:1043A0001B20F2E700ED00E070B5734B8AB05B684C +:1043B0004FF0000C8CF31188BFF36F8F02F07F4435 +:1043C000B4F17F4F17D102F00C04082C13D014075E +:1043D0004BBF0C4604466546012564B1C3F3080390 +:1043E0000022033B8DF80720032B00F28880DFE8D2 +:1043F00003F0316874116149614A62484FF4856382 +:10440000FDF79CFC6048FDF799FC5D484FF4856121 +:10441000FDF78AFCFFF764FF064620686168A26822 +:10442000E3680DF1080CACE80F0020696169A2692E +:10443000E369ACE80F00002D5AD0C3F3080240F244 +:10444000FF110AB90B43099302A93046FFF78CFE0E +:104450000AB070BD484BDE6A16F002064FD1DA6A28 +:10446000002ADADBDA6A520068D55A69A16942F497 +:1044700080725A61BFF34F8FBFF36F8F5A6931F863 +:10448000021C22F480725A61BFF34F8FBFF36F8F0B +:104490004DF60272914234D09A6AD2B2002A36D1D5 +:1044A0009A6A12F47F4F3ED19B6AB3F5803F54D392 +:1044B000FFF716FF9DF807300646002BADD00AB077 +:1044C00070BD0DF1070200212046FFF79BFE9DF80D +:1044D00007300646002BF2D19FE70DF107010020BF +:1044E000FFF72AFF9DF807300646002BE7D194E737 +:1044F000099B23F4FF7323F001030993A4E700262B +:104500008BE79DF807302668002BD8D185E70DF1A1 +:10451000070201212046FFF775FE9DF80730064689 +:10452000002BCCD179E70DF107010120FFF704FF43 +:104530009DF807300646002BC1D16EE71349104A9B +:10454000104840F2FE23FDF7F9FB1148FDF7F6FB9A +:104550000B4840F2FE21FDF7E7FB0C49084A0948E9 +:1045600040F2FA23FDF7EAFB0A48FDF7E7FB0448AF +:1045700040F2FA21FDF7D8FB00ED00E0C4F00000A6 +:1045800020F00000C8E60000D8F0000098E8000025 +:104590003CF1000018F10000044B5A6942F010028F +:1045A0005A615A6922F008025A61704700ED00E032 +:1045B000EFF30880EFF3098101B57246FFF7F4FECF +:1045C00001BD00BF002080F31488BFF36F8F0F4838 +:1045D00080F3088804F08CFB00200D490860BFF3CD +:1045E0004F8F00F019F8202080F3118809484FF40C +:1045F0000461401880F30988EFF314800221084316 +:1046000080F31488BFF36F8F00F00CF9C0300020E6 +:1046100094ED00E00023002072B6002383F313889A +:104620001C4AD2F8900010F47F4FC0F3072107D046 +:104630001846C2F8983001339942C2F8A000F8D168 +:10464000154B4FF0FF32C3F88020C3F88420C3F825 +:104650008820C3F88C20C3F89020C3F89420C3F8B6 +:104660009820C3F89C20C3F88021C3F88421C3F8A4 +:104670008821C3F88C21C3F89021C3F89421C3F892 +:104680009821C3F89C2162B6BFF34F8FBFF36F8FA1 +:10469000704700BF00ED00E000E100E00A4B9B68BE +:1046A000834201D008F0C2B9EFF30583002BF9D0A3 +:1046B000064B5A6842F080525A605A6A22F400420D +:1046C0005A6208F0B3B900BFFC19002000ED00E009 +:1046D00015498A684FF030001044EFF3098C80E8E8 +:1046E000F01F202080F31288BFF36F8F0F4F4FF021 +:1046F00000664A698A603E604FF0700414192068B1 +:104700000B4C2060506F0023536780F3118804B571 +:10471000104600F04BF9BDE8044002F1300090E88B +:10472000F01F8CF309887047FC19002004ED00E0AD +:10473000081100201EF0040F0CBFEFF30880EFF308 +:104740000980816911F8021C0229FFD001B5724667 +:10475000FFF710FD01BD00BF40B2002807DB044A8F +:104760004109012300F01F00834042F821307047C7 +:1047700000E100E040B200280CDB4309064900F0EC +:104780001F0020330122824041F82320BFF34F8FC6 +:10479000BFF36F8F704700BF00E100E0054B420997 +:1047A00000F01F0053F82220012303FA00F010400C +:1047B000704700BF00E100E038B54B1C072B0446F2 +:1047C00011D840B25B010028DBB206DB00F160408B +:1047D00000F5614080F8003338BD0B4A00F00F004F +:1047E0000244137638BD094A09480D465823094941 +:1047F000FDF7A4FA0848294607232246FDF79EFA4A +:1048000002485821FDF790FAFCEC00E06CF1000042 +:10481000C8E60000A4F10000C0F100000021012062 +:10482000FFF7A2BC0B4A08B50B4B22F07F029A603F +:10483000BFF34F8FBFF36F8FD3F8882022F470023D +:10484000C3F8882005F0BAFD08F0BEFB00F084F83C +:1048500005F0C0FD0000000000ED00E010B401997B +:1048600042F81C1C029942F8181C0A4942F8203CE4 +:1048700021F00101039B42F8081C42F8143C4FF060 +:104880008074A2F12001002342F8044C10BC0165A1 +:1048900043677047FD1C0000094B9B6802466BB1E3 +:1048A00012F1160F186E05D0A0F14003934205D8FF +:1048B000824203D2814228BF002070470020704707 +:1048C000FC19002008B50A4C036FA0601546094A80 +:1048D0000E46136000F06AF82C4686F30988002023 +:1048E000054B98472046002100220023034C204717 +:1048F000FC1900200811002001490000FD1C0000E7 +:1049000061B662B680F31188BFF36F8F704700BF46 +:10491000014B10221A61704700ED00E072B60023CF +:1049200083F31188BFF36F8FBFF34F8F30BF62B631 +:10493000BFF36F8F704700BF72B6002383F31188F7 +:10494000BFF36F8FBFF34F8F20BF80F31188BFF38A +:104950006F8F62B6704700BF044800232021C21841 +:104960000133302B82F80013F9D1704700E100E0E9 +:1049700008B5EFF30583064A103B02EBC30152F87A +:1049800033004B689847BDE80840FFF727BC00BFDD +:10499000E4E20000024B034A0348012100F018B88A +:1049A000000002200000002000F2000010B4026E9F +:1049B000054B064C9C604020403AC3E90020012191 +:1049C00010BC184600F072B80C11002000000B1546 +:1049D0002DE9F0472F4F3C78002953D00E4601EBCC +:1049E000410E2D49002200F1040C00F108085CF88A +:1049F0002250002D42D01F2D50F8223011D8EA212C +:104A0000264A2748397040F26F132649FDF796F978 +:104A100025483146FDF792F9204840F26F11FDF725 +:104A200083F905F1FF3945EA030A1AEA090FE6D1CD +:104A3000202D58F822A02AD0B5F1004F24D8B9FA79 +:104A400089F9C9F11F094FEA49094AEA0905D1F86C +:104A50009090C9F30729E4B209F1FF394C45CED84B +:104A600023F01F03234343F0100345F00105C1F871 +:104A70009840C1F89C300134C1F8A050033272450F +:104A8000B5D13C70BDE8F0874FF03E09DDE74FF04F +:104A90000809DAE74A1A002000ED00E00CF20000F5 +:104AA000C8E6000098E800003CF200002DE9F84359 +:104AB000334B1A7800293ED0324E0D4601EB4107A8 +:104AC0004FF0000C00F1040E00F1080825E0B3F1EE +:104AD000004F2ED8013BB3FA83F3C3F11F035B00F1 +:104AE000D6F89090C9F30729D2B209F1FF394A45A7 +:104AF00041EA030134D824F01F04144344F01004A5 +:104B000041F00101C6F89820C6F89C400132C6F871 +:104B1000A0100CF1030C67450DD05EF82C30002B73 +:104B2000F7D0202B50F82C4058F82C10CFD8082361 +:104B3000D6E73E23D4E71349D1F89030C3F30723D7 +:104B400093420BDD0020C1F89820C1F8A000D1F8F5 +:104B500090300132C3F307239A42F4DBBDE8F883B7 +:104B6000094A0A480A494FF4C773FDF7E7F80948AC +:104B70002946FDF7E3F804484FF4C771FDF7D4F870 +:104B80004A1A002000ED00E00CF20000C8E6000028 +:104B900098E8000068F200002DE9F04FB74CB849E2 +:104BA000D4F890300D68C3F307239D4285B000F21E +:104BB0004181BFF35F8F0022C4F89420ADB14968F2 +:104BC000C4F898200B6823F01F03134343F010032D +:104BD0000C31C4F89C3051F8043C013243F001031D +:104BE000AA42C4F8A030EBD1D5B2DFF8988203A86E +:104BF00088F80050FDF7BEFD002800F0188198F8F5 +:104C00000010039CA04E9D4DDFF880B2DFF880A21B +:104C1000DFF88092019100270A46BE4635E0B3F5E1 +:104C2000001F00F08E80B3F5800F67D1D4E9011327 +:104C3000202B40F2EC80B3F1004F00F2EA80013B00 +:104C4000B3FA83F3C3F11F034AEA4303D5F890C0D4 +:104C5000CCF3072C0CF1FF3C62453DD821F01F013D +:104C60001143C5F8982041F0100143F001030132CF +:104C7000C5F89C10D2B2C5F8A03001270EF1010E84 +:104C8000704504F1100400F08E80D4F80CC00CEADA +:104C90000603B3F5000F44D0C1D9B3F1807F72D0C1 +:104CA000B3F1007FEAD1D4E90113202B40F2AD80AB +:104CB000B3F1004F00F2AF80D5F890C0013BB3FADA +:104CC00083F3CCF3072CC3F11F030CF1FF3C5B0013 +:104CD000624543F48023C1D90FB188F800206E49A2 +:104CE0006E4A6F484FF4E873FDF728F86D48FDF7FA +:104CF00025F86A484FF4E871FDF716F8B3F5801F00 +:104D0000BCD1D4E90113202B7DD9B3F1004F00F2BF +:104D10008680013BB3FA83F3C3F11F0349EA4303DF +:104D200094E7D4E90113202B6BD9B3F1004F74D869 +:104D3000013BB3FA83F3C3F11F035B0043F08273BB +:104D400084E7D4E90113202B59D9B3F1004F68D877 +:104D5000013BB3FA83F3C3F11F034BEA43031CF097 +:104D6000010F3FF473AF0FB188F800204E494B4A52 +:104D70004B487423FCF7E2FF4C48FCF7DFFF474841 +:104D80007421FCF7D1FFD4E90113202B35D9B3F1FD +:104D9000004F48D8013BB3FA83F3C3F11F035B0014 +:104DA00043F0887352E70199002F3ED088F8002025 +:104DB0003249D1F89030C3F307239A420BDA00202E +:104DC000C1F89820C1F8A000D1F890300132C3F3A7 +:104DD00007239342F4DC294B0522C3F89420BFF348 +:104DE0004F8FBFF36F8FD3F89030C3F30723082B97 +:104DF00034D1002005B0BDE8F08F2D4B26E72D4BB8 +:104E0000ADE72D4B22E72D4B20E72D4B1EE72D4B19 +:104E10001CE72D4B1AE72D4B18E72D4B16E72D4BB2 +:104E200014E72D4B9BE72D4B10E70A46C0E798F897 +:104E30000020BDE7194A184919484FF4D373FCF70D +:104E40007DFFD4F8902026482946C2F30722FCF7BC +:104E500075FF12484FF4D371FCF766FF21490F4AE2 +:104E60000F484FF40673FCF769FF1F48FCF766FF15 +:104E70000A484FF40671FCF757FF00BF00ED00E051 +:104E8000C4F300004A1A00200000F0FF00000811DF +:104E90000000020700000B1198E800000CF200006F +:104EA000C8E6000024F30000CCF20000F4F2000099 +:104EB00008001001080008110800040108000B1187 +:104EC00008000400080002073E0002073E0004003C +:104ED0003E0004013E000B113E0008113E0010018F +:104EE00098F2000050F30000A0F3000008B5024B58 +:104EF0001B689847002008BD18110020034A044988 +:104F00009378086043F00203937070478006002096 +:104F10001811002008B50649064821F00701C1F123 +:104F2000005202F50032FCF7EFFD002008BD00BF83 +:104F3000C73F00201C110020024B0122C3F840256E +:104F40000020704700E0014020B1034B800143F096 +:104F500001031847704700BF30E50000020600F06B +:104F60007F030ED4082B02D010F0780F07D1020770 +:104F700000F00F0318D40D4800EB431070470020D9 +:104F80007047082B0AD010F0780FF8D100F00F030B +:104F9000074A4C2000EB431010447047010700F013 +:104FA0000F03F5D50348704703487047BC0B00203A +:104FB000500A00209C0B0020BC0C002010B51248A9 +:104FC00082B001F06DFF114B98421AD1104804F0E5 +:104FD000C3FE00240F4804F0F1FE0F490F4800946F +:104FE0004FF0FF334FF4806206F034FB0C490B485E +:104FF00006F066FC0B480C4906F086FA204602B023 +:1050000010BD6FF00400FAE7895A00000000AD0BF4 +:10501000ECF40000E8F40000C01E0020E00C0020CA +:10502000F4F30000780A002029530000064C0749D9 +:10503000074808B522464FF4E373FCF77FFE4FF4B0 +:10504000E3712046FCF770FE00F4000098E80000D1 +:10505000C8E600002DE9F047484C4FF0000827460D +:105060002546C1464FF0010A0DE007EB46132035F7 +:10507000B8F1080F83F808A083F8099083F80A9024 +:1050800085F84B9012D0EB6DC5F8589008F10306E7 +:10509000C5E9183307EB461208F10108937A002B93 +:1050A000E3D095F8550002F071F9DEE7DFF8D09013 +:1050B0004FF0090800264FF0010A0BE007EB4513FB +:1050C0002034B8F1110F83F808A05E729E7284F844 +:1050D0006B611AD0D4F87C3108F1030507EB451257 +:1050E00008F101086BB1C4E96033C4F87861937AC0 +:1050F00009F14009002BE1D094F8750102F046F95E +:10510000DCE7C4F87C914B46EDE7D7F85C3197F8C3 +:105110006A21C7F85861C7E9583302BBD7F87C3217 +:105120000022012187F8681187F86B2187F869212F +:1051300087F86A21EBB197F88A220021C7E9A033EA +:10514000C7F8781282B90020012387F8883287F8DF +:105150008B0287F8890287F88A02BDE8F08797F802 +:10516000550102F013F9D9E797F8750202F00EF92C +:10517000E9E7044BC7F87C32DDE700BF500A0020A6 +:10518000281500202811002070B582B03448354D14 +:1051900005F082FB002002F0F9FE00220346012107 +:1051A0002720EB61FFF708FB04F028FEFFF752FF12 +:1051B000044610B9012385F824302B4B1B681BB122 +:1051C0002A492B4806F036FA4FF08043D3F838349A +:1051D000DB0711D527480022002301A905F0D8F9E3 +:1051E00068B90199012308740B721F48496005F0E2 +:1051F00005FE95F8243053BB204602B070BD1A4D11 +:105200001C4E00220023284605F004FE50B14168E0 +:10521000304605F051FA00220023284605F0FAFD39 +:105220000028F4D113480022002301A905F0B0F9A9 +:10523000A0B901990C48496004230B7405F0DEFD08 +:105240000A490B4806F0F6F9204602B070BD07493E +:10525000074806F0EFF9204602B070BDFFF7E6FE02 +:10526000880A0020500A002064070020780A0020E5 +:10527000E00C002020070020022800D9704730B53C +:10528000234983B00C5C23480023002201A905F0C8 +:105290007FF9034698B901991F480B7449600C7255 +:1052A00005F0ACFD1D4991F824300BB903B030BDB9 +:1052B0001B48283103B0BDE8304006F0BBB9164C9E +:1052C000144D00220023204605F0A4FD50B1416892 +:1052D000284605F0F1F900220023204605F09AFD4A +:1052E0000028F4D10B480022002301A905F050F951 +:1052F00060B901990848496004230B7405F07EFDEC +:105300000849074806F096F903B030BDFFF78EFE56 +:10531000E4F400002007002064070020500A002069 +:10532000E00C0020780A00202DE9F04FBC4DBD4F65 +:10533000BD4E85B0804600220023284605F06AFD58 +:105340000446002800F0828097F82520237C002A5C +:1053500035D1002B7DD1237A042B2BD8DFE813F035 +:10536000780130010F012A002A0004F04FFD02F0FD +:1053700027F801F0EBFB00220023284605F04AFD48 +:1053800050B14168304605F097F9002200232846C5 +:1053900005F040FD0028F4D1FFF75CFE002840F046 +:1053A0005C8204F02BFDA14801F07AFDA04B9842ED +:1053B00040F047826168304605F07EF9BBE7042B78 +:1053C000F8D801A252F823F09B57000011540000B6 +:1053D000DD5300002B5400006B53000008F110094E +:1053E0004FF0FF324FF0FF33484605F05DFAFFF70C +:1053F00031FE484605F036FB58F8283C002BD9D042 +:105400000021012098476168304605F055F992E780 +:10541000D4F80890B9F1000F00F00782237B032B2A +:10542000C8D8DFE803F039852E1B97F87432002BBB +:1054300040F03B8158F8283C002BBBD000210A20CB +:1054400098476168304605F037F974E705B0BDE864 +:10545000F08F6168744805F02FF96CE799F80A300D +:1054600023B999F81F30002B00F0AC8199F809009E +:10547000D9F80030022198476168304605F01CF9E0 +:1054800059E799F80900D9F8003001219847616877 +:10549000304605F011F94EE799F80A20002A40F04D +:1054A000B581D9F814A0634BCAF80020CAF80420CB +:1054B000D3F880148AF80010D3F884148AF8011005 +:1054C000D3F88814D3F88CC441EA0C21AAF802104E +:1054D000D3F89014D3F894C441EA0C21AAF804102C +:1054E000D3F89814D3F89C34082041EA0323AAF88F +:1054F0000630C9F80C00DAF80000DAF804104E4B58 +:1055000003C31146D9F8003099F8090098479AF971 +:105510000030002B04DBBAF80630002B40F0698124 +:105520000023A7F88C326168304605F0C5F802E721 +:1055300099F81D30002B3FF43DAF99F81C30002B3B +:105540003FF438AF4FF0000A89F81DA089F81CA07D +:105550004FF0FF324FF0FF33384805F0A5F9D9F886 +:1055600014300193D9F80430CDE9023A01A999F831 +:10557000090001F0EBFC314805F074FA1AE7DFF896 +:10558000A49009F5807BCA4603E00AF1200AD345BE +:105590000BD09AF85420002AF7D09AF855000AF157 +:1055A000200A01F0D1FFD345F3D11E4B93F85421CB +:1055B000002A00F0A38093F8550101F0C5FF9DE09B +:1055C00001F0C8FB814600287FF4F4AE01F0DEFA5A +:1055D000BFF35B8F1A49012351E8002F002A03D142 +:1055E00041E800300028F7D1BFF35B8F7FF4E2AED3 +:1055F00041F8089C7B61F86941F8109C1439FCF76C +:10560000F7FD0028BFF6D6AE0E490F480F4A40F20C +:10561000AA23FCF793FB0D4840F2AA21FCF784FB78 +:1056200064070020500A002020070020895A00004B +:105630000000AD0B00700240540A0020880A0020D0 +:10564000700A002080F40000C8E6000000F40000AA +:105650004FF0000987F8259001F0B2FEBFF35B8F91 +:105660008B4951E8003F012B03D141E80092002A09 +:10567000F7D1BFF35B8F0CD1D7F81C901439484693 +:10568000FCF7E2FE10F1780F00F098800028C0F2DD +:10569000F0803B68002B3FF48DAE0021042098473A +:1056A0006168304605F008F845E64FF00109794891 +:1056B00087F8899201A90022002387F8889204F0D4 +:1056C00067FF00283FD10199734881F8109081F855 +:1056D0000C90DFF8C891C1F80890496005F08EFB86 +:1056E000A9F511716E4805F0A5FFA3E699F87501BB +:1056F00009F1200901F028FFCB4507D099F8742162 +:10570000002AF3D109F12009CB45F7D1654B93F875 +:10571000743293B9002001F0E9FA62490B68012262 +:1057200081F82520002B3FF445AE00210220984748 +:105730006168304604F0C0FFFDE55A4B93F87502EE +:1057400001F002FFE6E7DFF85091DFF848A1002200 +:105750004846002305F05EFB50B14168504604F016 +:10576000ABFF00224846002305F054FB0028F4D18B +:10577000484801A90022002304F00AFF002840F055 +:10578000848001994448496004230B7405F036FB7A +:105790004549434805F04EFF4CE6237A042B3FF67B +:1057A00009AE01A252F823F051560000C155000085 +:1057B0007F550000DF570000FD5700004846FCF70A +:1057C000D3FD63E74FF0FF324FF0FF33374805F06A +:1057D0006BF801F0FBFC354805F044F946E601F0B2 +:1057E000C3FA3B68002B3FF4E5AD00210520984744 +:1057F000E0E5A7F88C3201F0E3FCDBE53B68002B29 +:105800003FF4D8AD002106209847D3E52849294A1E +:1058100029484FF43973FCF791FA2848FCF78EFABF +:1058200024484FF43971FCF77FFA25492248214A70 +:105830004FF44B73FCF782FA1E484FF44B71FCF7A0 +:1058400073FA20491C481B4A40F28D43FCF776FA54 +:10585000184840F28D41FCF767FA1B491648154A73 +:1058600040F28643FCF76AFA124840F28641FCF7A0 +:105870005BFA164910480F4A40F2C223FCF75EFA61 +:105880000C4840F2C221FCF74FFAFFF7CFFB00BFF4 +:10589000700A00202007002064070020BC0C0020B4 +:1058A000E00C0020500A0020780A0020880A00201E +:1058B0003CF4000000F40000C8E6000064F40000BE +:1058C00034F4000098E80000E4EE000080F40000EA +:1058D000F0B58578044685B02846FFF73FFB2D06D6 +:1058E000E67807461AD4E6B1012E18D161480022A5 +:1058F000002302A904F04CFE002843D102995E481F +:1059000049607E770E740E738F6005F077FA5B49FD +:105910005B4805B0BDE8F04005F08CBE0EB305B0A5 +:10592000F0BD54480022002303A904F031FE0028F2 +:1059300050D10399496094F90220A378002A65DBCD +:105940001A0769D403F00F0303EB83039B0003F1F1 +:10595000804303F51C33D3F80807F86001220223C3 +:105960000CE044480022002301A904F011FE0028A5 +:1059700062D10199012249600323B8773E480A7435 +:105980000B73C1E73C4C3B4D00220023204605F041 +:1059900041FA50B14168284604F08EFE00220023EF +:1059A000204605F037FA0028F4D1324800220023BF +:1059B00002A904F0EDFD00285AD102992E48496051 +:1059C00004230B7405F01AFA2C492D4805F032FE19 +:1059D00005B0F0BD284C274D00220023204605F0DD +:1059E00019FA50B14168284604F066FE00220023EF +:1059F000204605F00FFA0028F4D11E4800220023AB +:105A000003A904F0C5FD98BB0399D7E7180707D58C +:105A10001C4BD3F8A806A0E71A4BD3F8A8079CE7BD +:105A200003F00F0303EB83039B0003F1804303F5B3 +:105A30001C33D3F8080690E70F4C0E4D00220023CC +:105A4000204605F0E7F950B14168284604F034FEDD +:105A500000220023204605F0DDF90028F4D1054896 +:105A60000022002301A904F093FD08B90199A5E7DC +:105A7000FFF7DCFA2007002064070020780A0020E6 +:105A8000E00C002000700240F0B502788BB00023DB +:105A9000013ACDE90533CDE907330993052A4CD8FE +:105AA000DFE802F04F4D0303635204238DF81C30EE +:105AB000002403AD904800220023294604F068FD2D +:105AC000A0B907AA039B92E8030003F108025B60F8 +:105AD0001C7482E803008948194605F08FF988494B +:105AE00088480BB0BDE8F04005F0A4BD834C824E61 +:105AF00000220023204605F08DF950B14168304660 +:105B000004F0DAFD00220023204605F083F9002886 +:105B1000F4D1794800220023294604F039FD0028F9 +:105B200040F0DB8003997548496004230B7405F04D +:105B300065F97349734805F07DFD0BB0F0BD032393 +:105B4000B4E7022403ADB5E7867804463046FFF794 +:105B500005FA837A0546D3B1013B022BEDD82046E6 +:105B60000BB0BDE8F040FFF7B3BE03AD284601F02F +:105B700005FB9DF80D30052B03D0634B07930124E3 +:105B800098E79DF80C3013F0600FD6D0F5E7330698 +:105B9000E77812D42FB3012FCFD15748002200232A +:105BA00001A904F0F5FC00283CD101995348496053 +:105BB0006F770F740F738D608FE7002FBDD14E4844 +:105BC00000220023694604F0E3FC002863D1009919 +:105BD000012203234960A87748480A740B738D603B +:105BE0007BE745480022002302A904F0D1FC0028ED +:105BF00035D1029E01220223766032743373B56080 +:105C0000A07805F10C0101F031FA002867D13F4A74 +:105C1000E968B2F88C328B4259D8A2F88C02374826 +:105C200031465AE7354C344D00220023204605F01A +:105C3000F1F850B14168284604F03EFD00220023EF +:105C4000204605F0E7F80028F4D12B480022002375 +:105C500001A904F09DFC00283FD1019963E7274C7E +:105C6000254D00220023204605F0D4F850B14168AC +:105C7000284604F021FD00220023204605F0CAF842 +:105C80000028F4D11C480022002302A904F080FC63 +:105C900018BB029947E7194C174D002200232046F4 +:105CA00005F0B8F850B14168284604F005FD00221F +:105CB0000023204605F0AEF80028F4D10E4800225B +:105CC0000023694604F064FC38B900992BE75B1A9D +:105CD000A2F88C3201F074FAA1E7FFF7A7F90C499A +:105CE0000C480D4A40F29D33FCF728F80A4840F270 +:105CF0009D31FCF719F800BF200700206407002041 +:105D0000780A0020E00C0020BC0B0020500A002084 +:105D100098E80000C8E6000000F40000034B93F888 +:105D200024300BB100207047FFF72EBA500A002034 +:105D300008B5114B93F82420D2B193F82530BBB1AC +:105D40000E4BD3F87034DBB2834208BF002000D181 +:105D500008BD0B490B4A0C4840F25953FBF7EEFFC4 +:105D60000A48FBF7EBFF074840F25951FBF7DCFF0D +:105D70006FF0120008BD00BF500A00200070024002 +:105D80008CF4000000F40000C8E60000C8F4000035 +:105D90000378027903F00F011AB921B943F3C00067 +:105DA0007047082902D94FF0FF307047012AF5D11A +:105DB00083F0080343F3C000704700BF38B5104BB1 +:105DC00093F82430C3B1057804462846FFF7C6F897 +:105DD00078B1457223798372638843602078618843 +:105DE000030702D44B1E0B4203D100F0F3FF002047 +:105DF00038BD6FF0150038BD6FF0120038BD00BF20 +:105E0000500A002038B5124B93F82420E2B193F8E1 +:105E10002530CBB10546FFF7A1F8044688B1837A57 +:105E2000012B0ED00AD9023B012B02D8284601F0E3 +:105E300049F96369A3610020E06038BD01F0CCF945 +:105E4000F7E76FF0150038BD6FF0120038BD00BFE6 +:105E5000500A002038B50E4B93F82420A2B193F8D5 +:105E600025308BB10446FFF779F850B114F00805DE +:105E700007D1204601F062F9204601F0A3FB284635 +:105E800038BD6FF0150038BD6FF0120038BD00BF8F +:105E9000500A002038B50C4B93F8242072B193F8C7 +:105EA00025305BB105460C46FFF758F848B144B1C0 +:105EB000284601F025F92070002038BD6FF012004F +:105EC00038BD6FF0150038BD500A002070B5144E73 +:105ED00096F82430D3B10546FFF740F80446D8B110 +:105EE0002B0708D5237AA3B90123237296F825300E +:105EF00043B9002070BD284601F020F9284601F082 +:105F000061FBEFE7284601F01FFBF2E76FF012009C +:105F100070BD6FF0770070BD6FF0150070BD00BFF1 +:105F2000500A002038B50546FFF718F8E0B1037AAB +:105F30000446B3B1284601F0D9FA0023A377A17F24 +:105F400022696261A261E36039B9002001232377ED +:105F5000E07760772072A07738BD607A01F016FA9A +:105F6000F3E76FF0770038BD6FF0150038BD00BF64 +:105F70002DE9F043DFF8F0901E4699F8243085B003 +:105F8000002B66D099F82530002B62D010F0800FDE +:105F900080465BD00F461546FEF7E0FF044600281A +:105FA00054D0037A002B51D04FF0FF3309F1380061 +:105FB0004FF0FF3204F078FCA37F002B4CD1A37A82 +:105FC000EDB9E27F002A3AD0E57733B30123019798 +:105FD000A3770027404601A9CDE9025700F0B6FF9C +:105FE000224B984227D0A77706B137606FF00404A0 +:105FF0001F4804F037FD204605B0BDE8F083002BB4 +:10600000E4D1B9F80A30AB4207D96268B5FBF2F3C4 +:1060100002FB13530BB90123E37701F0E3F880454A +:10602000D4D001F0D3F8124804F01CFD002420461F +:1060300005B0BDE8F08306B135600024D8E7002B39 +:10604000C4D101F0CFF88045C0D0EAE76FF0150465 +:10605000D1E76FF01204CEE709F1380004F002FD39 +:106060006FF00A04C7E700BF500A00200000AD0B24 +:10607000880A00202DE9F041224C1F4694F8243074 +:10608000002B3BD094F82530002B37D0030632D4B8 +:106090000D46164669B3FEF761FF044658B3037A0E +:1060A0004BB34FF0FF3318484FF0FF3204F0FCFBC6 +:1060B000E368B342984628BFB046A5B14246A169FD +:1060C000284608F00FF8A269E3684244A3EB0803EE +:1060D000A261E3600FB1C7F800800B4804F0C2FC76 +:1060E0000020BDE8F081002EE8D1002FF5D03B6004 +:1060F000F3E7002ACFD06FF01500F2E76FF012003F +:10610000EFE700BF500A0020880A002070B5394D23 +:1061100095F8242082B0002A67D095F82520002A1F +:1061200063D003461B065DD4FEF718FF0446002823 +:1061300058D0037A002B55D04FF0FF334FF0FF3289 +:1061400005F1380004F0B0FBE3682BB9012626778F +:10615000637F6269A2612BB9274804F083FC0020A9 +:1061600002B070BD25480022002301A904F010FAF6 +:1061700068B9019922480E748C600E73496004F06E +:106180003DFE05F128011F4805F054FAE4E71C4CD8 +:106190001A4D00220023204604F03CFE50B1416815 +:1061A000284604F089FA00220023204604F032FE3B +:1061B0000028F4D111480022002301A904F0E8F9D5 +:1061C000B0B901990E48496004230B7404F016FE1F +:1061D0000D490C4805F02EFA074804F043FC6FF017 +:1061E0000B00BDE76FF01500BAE76FF01200B7E7DC +:1061F000FEF71CFF500A0020880A0020200700201C +:1062000064070020E00C0020780A002070B50546E5 +:106210000C461646FFF72EFF38B924B12846BDE8D4 +:106220007040FFF773BF002EF8D170BD1A4B93F882 +:1062300024206AB310F0800F00F07F0212D1082AE8 +:1062400002D010F0780F0AD100F00F0200071DD421 +:1062500003EB421303F5B6731960002070476FF02B +:1062600015007047082A0AD010F0780FF7D100F017 +:106270000F0203EB42134C3300201960704700F00B +:106280000F020007F5D503F5A673E5E7034BE3E737 +:106290006FF01200704700BF500A0020BC0C0020B5 +:1062A000014B1860704700BF500A0020184B93F84C +:1062B000242052B3010600F07F0211D4082A02D034 +:1062C00010F0780F09D1010700F00F021BD403EB87 +:1062D000421303F5B673586870476FF015007047A6 +:1062E000082A09D010F0780FF7D100F00F0203EB65 +:1062F00042134C335868704700F00F020007F6D580 +:1063000003F5A673E7E7034BE5E76FF0120070476C +:10631000500A0020BC0C0020064C0749074808B56D +:1063200022464FF4D773FBF709FD4FF4D77120468F +:10633000FBF7FAFCF0F4000038F50000C8E60000B6 +:10634000064C0749074808B5224640F2C113FBF73F +:10635000F5FC40F2C1112046FBF7E6FCF0F400002A +:1063600038F50000C8E60000064C0749074808B5A4 +:10637000224640F28153FBF7E1FC40F28151204676 +:10638000FBF7D2FCF0F4000038F50000C8E600008E +:106390004FF08053D3F830310D2B12D0254A012312 +:1063A000C2F80035D2F800341B05FBD54FF08053FE +:1063B0004FF40061D3F83031C2F800140D2B13D024 +:1063C0007047EFF31182202383F31288BFF36F8F9E +:1063D000194BD3F8001C19B30321C3F8141D82F321 +:1063E0001188BFF36F8FD9E7EFF31181202383F377 +:1063F0001288BFF36F8F104BD3F8002C3AB10022F4 +:10640000C3F8142D81F31188BFF36F8F704749F2E1 +:106410007530C3F8000CC3F8142DC3F8000CF1E775 +:1064200049F275310320C3F8001CC3F8140DC3F8FA +:10643000001CD4E70070024000E006402DE9F04F58 +:10644000B24BD3F8542187B03AB10022C3F854219B +:10645000D3F80413890200F19681AC4BD3F8607134 +:1064600037B10022C3F86021D3F86C74C3F86C74A0 +:10647000A64BD3F82821002A78D1A54E96F80080A3 +:1064800096F9005008F00F04082C00F20C8318F065 +:1064900008024DD1002D4FEA8403C0F264819D496A +:1064A00051F82400002840F0858137B39A4C9B4D69 +:1064B000DFF86CA24FF001084FF0060997FAA7F138 +:1064C000B1FA81F1226808FA01F31A430F2908464C +:1064D00027EA03072968226038DC0B400BD160F003 +:1064E0007F008DF81600DAF800208DF814908DF8F2 +:1064F000173005A89047002FE0D1844BD3F8002136 +:10650000002A40F01781814BD3F85821002A40F02F +:10651000C5807E4BD3F85C31002B40F0DF817E4C90 +:106520007E4D2A6823681A4233D107B0BDE8F08F48 +:10653000002D764BC0F20C81D3F85021002AB4D044 +:106540000022C3F85021D3F8A8373CE10B42D2D146 +:1065500010388DF81600DAF800308DF814908DF8A8 +:10656000178005A89847002FA8D1C6E76D4A0021DB +:10657000C3F82811137803F00F02082A00F2918261 +:10658000DB43C3F3C01302EB0312012393401F4309 +:1065900073E765480022002304F054FD0028C4D1AD +:1065A0005A4BD3F82C35002B40F04E822368D5F897 +:1065B00000A001931AEA030700F0468217F00123B6 +:1065C00000F07E8193FAA3F2B2FA82F20F2A174604 +:1065D00040F33081A2F11003DBB2DFF850E103EBAE +:1065E000430C0EEBCC0898F80C20002A00F07382C4 +:1065F00013F008020292B8F814B0444A40F0A081A7 +:1066000003F5947152F82110594500F27C825EF82E +:106610003C202AB102F06042B2F1005F40F0678294 +:10662000D8F80400884280F09E815EF83C900022F9 +:10663000594500F081810020B9F1000F00F00A8275 +:106640008A42C0F09C8140F014824FFA83FC1D46C0 +:1066500010B9002188F80C103370D8F810301344AA +:10666000C8F810300121019B01FA07F723EA070758 +:10667000029B2760002B40F05581BCF1000FC0F257 +:10668000B381224805EB850300EB83030A35C3F889 +:106690000097C3F8042740F8251046E70022C3F806 +:1066A0005821D3F80044C3F80044E70508D5204A30 +:1066B0001B4B0121117002221B68059205A8984707 +:1066C000A50508D51A4A164B0021117003221B6834 +:1066D000059205A8984764057FF51BAF144B1A78FF +:1066E000002A3FF416AF094AD2F82C05002840F0E2 +:1066F000CC81187001210A4BC2F80815042091655D +:106700001B68059005A8984703E700BF007002408A +:106710004C1A0020307102401C190020181900206A +:10672000201900204D1A002054070020681700206F +:106730004E1A0020B848B949B94C0022C3F80021CC +:1067400002700A7001222368059205A89847DAE6CC +:10675000D3F82C21002A3FF4A8AE0022C3F82C2144 +:10676000D3F8A8362FE0AF4951F8240000283FF4B1 +:106770009CAE5A5023449B0003F1804303F51C3325 +:10678000D3F808361FE08DF81420D3F82025ADF893 +:106790001620D3F8C014A44CA14A2368126800291B +:1067A00014BF4FF001214FF480710B4305A8236003 +:1067B000904752E65A5023449B0003F1804303F56F +:1067C0001C33D3F80837994A117803F001034B4082 +:1067D0001370974804F09CFB04EB4403002D4FEA30 +:1067E000C30311DB934A13449A7D032A00F0DB8034 +:1067F0001B7B002B00F0E180B8F1000F7FF455AE59 +:106800008D4B0122DA6450E68C4A13449A7D032AA8 +:1068100000F0CB801B7B002B7FF447AE884D01221C +:106820002B68A24023EA0203B8F1880F2B607FF4A3 +:106830003CAECCE007F00F05082D4DD87F4B05EBA3 +:10684000450203EBC2084FEAC20A98F80C20002A5E +:1068500000F04181D8F8042002921146B8F81420C3 +:1068600053F80AB08A4228BF0A460BF06041B1F1E2 +:10687000005F00F0CC80402A00F221817148039231 +:10688000594607F02FFCDFF8BC91039A6B4B029935 +:10689000881A02EB0B01C8F8040043F80A10D8F874 +:1068A000081007F0080EC90747F0800367F07F0C57 +:1068B000CDF808E07FF5CCAE002A7FF4CDAEC8E677 +:1068C00097FAA7F3B3FA83F30F2B1F46B2DD103B01 +:1068D000DBB2082B7FF681AEFFF71EFD544B9B68A1 +:1068E0001BB9337858063FF41AAE534B4E4C544DF7 +:1068F0000022C3F85C21D3F88034484A23F07F0398 +:10690000137023682A6823F4803343F0010322F0D4 +:1069100001122360424B2A6005221B68059205A8DC +:106920009847FEE5BCF1000F434B6ADBC3F8A09724 +:10693000C3F8A4279964F8E5003818BF01207BE666 +:10694000D2F8C014CA037FF55FAE5EF83C20002A7F +:106950005FD002F06042B2F1005F40F0C880D8F82A +:106960000400002201E0401A0A465EF83C90C8F894 +:10697000040009EB02014EF83C10114658E68DF870 +:106980001630274B1A680123BB402AEA03032B6009 +:10699000022388F816308DF8173006238DF814304E +:1069A00005A8904702E61034E4B2254D01222B6879 +:1069B000A24023EA02032B6077E5214D04F1100188 +:1069C0002B68C9B201228A4023EA02032B60062207 +:1069D000134B8DF8142000221B688DF816808DF85B +:1069E000172005A8984760E5134B05EB850003EBDE +:1069F000800003EB8503C0F80096C0F804265960B8 +:106A000093E5C3F8A096C3F8A42659628DE5D9464C +:106A10003DE7D8F80400A8E74E1A00204D1A0020E0 +:106A200020190020087102401C1900204B1A002078 +:106A30005407002068170020007002404018002012 +:106A40001819002028170020354807B0BDE8F04F7E +:106A500004F05EBA002A3FF4F8AD32493248334AB6 +:106A60004FF45A73FBF76AF930484FF45A71FBF749 +:106A70005BF92F492C482D4A40F27933FBF75EF938 +:106A80002A4840F27931FBF74FF92A492648274A2C +:106A900040F2F523FBF752F9244840F2F521FBF7C9 +:106AA00043F9FFF74DFC24491F48204A4FF49173E6 +:106AB000FBF744F91D484FF49171FBF735F91F4975 +:106AC00019481A4A4FF4C173FBF738F917484FF4C5 +:106AD000C171FBF729F91A491348144A40F2573398 +:106AE000FBF72CF9114840F25731FBF71DF9154916 +:106AF0000D480E4A4FF4B273FBF720F90B484FF4E0 +:106B0000B271FBF711F910490748084A40F26313C4 +:106B1000FBF714F9054840F26311FBF705F900BFD4 +:106B2000540700204CF60000C8E60000F0F4000016 +:106B300060F6000094F5000038F50000D4F5000080 +:106B4000B8F50000FCF50000E4F5000008B50A4BBC +:106B50001A78012A04D1094900220A601A7008BD76 +:106B600007490848084A40F27443FBF7E7F806482B +:106B700040F27441FBF7D8F84F1A0020201900208A +:106B80007CF60000C8E60000F0F400002DE9F041BA +:106B9000494C2378012B40F08280484E4FF400632B +:106BA0004FF08055C6F80034FFF7F2FBD5F83031CE +:106BB0000D2B1FD0414A4249424D43488026C2F81E +:106BC0001C650126C2F83065002340F2FF122B60DD +:106BD00003700A603D4A9268B24254D13C48022197 +:106BE0004FF0805203702170D2F830210D2A17D057 +:106BF000BDE8F081374F3B78C3BBEFF31182202310 +:106C000083F31288BFF36F8F334BD3F8001C19B393 +:106C10000321C3F8141D82F31188BFF36F8FC9E7F6 +:106C2000EFF31180202282F31288BFF36F8F2A4A7C +:106C3000D2F8001C39B1C2F8143D80F31188BFF3BB +:106C40006F8FBDE8F08149F27533C2F8003CC2F89D +:106C5000141DC2F8003CF0E749F275310320C3F877 +:106C6000001CC3F8140DC3F8001CD4E74FF0000853 +:106C7000C6F80085FFF78CFB87F80080D5F8303127 +:106C80000D2BBAD096E715491548164A4FF495636F +:106C9000FBF754F813484FF49561FBF745F8124998 +:106CA0000F48104A40F27C43FBF748F80D4840F289 +:106CB0007C41FBF739F800BF4F1A002000700240FA +:106CC0001C190020181900204B1A0020540700201E +:106CD0004D1A00201007002000E00640A8F6000032 +:106CE000C8E60000F0F400007CF6000010B5114B7F +:106CF0001B78022B11D11049104B114C114A00285E +:106D000008BF0B46002111702720C4F80033FDF79F +:106D100023FD0123C4F8043510BD0B490B480C4A70 +:106D200040F2DC43FBF70AF8094840F2DC41FAF78D +:106D3000FBFF00BF4F1A0020FDFFDF01FDFFFF0139 +:106D4000007002404E1A0020D0F60000C8E6000095 +:106D5000F0F40000034B1878012894BF00200120B4 +:106D6000704700BF4F1A002010B54FF0FF324FF0B0 +:106D7000FF33154804F066F9EFF31182202383F303 +:106D80001288BFF36F8F114B1B784BB9002482F32D +:106D90001188BFF36F8F0C4804F0BAF8204610BD7D +:106DA0000B4903F0FF04D1F8003413F40073EDD164 +:106DB0000120C1F82C05D1F82C05D1F8000480057C +:106DC000E5D5C1F82C35E1E7540700204E1A002024 +:106DD000007002404B1E0B4210B51BD0030737D08A +:106DE000030730D5274AD2F81C4540F2FF1340F282 +:106DF000FF32802C18BF1346994226D922492348D6 +:106E0000234A40F26D53FAF799FF214840F26D5141 +:106E1000FAF78AFF0029E3D110F00F0226D0040709 +:106E200002D5184BD3F81C35082A1DD8194B10F081 +:106E3000800F03F1D80018BF034602EB420203EBB8 +:106E4000C203998210BD4029D8D800F00F02EBE7A9 +:106E500011490E480E4A40F26953FAF76FFF0C4889 +:106E600040F26951FAF760FFFFF756FA0B490748FD +:106E7000074A40F26B53FAF761FF054840F26B5145 +:106E8000FAF752FF0070024054F70000C8E6000015 +:106E9000F0F4000068170020FCF6000030F7000056 +:106EA000F8B5002836D0214B1D78002D30D1204A6E +:106EB000204E10600121197037462A07E8B247BFFB +:106EC00040F2FF118820402140F080000135FFF79B +:106ED00081FF0024092D87F8EE4087F8E440C7F8C9 +:106EE000E84007F11807E8D12307E0B252BF40217C +:106EF00040F2FF1108200134FFF76CFF0023092C3A +:106F0000B3753373336106F11806EDD10A48F8BD45 +:106F10000A48F8BD0A490B480B4A40F24D43FAF7BC +:106F20000DFF094840F24D41FAF7FEFE4F1A0020CE +:106F300020190020681700200000AD0B0500AD0BE4 +:106F4000B8F70000C8E60000F0F40000F8B500F063 +:106F50000F03082B56D8EFF3118C202282F31288EE +:106F6000BFF36F8F00294FD053B9334A1278824252 +:106F700006D0324C8CF31188BFF36F8F2046F8BDDA +:106F80002F4A304C1268266840B2C543D243ED0FF9 +:106F900092B203EB05154FF0010E32430EFA05FED7 +:106FA00012EA0E0F06D0284C8CF31188BFF36F8FB6 +:106FB0002046F8BD03EB430300284FEAC3031EDB62 +:106FC000224A13440A6822B102F06042B2F1005F23 +:106FD00026D101221A7307C946EA0E0626601C4E06 +:106FE0001C4C0025802783E807001D619D75C6F8AD +:106FF00004718CF31188BFF36F8F2046F8BD164AD9 +:107000001344E6E7FFF79CF914491548154A40F286 +:10701000BC53FAF793FE134840F2BC51FAF784FED2 +:1070200011490F480F4A4FF4BA63FAF787FE0D482B +:107030004FF4BA61FAF778FE4D1A00200A00AD0B42 +:107040001C190020181900200B00AD0B6817002038 +:1070500000E100E00000AD0B40180020C8F7000080 +:10706000C8E60000F0F40000E4F7000000F00F02B2 +:10707000082A08B521D8124B10F0800F03F1D80070 +:1070800018BF034602EB420203EBC203EFF3118287 +:10709000202080F31288BFF36F8F18690860197B76 +:1070A00029B9987D82F31188BFF36F8F08BD042042 +:1070B00082F31188BFF36F8F08BDFFF72DF900BF72 +:1070C0006817002008B5030705D4094B40F4807009 +:1070D000C3F8180508BD07490748084A40F2076386 +:1070E000FAF72CFE054840F20761FAF71DFE00BFD3 +:1070F0000070024050F80000C8E60000F0F4000004 +:1071000001070BD4020600F00F0309D4094A9B00C3 +:107110001A445068003818BF01207047002070479B +:10712000054A03F5847352F82300003818BF012084 +:10713000704700BF407402400070024008B503076A +:1071400007D40A4B40F48072C3F80C05C3F80C2531 +:1071500008BD07490748084A40F22963FAF7EEFDDF +:10716000054840F22961FAF7DFFD00BF00700240D8 +:1071700050F80000C8E60000F0F400000F4B0022B9 +:1071800002604260D3F880240270D3F884244270F5 +:10719000D3F88824D3F88C1442EA01224280D3F831 +:1071A0009024D3F8941442EA01228280D3F89824E0 +:1071B000D3F89C3442EA0323C38070470070024036 +:1071C000014B0122DA64704700700240014B01223A +:1071D0001A65704700700240014B01225A657047E2 +:1071E00000700240014B1878704700BF4D1A002014 +:1071F00010B5EFF3118C202383F31288BFF36F8F48 +:1072000003061CD400F00F03082B16D8124C03F110 +:10721000100E2268012101FA0EF122EA010210F09B +:107220000800226004D10D4A03F5947342F823004C +:107230008CF31188BFF36F8F10BDFFF781F80849F9 +:107240000848094A40F25363FAF778FD064840F2CD +:107250005361FAF769FD00BF1C190020007002405D +:1072600064F80000C8E60000F0F40000F0B583B058 +:10727000EFF31185202383F31288BFF36F8F00F0A3 +:107280000F03082B74D803EB4301040602464FEAB0 +:10729000C10C1BD43749384C03F110020123934031 +:1072A0000A6833EA020664444DD122EA03020A6006 +:1072B000324926730A6822EA03020A600323A3758F +:1072C00085F31188BFF36F8F03B0F0BD010713D4AE +:1072D00080283BD02A4803F2DA314900C0F8001870 +:1072E000D0F80418D0F80448C9B241F00201214393 +:1072F000C0F80418D0F80418204E1E4F30683C68BF +:10730000012101FA03F364EA00011942D8D024EA0A +:10731000030418431B4B8DF8062019681A4B3C6078 +:10732000634403223060002406208DF804008DF8A9 +:1073300007201C739A7501A8884785F31188BFF34D +:107340006F8F03B0F0BDFFF753FFB7E70C4840F273 +:10735000B471C0F80018D0F80418D0F80448C9B2C5 +:1073600041F004012143C0F80418D0F80418C3E721 +:10737000FEF7D2FF18190020681700201C19002002 +:1073800000700240201900204018002038B54FF04E +:10739000FF3204464FF0FF33074D284603F052FEFC +:1073A0002046FFF763FF284603F0B2FD034B80221F +:1073B000C3F8042138BD00BF5407002000E100E0FD +:1073C0002DE9F0413E4E3378002B6DD04FF0FF3366 +:1073D0003C484FF0FF3203F035FE3378022B57D193 +:1073E000394B8022C3F884212720FDF7D7F9F8B95B +:1073F00036490B788BB1364A01230020C2F80801C8 +:10740000C2F80016C2F804365360D2F80831002BD7 +:10741000FBD00023C2F808310B702D4B0022C3F8BB +:107420000025284803F074FD01233370BDE8F08186 +:10743000284F294B3D681B682D0C2D041D431AD085 +:107440004FF0010803E008FA04F4A54313D095FABD +:10745000A5F4B4FA84F40F2C2046C6BFA4F11000A2 +:10746000C0B240F080000307EDD408FA04F4FFF73F +:10747000FDFEA543EBD1164C002540F2FF133B6007 +:107480002720C4F80455FDF775F9C4F80053AFE799 +:1074900012491348134A40F2FC43FAF74FFC1148D3 +:1074A00040F2FC41FAF740FC0F490D480D4A40F20A +:1074B000BA43FAF743FC0B4840F2BA41FAF734FCFE +:1074C0004F1A00205407002000E100E04B1A002072 +:1074D000007002401C19002018190020D0F600008E +:1074E000C8E60000F0F4000078F8000010B504468B +:1074F0004FF0FF324FF0FF33104803F0A3FD20465A +:10750000FFF7B4FE04F00F020123934022060C495A +:107510006FEA03030CD4D1F814251340C1F81435D5 +:10752000064803F0F5FC074B8022C3F8042110BD88 +:10753000D1F810251340C1F81035F1E754070020A9 +:107540000070024000E100E070B500F00F04082C6C +:1075500032D841B20125002905FA04F221DB17498E +:10756000D1F8146532421BD1D1F81465431E324361 +:10757000062BC1F8142513D8EFF31186202383F3CB +:107580001288BFF36F8FFFF733FE0D4A1034136874 +:10759000A54023EA0503136086F31188BFF36F8FBC +:1075A00070BD064BD3F810150A42F9D1D3F8101567 +:1075B0000A43C3F8102570BDFEF7D6FE00700240E6 +:1075C00018190020020710B514D40306044603D589 +:1075D0000E4BC3F8184510BD0D4B00F00F02920082 +:1075E00013445B68002BF3D0FFF702FE074BC3F890 +:1075F000184510BD07490848084A40F20F63FAF7DA +:107600009DFB064840F20F61FAF78EFB00700240C6 +:107610004074024050F80000C8E60000F0F400009A +:10762000142811D80A4A12F810306BB102EB40024C +:1076300052784AB110B40C68002004FB03F393FBAA +:10764000F2F310BC0B6070476FF01500704700BF7D +:10765000A4F8000091F804C00CF01F02072A00F201 +:10766000848070B591F800E0BEF10C0F32D8DFE8ED +:107670000EF0090909313C313F313107363139000B +:107680004FF0050E4B78032B27D0042B22D100237B +:107690004888002861D0A0F57F503F3884B2292C5B +:1076A00018D8292816D8DFE800F0261515155E151C +:1076B0005B15151515581515151552151515155574 +:1076C000151515151515151515151515151515156A +:1076D000151515266FF0150070BD0123D8E74FF082 +:1076E000060ECFE74FF0070ECCE74FF0030EC9E7C9 +:1076F0004FF0040EC6E74FF4A0251D4C012094F86E +:10770000986090401B031CF0200CC0B243EA0E238B +:107710004FEA021E14BF26EA000030430EF1804EED +:107720000EF5E04E18BF4FF4801C2B4322448D7998 +:1077300084F89800497982F8901043EA0C030020FD +:10774000CEF81835CEF81005CEF8145570BD4FF4AC +:107750004035D2E74FF48025CFE74FF40035CCE732 +:107760004FF48035C9E70025C7E76FF01500704773 +:107770007005002010B5114B0024C3F80441D3F864 +:107780000421C3F810411222D3F81011C3F80423C6 +:107790000720FCF7E1FF224601210720FDF70CF846 +:1077A0000748836C2BB1054B0122C3F8002500204C +:1077B00010BD403003F0ACFBF5E700BF00700040A7 +:1077C00070050020A0F10803BFF35B8F53E8002F82 +:1077D000511C43E8001CBCF1000FF7D1BFF35B8FD5 +:1077E0001AB16FF00F0383657047064B0122C3F88F +:1077F000002590F86E1009B1DA6070471A605A607F +:10780000704700BF007000402DE9F0430C4683B084 +:107810004FF0FF3363484FF0FF3203F013FC67680B +:107820007B1EFE2B42D800235F49DFF880811E4675 +:1078300017E018F803E05FFA89F6BEF1000F35D0C3 +:10784000607CD5F81825003818BF012022F080721E +:10785000013342EA0062082BC5F8182541F80CE014 +:1078600018D027FA03F001EB031503F1510C10F0C7 +:107870000100AE464FEA0C1C06F10109D9D1D5F83A +:107880001855013325F08075082BCEF8185541F8AE +:107890000C00E6D1237C083B062B07D8DFE803F079 +:1078A0005806560654060F00082A11D96FF0150421 +:1078B0003C4803F02DFB204603B0BDE8F0830322D3 +:1078C000394B012EC3F8F025627CEDD9002AEDD1A9 +:1078D0003549C1F8F4252268730012B1928902FB80 +:1078E0000333E2689A4259D32F4BA268C3F82C267F +:1078F0002746C3F830660FCF2D4D05F164060FC63D +:107900004FF0000C3B683360C5F860C0236843B19A +:107910000FCB05F1780484E80F006C66A5F888C0E9 +:10792000E8B9214B95F876100122C3F8002599B1EA +:10793000DA6020484FF0FF324FF0FF3303F082FB54 +:10794000044638B92C6EB3E70222B9E70122B7E743 +:107950000022B5E72866ABE71A605A60E9E7BFF393 +:107960005B8F55E8003F45E800C2002AF9D1BFF31C +:107970005B8F114BA86F61464FF40042E0FB023170 +:1079800018460E4A0023F8F7A3FD0022CDE90001B6 +:10799000002305F1080005F037FFCAE76FF00B047C +:1079A00086E700BFB0050020007000400006002000 +:1079B00070050020C00500203F420F0040420F002C +:1079C000414AD2F80431002B40D070B50021C2F8F2 +:1079D00004113E4CD2F8045101239360C2F8001503 +:1079E000A56E94F89810294244D1636E002B3CD0C8 +:1079F000E36FB4F888202BB135499847012814D09B +:107A0000022830D0B4F88830B4F884209A422AD9B9 +:107A10002D4AD2F82C16D2F834060133A4F8883057 +:107A200083B201EB4303C2F82C36A36F002B3ED088 +:107A3000BFF35B8F54E8003F5A1E44E80021002941 +:107A4000F8D1BFF35B8F012B31DC70BDD2F8101180 +:107A500041B1C2F810310123D2F8101193601360C4 +:107A6000536070477047A36FEBB91A48BDE8704088 +:107A700003F04EBAD2F82C665FFA85FC1CEA030FBD +:107A80004FEA430208D0194205D0B6F9003000256C +:107A9000AB42B8BF3580023693B29942EED2636EE4 +:107AA000002BA5D1E1E70C4805F020FFDDE7064BF0 +:107AB00094F876100122C3F8002509B1DA6070BD90 +:107AC0001A605A6070BD00BF007000407005002051 +:107AD000D4050020C0050020780500200069CBB245 +:107AE00000EB431000211047002001F0DFBA00BF77 +:107AF00010B5EFF31184202383F31288BFF36F8F47 +:107B0000094A136823F00201DB07116004D584F3EE +:107B10001188BFF36F8F10BD012001F041FB84F38A +:107B20001188BFF36F8F10BD90190020002001F065 +:107B300037BB00BF104603F0EBB900BF00B585B0FE +:107B400000220123CDE90223CDF800D00369CDF84E +:107B500004D0C9B2EFF3118C202282F31288BFF354 +:107B60006F8F01EB410203EB82039A6C02F0070E68 +:107B7000BEF1010F0ED002F0C002802A8CF31188F2 +:107B8000BFF36F8F0CBF6FF077004FF0FF3005B081 +:107B90005DF804FB80229A648CF31188BFF36F8F29 +:107BA000084A1A64C3F844D0436853F83130984700 +:107BB0004FF480420023684603F044FA05B05DF8B4 +:107BC00004FB00BF357B0000C9B2012908B508D805 +:107BD000036901EB410103EB8103986C00F007009E +:107BE00008BD05490548064A7F23FAF7A7F8044867 +:107BF0007F21FAF799F800BF20F90000C8E60000DD +:107C0000E0F80000064C0749074808B522464FF443 +:107C1000DF73FAF793F84FF4DF712046FAF784F830 +:107C2000E0F8000020F90000C8E60000194A831AB5 +:107C3000C3F34713012B70B52AD805460E46EFF360 +:107C40001181202080F31288BFF36F8F03EB430074 +:107C500002EB800CDCF8482012F0800411D10122E4 +:107C6000CCF8482081F31188BFF36F8F0A4A02EBEA +:107C7000C3035B689847214628463346BDE87040F9 +:107C8000184781F31188BFF36F8F4FF0FF31F3E78F +:107C9000FFF7B8FF3819002060F90000002270B526 +:107CA000012104461046FCF787FD0F4801F0C0F99A +:107CB0000E4B984215D101F0CDF925690C492846A3 +:107CC000FAF780FA00280BDB0126AE642469084924 +:107CD00004F12000FAF776FA002801DB666500203F +:107CE00070BD6FF0040070BDED7E00000000AD0BB4 +:107CF00044F9000030B4114B00EB400203EB820367 +:107D000001460020D3E910521864EFF311802024BB +:107D100084F31288BFF36F8F9C6C04F0C00444F0AE +:107D200002049C6480F31188BFF36F8F1DB12B4652 +:107D3000034830BC184730BC704700BF38190020DA +:107D40006CE2000010B4EFF31180202181F312885F +:107D5000BFF36F8F174A136843F002041460DA0709 +:107D600007D480F31188BFF36F8F012010BC01F09E +:107D70009DB94FF08043D3F80C24D3F80C34DB07C3 +:107D8000EFD5EFF3118481F31288BFF36F8F0A4AA6 +:107D9000936C03F0C00343F00203936484F31188EF +:107DA000BFF36F8F80F31188BFF36F8F002010BC7B +:107DB000FFF7A0BF901900203819002010B5C9B2F4 +:107DC0000129026922D8EFF3118C202383F3128852 +:107DD000BFF36F8F01EB410302EB8302936C13F04F +:107DE000400406D08CF31188BFF36F8F4FF0FF3043 +:107DF00010BD012393648CF31188BFF36F8F436828 +:107E000003EBC1035B689847204610BDFFF7FAFEFD +:107E100038B5C9B20469EFF3118E202585F31288B5 +:107E2000BFF36F8F01EB410504EB850CDCF8484094 +:107E300004F00705012D0CD004F0C004802C8EF353 +:107E40001188BFF36F8F0CBF6FF077004FF0FF30DA +:107E500038BD8024CCF848408EF31188BFF36F8F73 +:107E6000CCE91023436853F831309847002038BDDF +:107E70001B4BC21A10B5C2F347120C46EFF3118C1C +:107E8000202181F31288BFF36F8F02EB420103EBD5 +:107E90008103996C01F0070EBEF1010F10D001F0C3 +:107EA000C00140298CF31188BFF36F8F234608BFB0 +:107EB0006FF07701BDE8104018BF4FF0FF31184751 +:107EC000402199648CF31188BFF36F8F05490648F0 +:107ED000C3E9101450F83220BDE81040104700BF2D +:107EE00038190020DD7A000060F90000012810B583 +:107EF000014608D0032827D0002831D11E4B9B6CA7 +:107F00005B071DD010BD1C4B0020D3E91342D86481 +:107F1000EFF3118C202080F31288BFF36F8F586D20 +:107F200000F0C00040F0020058658CF31188BFF3E8 +:107F30006F8F002CE6D023461048BDE8104018474C +:107F4000BDE81040FFF7D6BE0D490E480E4A40F27C +:107F5000DD23F9F7F3FE0C4840F2DD21F9F7E4FEEA +:107F600007490848084A40F2ED23F9F7E7FE0648BA +:107F700040F2ED21F9F7D8FE381900206CE200003C +:107F800098E80000C8E60000E0F80000024BC0B22C +:107F900003EB4010704700BF381900202DE9F04175 +:107FA000484BBFF35B8F0646012453E8002F43E89C +:107FB00000410029F9D1BFF35B8F002A4DD0002E7C +:107FC00049D0731E012B70D8012E07D14FF080438A +:107FD000D3F81C3403F00303012B3CD003F06AFCFC +:107FE000054618B9384B1B78002B4BD1EFF311879E +:107FF000202383F31288BFF36F8F0125DFF8CC8035 +:108000004FF08044D4F81824D4F81834D20305D59E +:1080100003F00303012B19D0012E17D0002D38D007 +:108020003846FCF789FCD4F81835002BEAD1D4F88F +:108030000421002AE6D0C4F804310123D4F8042135 +:10804000C4F81835C8F88031A360DBE735B387F38F +:108050001188BFF36F8FBDE8F0811D491D484A604C +:10806000CA608C60FAF7C4F80028A8DA1A491B48DD +:108070001B4A40F29123F9F761FE194840F2912121 +:10808000F9F752FE4FF080430222C3F80823074657 +:10809000B4E70021212004F017FCC4E74FF080432F +:1080A0000222C3F80423BDE8F0810E490B480C4AB4 +:1080B00040F2A323F9F742FE094840F2A321F9F761 +:1080C00033FE00BF34190020531A002000E100E005 +:1080D000241900205819002080F40000C8E6000090 +:1080E000E0F8000098E800000A2838B5044607D0F8 +:1080F000074DAB6806485B68E1B29847204638BD3B +:10810000034DAB680D215B6828469847F1E700BF37 +:10811000A8E2000008B5074802F04AF838B106485E +:10812000FCF7ECFE0448F9F7B1FD002008BD6FF044 +:10813000120008BDA8E20000E980000043685B6807 +:10814000D3F810350B600020704700BF43685B68B0 +:1081500002EA010021EA0201C3F808050020C3F881 +:108160000C15704743685B680020C3F8081570471A +:1081700043685B680020C3F80C15704743685A6871 +:10818000D2F8043521EA03000B40C2F808050020AC +:10819000C2F80C35704700BF38B5046900293AD0E1 +:1081A0004B685BB365684DB18D421DD02B4601E035 +:1081B00099420CD018461B68002BF9D1DAB10D603A +:1081C000A36861600BB1002038BDA160FBE70B68BC +:1081D0000360A368994205D000230B60002AF2D007 +:1081E0006568ECE7A060F7E7A0680B686360814210 +:1081F000F2D1A360F0E76FF0150038BD0C490D4ACD +:108200000D484023F9F79AFD0C48F9F797FD094806 +:108210004021F9F789FD0A49064A07483F23F9F743 +:108220008DFD0848F9F78AFD02483F21F9F77CFDEA +:10823000C8F9000070F90000C8E60000DCF9000091 +:10824000ACF90000B8F9000038B5446823692BB1D7 +:108250001034204601F026FB054608B1002038BD49 +:108260000146204601F0DEFA084B98420BD108493E +:1082700020462A4601F0A2FA06202A460521FCF7EC +:108280009BFA0020EBE76FF0040038BD0000AD0B57 +:1082900099840000064C0749074808B522464FF468 +:1082A0006C73F9F74BFD4FF46C712046F9F73CFD08 +:1082B000F4E9000028EA0000C8E600002DE9F043D8 +:1082C0004068037B01F01F06154646EA431640F25C +:1082D0000633D40687B003EA050354BFC2F3401245 +:1082E0000322B3F5837F8DF8032000F0A38028D804 +:1082F000062B52D049D9B3F5807F4BD101240123FD +:108300008B4029032FD46F0344BF4168C1F80C355B +:10831000036973B300F110080DF1020231464046C3 +:1083200001F052FA15F4403F074638D13146404635 +:1083300001F0C2FA534B9F4256D0002007B0BDE86F +:10834000F08340F20224A3425FD0B3F5407F08BF20 +:108350000324D4D0B3F5007F1CD101238B40290323 +:108360004FF00204CFD54168C1F808350369002BEE +:10837000D0D1C5F34043710985F48035C5F300457C +:1083800074D0012958D0FFF785FF33B1022B08BF05 +:108390000424B4D06FF01500D0E71C46AFE701AB62 +:1083A0004FF0000903AA314640460493CDE90199F4 +:1083B000CDF80C90CDF8149001F096F8314B98421E +:1083C000E8D115F4003322D1CDE9043303AA0DF12D +:1083D000030331464046039301F086F8294B984247 +:1083E000D8D1284B9F42A8D19DF80210404601F0F9 +:1083F00065FAB842A1D024492448254AEC23F9F76C +:108400009DFC2348EC21F9F78FFC052477E79DF8C4 +:1084100003008DF80E0085F48035C5F300454B460A +:1084200003AA314640468DF80C408DF80D5001F0FE +:1084300025F9D3E7072462E706F01F0640F2FF3173 +:10844000F140C9079FD5134901EB860143EA450373 +:1084500043EA8203D1F8002722F4E16243EA0423CD +:1084600022F007021343C1F8003766E706F01F0643 +:108470004FF0FF31F140C80748BF4FF0A041E3D4AF +:1084800081E700BF0000AD0B20FA0000C8E6000045 +:10849000F4F9000000030050430970B506D0012B29 +:1084A00003D1144B144E596829B970BD134B144EA7 +:1084B00059680029F9D000F01F0001250C6885409B +:1084C0008A682A4003D04B6833B130469847002C65 +:1084D000EBD021462468F3E70A490B4A0B48642392 +:1084E000F9F72CFC0A48F9F729FC07486421F9F749 +:1084F0001BFC00BF9419002080E20000A01900209E +:1085000094E2000034FA000070F90000C8E60000B0 +:10851000DCF90000F0B54068057B046901F01F0636 +:1085200087B046EA4516002C00F08280B2F5001FA5 +:1085300045D00024B2F5800FCDE901442ED0B3F12F +:10854000C06F3AD0B3F1007F14BF012302238DF82E +:10855000043003AF01AB049300230393BB60836833 +:10856000CB40DC0702D4B2F1A07F11D000F110059E +:108570003A463146284600F0B7FF2F4B98424AD181 +:1085800001223146284601F0A5F9002007B0F0BDD0 +:10859000730919D0012B35D0FFF77CFEB3F1007FB2 +:1085A0000CBF042305238DF8043001AB03AF039403 +:1085B000049300F11005BC60DAE70323C7E73146F6 +:1085C000103001F031FAE0E706F01F034FF0FF3200 +:1085D000DA40D10748BF4FF0A042DDD503F5E07384 +:1085E00000F1100552F82330DB07C1D40DF103046C +:1085F00022463146284601F0E7F8104B98420DD04C +:108600000294B5E706F01F0340F2FF32DA40D207CA +:10861000C2D50B4AE2E76FF01500B7E721462846BE +:1086200001F052F9044B9842EAD06FF00B00ADE72D +:108630006FF08500AAE700BF0000AD0B0400AD0B92 +:108640000003005010B54FF0805282B0136E526E8E +:10865000082928BF082112BA0C461BBA00920A4604 +:108660006946019305F03EFD204602B010BD00BFF3 +:10867000014B01221A60704700C000400C290369B9 +:1086800012D110B40A495B6A0A480B4C01FB03F390 +:1086900080FB0310D917C1EBA04104FB113300206C +:1086A000C2E9001310BC70476FF08500704700BF2F +:1086B00090D0030083DE1B4340420F0010B50346F9 +:1086C00000201C69FFF762FCA062B8B14FF0FF32D6 +:1086D0000021204602F010FC04F1100002F0DCF84A +:1086E000002201210C20FCF767F80C20FCF734F87D +:1086F000074B0122C3F80423002010BD054906489A +:10870000064A7723F9F71AFB04487721F9F70CFB9F +:1087100000C00040CCFA0000C8E6000090FA00005B +:10872000044B00690022C3F80021D3F8003102F0A5 +:10873000EFBB00BF00C0004070B50469A36A84B0FD +:108740009BB33F2901D00C292CD104F110064FF026 +:10875000FF324FF0FF33304602F0A6F800251E4BE3 +:10876000A06A03950322694602920193F9F740FD3E +:10877000A84227DB4FF0FF324FF0FF33204602F0D4 +:1087800061FCA06AF9F7F0FD002811DB134BD3F868 +:108790000825626201225A60304602F063F92846D9 +:1087A00004B070BD6FF08500FAE76FF00A00F7E7DC +:1087B0000B490C480C4A4223F9F7C0FA0A484221F7 +:1087C000F9F7B2FA06490748074A3D23F9F7B6FA1E +:1087D00005483D21F9F7A8FA7186000000C0004065 +:1087E000DCFA0000C8E6000090FA000030B40F493F +:1087F0000B68D01AC3180B6022F07F424B68A2F5B9 +:10880000001443F10003B4F5400F4B600AD2084B4B +:108810001B6819068C184FEA1323064A43F100051A +:10882000C2E9004530BC04F071BD00BF900D0020CE +:10883000E0190020980D00202DE9F047444B1B68FB +:1088400004461A0A0D461B06BFF35F8F4149D1F853 +:108850000415CB1842F10002B1F5801F06D23E4943 +:10886000D1E90001834272EB01016CD3A34272EBA8 +:10887000050151D23949E31A65EB02028B4272F1CC +:1088800000025ED2DFF8D8E0DEE902239D4208BF95 +:10889000944250D02F4A334F4FF480364FF00009A6 +:1088A000C2F8486324F07F48C2F84091D2F84031C2 +:1088B000C2F84085C2F84463D2F804156FF0020C88 +:1088C000ACEB0103434423F07F43BB4233D9032085 +:1088D000D2F8403163B1D2F80415A1EB080323F0BC +:1088E0007F43B3F5000F26D9C2F84091D2F840314A +:1088F00001EB000A2AF07F43C2F84035C2F8446316 +:10890000D2F80415ACEB0103534423F07F43BB4280 +:1089100000F10100DCD80EE0134BBFF35B8F53E88E +:10892000001F41F0010143E80012002AF7D1BFF314 +:108930005B8FDFF82CE00D4A0023CEE90245CEE93B +:108940000023BDE8F08713F1807342F100028DE748 +:10895000E019002000100140980D00200100800067 +:10896000800D0020FDFF7F00D8190020ED8700005A +:108970002DE9F047324CDFF8CCC0334B334FC4F80D +:1089800008330022C4F848334FF4803602234FF4F2 +:10899000003A4FF0FF384FF0FF39C4F808250121A5 +:1089A000CCE902891120C4F80463C4F80433C7F881 +:1089B00080A1FBF701FF264D1120FBF7CDFE01231F +:1089C000A36023602B60BFF35B8F55E8008F28F016 +:1089D000010345E80032002AF7D1BFF35B8FC4F8EA +:1089E0000863BFF35F8FBFF36F8F1A480021FFF753 +:1089F00023FF18F0010F05D10220FFF7CFFA002066 +:108A0000BDE8F087BFF35B8F55E8003F43F00103FB +:108A100045E80032002AF7D1BFF35B8F0E4BC4F854 +:108A20000463BFF35B8F1B68BFF35B8FDB0748BF3B +:108A3000C7F800A10220FFF7B1FA0020BDE8F087D7 +:108A400000100140800D002003000F0000E100E055 +:108A5000DC190020FFFF7F00D8190020434BD3F81A +:108A60000423900705D4414BD3F80423D10312D437 +:108A70007047D3F80421002AF5D03D4A0021C3F8FD +:108A80000411D3F80431136801331360374BD3F862 +:108A90000423D103ECD52DE9F043364ABFF35B8FB5 +:108AA00083B052E8001F21F0010042E80004002CCE +:108AB000F7D1BFF35B8FCA0705D4D3F8403113B9A0 +:108AC00003B0BDE8F083294A294B0021C2F84011C8 +:108AD000D2F840111B68190A1B06BFF35F8FD2F84A +:108AE0000425D31841F10001B2F5801F0AD2224AB1 +:108AF000D2E90067B34271EB070203D213F180732E +:108B000041F10001EFF3118C202282F31288BFF3B0 +:108B10006F8F1A4CD4E90267B342B9411FD34FF0AB +:108B2000FF384FF0FF39C4E90289104B21686268B1 +:108B300000204FF480352060C3F84853C3F840014B +:108B4000D3F840318CF31188BFF36F8F0029B7D071 +:108B500000923B463246884703B0BDE8F0838CF371 +:108B60001188BFF36F8F03B0BDE8F08300100140A0 +:108B7000E0190020D8190020980D0020800D002059 +:108B8000411CF8B566D0344B9842A8BF184601285E +:108B9000B8BF0120314B1B68190A1B06BFF35F8F5A +:108BA0002F4AD2F80425D31841F10001B2F5801FF5 +:108BB00005D22C4AD2E90045A342A94147D32A490C +:108BC000D1E900219B1AB3F5000F22D2224C1844A0 +:108BD000A04228BF2046254CBFF35B8F54E8007F9E +:108BE00027F0010344E80035002DF7D1BFF35B8F78 +:108BF0001B4D4FF48036C5F80863BFF35F8FBFF39A +:108C00006F8F101841F10001FFF716FEFA0702D42A +:108C1000F8BD1148DFE7BFF35B8F54E8003F43F036 +:108C2000010344E80032002AF7D1BFF35B8F104BF9 +:108C3000C5F80463BFF35B8F1B68BFF35B8FDB0773 +:108C4000E6D50C4B4FF40032C3F80021F8BD13F108 +:108C50008073B4E700489DE7FFFF7F00E019002024 +:108C600000100140980D0020900D0020DC1900201C +:108C7000D819002000E100E0104B1B68190A1B0600 +:108C8000BFF35F8F0E4AD2F80425D31841F10001DB +:108C9000B2F5801F0DD230B40A4AD2E90045A34292 +:108CA000A94101D213F18073074A106830BC181A29 +:108CB0007047054A1068181A704700BFE019002075 +:108CC00000100140980D0020900D0020BFF34F8F41 +:108CD0000549064BCA6802F4E0621343CB60BFF358 +:108CE0004F8F00BFFDE700BF00ED00E00400FA0574 +:108CF00008B54FF08053D3F830210D2A0FD04FF034 +:108D00001023D3F80C22D20700F19580D3F800226B +:108D1000002A6ADBD3F80432002B66DB08BD4FF073 +:108D200080410020C1F80C01524AC1F81001C1F87D +:108D30003805D3F80404C2F82005D3F80804C2F8B3 +:108D40002405D3F80C04C2F82805D3F81004C2F89F +:108D50002C05D3F81404C2F83005D3F81804C2F86F +:108D60003405D3F81C04C2F84005D3F82004C2F837 +:108D70004405D3F82404C2F84805D3F82804C2F8FF +:108D80004C05D3F82C04C2F85005D3F83004C2F8CF +:108D90005405D3F83404C2F86005D3F83804C2F897 +:108DA0006405D3F83C04C2F86805D3F84004C2F85F +:108DB0006C05D3F84404C2F87005D1F80024D0073C +:108DC00010D56FF00102D3F83431C1F80024002B24 +:108DD00095D04FF010224FF08043D2F80822C3F80C +:108DE00058258CE7D3F83431F1E7234A0123C2F840 +:108DF0000435D2F80034002BFBD04FF010231221A1 +:108E00001D4AC3F80012D2F80034002BFBD04FF0FB +:108E100010231221184AC3F80412D2F80034002B90 +:108E2000FBD000231449C2F80435D1F80034002BDC +:108E3000FBD0FFF74BFF104A0123C2F80435D2F8EC +:108E40000034002BFBD04FF010210B4AD1F80C322C +:108E500023F00103C1F80C32D2F80034002BFBD010 +:108E600000230549C2F80435D1F80034002BFBD0AB +:108E7000DFE700BF00C0004000E00140004700BF46 +:108E800001F06EB910B50468B4FA84F3C3F11F039E +:108E90000122DBB29A4094B1BFF35B8F24EA020255 +:108EA00050E800CFA44504D140E8002EBEF1000FE9 +:108EB000F6D1BFF35B8FE6D102480B7010BD0248BC +:108EC00010BD00BF0000AD0B0200AD0B036823FA1C +:108ED00001F2D20715D400B501228A4043EA02010B +:108EE000BFF35B8F50E800CF9C4504D140E8001EE3 +:108EF000BEF1000FF6D1BFF35B8F04D109485DF8D6 +:108F000004FB094870470368BFF35B8F42EA030123 +:108F100050E800CF9C45EED140E8001EBEF1000FA6 +:108F2000E9D0F5E70000AD0B0400AD0BF0B5054648 +:108F300083B000284AD0012868D14FF08043002236 +:108F4000C3F808035860C3F80021D3F800310123A7 +:108F50000DF107078DF8073042F210744FF080468C +:108F6000A5B9D6F8183403F48033FFB1D6F8182425 +:108F700002F003023A603BB19DF80700012803D1DB +:108F8000FFF77EFF013CEBD103B0F0BD012D31D1E5 +:108F9000D6F80C3403F4803387B1D6F80C2402F0F1 +:108FA00001023A70002BE7D103B0F0BD002BEBD0EB +:108FB0000120FFF765FF013CD3D1E5E7002BE3D0AB +:108FC0000120FFF75DFF013CE2D1DDE74FF0804378 +:108FD00002210122C3F80813DA60C3F80401D3F8B0 +:108FE0000431012307468DF8073042F210744FF028 +:108FF0008046B5E70A490B480B4A40F2A743F8F709 +:109000009DFE094840F2A741F8F78EFE0449054845 +:10901000064AFB23F8F792FE0448FB21F8F784FE8A +:1090200098E80000C8E6000034FB0000F4FA0000F5 +:10903000054A1179034621B90121044813601171D1 +:1090400070470348704700BFE41900200000AD0BD3 +:109050000C00AD0B08B5104B1A798AB11B681BB117 +:109060000020FBF79BFB40B10C4B4FF080410020F0 +:109070000122C1F818051A7008BDFBF76DFBF3E774 +:1090800007490848084A40F25913F8F757FE0648BE +:1090900040F25911F8F748FEE4190020501A002058 +:1090A00068FB0000C8E60000F4FA000038B5344C54 +:1090B0002379002B57D0B8B1012848D1314B4FF05C +:1090C0008042002521681D6001241D68146021B1C3 +:1090D0004FF08043C3F8040338BD1A68002AFCD05F +:1090E00000221A601B6838BD4FF08043D3F8182463 +:1090F000D3F81814D0030CD4D3F81424D10712D405 +:1091000000214FF08040204BC0F818151F4A022064 +:10911000D7E701F003010129F3D00029F0D00020A6 +:10912000FFF704FFECE7D3F81C249207F7D422687A +:109130001AB10222C3F8042338BDD3F80421002A4F +:10914000FBD00022C3F80421D3F8043138BD104904 +:109150001048114A40F2FD13F8F7F0FD0E4840F2B6 +:10916000FD11F8F7E1FD0D490A480B4A4FF4D4739D +:10917000F8F7E4FD08484FF4D471F8F7D5FD00BFC7 +:10918000E4190020000100400401004008000040F4 +:1091900098E80000C8E60000F4FA000068FB000050 +:1091A00008B5094B1B791BB1BDE80840FFF7BEBEEF +:1091B00006490748074A40F21723F8F7BFFD05485C +:1091C00040F21721F8F7B0FDE419002068FB000019 +:1091D000C8E60000F4FA0000F8B54FF08043D3F879 +:1091E000045305B31E4F01260024B5FA85F0C0F1E3 +:1091F0001F00830003F580739BB203F1804306FADE +:1092000000F2196892B225EA020551B14FF080418F +:109210001C60012A1B68C1F8082305D13B68C0B255 +:109220009847002DE1D1F8BD022A0DD1D1F81834AC +:10923000D1F818349B07F1D1C1F81865C1F804239F +:109240008E60002DD1D1EEE706490748074A40F26B +:109250007633F8F773FD054840F27631F8F764FD90 +:10926000E419002098E80000C8E60000F4FA0000C5 +:10927000064C0749074808B522464FF46C73F8F7C7 +:109280005DFD4FF46C712046F8F74EFDF4E90000E7 +:1092900028EA0000C8E60000104A430970B5D35C14 +:1092A0000F4D00F01F021344DBB20833044635F8BB +:1092B0001330DA050E4607D5C3F3432305EBC3028B +:1092C00055F8333052689847AB682BB1EA6831469D +:1092D0002046BDE87040184770BD00BF8CFC000000 +:1092E00090060020034611F00100CAB204D1C2F377 +:1092F000400092070AD470474FF0A04CDCF82015CC +:109300001960CCF820150029F1D070470449D1F834 +:1093100020255A60101E18BF0120C1F82025704773 +:10932000000300501C4A430910B5D35C1B4C00F0ED +:109330001F000344DBB2083334F81310CA0515D5F7 +:1093400021F4F85224F81320C1F3432104F10E0252 +:1093500004F1620001E0904209D032F8023F13F4B8 +:10936000807FF8D0C3F343239942F4D110BD00238A +:109370000B4844F83130FFF7A9FD0A4B9842F5D06D +:1093800009490A480A4A4FF4DC73F8F7D7FC084841 +:109390004FF4DC71F8F7C8FC8CFC0000900600204C +:1093A000FC0600200000AD0B20FA0000C8E600001B +:1093B00088FB00001E4B4A0910B59B5C1D4C01F058 +:1093C0001F0C6344DBB2083334F813309C0611D50C +:1093D0009C070FD401685B0B01229A40C1F8082357 +:1093E000026802EB8303D3F8102522F00302C3F8CE +:1093F000102510BD8AB1012A17D1614640F2FF3312 +:10940000CB40DB0711D50C4B03EB8103D3F80027CE +:1094100022F44032C3F8002710BD4FF0FF33CB4099 +:10942000DA0748BF4FF0A043EED4FFF721FF00BF9B +:109430008CFC000090060020000300502DE9F8434A +:10944000234BDFF890804F0901F01F09DC5D4C448D +:10945000E4B2083438F81430DD0702D41E48BDE801 +:10946000F8830D460646FFF7A5FF38F81430990635 +:1094700006D55B0B326803F5A273002142F8231076 +:109480002846FFF74FFF002328F814301FB1012FA3 +:1094900016D0FFF7EDFE4FF0FF33EB40DA0748BF81 +:1094A0004FF0A042F5D502EB85020C4BD2F8001725 +:1094B0000B480B4043F00203C2F80037BDE8F883C5 +:1094C0004D4640F2FF33EB40DB07E2D5054AEAE7C1 +:1094D0008CFC0000900600200400AD0BF0F8FCFFAF +:1094E0000000AD0B000300502DE9F0415D4B176803 +:1094F0004E0901F01F0E9C5D744482B0E4B22FB39C +:10950000594D04F1080C35F81C3003F02208B8F16D +:10951000220F70D0002E72D0012E79D140F2FF368A +:1095200026FA0EF6F60773D5504E3F7806EB8E06F8 +:1095300023F0020343F0010325F81C30D6F800376E +:1095400023F00F0343EA8703C6F8003753688BB153 +:10955000454D1F785E6804F1080C35F81C3013F097 +:10956000020F33D0002E46D123F01C0343EA8703B9 +:1095700025F81C3093682BB31F685E680846FFF718 +:10958000D1FEFFB1384DD5E900329F4201D196425C +:1095900064D037480DF10701FFF774FC354B984252 +:1095A00011D19DF8072053029BB2083445F8327060 +:1095B00005EBC202566035F81420134343F4807360 +:1095C00025F814302B4802B0BDE8F08141F6DF7E6B +:1095D00003EA0E0325F81C30002EC5D0032F0AD84D +:1095E0005668D0F800E0766836789FB906F5A2761E +:1095F0004EF82670B8E7204802B0BDE8F0814FF081 +:10960000FF36CE40F60703D58E464FF0A0468CE7D6 +:10961000FFF72EFE0EEB860E43EA4633DEF810858A +:1096200028F00308CEF81085006800EB86060802D3 +:10963000D6F810E52EF44F3E2EF4407EC6F810E525 +:10964000D6F810E500F47C5040EA074043F02003D0 +:1096500040EA0E009BB2C6F8100585E700231A46C3 +:10966000A3E700BF8CFC0000900600200003005020 +:10967000FC0600200000AD0B0400AD0B2DE9F04707 +:10968000494C4E0914F806C001F01F04A4445FFAC7 +:109690008CFCE2B3454F0CF1080837F8185015F070 +:1096A000020F02D115F0200F4CD115F01C0F04D081 +:1096B00092F801E0BEF1010F44D01EB1012E44D05A +:1096C000FFF7D6FD4FF0FF34CC40E607F8D54FF05A +:1096D000A04E01F5E07476465EF8249092F802E020 +:1096E00092F801A0127829F4E1694FEA8E0E29F070 +:1096F00007094EEA4A0E4EEA090E4EEA022245F0EA +:10970000030542F0010227F8185046F82420B3B1AF +:10971000264C0CF1080C34F81C20950712D51E7845 +:10972000056841F6DF7E06F5A27702EA0E024FF0E9 +:10973000000E24F81C2045F827E05D7885B91C4808 +:10974000BDE8F0871B48BDE8F08740F2FF36E640F1 +:10975000F607B5D5184E04F5E07456F82490BDE729 +:1097600000689F7800EB860042EA463242F0200211 +:1097700024F81C20D0F8102522F499120B0222F4B0 +:10978000F8522D04C0F8102503F47C5305F440353D +:109790003905D0F810252B4301F480110B431343F6 +:1097A000C0F81035CBE700BF8CFC0000900600200D +:1097B0000000AD0B0400AD0B00030050014BC3E9EA +:1097C000021270479006002008B58AB10E484B0976 +:1097D00001F01F01C35C0D480B44DBB2083330F8C5 +:1097E0001330990643BF5B0B13700948094808BD45 +:1097F00009490A480A4A40F20D33F8F79FFA084827 +:1098000040F20D31F8F790FA8CFC00009006002031 +:109810000000AD0B0400AD0B30FC0000C8E60000FA +:1098200088FB000070B5194D95F874400CB11848CC +:1098300070BD06465422214605F1100004F060FC7C +:109840006B6E3268214613B904E0082911D001314A +:109850008B42FAD10023C2F87C3142F30730D2F8B0 +:109860007C31FAF779FF012385F87430EB660948FB +:1098700070BD094909480A4A40F2AA33F8F75EFA6E +:10988000074840F2AA31F8F74FFA00BF90060020CF +:109890000C00AD0B0000AD0B74FC0000C8E600002E +:1098A0003CFC0000034B93F87400003818BF012003 +:1098B000704700BF90060020FFF7C0BD0148FFF7CA +:1098C00005BB00BFF80600200148FFF7DBBA00BF68 +:1098D000F806002070B54D4B4D4D4C0901F01F0CA2 +:1098E0001B5D6344DBB2083335F8133013F01C0FF3 +:1098F000C3F3820E71D00568D5F80463002EA4BFAF +:109900004FF00046C5F804639D0619D513F0020513 +:1099100016D15B0B9C00066804F580717550715878 +:1099200001682144D1F8104544F00104C1F8104504 +:109930002AB10168012202FA03F3C1F8043370BDB1 +:10994000002A56D0BEF1040F15D0BEF1050F18D075 +:1099500074B3012C13D140F2FF3323FA0CF3DC076C +:109960000DD52C4BD3F8102522FA0CF202F001028F +:109970000232284911E0032234B1012C26D0FFF72E +:1099800077FC0222002CF8D14FF0FF3323FA0CF3BE +:10999000D90748BF4FF0A041F1D501EB8C01D1F8B8 +:1099A000003723F4403343EA0243C1F8003770BD67 +:1099B0004FF0FF33CB40D807E1D54FF0A043D3F8A9 +:1099C0001025CA4002F001020232DDE740F2FF3307 +:1099D00023FA0CF3DB07D2D5CBE70F490F48104A27 +:1099E00040F2FA33F8F7AAF90D4840F2FA31F8F7E5 +:1099F0009BF90C4909480A4A40F20E43F8F79EF9D0 +:109A0000074840F20E41F8F78FF900BF8CFC0000C8 +:109A100090060020000300500CFC0000C8E6000087 +:109A200088FB000080FC0000FFF7C4BC2DE9F04F6C +:109A3000DFF8ECB2BB4BDBF86440D3F8040387B02B +:109A4000002C3ED00025C0B2B74940F000402B4664 +:109A50000126AC4604E0082B01F1040100F054811A +:109A600023F0404206FA02F2104205D00F681FB1FF +:109A7000C1F800C00F68154301339C42EBD1A94BDC +:109A8000D3F87C3113BBCDB1012495FAA5F2B2FA1B +:109A900082F2930003F1804303F5C04304FA02F21B +:109AA000D3F81005D3F8101525EA0205C1F30141DA +:109AB000C0F30520FFF7F0FB002DE6D107B0BDE8AD +:109AC000F08FD3F87C31002BF8D02546954A00233F +:109AD000C2F87C31DBF87010D2F87C2104A8CDE903 +:109AE0000433FFF7FFFB2F46904D914E0DF1100907 +:109AF000B84615F8013B8F49DA0803F007038A5C82 +:109B000022FA03F3DF0724D48B4BAB4209F104099B +:109B100006F10106EDD1DBF86420474600231AB9AF +:109B200005E0082B00F0F08001339A42F9D17D4B1B +:109B3000D3F87C2122B10022C3F87C21D3F87C31F8 +:109B4000DBF8701004A8FFF7CDFB0028CCD13D4610 +:109B500099E7D9F80030002BD6D032780395CDE9BB +:109B6000016857014FF0010A93FAA3F3B3FA83F3A4 +:109B700043EA0700714A450900F01F04525D224480 +:109B8000D2B208323BF81210DA0803F0070319F8D2 +:109B900002600AFA03F326EA030309F80230C1F36C +:109BA00082024FEA910C11466DB1012D5BD06449E0 +:109BB0006448654A4FF46C73F8F7C0F862484FF494 +:109BC0006C71F8F7B1F84FF0FF33C340DC07EED506 +:109BD0004FEA800E0EF1A0441CF0040FD4F8006789 +:109BE000C6F3014846465AD1B8F1020F0CBF4FF0F8 +:109BF000030C4FF0020C04464FF0A0439E44032A8E +:109C0000DEF8003723F4403343EA0C43CEF8003744 +:109C10001DD0B8F1020F18D0032E01D1022A16D0A0 +:109C2000CDB1012DC3D140F2FF33E340DA07BED5F9 +:109C3000464B0AFA04F4C3F82045D9F80030002B4B +:109C400092D1DDE90168039D5EE7012AE8D1FFF7C3 +:109C500023FB002DE5D14FF0FF33E340DB07A6D512 +:109C60004FF0A043E5E740F2FF33E340DE079ED527 +:109C70004FEA840E0EF1A0431CF0040FD3F8006AE3 +:109C8000C6F3014803F54073464624D1B8F1020FEC +:109C90002E4B0CBF4FF0030C4FF0020CAEE70090C0 +:109CA000FFF7FAFAD4F800370098C3F301439E4255 +:109CB00001D00446D4E7D4F8003723F44033C4F885 +:109CC0000037D4F8003723F4403343EA0843C4F89C +:109CD00000370446C4E70093FFF7DEFA009BD3F891 +:109CE0000027C2F301429045A2D1D3F8002722F405 +:109CF0004032C3F80027D3F8002722F4403242EA6A +:109D00000842C3F8002793E711490E48114A40F270 +:109D1000AA33F8F713F80F4840F2AA31F8F704F81D +:109D20009006002000600040006100409CFC0000A4 +:109D30009CFC0000000700209EFC00008CFC000042 +:109D400028EA0000C8E60000F4E900000003005023 +:109D500074FC00003CFC000010B5C8B1114C034677 +:109D6000207898B91B784FF0804203F00103C2F8C5 +:109D70007835FAF713FD18B101230B48237010BD95 +:109D8000FAF7EAFC012308482370F8E7074810BDFA +:109D900007490848084A7523F7F7D0FF0648752198 +:109DA000F7F7C2FF511A00200000AD0B0C00AD0BFD +:109DB000E0FC0000C8E60000A0FC000008B548B1C7 +:109DC0004FF080434FF46072C3F80823074B0268DA +:109DD0001A6008BD06490748074A4FF4A473F7F70D +:109DE000ADFF05484FF4A471F7F79EFFEC19002072 +:109DF000ECFC0000C8E60000A0FC00004FF080432F +:109E00004FF46072C3F80423704700BF4FF08043E3 +:109E10004FF46072C3F80823704700BF10B54FF0CD +:109E20008043D3F8044362070DD5D3F8082152B11B +:109E3000554A0021C3F808111268D3F80831002AE6 +:109E400000F096809047A3060ED54FF08043D3F8DC +:109E500014214AB14D4A0020C3F814011268D3F806 +:109E60001431002A60D0904760060FD54FF0804330 +:109E7000D3F8182152B1454A0021C3F818111268CD +:109E8000D3F81831002A43D00120904721060DD580 +:109E90004FF08043D3F81C2142B13D4A0020C3F863 +:109EA0001C011268D3F81C3132B39047E2050FD57C +:109EB0004FF08043D3F8202152B1354A0021C3F836 +:109EC00020111268D3F82031002A45D00120904794 +:109ED000A30510D54FF08043D3F824215AB12C4A62 +:109EE0000021C3F824111268D3F8243142B3BDE82D +:109EF00010400220104710BD26492748274A40F24B +:109F00008D13F7F71BFF254840F28D11F7F70CFF73 +:109F100023492148214A4FF4C273F7F70FFF1F4826 +:109F20004FF4C271F7F700FF1D491B481B4A40F26E +:109F30007D13F7F703FF194840F27D11F7F7F4FEA0 +:109F400014491548154A40F29B13F7F7F7FE1348DA +:109F500040F29B11F7F7E8FE0E490F480F4A4FF405 +:109F6000CA73F7F7EBFE0D484FF4CA71F7F7DCFE42 +:109F70000C490948094A4FF4BA73F7F7DFFE07485E +:109F80004FF4BA71F7F7D0FEF4190020F019002051 +:109F9000EC1900204CFD0000C8E60000A0FC000009 +:109FA00028FD000004FD000008B5FFF737FFBDE8FD +:109FB0000840FFF711B900BF38B5B0B1104C237895 +:109FC0008BB9104A116051B10F4D0C20C5F800310A +:109FD000D5F80031FAF7C0FB0123C5F8043301239B +:109FE00023700A4838BD0A4838BD0A490A480B4A56 +:109FF0003C23F7F7A3FE09483C21F7F795FE00BF85 +:10A00000521A0020F819002000C000400000AD0BDB +:10A010000C00AD0BE0FC0000C8E600006CFD000089 +:10A0200038B5184B1B78012B22D1174D0022C5F8EB +:10A030000021164AD5F800112B6013680BB11448A3 +:10A0400038BD642404E00420FEF71AFF013C0DD063 +:10A05000D5F80031002BF6D00023C5F80031D5F833 +:10A0600000310B48084B01225A6038BD0948F9E716 +:10A0700009490A480A4A7423F7F760FE0848742120 +:10A08000F7F752FE521A002000C00040F8190020D5 +:10A090000000AD0B0100AD0BA8FD0000C8E60000FC +:10A0A0006CFD000010B5154CA8220021204604F0DC +:10A0B00027F803212161124A61611248A2614FF41D +:10A0C0008061E061002321620F48A3621021636276 +:10A0D000E36222666066A1662367E3666367BFF397 +:10A0E0005F8F0A4BA3F1100C1846C21A13F8011D1A +:10A0F000A1546345F9D1BFF35F8F10BD1004002058 +:10A10000D4FD00001000002000000020F0FD000041 +:10A1100010B4BFF35F8F0D4A0D4C0023E15C12F8C1 +:10A12000010D884203F1010307D1102BF6D1002362 +:10A13000BFF35F8F33B910BC70470123BFF35F8F4C +:10A14000002BF8D010BCFFF7ADBF00BFF0FD000042 +:10A150001004002008B5FFF7DBFF002008BD00BF9A +:10A1600000B97047FAF7F0BE08B50B4A0B4B9342A3 +:10A1700003D80FD214339342FBD90949094A0A483C +:10A180001823F7F7DBFD0948F7F7D8FD0548182134 +:10A19000F7F7CAFD08BD00BFE4E200006CE2000072 +:10A1A00018FE0000F4FD0000C8E6000078EE000094 +:10A1B00040B1C368587810F0010003D01878B0FAA5 +:10A1C00080F04009704700BFEFF31183202383F331 +:10A1D0001288BFF36F8FFEE708B5FFF7F5FF00BFEA +:10A1E00070B50446EFF31186202383F31288BFF382 +:10A1F0006F8F0E4B9D68FFF7EFFF042C08D086F39E +:10A200001188BFF36F8F2846BDE87040FAF746BA51 +:10A210000749084A08488723F7F790FD0748F7F7EA +:10A220008DFD04488721F7F77FFD00BFFC19002052 +:10A2300054FE000030FE0000C8E6000074FE00007E +:10A24000134B421C70B553F8204053F82260B442BF +:10A2500014D31BE028464BB1984738B10028B8BF4B +:10A260004042EB68FF28A8BFFF201870EA685378C7 +:10A27000083443F00103A642537007D9D4E90035EE +:10A28000002DE7D108349847A642F7D870BD00BF2B +:10A2900008FF000070B53E4B3E4E3F4D012286B098 +:10A2A00003201A70FFF7CCFFF9F750FF00F020F9F8 +:10A2B0000420FFF7C5FFAE424FD838BF344623D243 +:10A2C000D4F824C0D4E90223D4E90001CDF814C0A5 +:10A2D000D4F820C0CDF810C0D4F81CC0CDF80CC004 +:10A2E000D4F818C0CDF808C0D4F814C0CDF804C014 +:10A2F000D4F810C0CDF800C001F0E6FA23685C6520 +:10A300003034AC4229D8DBD302F04AF8AE4219D23D +:10A31000204C224E05E002F027FB3034AC4229D815 +:10A3200010D2D4E90A23B3F1FF3F08BFB2F1FF3FD7 +:10A33000F3D052EA03012068EDD03146183002F024 +:10A340007BFEEAE702F0A0F8F6F736FA144A137B30 +:10A3500023F00103137306B070BD1249124A13486B +:10A360004223F7F7EBFC1248F7F7E8FC0E484221CE +:10A37000F7F7DAFC0B490C4A0C486623F7F7DEFCCA +:10A380000B48F7F7DBFC08486621F7F7CDFC00BF68 +:10A39000531A002064E4000064E4000075BF00006C +:10A3A000200E0020D0FE0000ACFE0000C8E6000039 +:10A3B00078EE000003F0A4BE03F094BE08B5034895 +:10A3C000034A0021121AFFF7F5FF08BD68080020B4 +:10A3D000541A00202DE98048002087B0FFF730FF95 +:10A3E000DFF8E09089F30888374D384E6B69DFF865 +:10A3F000E0A0384F0024E02243F400736B6185F83D +:10A400002220EC772C766C76AC7685F820406B6A4F +:10A4100043F4E0236B6285F82340FAF7BDF8FAF7BE +:10A4200077FA4FF0FF33AB62EB62FAF7B5FBFAF75E +:10A43000B1FA294BB36040F201129A81C3E9184482 +:10A44000DC66FFF791FE0120244DFFF7F9FE0220A4 +:10A45000FFF7F6FE4FF0010B02F0E6F8204B214922 +:10A4600005934FF480625346CDE90244CDE90044A0 +:10A47000CDF810B02846756101F026FA6B7B804656 +:10A4800023F0040328466B7301F078FC0F23164970 +:10A4900003934FF4A072154B0096CDE904B4CDE9B7 +:10A4A0000144384601F010FA7B7B347423F0040336 +:10A4B000524641462846C6F80490F7607B73FAF787 +:10A4C00001FA00BF402B002000ED00E0FC19002045 +:10A4D00095A20000A00D0020A80E0020200E002054 +:10A4E00000FF0000C02C0020402B002051A80000DD +:10A4F000704700BF38B52049204B99422FD829D248 +:10A500005C1E641A5B1A64094FEA531E4FF0000C7C +:10A510008D69CB6843EA050010F003001CD14A693D +:10A520000861013A05FB0232934201D908E01A465C +:10A5300010608B69CD68D31AAB421046F7D20A611E +:10A54000F44501F120010AD0A4450CF1010301D02A +:10A550009C46DDE7002038BD6FF0150038BD084986 +:10A56000084A09489423F7F7E9FB0848F7F7E6FBA0 +:10A5700004489421F7F7D8FB20070020400700206B +:10A5800048FF000020FF0000C8E6000078EE000051 +:10A590002DE9F043044683B00E469146984600F1FB +:10A5A0000805EFF31187202383F31288BFF36F8F21 +:10A5B000284602F0DBFC00285CD0284602F0FCFCB8 +:10A5C000216931B33160E369086820610133E361D7 +:10A5D000D0B1E368C01A0AD4D4E9053202FB03F310 +:10A5E000834204D9B0FBF2F302FB1304BCB1284947 +:10A5F000284A2948E923F7F7A1FB2848F7F79EFBEB +:10A600002448E921F7F790FB62699342E1D10446BF +:10A6100005E059EA08030ED131606FF00B042846BB +:10A6200002F0B2FCB0B187F31188BFF36F8F204600 +:10A6300003B0BDE8F0832246CDE9009839462846AC +:10A6400001F09CFC04460028F1D1154B9B685B6926 +:10A650003360ECE7134A1048134940F23113F7F71F +:10A660006DFB12482946F7F769FB0E4840F231119D +:10A67000F7F75AFB0B4A08480D498823F7F75EFBAA +:10A680000C482946F7F75AFB06488821F7F74CFB98 +:10A6900068FF000020FF0000C8E60000E4FF0000A3 +:10A6A000FC190020A8EC0000D8EC0000F0EC000041 +:10A6B00008ED000020ED00002DE9F04FC368CB1A33 +:10A6C00083B031D40D46D0E9052101FB02F29A4254 +:10A6D000044629D9B3FBF1F201FB123323BB00F18D +:10A6E0000806EFF311894FF0200888F31288BFF3B2 +:10A6F0006F8F304602F03AFC00286AD0304602F0F4 +:10A700005BFC2769FFB12F60E3692561013BE361D1 +:10A71000304602F039FC00284BD089F31188BFF392 +:10A720006F8F03B0BDE8F08F3C493D4A3D4840F291 +:10A730001113F7F703FB3C48F7F700FB384840F2EA +:10A740001111F7F7F1FAEFF3118388F31288BFF3D1 +:10A750006F8F83F31188BFF36F8F002B47D023686F +:10A760009C4200D00BB92769CDE79A68002A4BD0EC +:10A77000D3E900210A6051605A7B9F6022F00202F7 +:10A780004FF0000A4FF0000B5A73C3E900AB03F11E +:10A790001800019302F038FD019B18469F675D6128 +:10A7A00001F0ECFA4946304603B0BDE8F04F01F045 +:10A7B00083BD1E4A1B481E4940F23113F7F7BEFA0B +:10A7C0001C483146F7F7BAFA184840F23111F7F74A +:10A7D000ABFA164A134818498823F7F7AFFA174817 +:10A7E0003146F7F7ABFA11488821F7F79DFA14497B +:10A7F000144A0C48B023F7F7A1FA1348F7F79EFA6A +:10A800001048B021F7F790FA104906480D4A9923ED +:10A81000F7F794FA0B489921F7F786FA98E80000C1 +:10A8200020FF0000C8E6000000000100A8EC0000C6 +:10A83000D8EC0000F0EC000008ED000020ED000076 +:10A840005000010024000100680001006C000100BC +:10A8500008B50D4B9B6893F90E30002B09DB2024C3 +:10A86000EFF3118384F31288BFF36F8FFAF756F872 +:10A87000F6E706490648074A1B23F7F75FFA05483B +:10A880001B21F7F751FA00BFFC190020A8000100B6 +:10A89000C8E600008400010003460020C3E902006E +:10A8A0001B605B60704700BF2DE9F04383B0EFF39E +:10A8B0000587002F40F0A280044690461E46EFF325 +:10A8C0001189202383F31288BFF36F8F5A4802F057 +:10A8D0004DFB002800F08480574802F06DFB574B79 +:10A8E000E1689D6899B995F90E30534823610131AB +:10A8F000C4E9025102F048FB002800F08C8089F383 +:10A900001188BFF36F8F002003B0BDE8F083A0680B +:10A91000A84201D12369E8E758EA060355D095F922 +:10A920000E1090F90E309942A8BF19466FF07E02C2 +:10A930009142B8BF11468B4243DC3F48CDF80080BE +:10A9400001962246494601F019FB0028DBD0EFF3BF +:10A950001185202383F31288BFF36F8F364802F0EE +:10A9600005FB00283CD0344802F026FBA06890B1DB +:10A97000236821699C420AD04BB193F90E30994269 +:10A98000A8BF19466FF07E039942B8BF194690F9E7 +:10A990000E3099420CD17FB9274802F0F5FA002811 +:10A9A00039D085F31188BFF36F8F6FF00A00ABE7E2 +:10A9B00001F0DCFB0028EED01F48294601F07CFCAA +:10A9C000F3E701F0D3FB0746B7E71B4802F0DCFAD8 +:10A9D00008B389F31188BFF36F8F6FF00F0093E70F +:10A9E000174A184918488823F7F7A8F91249174851 +:10A9F000F7F7A4F912488821F7F796F91449154A90 +:10AA000011486F23F7F79AF91348F7F797F91148A8 +:10AA10006F21F7F789F90A4A10490B4840F23113C0 +:10AA2000F7F78CF904490E48F7F788F9044840F223 +:10AA30003111F7F779F900BF1C1A0020FC1900202A +:10AA4000A8EC000008ED0000C8E6000020ED0000C2 +:10AA5000F4000100D000010008010100D8EC000062 +:10AA6000F0EC0000F8B5EFF30583002B6ED183689E +:10AA70000446002B67D05B4A9268934260D1C3685A +:10AA8000002B70D0012B03D0013BC3600020F8BD28 +:10AA9000EFF31186202383F31288BFF36F8F5248A0 +:10AAA00002F064FA002875D04F4802F085FAA068D9 +:10AAB000216990F90E3099421DD1EFF311832022C4 +:10AAC00082F31288BFF36F8F83F31188BFF36F8F08 +:10AAD000002B52D02568AC4200D07DB90023C4E9D8 +:10AAE0000233414802F050FA002861D086F3118801 +:10AAF000BFF36F8FCAE701F039FBDEE7AB68002BCD +:10AB000066D0D5E9003213605A6000220023C5E9FF +:10AB100000236B7B002723F002036B73AF6005F10A +:10AB2000180002F071FBA56095F90E3023612846EC +:10AB3000AF6701F023F92C48314601F0BDFBA5E7D2 +:10AB40004FF0FF30F8BD6FF01500F8BD2749284AD7 +:10AB50002848D723F7F7F2F82748F7F7EFF8244803 +:10AB6000D721F7F7E1F825492248214AEF23F7F7E3 +:10AB7000E5F81F48EF21F7F7D7F82149214A1D488A +:10AB8000B023F7F7DBF82048F7F7D8F81D48B021D5 +:10AB9000F7F7CAF81D4A1E4916488823F7F7CEF87A +:10ABA00011491C48F7F7CAF818488821F7F7BCF88C +:10ABB000164A19490F4840F23113F7F7BFF80A490E +:10ABC0001648F7F7BBF8114840F23111F7F7ACF827 +:10ABD000134908480B4A9923F7F7B0F80948992117 +:10ABE000F7F7A2F8FC1900201C1A0020F40001005D +:10ABF000D0000100C8E6000008010100300101009A +:10AC0000500001002400010068000100A8EC0000D1 +:10AC100008ED000020ED0000D8EC0000F0EC000092 +:10AC20006C0001002DE9F04782B081469DF828A014 +:10AC30000E4615461C4600F10807EFF31188202345 +:10AC400083F31288BFF36F8F384602F08FF9002824 +:10AC500000F09780384602F0AFF9BAF1000F2AD120 +:10AC6000EFF31183202282F31288BFF36F8F83F3F7 +:10AC70001188BFF36F8F002B76D04B4653F80C2F03 +:10AC80009A4201D0002A3ED1C4B92C6016B3336871 +:10AC9000032B2CD923F0030323432B60336803F0E9 +:10ACA00003031D4335604146384601F005FB002093 +:10ACB00002B0BDE8F087D9F80460D1E70821002090 +:10ACC00002F038FE002844D00124456004600546A7 +:10ACD000002EDCD1D9F8003023432B60D9F80430A2 +:10ACE000C9F80050002BDED1C9F80450DBE72C6016 +:10ACF000D9F8042042B3136803F003032B43136015 +:10AD0000C9F80450CFE79368002B58D0D2E900313E +:10AD10000B605960537B019223F002030021002451 +:10AD20000020C2E900015373946002F1180002F0A0 +:10AD30006BFA019A10469467556101F01FF841467D +:10AD4000384601F0B9FAB2E7C9F80050C9F8045022 +:10AD5000A9E7384602F018F908B388F31188BFF361 +:10AD60006F8F6FF00B00A3E71A491B4A1B48B023F3 +:10AD7000F6F7E4FF1A48F6F7E1FF1748B021F6F7B7 +:10AD8000D3FF184A154818498823F6F7D7FF174804 +:10AD90003946F6F7D3FF13488821F6F7C5FF114A65 +:10ADA0000E48134940F23113F6F7C8FF11483946EF +:10ADB000F6F7C4FF0B4840F23111F6F7B5FF0E4924 +:10ADC0000648054A9923F6F7B9FF03489921F6F793 +:10ADD000ABFF00BF5000010024000100C8E60000E6 +:10ADE00068000100A8EC000008ED000020ED000064 +:10ADF000D8EC0000F0EC00006C00010000B583B05E +:10AE00000A460023012100911946FFF70BFF03B00A +:10AE10005DF804FB2DE9F043044683B09046994663 +:10AE200000F10806EFF31187202181F31288BFF3A8 +:10AE30006F8F304602F09AF888B3304602F0BCF8C3 +:10AE40002568DDB12B68626823F00303954208BFD3 +:10AE5000636023602B689B070BD1304602F094F8A7 +:10AE600058B387F31188BFF36F8F284603B0BDE84E +:10AE7000F08328466D6802F055FDEEE758EA0903B5 +:10AE8000EBD0CDE9008904F10C023946304601F0DF +:10AE900075F80028E9D1114B9B685D69E5E7104A18 +:10AEA000104811498823F6F749FF10483146F6F754 +:10AEB00045FF0B488821F6F737FF094A09480C4936 +:10AEC00040F23113F6F73AFF0A483146F6F736FFFB +:10AED000034840F23111F6F727FF00BFFC190020AC +:10AEE000A8EC0000C8E6000008ED000020ED00001E +:10AEF000D8EC0000F0EC00003AB18A4205D3C0E97A +:10AF0000021200604060002070476FF0150070472B +:10AF100070B50446EFF31186202585F31288BFF340 +:10AF20006F8F3D4802F022F800285DD03A4802F0C9 +:10AF300043F8EFF3118385F31288BFF36F8F83F328 +:10AF40001188BFF36F8F002B41D02568AC4200D031 +:10AF500075B9D4E902329A4218BF01332E48A36072 +:10AF600002F012F818B386F31188BFF36F8F70BD2B +:10AF7000AB68002B46D0D5E9003213605A606B7B7A +:10AF80000021002423F002030020C5E900016B73B7 +:10AF9000AC6005F1180002F037F92846AC6700F004 +:10AFA000EDFE31461C48BDE8704001F085B91B4AF2 +:10AFB0001B491C4840F23113F6F7C0FE16491A48E7 +:10AFC000F6F7BCFE154840F23111F6F7ADFE174911 +:10AFD000174A1448B023F6F7B1FE1648F6F7AEFE4E +:10AFE0001348B021F6F7A0FE0C4A13490D488823F8 +:10AFF000F6F7A4FE08491148F6F7A0FE0748882195 +:10B00000F6F792FE0E490748094A9923F6F796FE8D +:10B0100007489921F6F788FE201A0020A8EC0000C6 +:10B02000D8EC0000C8E60000F0EC00005000010081 +:10B03000240001006800010008ED000020ED000080 +:10B040006C000100F0B5044683B016461D46EFF3D0 +:10B05000058111B152EA05034FD1EFF31187202387 +:10B0600083F31288BFF36F8F2A4801F07FFF30B35C +:10B07000284801F0A1FFA16861B101392548A1600C +:10B0800001F082FF48B387F31188BFF36F8F002070 +:10B0900003B0F0BD56EA05031E4809D101F074FF64 +:10B0A000D8B187F31188BFF36F8F6FF00F00EFE710 +:10B0B000CDE900652246394600F060FFE8E7164A10 +:10B0C000164917488823F6F739FE12491548F6F74E +:10B0D00035FE11488821F6F727FE0F4A124910481D +:10B0E00040F23113F6F72AFE0A491048F6F726FE19 +:10B0F000094840F23111F6F717FE0D490D4A08488C +:10B100008823F6F71BFE0C48F6F718FE094888213D +:10B11000F6F70AFE201A0020A8EC000008ED000057 +:10B12000C8E6000020ED0000D8EC0000F0EC0000C4 +:10B130006801010048010100680001002DE9704725 +:10B14000DFF80082DFF800A285B00546EFF3118931 +:10B15000202383F31288BFF36F8F404601F006FF70 +:10B16000002800F0C480404601F026FFD5F880405A +:10B17000002C00F08180D5F884202368C5F8803049 +:10B18000944208BFC5F88430D5F8983043F00203E4 +:10B19000C5F89830E368666823F0040343F00103C0 +:10B1A0004046E36001F0F0FE002800F0AE8089F335 +:10B1B0001188BFF36F8F002E00F0B7802046B04794 +:10B1C000EFF31189202383F31288BFF36F8F40467A +:10B1D00001F0CCFE002800F08A80404601F0ECFE31 +:10B1E000E268D10622F001033DD4E3609A0715D44A +:10B1F000D5F8983023F002034046C5F89830C3F3E1 +:10B20000002401F0C1FE00287FD089F31188BFF32C +:10B210006F8F002C9AD101F00FFA97E7DAF800004F +:10B2200023F00203E3600028E2D0426803689442FE +:10B230004FF0000107D0002BDAD0014618461B68FA +:10B2400042689442F7D10368002947D00B60DAF8CE +:10B250000430834208BFCAF80410002340F8083BBA +:10B26000FFF756FEC4E722F01102E26004F110007D +:10B27000FFF74EFEE368B9E7D5F8983023F00402F3 +:10B280005C07C5F89820C3F380010FD4D00616D50B +:10B290002C48C5F8981001F077FE002835D089F3C6 +:10B2A0001188BFF36F8F05B0BDE8708705F190047A +:10B2B00000220121204601F0F7FC0028F8D10023EC +:10B2C0004FF0FF314FF0FF32CDE90012029305F14C +:10B2D00088024946404601F057FD37E7DAF8042076 +:10B2E000CAF800308242B8D1CAF80430B5E7174A2C +:10B2F000174918488823F6F721FD12491648F6F732 +:10B300001DFD12488821F6F70FFD104A1349114818 +:10B3100040F23113F6F712FD0A491148F6F70EFD17 +:10B320000A4840F23111F6F7FFFC0E4909480E4A6F +:10B3300040F2AB23F6F702FD0B4840F2AB21F6F7E3 +:10B34000F3FC00BF241A0020A00E0020A8EC00008F +:10B3500008ED0000C8E6000020ED0000D8EC000079 +:10B36000F0EC0000DC010100B8010100F8B5C36891 +:10B370009A070D46C3F3400611D45F0712D5002388 +:10B380002B603046F8BD00F095FAD7F89830C8B970 +:10B39000D907C3F3C00245D5F2B15A071CD46FF0E8 +:10B3A0000F06ECE70F68044667B3DB0733D5A768E1 +:10B3B000002F3AD02F600226224B9B68BB42E2D07E +:10B3C000D7F89830D807C3F380022BD5002AE6D1EE +:10B3D000C3F3C003002BE2D100232360D7F88430ED +:10B3E000DBB11C60C7F88440002207F188001146D9 +:10B3F00001F05AFCE36843F00403E3602B68A360A8 +:10B400003046F8BD87680F60C368DE07CFD417B930 +:10B410006FF01506B3E70126CEE7C7F88040C7F8FE +:10B420008440E1E76FF01206A9E707490748084A98 +:10B430004FF4AA73F6F782FC05484FF4AA71F6F7A9 +:10B4400073FC00BFFC190020F4010100C8E60000F5 +:10B45000B801010030B5044683B0EFF31185202315 +:10B4600083F31288BFF36F8F204801F07FFDF0B1A6 +:10B470001E4801F0A1FD54F8043C002123F008020D +:10B480001B07019144F8042C09D4184801F07CFDF5 +:10B49000D8B185F31188BFF36F8F03B030BDA369B6 +:10B4A000019301A9A4F11000FFF760FFEDE7104A36 +:10B4B000104911488823F6F741FC0C490F48F6F76C +:10B4C0003DFC0B488821F6F72FFC094A0C490A4835 +:10B4D00040F23113F6F732FC04490A48F6F72EFC25 +:10B4E000034840F23111F6F71FFC00BF241A002078 +:10B4F000A8EC000008ED0000C8E6000020ED000008 +:10B50000D8EC0000F0EC000008B530B179B10023B0 +:10B51000C0E902330360416008BD0A490A480B4A8A +:10B520009923F6F70BFC09489921F6F7FDFB08492A +:10B530000548064A9A23F6F701FC04489A21F6F7D3 +:10B54000F3FB00BF28020100C8E60000B8010100BB +:10B55000DC01010030B583B0019009B34B680C46A3 +:10B56000002B47D0EFF31185202383F31288BFF31C +:10B570006F8F264801F0FAFC70B3244801F01CFDDF +:10B58000204601A9FFF7F2FE0446204801F0FCFC2A +:10B5900090B185F31188BFF36F8F204603B030BDA3 +:10B5A0001B491C481C4A4FF4BD73F6F7C7FB1A48E9 +:10B5B0004FF4BD71F6F7B8FB184A1949154840F227 +:10B5C0003113F6F7BBFB11491648F6F7B7FB1348E2 +:10B5D00040F23111F6F7A8FB104A13490D488823B1 +:10B5E000F6F7ACFB09491148F6F7A8FB0B48882190 +:10B5F000F6F79AFB0E490748074A40F27B13F6F725 +:10B600009DFB054840F27B11F6F78EFB241A0020C3 +:10B6100028020100C8E60000B8010100A8EC000003 +:10B62000D8EC0000F0EC000008ED000020ED000078 +:10B630003C02010010B5FFF78DFF041E08DDEFF39B +:10B640001180202383F31288BFF36F8F00F088FEF0 +:10B65000204610BDF0B589B00E9D002840D00029CD +:10B6600056D00446D0F8980010F0010044D1C4F838 +:10B670008000C4F8840004F18800C4E9220004F1C9 +:10B680009000C4E924004DB32879002840F201104D +:10B6900008BF0120C4F898004FF0FF364FF0FF3785 +:10B6A0000020CDE9010003930490CDE906671E4B0D +:10B6B0000094204600F07EF955B1296811B120466A +:10B6C00000F0FEF86B791BB1237B43F00103237379 +:10B6D000204609B0BDE8F04001F046B90120D9E7A5 +:10B6E00012491348134A40F2DB23F6F727FB1148AF +:10B6F00040F2DB21F6F718FB0F490D480D4A40F2E6 +:10B70000DD23F6F71BFB0B4840F2DD21F6F70CFBBF +:10B710000A490748074A4FF43773F6F70FFB054805 +:10B720004FF43771F6F700FB3DB100005C020100F9 +:10B73000C8E60000B80101006C02010064020100CB +:10B7400038B558B10D46A9B104463022002102F0A7 +:10B75000D7FC4FF480736560E36038BD0B490C483B +:10B760000C4A40F27A33F6F7E9FA0A4840F27A31A5 +:10B77000F6F7DAFA08490648064A40F27B33F6F74C +:10B78000DDFA044840F27B31F6F7CEFAA002010060 +:10B79000C8E60000B8010100DC010100F0B583B08B +:10B7A0000190002864D00C46002955D016461D464D +:10B7B000EFF31187202383F31288BFF36F8F324892 +:10B7C00001F0D4FB002839D02F4801F0F5FBE168E7 +:10B7D00011F01E0F0BD000242B4801F0D5FBE8B16F +:10B7E00087F31188BFF36F8F204603B0F0BD55EA91 +:10B7F00006030DD0019BA36241F00801E16004F152 +:10B800001000224932462B4601F016FC0124E3E7E2 +:10B81000204601A9FFF7AAFD0446DDE71C4A1D49A1 +:10B820001D4840F23113F6F789FA17491B48F6F71D +:10B8300085FA174840F23111F6F776FA144A18499A +:10B8400015488823F6F77AFA0F491648F6F776FA7C +:10B850000F488821F6F768FA13490F48134A40F257 +:10B86000F633F6F76BFA114840F2F631F6F75CFA68 +:10B870000F4909480D4A40F2F533F6F75FFA0B48D5 +:10B8800040F2F531F6F750FA241A002055B40000C2 +:10B89000A8EC0000D8EC0000C8E60000F0EC0000C6 +:10B8A00008ED000020ED0000A0020100B801010039 +:10B8B00010020100EFF30580003818BF0120704727 +:10B8C0006FF05700704700BF2DE9F04385B0054683 +:10B8D0000F9C0F2C0E461F4649D004F110031E2B5F +:10B8E00048D8073222F00702109B2B737F3222F0D8 +:10B8F0003F0205F15803C5E91633AC730023042455 +:10B90000002000213F2AC5E90601AB60EB736C7390 +:10B9100006F14009A2F1400822D9B4182146284670 +:10B92000F8F73CFC07300E9B20F00700A866C5E93D +:10B93000189802930D9B0193241A0C9B00932246A6 +:10B940003B4631462846F8F789FF144B9B68002296 +:10B950006A6503B1DB6EEB66204605B0BDE8F08397 +:10B9600083F31188BFF36F8F204602DFD5E70C4BBE +:10B970009F42B6D00B4A0C490C484FF40173F6F7BE +:10B98000DDF90B4821466FF00F030E22F6F7D6F9CA +:10B9900004484FF40171F6F7C7F900BFFC19002005 +:10B9A00051A80000B8020100DC020100C8E6000056 +:10B9B0005C030100F0B587B0DDE91276EFF3058591 +:10B9C0004DBB0595109D04950F9D03950E9D029509 +:10B9D0000D9D01950C9D00950446FFF775FFB6F18E +:10B9E000FF3F08BFB7F1FF3F02D1204607B0F0BDCF +:10B9F00056EA070305D1204600F0B6FF204607B0FF +:10BA0000F0BD04F118000B493A46334601F014FB2F +:10BA1000204607B0F0BD0849084A094840F2912382 +:10BA2000F6F78CF90748F6F789F9044840F29121B6 +:10BA3000F6F77AF975BF0000F4000100B8020100C2 +:10BA4000C8E600009003010038B590F90D20437B53 +:10BA5000002A19DB214D2A46AB6852F8184F944250 +:10BA600020D0FCB1834208D00BB35A7BD20604D15C +:10BA7000DA897F2A01D9A269B2B1A34202D0204655 +:10BA800001F0C4F96C6138BD154A03F07F039042A0 +:10BA9000437319D0D0E9002100230A60516003608C +:10BAA0004360D7E7EC68DDE71C466C6138BD0D49A3 +:10BAB0000D4A0E48D623F6F741F90D48F6F73EF940 +:10BAC0000948D621F6F730F90A4908480A4A5623A8 +:10BAD000F6F734F908485621F6F726F9FC19002044 +:10BAE000A00D00202C04010000040100C8E60000A5 +:10BAF00068000100DC030100B803010038B5054609 +:10BB00000C46FFF7A1FF6B7B43F002036B73B4B1EC +:10BB1000AC6023689C4213D093B195F90E1093F951 +:10BB20000E20914201D08A420CDC62689A4202D017 +:10BB30001B68002BF3D1C5E900421560656038BD74 +:10BB40006268F8E75A68C5E9003215605D6038BD83 +:10BB5000054C0649064808B522469923F6F7EEF843 +:10BB600099212046F6F7E0F8240001006C0001005E +:10BB7000C8E6000038B590F90D30427B002B03DB9E +:10BB8000D10601D1836903B138BD2B4B62F07F022E +:10BB90009842427339D0294C214651F8183F8B42C4 +:10BBA0002BD0E56963B190F90EC093F90E2094454E +:10BBB00001D0624523DC9D4202D01B68002BF4D1EA +:10BBC000C0E900152860E061A5698D4213D095B1E8 +:10BBD000A36823B35A7BD20606D1DA897F2A03D918 +:10BBE000AA690AB9636138BDAB4202D0284601F0A8 +:10BBF0000DF9656138BDE568EAE7E569E0E75A688F +:10BC0000C0E9003210605860DEE70D490D480E4A69 +:10BC10004F23F6F793F80C484F21F6F785F80B49B8 +:10BC20000B4A0848D623F6F789F80A48F6F786F84B +:10BC30000748D621F6F778F8A00D0020FC1900205F +:10BC4000DC030100C8E60000B80301002C04010079 +:10BC5000000401006800010038B590F90D10427B26 +:10BC6000002903463D4935DB62F07F02884242737A +:10BC70006AD03B4C204650F8182F824240D0E569EC +:10BC800062B193F90EC092F90E108C4501D0614556 +:10BC90003DDC954202D01268002AF4D1C3E90005C8 +:10BCA0002B60E361A569A26885422BD055B39A4207 +:10BCB00009D0002A3BD0537BDB0604D1D3897F2BEC +:10BCC00001D9AB6903B3AA4202D0284601F09EF81D +:10BCD000656138BD02F07F02884242731DD0D0E911 +:10BCE00000210A605160427B1D4C002162F07F02FE +:10BCF000016041604273204650F8182F8242BED145 +:10BD0000E569CBE7E568D2E71546656138BD51685E +:10BD1000C3E900210B605360C4E712491248134A7B +:10BD20005623F6F70BF811485621F5F7FDFF104999 +:10BD3000104A0D48D623F6F701F80F48F5F7FEFF35 +:10BD40000C48D621F5F7F0FF06490748074A4F236C +:10BD5000F5F7F4FF05484F21F5F7E6FFA00D0020A9 +:10BD6000FC190020DC030100C8E60000B803010054 +:10BD70002C040100000401006800010038B50446ED +:10BD8000EFF31185202383F31288BFF36F8F1848D8 +:10BD900001F0ECF870B1164801F00EF92046FFF7FB +:10BDA000E9FE134801F0F0F890B185F31188BFF374 +:10BDB0006F8F38BD0F4A104910488823F5F7BEFF32 +:10BDC0000B490F48F5F7BAFF0A488821F5F7ACFF91 +:10BDD000084A0C49094840F23113F5F7AFFF04490E +:10BDE0000948F5F7ABFF034840F23111F5F79CFF26 +:10BDF000281A0020A8EC000008ED0000C8E60000AA +:10BE000020ED0000D8EC0000F0EC000038B504464E +:10BE1000EFF31185202383F31288BFF36F8F1F4840 +:10BE200001F0A4F8D8B11D4801F0C6F8A3686BB1C1 +:10BE3000D4E9003213605A60637B00200021C4E91A +:10BE4000000123F0020300226373A260134801F093 +:10BE50009BF890B185F31188BFF36F8F38BD104AFE +:10BE6000104911488823F5F769FF0C490F48F5F789 +:10BE700065FF0B488821F5F757FF094A0C490A4826 +:10BE800040F23113F5F75AFF04490A48F5F756FF17 +:10BE9000034840F23111F5F747FF00BF281A002090 +:10BEA000A8EC000008ED0000C8E6000020ED00004E +:10BEB000D8EC0000F0EC000038B50446EFF3118533 +:10BEC000202383F31288BFF36F8F234801F04EF8CD +:10BED00018B3214801F070F8637B13F0280213D1E6 +:10BEE000A16859B1D4E9003100200B6059600021EC +:10BEF000637BA260C4E9000103F0FD0323F00403A7 +:10BF000063732046FFF736FE134801F03DF890B109 +:10BF100085F31188BFF36F8F38BD104A104911485F +:10BF20008823F5F70BFF0C490F48F5F707FF0B487F +:10BF30008821F5F7F9FE094A0C490A4840F2311305 +:10BF4000F5F7FCFE04490A48F5F7F8FE034840F20D +:10BF50003111F5F7E9FE00BF281A0020A8EC000017 +:10BF600008ED0000C8E6000020ED0000D8EC00005D +:10BF7000F0EC000001211838FFF79EBF2DE9F047D3 +:10BF80003D4D3E4F3E4B1646B842AA681A60DDE969 +:10BF900008A94BD004468846EFF31183202383F38E +:10BFA0001288BFF36F8F384600F0E0FF80B3384649 +:10BFB00001F002F83146AE683046FFF79FFDB9F157 +:10BFC000FF3F08BFBAF1FF3F06D02E4952464B460D +:10BFD00006F1180001F030F8204600F0D5FF0028E7 +:10BFE00040D0264800F0D0FF60B3AB68264A6FF01F +:10BFF0000A01C3E91D81536843F080530021536057 +:10C0000081F31188BFF36F8FAB68986FBDE8F0873D +:10C010001E4A1F481F498823F5F790FE1E483946DF +:10C02000F5F78CFE19488821F5F77EFE1B49184864 +:10C030001B4A40F26D23F5F781FE194840F26D214D +:10C04000F5F772FE1749114A114840F26B13F5F7E4 +:10C0500075FE0A491448F5F771FE0C4840F26B1161 +:10C06000F5F762FE0F49094A094840F26B13F5F7EC +:10C0700065FE2146EEE700BFFC190020281A0020CB +:10C080002C1A002075BF000000ED00E0A8EC0000B5 +:10C09000C8E6000008ED000020ED00005404010097 +:10C0A000B8030100D8EC0000F0EC000070B50546C4 +:10C0B000EFF31186202383F31288BFF36F8F244898 +:10C0C00000F054FF002833D0214800F075FF2C68A1 +:10C0D000A5421BD084B1A368002B37D0D4E900322D +:10C0E00013605A60637B00200021C4E9000123F043 +:10C0F000020300226373A260154800F045FF38B1C7 +:10C1000086F31188BFF36F8F204670BD0024F3E7DC +:10C11000104A1149114840F23113F5F70FFE0C494E +:10C120000F48F5F70BFE0B4840F23111F5F7FCFD17 +:10C13000084A0C4909488823F5F700FE04490A48D3 +:10C14000F5F7FCFD03488821F5F7EEFDFFF700FD4C +:10C15000281A0020A8EC0000D8EC0000C8E6000077 +:10C16000F0EC000008ED000020ED0000F8B50446FA +:10C170000F46EFF31185202383F31288BFF36F8FEF +:10C18000424800F0F3FE002868D006463F4800F021 +:10C1900013FF637BDA060CD0A77300263B4800F040 +:10C1A000F3FE00284AD085F31188BFF36F8F304625 +:10C1B000F8BDA269002AEFD103F07F036373344B0B +:10C1C0009C4259D0D4E9003003605860637B226000 +:10C1D00079B2304F626063F07F033846A1736373B6 +:10C1E00050F8183F834220D0D7F81CC053B193F9C0 +:10C1F0000E20914201D08A421ADC9C4502D01B6875 +:10C20000002BF4D1C4E9000CCCF80040FC61BC69FF +:10C21000844208D03CB1BB689C4202D0204600F06A +:10C22000F5FD7C61BAE7FC68F5E7D7F81CC0E9E7E3 +:10C230005A68C4E9003214605C60E8E7164A17499E +:10C24000174840F23113F5F779FD10491548F5F715 +:10C2500075FD114840F23111F5F766FD0E4A12499D +:10C260000F488823F5F76AFD08491048F5F766FD81 +:10C2700009488821F5F758FD0D4909480D4A56230C +:10C28000F5F75CFD0B485621F5F74EFD281A002006 +:10C29000A00D0020FC190020A8EC0000D8EC000044 +:10C2A000C8E60000F0EC000008ED000020ED000002 +:10C2B000DC030100B8030100F8B505460C4611B9CE +:10C2C000EFF3058646B1284600F05EFED8B184F350 +:10C2D0001188BFF36F8FF8BD1B4F7A69BB689A4214 +:10C2E000F1D000F051FEF0B1BB68184A5E676FF004 +:10C2F0000A019967536843F08053536086F31188AD +:10C30000BFF36F8FF8BD124A1248134940F2311340 +:10C31000F5F714FD11482946F5F710FD0C4840F2D9 +:10C320003111F5F701FD0A4A0A480B4940F26B1337 +:10C33000F5F704FD09482946F5F700FD044840F2E9 +:10C340006B11F5F7F1FC00BFFC19002000ED00E0D7 +:10C35000A8EC0000C8E60000D8EC0000F0EC0000FB +:10C36000A8B9EFF3058393B90B498A6849699142EB +:10C370000DD00A4953676FF00A0090674A6842F08F +:10C3800080524A6083F31188BFF36F8F704780F348 +:10C390001188BFF36F8F7047FC19002000ED00E09B +:10C3A00010B5EFF31184202383F31288BFF36F8F4E +:10C3B000294800F0DBFDB0B1274800F0FDFDEFF3A8 +:10C3C0000583002B3AD1254B9A68D37B012B28D0CB +:10C3D000013BD373204800F0D7FD90B184F311885E +:10C3E000BFF36F8F10BD1E4A1E491F488823F5F703 +:10C3F000A5FC19491D48F5F7A1FC19488821F5F756 +:10C4000093FC174A1A49184840F23113F5F796FC85 +:10C4100011491848F5F792FC114840F23111F5F72F +:10C4200083FC1549154A10489023F5F787FC1448FA +:10C43000F5F784FC11489021F5F776FC11490F4A75 +:10C4400009488F23F5F77AFC0D48F5F777FC0B4880 +:10C450008F21F5F769FC00BF281A0020FC19002085 +:10C46000A8EC000008ED0000C8E6000020ED000088 +:10C47000D8EC0000F0EC0000900401002400010062 +:10C4800068000100F400010070B5EFF3118620236D +:10C4900083F31288BFF36F8F494800F067FD0028CF +:10C4A00051D0484D464800F087FDAB68DA7B002A42 +:10C4B00076D0EFF30581002963D129460132DA7382 +:10C4C00051F8184F8C423CD0002C3AD05A7BD206FF +:10C4D0002CD1DA897F2A29D9A2693ABB1C4638486F +:10C4E0006C6100F051FD00283BD086F31188BFF34A +:10C4F0006F8FEFF31183202282F31288BFF36F8FC7 +:10C50000D3B9EFF30582BAB9A9686869884213D034 +:10C510002D484A676FF00A038B67436843F08053E6 +:10C52000436082F31188BFF36F8F70BDA342D6D0F2 +:10C53000204600F06BFCD2E783F31188BFF36F8FC6 +:10C5400070BDEC68C2E7214A214922488823F5F7EB +:10C55000F5FB1B492048F5F7F1FB1C488821F5F74E +:10C56000E3FB1A4A1D491B4840F23113F5F7E6FB7D +:10C5700013491B48F5F7E2FB144840F23111F5F777 +:10C58000D3FB1849184A134840F2FF23F5F7D6FBAE +:10C590001648F5F7D3FB144840F2FF21F5F7C4FB2A +:10C5A0001349114A0B4840F2FE23F5F7C7FB0F4829 +:10C5B000F5F7C4FB0C4840F2FE21F5F7B5FB00BFD0 +:10C5C000281A0020FC19002000ED00E0A8EC000073 +:10C5D00008ED0000C8E6000020ED0000D8EC0000E7 +:10C5E000F0EC0000F4000100B80301006800010055 +:10C5F000C404010038B50468844212D005460CB961 +:10C600000FE064B12046FFF701FC04F1180000F0D0 +:10C61000FBFD2046FFF7B2FB2C68A542F1D10120BB +:10C6200038BD002038BD00BF024A134643F8182920 +:10C63000DA617047141A002070B5EFF30584002CFE +:10C6400068D1EFF31186202383F31288BFF36F8F35 +:10C65000404800F08BFC00284ED03F4D3D4800F094 +:10C66000ABFCAA68EB699A4214BF13681168526860 +:10C6700018BF1946116008BF23464A60A868EC69D4 +:10C6800063B190F90E2093F90E108A4201D09142C5 +:10C690002BDCA34202D01B68002BF2D12F4AC0E949 +:10C6A00000242060E861AC6994421CD0DCB1AB6826 +:10C6B0009C4202D0204600F0A9FB26486C6100F0A5 +:10C6C00063FC002835D0AB68254A6FF00A01C3E946 +:10C6D0001D61536843F080530021536081F311883A +:10C6E000BFF36F8F70BDEC68E1E75A68C0E90032B4 +:10C6F00010601A4A5860D6E71A4A1B491B4888231B +:10C70000F5F71CFB13491A48F5F718FB1548882163 +:10C71000F5F70AFB1749184A144840F21443F5F795 +:10C720000DFB1648F5F70AFB134840F21441F5F7E4 +:10C73000FBFA0C4A12490D4840F26B13F5F7FEFA6A +:10C7400004491048F5F7FAFA064840F26B11F5F77C +:10C75000EBFA00BF281A0020FC190020141A002050 +:10C7600000ED00E0A8EC000008ED0000C8E60000C5 +:10C7700020ED0000F4000100B80301006800010092 +:10C78000D8EC0000F0EC00002DE9F041EFF3058457 +:10C79000002C4FD150EA01030546884645D0831C42 +:10C7A00071F1FF333DDA6FF00100441BEFF31186A6 +:10C7B000202383F31288BFF36F8F354800F0D6FB38 +:10C7C000002856D0334F324800F0F6FB324BB868A1 +:10C7D0001860FFF739F9B86830492A4643461830DF +:10C7E00000F02AFCBA682A48537B43F004035373D1 +:10C7F00000F0CAFB68B3BB68294A6FF00A01C3E9BD +:10C800001D61536843F080530021536081F3118808 +:10C81000BFF36F8F00F0D0FE201A20EAE070BDE871 +:10C82000F08100F0C9FE4419C0E7FFF705FF20467C +:10C83000BDE8F0811B491C4A1C4840F22F43F5F724 +:10C840007DFA1B48F5F77AFA174840F22F41F5F7C1 +:10C850006BFA184A1849154840F26B13F5F76EFA4F +:10C860000B491648F5F76AFA124840F26B11F5F7D2 +:10C870005BFA104A12490D488823F5F75FFA04491C +:10C880001048F5F75BFA0B488821F5F74DFA00BF21 +:10C89000281A0020FC1900202C1A002075BF000067 +:10C8A00000ED00E0F4000100B8030100C8E600005C +:10C8B00068000100A8EC0000D8EC0000F0EC0000DB +:10C8C00008ED000020ED000070B5EFF30586B6B965 +:10C8D00005460C46FFF758FFB4F1FF3F08BFB5F11E +:10C8E000FF3F09D04FF47A7247F6FF73C0FB023660 +:10C8F000D80B40EA464070BD4FF0FF3070BD07498D +:10C90000074A084840F25B43F5F718FA0648F5F77E +:10C9100015FA034840F25B41F5F706FAF40001000E +:10C92000B8030100C8E600006800010010B50C4B18 +:10C9300000244FF400422146C0FB02311846094A48 +:10C940000023F3F7C5FDC117FFF71EFF054A47F6A1 +:10C95000FF73C0FB0234DB0B43EA444010BD00BF51 +:10C960003F420F0040420F0038B50446183000F037 +:10C970004BFCEFF31185202383F31288BFF36F8FF5 +:10C98000204800F0F3FAF0B11E4800F015FB637B7D +:10C990005A0708D41B4800F0F7FA10B385F3118842 +:10C9A000BFF36F8F38BD23F0040363732046FFF796 +:10C9B000E1F8EFF305831348002BECD12946BDE8DD +:10C9C0003840FFF779BC104A104911488823F5F721 +:10C9D000B5F90C490F48F5F7B1F90B488821F5F77F +:10C9E000A3F9094A0C490A4840F23113F5F7A6F9B0 +:10C9F00004490A48F5F7A2F9034840F23111F5F766 +:10CA000093F900BF281A0020A8EC000008ED0000F0 +:10CA1000C8E6000020ED0000D8EC0000F0EC0000BB +:10CA2000014B9868704700BFFC1900202DE9F843BE +:10CA30000646EFF31189202383F31288BFF36F8F2B +:10CA4000854800F093FA002800F0DE80824800F06C +:10CA5000B3FA377B17F0010760D1737B1A0752D402 +:10CA6000D90943F0080240F096807273B3685BB155 +:10CA7000D6E9003213605A60727B0023C6E90033A6 +:10CA800022F002027273B36006F1180000F0BCFBE2 +:10CA9000B46D06F15808A0451DD0E4B1002500E0B2 +:10CAA000CCB1A368002B00F09580D4E9003213606C +:10CAB0005A60637B256023F0020363736560A560A1 +:10CAC00004F1180000F0A0FBA5672046FFF752F81C +:10CAD000B46DA045E4D1614CA3689E4274D0A569B1 +:10CAE0005F4A954255D0002D53D0AB4202D0284624 +:10CAF00000F08CF96561002F5CD1A3689E4202D1E1 +:10CB0000EFF305851DB3544800F03EFA00286BD0C2 +:10CB100089F31188BFF36F8FBDE8F8834E4800F0AA +:10CB200033FA002860D089F31188BFF36F8F4D4A24 +:10CB30004D484E4940F23553F5F700F94C4831461F +:10CB4000F5F7FCF8474840F23551F5F7EDF8424863 +:10CB500000F01AFA00286FD0A368464A6FF00A0165 +:10CB6000C3E91D91536843F08053536085F31188E6 +:10CB7000BFF36F8F40493B4A3B4840F2B513F5F78E +:10CB8000DDF83E48F5F7DAF8364840F2B511F5F72A +:10CB9000CBF8E568A9E73A4A03F07F0343F00803BE +:10CBA000964273733ED0D6E9003213605A60C6E9EC +:10CBB00000775BE7334BA36040F201129A810022B9 +:10CBC000C3E91822DA6699E7EFF30587003F18BF3B +:10CBD000012784E72C4924482C4A9923F5F7AEF81D +:10CBE0002A489921F5F7A0F8294A2A491E4840F217 +:10CBF0003113F5F7A3F818492748F5F79FF82448AB +:10CC000040F23111F5F790F8214A2449164888235B +:10CC1000F5F794F810492248F5F790F81C48882158 +:10CC2000F5F782F81F4910480E4A5623F5F786F8A3 +:10CC30000C485621F5F778F8154A16490A4840F28B +:10CC40006B13F5F77BF804491348F5F777F81048AC +:10CC500040F26B11F5F768F8281A0020FC19002043 +:10CC6000141A0020B8030100C8E6000098E800008C +:10CC7000F804010000ED00E01805010024050100A2 +:10CC8000A00D0020A80E00206C000100240001006F +:10CC9000A8EC0000D8EC0000F0EC000008ED00006B +:10CCA00020ED0000DC0301002DE9F843064688462C +:10CCB0001746EFF31189202383F31288BFF36F8F98 +:10CCC0002A4800F053F9002840D00546274800F0D4 +:10CCD00073F93468A64227D024B3A368C4F87880D7 +:10CCE0006761002B40D0D4E9003213605A60002203 +:10CCF0000023C4E90023637BA26023F00203637373 +:10CD000004F1180000F080FA2046FEF733FF1748C0 +:10CD100000F03AF950B189F31188BFF36F8F2846BC +:10CD2000BDE8F8832546F2E70025F0E7104A1149EF +:10CD3000114840F23113F5F701F80C490F48F4F7A8 +:10CD4000FDFF0B4840F23111F4F7EEFF084A0C49A1 +:10CD500009488823F4F7F2FF04490A48F4F7EEFF84 +:10CD600003488821F4F7E0FFFEF7F2FE281A0020BE +:10CD7000A8EC0000D8EC0000C8E60000F0EC0000D1 +:10CD800008ED000020ED000010B582B0DDE90434AC +:10CD9000CDE90034069CFFF7F1F81CB1024B9B680B +:10CDA0005B69236002B010BDFC19002008B5A8B172 +:10CDB0000F4B984212D303F1180290420ED20D4A43 +:10CDC000C01A0D4B02FB00F1B3EBF10F06D3C010FC +:10CDD00002FB00F0094B01221A5408BD084909481A +:10CDE000094A3823F4F7AAFF07483821F4F79CFFD3 +:10CDF000280F0020ABAAAAAAAAAAAA0A301A0020C1 +:10CE000070050100C8E600004805010070B5144A2D +:10CE1000144E157C05EB450206EBC206044630466F +:10CE200000F0F2F9104B00225A55E3897F2B16D8F7 +:10CE30000E4B1A689AB10E4B94F90E101B6899426A +:10CE40000DDB637BDB060AD10A4B9C4207D0013A1B +:10CE500030460949BDE87040D31700F0EDB870BD09 +:10CE6000FC190020280F0020301A0020381A00205A +:10CE7000341A0020A00D0020ADCD000038B5EFF32E +:10CE80001185202383F31288BFF36F8F2A4800F0A7 +:10CE90006DF8002832D0284800F08EF8274A284B39 +:10CEA00094681868A04226D00021127C1960254B96 +:10CEB0009B5CBBB1E3897F2B14D8234B1B688BB1E0 +:10CEC000224B94F90E201B689A420BDB637BDB0636 +:10CED00008D11F4B9C4205D02046FEF7BDFE2046E0 +:10CEE000FFF794FF144800F04FF8A8B185F31188BC +:10CEF000BFF36F8F38BDFFF789FFF3E7154A164977 +:10CF000016488823F4F71AFF0B491548F4F716FF63 +:10CF100010488821F4F708FF0E4A12490F4840F2E2 +:10CF20003113F4F70BFF04490F48F4F707FF0948E2 +:10CF300040F23111F4F7F8FE281A0020FC19002005 +:10CF40002C1A0020301A0020381A0020341A002031 +:10CF5000A00D0020A8EC000008ED0000C8E60000CD +:10CF600020ED0000D8EC0000F0EC0000006838B1C3 +:10CF7000044B1B7C00F00300C01A18BF012070474F +:10CF800001207047FC190020002301680360EFF3C3 +:10CF90000583084A43B99368127C43EA0200401AA9 +:10CFA000B0FA80F0400970479368587BC007F3D50A +:10CFB00001207047FC190020024B1A7C9B68134328 +:10CFC00003607047FC1900200748084A084908B563 +:10CFD000121AFDF7F1F90748074A0849BDE8084069 +:10CFE000121AFDF7E9B900BFC00400206408002050 +:10CFF00090080100B8040020C00400208808010047 +:10D0000010B40C4B5A68036882420AD04BB1D3E982 +:10D0100004210469121944691A6141EB0401596140 +:10D020000368416800220B60596010BC02604260D6 +:10D03000704700BF08070020B3F1FF3F08BFB2F1FF +:10D04000FF3F00F09A802DE9F047D0F800800646B7 +:10D05000B8F1000F40F0B08092461D461446994644 +:10D060008160EFF31187202383F31288BFF36F8F62 +:10D070005848FFF77BFF002800F090805548FFF7E5 +:10D080009BFFBAF1FF3F75F1FF3343DA524A116853 +:10D0900055686FF001035B1A4FF0FF3262EB050534 +:10D0A000B3EB0A0465EB0905012C75F1000301DA05 +:10D0B00001244546DFF824C1DCE900106145C6E9DA +:10D0C000044511D081B1D1E90423944275EB030EDC +:10D0D0002DDBA21A65EB03058842C6E90425144638 +:10D0E00002D009680029EED1C6E900C00660CCF87C +:10D0F0000460DCF80030634501D09E4222D0354800 +:10D10000FFF742FF002839D087F31188BFF36F8FF4 +:10D11000BDE8F087324B1B68013445F10005002B58 +:10D12000C8D1FBF7A9FD041945EBE075C2E7121B56 +:10D1300063EB0503C1E904234B68C6E900131E60D5 +:10D140004E60D6E7264B1B68002BD8D1FBF794FD29 +:10D15000336972690146181A62EBE173002BBCBF98 +:10D1600000200023B0F1004F73F10003A8BF6FF05F +:10D1700000400021FBF704FDC1E77047194A1A4936 +:10D180001A4840F23113F4F7D9FD12491848F4F760 +:10D19000D5FD144840F23111F4F7C6FD114A154986 +:10D1A00012488823F4F7CAFD0A491348F4F7C6FD6C +:10D1B0000C488821F4F7B8FD1049114A0B486E233A +:10D1C000F4F7BCFD0F48F4F7B9FD0D486E21F4F7F4 +:10D1D000ABFD00BF401A0020400F002008070020D0 +:10D1E0003C1A0020A8EC0000D8EC0000C8E60000C3 +:10D1F000F0EC000008ED000020ED00004807010001 +:10D200002407010068000100F8B50446EFF3118619 +:10D21000202383F31288BFF36F8F3348FFF7A6FEF6 +:10D22000002843D03048FFF7C7FE236853B12F4D85 +:10D230002F68AF4220462DD0FFF7E2FEBC420ED051 +:10D24000002401E06FF015042748FFF79DFE002839 +:10D250003AD086F31188BFF36F8F2046F8BD2C6853 +:10D26000234BAC421B6818D0EBB10020C4B1D4E909 +:10D2700004321B1A62EBE072B3F1004F72F100014D +:10D280000EDA002AACBF184600200021FBF778FC1C +:10D290000024D9E7FFF7B4FED2E70BB9FBF7ECFCAB +:10D2A0006FF00040F1E7FBF7E7FCDFE7114A1249B6 +:10D2B00012488823F4F742FD0B491148F4F73EFD6C +:10D2C0000C488821F4F730FD0A4A0E490B4840F219 +:10D2D0003113F4F733FD04490B48F4F72FFD0548EB +:10D2E00040F23111F4F720FD401A00200807002019 +:10D2F0003C1A0020A8EC000008ED0000C8E6000081 +:10D3000020ED0000D8EC0000F0EC00002DE9F04F1B +:10D3100083B00190EFF311854FF0200B8BF312884F +:10D32000BFF36F8F6D48FFF721FE019A002800F0D0 +:10D33000B7806B4F69480192FFF73EFED7F8008037 +:10D34000DFF8A0A1019ACAF80020B84500F0958046 +:10D35000B8F1000F00F0B280DFF88C915F4E03E06F +:10D36000B8F1000F00F0B580D8E904404FEAE27C44 +:10D37000A2427CEB000E45DBD9E90020121940EBFC +:10D38000E47300210020C8E904014046C9E90023F4 +:10D39000FFF736FE3046FFF7F7FD002870D085F323 +:10D3A0001188BFF36F8FD8F8082040469047EFF3FD +:10D3B00011858BF31288BFF36F8F3046FFF7D6FDD0 +:10D3C00000286DD03046FFF7F7FDDAF80020D7F8D7 +:10D3D0000080121BB845CAF80020C1D1D9F800302E +:10D3E0009B18C9F800304FF00003CAF80030D9F894 +:10D3F000043043EBE273C9F80430FBF73DFC6FF0F7 +:10D4000000402AE0A41AC8F8104060EB0C003C6809 +:10D41000C8F81400D9F80000D9F80430801843EB9C +:10D420000C03C9F80430BC424FF00003C9F80000F7 +:10D43000CAF80030E1D0FBF71FFC002CDFD0D4E9A4 +:10D440000423121A63EBE073B2F1004F73F1000191 +:10D45000D5DA002BACBF104600200021FBF790FB73 +:10D460001E48FFF791FD58B185F31188BFF36F8F08 +:10D4700003B0BDE8F04FFFF701BDDFF86C90ADE7FA +:10D480001A4A1B491B4840F23113F4F757FC134961 +:10D490001948F4F753FC154840F23111F4F744FCF5 +:10D4A000124A164913488823F4F748FC0B491448DC +:10D4B000F4F744FC0D488821F4F736FC0A49CAF811 +:10D4C0000080D1E900309B1840EBE270C1E90030E8 +:10D4D00093E744464FEAE27C9CE700BF401A0020F5 +:10D4E000080700203C1A0020400F0020A8EC000094 +:10D4F000D8EC0000C8E60000F0EC000008ED0000E9 +:10D5000020ED000070B5EFF31186202383F312881D +:10D51000BFF36F8F1F48FFF729FDE0B11D48FFF7EC +:10D520004BFD1D4B1B6893B1002001461B4B1A6835 +:10D530005D688418174841EB0505FFF725FDC0B16C +:10D5400086F31188BFF36F8F2046294670BDFBF725 +:10D5500093FBC117EAE7124A124913488823F4F7EC +:10D56000EDFB0C491148F4F7E9FB0D488821F4F76D +:10D57000DBFB0B4A0E490C4840F23113F4F7DEFB9B +:10D5800004490C48F4F7DAFB054840F23111F4F78E +:10D59000CBFB00BF401A00203C1A0020400F0020A7 +:10D5A000A8EC000008ED0000C8E6000020ED000037 +:10D5B000D8EC0000F0EC000008B5FFF7A3FF08BDB1 +:10D5C000FFF7A0BF50B5B3F1FF3F08BFB2F1FF3F77 +:10D5D00083B0044617D016461A430DD06FF00100F1 +:10D5E000801B4FF0FF3262EB0301002913DBC4E91B +:10D5F0000001204603B050BD00200146C4E90001EF +:10D60000204603B050BD4FF0FF300146C4E9000191 +:10D61000204603B050BD0193FFF774FF019B8019B2 +:10D6200041EB0301E3E700BFB3F1FF3F08BFB2F1F5 +:10D63000FF3FF8B5064617D01C4654EA02031546CC +:10D6400005D100200446C6E900043046F8BDFFF7C6 +:10D6500059FFA84271EB0403F3D2281A64EB0104CA +:10D66000C6E900043046F8BD4FF0FF300446C6E975 +:10D6700000043046F8BD00BFF8B50446EFF311854D +:10D68000202383F31288BFF36F8F4F48FFF76EFCA0 +:10D6900000287BD04C48FFF78FFC22684AB14A48EB +:10D6A000FFF772FC00287FD085F31188BFF36F8FDE +:10D6B000F8BDD4E90A315E1C41F10000022E70F180 +:10D6C00000001CD3012B71F10000BCBF01231146E7 +:10D6D0005E1E41F1FF37FFF773FF013041F100019A +:10D6E000801947EB0101012871F100013EDA6FF06A +:10D6F00001024FF0FF3335492046FFF79DFC236BB5 +:10D70000226A01332363CAB12F48FFF73DFC00288A +:10D710004AD085F31188BFF36F8F236A204698475C +:10D72000EFF31185202383F31288BFF36F8F264810 +:10D73000FFF71CFC50B32448FFF73EFC54F8186F69 +:10D74000A642ACD0002EAAD03046FEF75FFB0023E5 +:10D750001D48B367FFF718FC30B385F31188BFF39A +:10D760006F8F3046BDE8F840FEF708BBFFF728FF93 +:10D77000013041F100016FF00102801947EB010116 +:10D780004FF0FF33121A63EB0103B4E7104A11495B +:10D7900011488823F4F7D2FA0B491048F4F7CEFA6F +:10D7A0000B488821F4F7C0FA094A0D490A4840F2AB +:10D7B0003113F4F7C3FA04490A48F4F7BFFA0448EE +:10D7C00040F23111F4F7B0FA441A002079D6000083 +:10D7D000A8EC000008ED0000C8E6000020ED000005 +:10D7E000D8EC0000F0EC000030B400240025C0E9C3 +:10D7F0000045002300F11804C0E90644C0E90812FE +:10D8000030BC0363436370472DE9F84314461D465B +:10D81000064690461F46EFF31189202383F31288B2 +:10D82000BFF36F8F2948FFF7A1FB80B32748FFF7AD +:10D83000C3FBB5F1FF3F08BFB4F1FF3F12D0631C3B +:10D8400075F1FF3318DA3046FFF7DEFCDDE90845F5 +:10D8500000213163C6E90A451D4942463B46304630 +:10D86000FFF7EAFB1948FFF78FFBF0B189F3118846 +:10D87000BFF36F8FBDE8F883012C75F10003BCBFC7 +:10D880000124002514F1FF3845F1FF37DBE7114A89 +:10D89000114912488823F4F751FA0C491048F4F75B +:10D8A0004DFA0C488821F4F73FFA0A4A0D490B4813 +:10D8B00040F23113F4F742FA04490B48F4F73EFA08 +:10D8C000044840F23111F4F72FFA00BF441A002047 +:10D8D00079D60000A8EC000008ED0000C8E60000C2 +:10D8E00020ED0000D8EC0000F0EC000010B504467C +:10D8F000FFF78AFCA8B9636A0BB12046984704F188 +:10D900001800FEF7D3FB60B1FEF738FAEFF3118091 +:10D91000202383F31288BFF36F8FBDE81040FEF71A +:10D920001FBD10BD014620B150F8040C043900F0B1 +:10D930000BB9704770B582B006460C46FDF7BAFFCA +:10D94000C0B9164B9B68DD6E8DB1221D12D200202E +:10D950000021CDE9000146F00401284600F056F808 +:10D9600040B10560051D16B1731E1D4206D1284643 +:10D9700002B070BD0025284602B070BD084A0949B2 +:10D9800009482523F4F7DAF9084829463246F4F71E +:10D99000D5F903482521F4F7C7F900BFFC19002089 +:10D9A000680701008C070100C8E60000C0070100FD +:10D9B00038B5104C104DAC420CD818D204F10C0301 +:10D9C000D4E9011220461B6018345B60F4F79CF820 +:10D9D000AC42F2D909490A4A0A481923F4F7AEF9C8 +:10D9E0000948F4F7ABF906481921F4F79DF900202E +:10D9F00038BD00BF40070020400700200C08010090 +:10DA0000E8070100C8E6000078EE00002DE9F04FBD +:10DA100089B0DDE912538046914606A82A461C4685 +:10DA20008B46FFF7CFFDDDE9062308F11407CDE9AA +:10DA30000223EFF31186202383F31288BFF36F8F45 +:10DA40003846FFF793FA00284ED03846FFF7B4FA6D +:10DA5000EFF30583002B37D108F10C0305934FF04A +:10DA6000200A1CE02C4321D0DDE9022306A8FFF7A1 +:10DA7000DBFDDDE90654059ACDE900543146384610 +:10DA8000FEF77CFAEFF311868AF31288BFF36F8FEB +:10DA90003846FFF76BFA38B33846FFF78DFA4A4637 +:10DAA00059464046F3F770FF0028DBD00290384615 +:10DAB000FFF76AFA029B28B386F31188BFF36F8FD2 +:10DAC000184609B0BDE8F08F55EA0403C4D01549E3 +:10DAD000154A16484B23F4F731F91548F4F72EF997 +:10DAE00011484B21F4F720F9124A104812498823B3 +:10DAF000F4F724F911483946F4F720F90D48882144 +:10DB0000F4F712F90B4A09480D4940F23113F4F7C2 +:10DB100015F90C483946F4F711F9064840F231116D +:10DB2000F4F702F928080100E8070100C8E6000040 +:10DB300068000100A8EC000008ED000020ED0000E6 +:10DB4000D8EC0000F0EC0000F8B504460E4600F1F9 +:10DB50001405EFF31187202383F31288BFF36F8F2F +:10DB60002846FFF703FAD0B12846FFF725FA2046EA +:10DB70003146F3F75DFE04F10C00FEF73BFD40B9C2 +:10DB80002846FFF701FAC0B187F31188BFF36F8F02 +:10DB9000F8BD39462846BDE8F840FEF78DBB0F4A70 +:10DBA0000F4810498823F4F7C9F80F482946F4F7BD +:10DBB000C5F80A488821F4F7B7F8084A08480B491D +:10DBC00040F23113F4F7BAF809482946F4F7B6F8E9 +:10DBD000024840F23111F4F7A7F800BFA8EC0000AA +:10DBE000C8E6000008ED000020ED0000D8EC0000C1 +:10DBF000F0EC000000B50A4B93E8030085B002AAE0 +:10DC000000924FF0FF3382E80300064806494FF4C4 +:10DC10008062FDF71FFD002005B05DF804FB00BF2A +:10DC200028E50000480F0020003100202DE9F04FCA +:10DC30008DB043680293837815469A07804640F179 +:10DC40000D8100240E78002E00F00A81252E0BD0C5 +:10DC50004B1C03930134029B4146304698470028F1 +:10DC6000C0F2F6800399EDE74E788B1C252E0393C6 +:10DC7000F0D00027B946BB46BBF11F0F38D8A6F13C +:10DC80002003102B0AD8DFE803F02A09093009091C +:10DC9000092109090928092D09091F00A6F13003E6 +:10DCA000092B33D92A2E37D11BF0400F55F8043BEE +:10DCB00040F08280002BA7BF4BF0200B9946C3F1A8 +:10DCC00000094BF0280B01E04BF0010B039B13F80C +:10DCD000016B0393002ECFD130E04BF0020B4BF0E1 +:10DCE000040BF3E74BF0080BF0E74BF0100BEDE7FC +:10DCF000BBF17F0F19D8A6F13003092BD2D81BF046 +:10DD0000400F03D00A2101FB0737DFE70A2101FB9F +:10DD100009394BF0200BD9E72E2E06D11BF0400F0E +:10DD200040F09E804BF0400BD0E76C2E31D02BD8CA +:10DD3000682E36D06A2E3CD04C2E3AD0002F46F0BA +:10DD40002003B8BF2BF04002A3F16501BCBF1FFA4E +:10DD500082FB0027022901D9612B2FD1073525F03D +:10DD60000705DFF8ACA2083507271BF0080F66D0BF +:10DD70000AEB070B56465E4563D1A4EB0A0A06EB95 +:10DD80000A02A9EB07096FE1742E9FD07A2E9DD06D +:10DD9000D4E71BF0800F18BF4BF4007B4BF0800BD7 +:10DDA00094E71BF4807F18BF4BF4007B4BF4807B1F +:10DDB0008CE74BF4207B89E71F4687E7A6F16301D8 +:10DDC000122900F2F080DFE811F013004F00EE009E +:10DDD000EE00EE00EE004F00EE00EE00EE00EE0072 +:10DDE000EE00FE00E900EE00EE001B00EE00AF00CA +:10DDF00055F8043B8DF8183001270DF1180AB4E7E7 +:10DE000055F804AB834BBAF1000F08BF9A461BF0DC +:10DE1000400F14BF39464FF0FF31504600F078F9FB +:10DE20000746A2E7029B41462020984700280FDBC7 +:10DE3000013EB742F6D34C44A41BB14698E74E4688 +:10DE4000F7E716F8010B029B41469847002892DA43 +:10DE500098F8023043F0040388F802304FF0FF34A2 +:10DE600020460DB0BDE8F08F1BF0800F34D01BF4BE +:10DE7000007F2CD0073525F00705AA4669685AF8B7 +:10DE8000080B2BF010050029ADB237DA404261EBE8 +:10DE9000410145F480650DF1180B0A235A4600F044 +:10DEA00043F9A0EB0B0301936B0662D5019B25F0B0 +:10DEB00001019F4289B240F3A180002E00F09980B9 +:10DEC00015F0100240F09C80BB460D4623E0AA46A8 +:10DED0005AF8040BC117D4E7AA461BF4807F5AF8FE +:10DEE000041B01D10846F5E71BF4007F15BF48B2BB +:10DEF00008B241F3C01141F3C031C2E750EA010357 +:10DF0000C9D11BF0400FC6D0002FC4D12BF0110295 +:10DF100095B2BB46019740F2064115EA01021CBFCB +:10DF20000BF1010B00222CE02BF010021FFA82FBF8 +:10DF30000A231BF0800C49D01BF400711DBF07356C +:10DF400025F00705AA46AA461ABF5AF8080B6968C1 +:10DF50005AF8040B50EA010545D12BF016051BF0C9 +:10DF6000400FADB242D0002F40D12BF0170295B236 +:10DF7000019715F0100248D0019B002E42D103F109 +:10DF8000010B29075AD4EB0706D5D9456FDD019956 +:10DF9000A9EB0B035F18CB465B4649E04BF0100B37 +:10DFA00010237826C5E7782B04D1C6F1780343F017 +:10DFB0001003BEE7029B4146252098470028FFF644 +:10DFC00047AF023447E608230026B2E7AA461BF40F +:10DFD00080715AF8040BBDD01BF400711ABFC0B297 +:10DFE000614680B2B6E72BF0060295B20DF1180B30 +:10DFF00054E725F01105ADB2BB468CE70D46B8E7F6 +:10E000003B460D4603F1020BBBE7DDF804B082E7A7 +:10E010008008010079080100CDE904324146029BE5 +:10E02000202098470028FFF613AF049B059A013380 +:10E030009945F1DCA4EB0B01CC189B460AB3029B7B +:10E040004146302098470028FFF602AF8EB90134D0 +:10E050002744019B391B994224DC1D465DBB019A74 +:10E06000A9EB0B09224455461446914435E0019F23 +:10E0700092E7023441463046029B98470028E7DA8F +:10E08000E6E640F206410D42E2D015F0020F14BF61 +:10E090002B20202015F4806F04F10104414618BFA5 +:10E0A0002D20E9E7029B414630209847002804F1E3 +:10E0B0000104CEDACCE606AB013D4146585D029B39 +:10E0C00098470028CADAC3E6029B414620209847B9 +:10E0D000002804F10104FFF6BBAEA9EB0403002BFA +:10E0E000F2DCBFE50A44914200F1FF3300D17047F2 +:10E0F00010B511F8014B03F8014F9142F9D110BD51 +:10E1000002440346934200D1704703F8011BF9E72C +:10E1100010B5024601448A42134603D01C780132EE +:10E12000002CF8D1181A10BDF0B5C3F1370704461A +:10E13000FFB203F01F031046082BE6B233D0102BBA +:10E140003ED06508A40844EA817445EAC1752D19DA +:10E150004FEA910242EB5102290941EA02716D181E +:10E1600042EB1212290A41EA02616D1842EB1222B7 +:10E17000290C41EA02416D1842EB1242AD1842F1FE +:10E180000002EC0844EA4274D10804EB8402A6EBD6 +:10E190004205EDB2092D0CD90134A5F10A0541F172 +:10E1A0000001EDB212E0E40844EA417406F007050C +:10E1B000C908303554EA010200F8015BBCD1F0BD5A +:10E1C000240944EA017406F00F050909092D84BFEA +:10E1D000ED19EDB2EDE7000001480068704700005E +:10E1E000081100202023FF7F01000000394F0000AC +:10E1F000000000009D7C00006CE2000055A10000C2 +:10E2000000000000F5A4000000000000B1D90000EB +:10E21000000000004982000094E2000049820000F2 +:10E2200080E20000F93C0000A8E200001581000037 +:10E23000000000007189000000000000154F000080 +:10E24000000000001941000000000000F5DB0000A4 +:10E250000000000075770000BCE20000BD4F000028 +:10E2600000000000BD860000D0E2000050F9000070 +:10E2700060F90000B0E40000150700203819002004 +:10E2800040FA000060FA000070E400001707002068 +:10E290009419002050FA000078FA000070E40000A1 +:10E2A00019070020A01900209CEF00004008002062 +:10E2B000CCE4000011070020C0040020D0F80000CA +:10E2C0000000000064E400001307002000000000CC +:10E2D000E4FA00000000000094E400001B070020A6 +:10E2E000AC190020A99F00007D8E000000000000F6 +:10E2F0001D480000000000001D4800000000000054 +:10E300001D480000000000001D4800000000000043 +:10E310001D4800002D9A00007D8E0000BCE2000028 +:10E32000C1790000000000001D480000000000004E +:10E3300085110000000000001D48000000000000E2 +:10E340001D480000D0E2000021870000000000000E +:10E350001D480000000000001D48000000000000F3 +:10E360001D480000000000001D48000000000000E3 +:10E370005D8A0000000000001D4800000000000051 +:10E380001D480000000000001D48000000000000C3 +:10E390001D480000000000001D48000000000000B3 +:10E3A0001D480000000000001D48000000000000A3 +:10E3B0001D480000000000001D4800000000000093 +:10E3C0001D480000000000001D4800000000000083 +:10E3D0001D480000000000001D4800000000000073 +:10E3E0001D480000000000001D4800000000000063 +:10E3F0001D480000000000001D4800000000000053 +:10E400001D480000000000001D4800000000000042 +:10E410001D480000000000001D4800003D64000091 +:10E420007D8E0000000000001D480000000000007C +:10E430001D480000000000001D4800000000000012 +:10E440001D480000000000001D4800000000000002 +:10E450001D480000000000001D48000000000000F2 +:10E460001D480000557600000978000058020000A1 +:10E47000BD8200003D8100004D81000065810000EB +:10E48000718100007D8100001585000099810000E8 +:10E49000000000000000000000000000000000007C +:10E4A000398700007D8600000000000000000000A9 +:10E4B0003D7B0000BD7D0000117E000000000000DB +:10E4C000C97B00000000000000000000E93F0000E0 +:10E4D000A93D000000000000C53B00008D3F00008A +:10E4E000293B0000513A00005D3A0000093B000062 +:10E4F0007D3A000000000000893A000000000000A2 +:10E5000000000000593F0000993A0000C93A00009D +:08E51000693E0000D13A000051 +:10E5200000C20100000008007008010000010000A6 +:10E530000338FDD87047000055534220696E697456 +:10E54000206661696C65640A0000000042617474B1 +:10E550006572792041444320696E6974206661695F +:10E560006C656420282564290A00000054656D70DC +:10E570006572617475726520696E6974206661697F +:10E580006C656420282564290A00000042617474C7 +:10E590006572793A202564206D56200042617474BA +:10E5A000657279206D6561737572656D656E742035 +:10E5B0006661696C656420282564292000000000DC +:10E5C00054656D70657261747572653A20256420BA +:10E5D0004320000054656D7065726174757265202A +:10E5E00072656164206661696C6564202825642910 +:10E5F0002000000068756D69646974795F726177E5 +:10E600003A2025640A0000004572726F722072651C +:10E610006164696E6720627574746F6E0A00000031 +:10E62000427574746F6E2072656C65617365640AFF +:10E6300000000000574553545F544F504449522F37 +:10E640007A65706879722F696E636C7564652F7A6C +:10E6500065706879722F647269766572732F67705E +:10E66000696F2E680000000028666C6167732026C1 +:10E670002028283155203C3C20323129207C20287C +:10E680003155203C3C20323229207C202831552035 +:10E690003C3C20323329207C20283155203C3C2032 +:10E6A000323429207C20283155203C3C2032352929 +:10E6B000207C20283155203C3C2032362929292035 +:10E6C0003D3D203000000000415353455254494F16 +:10E6D0004E204641494C205B25735D204020257328 +:10E6E0003A25640A0000000009496E74657272756B +:10E6F000707420666C61677320617265206E6F7440 +:10E7000020737570706F727465640A0028666C619E +:10E710006773202620282831203C3C203429207C87 +:10E72000202831203C3C203529292920213D202842 +:10E730002831203C3C203429207C202831203C3CBE +:10E7400020352929000000000950756C6C20557097 +:10E7500020616E642050756C6C20446F776E20735E +:10E76000686F756C64206E6F7420626520656E61E1 +:10E77000626C65642073696D756C74616E656F752C +:10E78000736C790A00000000212828666C616773A9 +:10E79000202620283155203C3C20313629292026AE +:10E7A00026202128666C6167732026202831552099 +:10E7B0003C3C20313729292026262028666C6167B9 +:10E7C000732026202831203C3C20312929290000B3 +:10E7D00009496E7075742063616E6E6F7420626596 +:10E7E00020656E61626C656420666F7220274F70D1 +:10E7F000656E20447261696E272C20274F70656E0C +:10E8000020536F7572636527206D6F646573207781 +:10E810006974686F7574204F75747075740A0000A0 +:10E8200028666C6167732026202831203C3C20310B +:10E83000292920213D2030207C7C2028666C6167BE +:10E84000732026202831203C3C20322929203D3DC0 +:10E850002030000028666C6167732026202828314C +:10E8600055203C3C20313829207C20283155203C43 +:10E870003C203139292929203D3D2030207C7C2035 +:10E8800028666C616773202620283155203C3C2087 +:10E890003137292920213D2030000000094F7574AF +:10E8A000707574206E6565647320746F20626520D6 +:10E8B000656E61626C656420746F20626520696EAC +:10E8C000697469616C697A6564206C6F77206F7216 +:10E8D00020686967680A000028666C6167732026F3 +:10E8E0002028283155203C3C20313829207C202804 +:10E8F0003155203C3C20313929292920213D20282F +:10E90000283155203C3C20313829207C20283155A5 +:10E91000203C3C203139292900000000094F757442 +:10E920007075742063616E6E6F7420626520696E0D +:10E93000697469616C697A6564206C6F7720616EB7 +:10E940006420686967680A00286366672D3E706FF7 +:10E9500072745F70696E5F6D61736B20262028672B +:10E9600070696F5F706F72745F70696E735F742926 +:10E970002831554C203C3C202870696E29292920DB +:10E98000213D20305500000009556E737570706F81 +:10E99000727465642070696E0A0000004C45442062 +:10E9A00064657669636573206E6F74207265616457 +:10E9B000790A0000427574746F6E2064657669632D +:10E9C00065206E6F742072656164790A0000000032 +:10E9D000414443206E6F742072656164790A0000BF +:10E9E000BCE2000006010004000006070000000071 +:10E9F0000C000000574553545F544F504449522F68 +:10EA00006D6F64756C65732F68616C2F6E6F7264C7 +:10EA100069632F6E7266782F68616C2F6E72665F05 +:10EA20006770696F2E6800006E72665F6770696F4D +:10EA30005F70696E5F70726573656E745F63686541 +:10EA4000636B282A705F70696E29000068756D5FBE +:10EA5000656E20646576696365206E6F74207265EB +:10EA60006164790A000000004661696C6564207485 +:10EA70006F20636F6E6669677572652068756D5F7C +:10EA8000656E0A00574553545F544F504449522F06 +:10EA90007A65706879722F6C69622F686561702F72 +:10EAA000686561702E6300006368756E6B5F7573D7 +:10EAB000656428682C2063290000000009756E65D4 +:10EAC0007870656374656420686561702073746133 +:10EAD00074652028646F75626C652D667265653F8C +:10EAE0002920666F72206D656D6F727920617420C8 +:10EAF00025700A006C6566745F6368756E6B2868C4 +:10EB00002C2072696768745F6368756E6B28682C67 +:10EB100020632929203D3D206300000009636F72B6 +:10EB2000727570746564206865617020626F756EBF +:10EB300064732028627566666572206F76657266FA +:10EB40006C6F773F2920666F72206D656D6F7279EB +:10EB50002061742025700A0028616C69676E202688 +:10EB60002028616C69676E202D20312929203D3DC8 +:10EB70002030000009616C69676E206D7573742028 +:10EB80006265206120706F776572206F6620320A9F +:10EB9000000000006279746573203E206865617032 +:10EBA0005F666F6F7465725F6279746573286279EE +:10EBB000746573290000000009686561702073693D +:10EBC0007A6520697320746F6F20736D616C6C0AB5 +:10EBD00000000000686561705F737A203E20636802 +:10EBE000756E6B737A2873697A656F6628737472B1 +:10EBF000756374207A5F68656170292900000000E0 +:10EC00006368756E6B305F73697A65202B206D6960 +:10EC10006E5F6368756E6B5F73697A65286829201B +:10EC20003C3D20686561705F737A0000574553541E +:10EC30005F544F504449522F7A65706879722F6C37 +:10EC400069622F7574696C732F6F6E6F66662E63C1 +:10EC5000000000007374617465203D3D2030550054 +:10EC60007472616E73697420213D202828766F6963 +:10EC700064202A29302900007374617465203D3DA9 +:10EC8000202831554C203C3C202831292900000007 +:10EC90007374617465203D3D202831554C203C3C07 +:10ECA0002028302929000000574553545F544F5005 +:10ECB0004449522F7A65706879722F696E636C755A +:10ECC00064652F7A65706879722F7370696E6C6FE6 +:10ECD000636B2E68000000007A5F7370696E5F7569 +:10ECE0006E6C6F636B5F76616C6964286C290000E1 +:10ECF000094E6F74206D79207370696E6C6F636B51 +:10ED00002025700A000000007A5F7370696E5F6CE6 +:10ED10006F636B5F76616C6964286C29000000008A +:10ED200009496E76616C6964207370696E6C6F63FB +:10ED30006B2025700A0000006D67722D3E726566BB +:10ED400073203E2030000000287374617465203DFC +:10ED50003D20282831554C203C3C202832292920B0 +:10ED60007C202831554C203C3C2028312929292958 +:10ED7000207C7C20287374617465203D3D20282808 +:10ED800031554C203C3C2028322929207C2030550C +:10ED90002929207C7C20287374617465203D3D20E6 +:10EDA000282831554C203C3C2028322929207C2021 +:10EDB0002831554C203C3C202830292929290000A5 +:10EDC000574553545F544F504449522F7A657068E9 +:10EDD00079722F6C69622F7574696C732F6E6F7402 +:10EDE0006966792E63000000574553545F544F50B5 +:10EDF0004449522F7A65706879722F6C69622F7559 +:10EE000074696C732F72696E675F6275666665728E +:10EE10002E630000657272203D3D2030000000002E +:10EE2000574553545F544F504449522F7A65706888 +:10EE300079722F7375627379732F7573622F64659E +:10EE4000766963652F7573625F6465766963652EA5 +:10EE5000630000006366675F64617461203C3D206D +:10EE60005F7573625F6366675F646174615F6C693D +:10EE700073745F656E64000009756E657870656314 +:10EE8000746564206C69737420656E64206C6F63B4 +:10EE90006174696F6E0A00003031323334353637B1 +:10EEA0003839414243444546000000005745535419 +:10EEB0005F544F504449522F7A65706879722F73AE +:10EEC00075627379732F7573622F646576696365F4 +:10EED0002F7573625F64657363726970746F722EED +:10EEE00063000000726574203D3D2030000000008A +:10EEF000094661696C656420746F2066696E6420E0 +:10EF000076616C696420624D61785061636B6574F1 +:10EF100053697A65300A00006275665B61736369E4 +:10EF2000695F6964785F6D61785D203E203078317B +:10EF300046202626206275665B61736369695F6996 +:10EF400064785F6D61785D203C2030783746000042 +:10EF5000094F6E6C79207072696E7461626C652005 +:10EF600061736369692D37206368617261637465D9 +:10EF700072732061726520616C6C6F7765642069C3 +:10EF80006E2055534220737472696E6720646573F6 +:10EF900063726970746F72730A0000006364635F68 +:10EFA00061636D5F75617274300000007573627724 +:10EFB0006F726B71000000002A2A2A20426F6F7462 +:10EFC000696E67206E524620436F6E6E65637420D3 +:10EFD00053444B2076332E302E322D383962613136 +:10EFE00032393461633962202A2A2A0A000000007B +:10EFF0002A2A2A205573696E67205A6570687972CB +:10F00000204F532076342E302E39392D6637393142 +:10F010006334396634393263202A2A2A0A00000010 +:10F02000574553545F544F504449522F7A65706886 +:10F0300079722F617263682F61726D2F636F7265D1 +:10F040002F636F727465785F6D2F6661756C742EB7 +:10F0500063000000212828285343425F54797065DB +:10F06000202A29202828307845303030453030306B +:10F07000554C29202B20307830443030554C2920F5 +:10F08000292D3E434653522026202831554C203C02 +:10F090003C20283055202B203455292929000000F8 +:10F0A00009537461636B696E67206572726F7220B9 +:10F0B0006E6F74206120737461636B206661696C8C +:10F0C0000A0A000065736620213D202828766F69B2 +:10F0D00064202A29302900000945534620636F75B2 +:10F0E0006C64206E6F74206265207265747269654D +:10F0F000766564207375636365737366756C6C798C +:10F100002E205368616C6C206E65766572206F638B +:10F110006375722E0A000000094661756C742065E3 +:10F120007363616C6174696F6E20776974686F7561 +:10F13000742046535220696E666F0A000948617256 +:10F14000644661756C7420776974686F75742048C3 +:10F1500046535220696E666F205368616C6C206E56 +:10F1600065766572206F636375720A005745535464 +:10F170005F544F504449522F7A65706879722F61FD +:10F180007263682F61726D2F636F72652F636F7288 +:10F190007465785F6D2F6972715F6D616E6167650F +:10F1A0002E6300007072696F203C3D202828315585 +:10F1B0004C203C3C2028332929202D2031290000D7 +:10F1C00009696E76616C6964207072696F72697426 +:10F1D0007920256420666F72202564206972712170 +:10F1E0002076616C756573206D757374206265207F +:10F1F0006C657373207468616E20256C750A0A0053 +:10F20000C00400200000000000000B0657455354C6 +:10F210005F544F504449522F7A65706879722F615C +:10F220007263682F61726D2F636F72652F6D7075D9 +:10F230002F61726D5F6D70752E63000009436F6EF4 +:10F240006669677572696E672025752073746174CD +:10F250006963204D505520726567696F6E73206633 +:10F2600061696C65640A0A0009436F6E66696775B7 +:10F2700072696E672025752064796E616D696320FF +:10F280004D505520726567696F6E73206661696CB9 +:10F2900065640A0A0000000009526571756573749F +:10F2A00020746F20636F6E6669677572653A2025FA +:10F2B0007520726567696F6E732028737570706F43 +:10F2C000727465643A202575290A0A00212872653E +:10F2D00067696F6E5B6964785D2E64745F617474D6 +:10F2E000722026202831554C203C3C2028302929EA +:10F2F000290000000952414D5F4E4F4341434845AC +:10F3000020776974682044545F4D454D5F43414305 +:10F31000484541424C452061747472696275746558 +:10F320000A0A0000094661696C656420746F2061F7 +:10F330006C6C6F63617465204D5055207265676910 +:10F340006F6E732066726F6D2044540A0A000000CD +:10F350002828284D50555F54797065202A29202887 +:10F360002830784530303045303030554C29202B0E +:10F3700020307830443930554C2920292D3E5459BD +:10F3800050452026202830784646554C203C3C20CD +:10F3900038552929203E3E203855203D3D20380053 +:10F3A00009496E76616C6964206E756D62657220C4 +:10F3B0006F66204D505520726567696F6E730A0A3B +:10F3C0000000000002000000DCF30000464C415346 +:10F3D000485F30005352414D5F3000000000000094 +:10F3E000CCF300002400020700000020D4F300004A +:10F3F00020000B11757362645F776F726B71000090 +:10F40000574553545F544F504449522F7A657068A2 +:10F4100079722F647269766572732F7573622F64C7 +:10F4200065766963652F7573625F64635F6E72668C +:10F43000782E630065705F637478000065705F63A9 +:10F4400074782D3E6366672E74797065203D3D208B +:10F450005553425F44435F45505F434F4E54524FB4 +:10F460004C00000009496E76616C69642065766520 +:10F470006E74206F6E204354524C2045502E0A006B +:10F48000657272203E3D20300000000061646472AD +:10F49000203D3D202875696E74385F742928284EF8 +:10F4A00052465F555342445F547970652A29203093 +:10F4B000783430303237303030554C292D3E55536A +:10F4C00042414444520000000955534220416464C3 +:10F4D0007265737320696E636F7272656374210A5B +:10F4E000000000000100020079520000000000004E +:10F4F000574553545F544F504449522F7A657068B2 +:10F5000079722F647269766572732F7573622F63D7 +:10F510006F6D6D6F6E2F6E72665F757362645F6381 +:10F520006F6D6D6F6E2F6E72665F757362645F6371 +:10F530006F6D6D6F6E2E6300282828286570202659 +:10F54000203078383029203D3D203078383029204F +:10F550002626202828657020262030784629203C41 +:10F5600020392929207C7C20282828657020262005 +:10F570003078383029203D3D20302920262620288B +:10F5800028657020262030784629203C20392929FA +:10F5900029000000216E72665F757362645F636F9D +:10F5A0006D6D6F6E5F73757370656E645F636865B4 +:10F5B000636B282900000000705F73746174652D0F +:10F5C0003E6D6F72655F7472616E73616374696FB3 +:10F5D0006E73000074785F73697A65203C3D203655 +:10F5E0003400000065705F73697A65203E3D2064D9 +:10F5F0006174615F73697A650000000028705F7450 +:10F6000072616E736665722D3E705F646174612E07 +:10F610007278203D3D202828766F6964202A2930A1 +:10F620002929207C7C206E7266785F69735F696E21 +:10F630005F72616D28705F7472616E736665722DA2 +:10F640003E705F646174612E727829007472616E1D +:10F65000736665722E73697A65203D3D2030000027 +:10F660007472616E736665722E73697A65203D3DB2 +:10F670002072785F73697A65000000006D5F6472C4 +:10F68000765F7374617465203D3D204E5246585F2D +:10F690004452565F53544154455F494E4954494181 +:10F6A0004C495A45440000006B5F73656D5F636FA2 +:10F6B000756E745F6765742826646D615F6176613D +:10F6C000696C61626C6529203D3D203100000000BD +:10F6D0006D5F6472765F7374617465203D3D204E8A +:10F6E0005246585F4452565F53544154455F504F01 +:10F6F00057455245445F4F4E0000000028282873AC +:10F70000697A652026202873697A65202D203129A1 +:10F7100029203D3D203029207C7C20282865702030 +:10F7200026203078462920213D203029290000005C +:10F730002873697A6520213D203029207C7C20288F +:10F740002865702026203078462920213D20302948 +:10F7500000000000282828657020262030784629DF +:10F76000203E3D203829202626202873697A6520EE +:10F770003C3D20757362645F65705F69736F5F63A2 +:10F7800061706163697479286570292929207C7CFE +:10F790002028212828657020262030784629203E00 +:10F7A0003D203829202626202873697A65203C3D93 +:10F7B00020363429290000006576656E745F686123 +:10F7C0006E646C6572000000705F7472616E7366C7 +:10F7D000657220213D202828766F6964202A29300F +:10F7E000290000002828657020262030783830292C +:10F7F000203D3D203078383029207C7C2028705FE7 +:10F800007472616E736665722D3E705F64617461BF +:10F810002E7278203D3D202828766F6964202A29A1 +:10F82000302929207C7C20286E7266785F69735F9E +:10F83000696E5F72616D28705F7472616E73666568 +:10F84000722D3E705F646174612E72782929000008 +:10F85000212828657020262030784629203E3D202A +:10F860003829000028286570202620307838302973 +:10F87000203D3D20302900006D5F6472765F737417 +:10F8800061746520213D204E5246585F4452565FB8 +:10F8900053544154455F554E494E495449414C4992 +:10F8A0005A4544000601050104010702030105024F +:10F8B0000201030205040101010201030104010622 +:10F8C0000108010C01100118012001400180000015 +:10F8D0006164634034303030373030300000000035 +:10F8E000574553545F544F504449522F7A657068BE +:10F8F00079722F647269766572732F636C6F636BB4 +:10F900005F636F6E74726F6C2F636C6F636B5F639A +:10F910006F6E74726F6C5F6E72662E630000000013 +:10F9200074797065203C20434C4F434B5F434F4EEE +:10F9300054524F4C5F4E52465F545950455F434FAF +:10F94000554E5400717E00002D7C00000000000028 +:10F95000636C6F636B4034303030303030300000D7 +:10F96000457D0000F17A0000E97A00002D7B00005F +:10F97000574553545F544F504449522F7A6570682D +:10F9800079722F696E636C7564652F7A657068791A +:10F99000722F647269766572732F6770696F2F6753 +:10F9A00070696F5F7574696C732E680063616C6C4D +:10F9B0006261636B00000000094E6F2063616C6C34 +:10F9C0006261636B210A000063616C6C6261636B4E +:10F9D0002D3E68616E646C6572000000094E6F20F8 +:10F9E00063616C6C6261636B2068616E646C6572EC +:10F9F000210A0000574553545F544F504449522F39 +:10FA00007A65706879722F647269766572732F6790 +:10FA100070696F2F6770696F5F6E7266782E630012 +:10FA2000657272203D3D204E5246585F5355434308 +:10FA30004553530063622D3E68616E646C657200CD +:10FA40006770696F4035303030303330300000003F +:10FA50006770696F40353030303030303000000032 +:10FA6000FF03000000030050000000000100000040 +:10FA70000060004000000000FFFFFFFF000000509A +:10FA800000000000000000000060004000000000D6 +:10FA9000574553545F544F504449522F7A6570680C +:10FAA00079722F647269766572732F73656E736FE6 +:10FAB000722F6E6F726469632F74656D702F746539 +:10FAC0006D705F6E7266352E630000006461746154 +:10FAD0002D3E636C6B5F6D677200000072203E3DCF +:10FAE0002030000074656D70403430303063303049 +:10FAF00030000000574553545F544F504449522F33 +:10FB00006D6F64756C65732F68616C2F6E6F7264B6 +:10FB100069632F6E7266782F647269766572732FCF +:10FB20007372632F6E7266785F636C6F636B2E63A4 +:10FB300000000000574553545F544F504449522F22 +:10FB40006D6F64756C65732F68616C2F6E6F726476 +:10FB500069632F6E7266782F68616C2F6E72665FB4 +:10FB6000636C6F636B2E68006D5F636C6F636B5FBC +:10FB700063622E6D6F64756C655F696E697469612F +:10FB80006C697A6564000000574553545F544F50C8 +:10FB90004449522F6D6F64756C65732F68616C2FCB +:10FBA0006E6F726469632F6E7266782F6472697605 +:10FBB0006572732F7372632F6E7266785F677069F8 +:10FBC0006F74652E630000006E7266795F677069FE +:10FBD0006F5F70696E5F70726573656E745F636886 +:10FBE00065636B2870696E290000000070696E5FA4 +:10FBF00069735F696E70757428705F696E73746184 +:10FC00006E63652C2070696E2900000070696E5F5C +:10FC10006861735F7472696767657228705F696E87 +:10FC20007374616E63652C2070696E29000000009A +:10FC3000705F6368616E6E656C00000057455354D9 +:10FC40005F544F504449522F6D6F64756C65732F2C +:10FC500068616C2F6E6F726469632F6E7266782FA5 +:10FC600068616C2F6E72665F6770696F74652E686D +:10FC700000000000696E646578203C2038000000B8 +:10FC8000696E745F656E61626C65000000202A2AEF +:10FC90002A2A2A2A2A2A2A2A2A2A2A2A000100006B +:10FCA000574553545F544F504449522F6D6F6475FC +:10FCB0006C65732F68616C2F6E6F726469632F6E51 +:10FCC0007266782F647269766572732F7372632F10 +:10FCD0006E7266785F706F7765722E630000000049 +:10FCE000705F636F6E66696700000000705F636F2E +:10FCF0006E66696720213D202828766F6964202A76 +:10FD0000293029006D5F706F667761726E5F686180 +:10FD10006E646C657220213D202828766F6964200E +:10FD20002A293029000000006D5F736C65657065DD +:10FD300076745F68616E646C657220213D202828AE +:10FD4000766F6964202A2930290000006D5F757381 +:10FD5000626576745F68616E646C657220213D2017 +:10FD60002828766F6964202A293029005745535482 +:10FD70005F544F504449522F6D6F64756C65732FFB +:10FD800068616C2F6E6F726469632F6E7266782F74 +:10FD9000647269766572732F7372632F6E72667800 +:10FDA0005F74656D702E63006D5F74656D705F7359 +:10FDB00074617465203D3D204E5246585F44525652 +:10FDC0005F53544154455F494E495449414C495A47 +:10FDD000454400005465726D696E616C000000005E +:10FDE000000000000000545452205245474745533C +:10FDF00000000000574553545F544F504449522F60 +:10FE00007A65706879722F6B65726E656C2F6465A8 +:10FE1000766963652E630000646576203C3D205F53 +:10FE20006465766963655F6C6973745F656E6400B1 +:10FE3000574553545F544F504449522F7A65706868 +:10FE400079722F6B65726E656C2F666174616C2EB2 +:10FE500063000000726561736F6E20213D204B5F6F +:10FE60004552525F4B45524E454C5F50414E4943BF +:10FE70000000000009417474656D7074656420743D +:10FE80006F207265636F7665722066726F6D206198 +:10FE9000206B65726E656C2070616E696320636FA4 +:10FEA0006E646974696F6E0A000000005745535410 +:10FEB0005F544F504449522F7A65706879722F6BA6 +:10FEC00065726E656C2F696E69742E6300000000A8 +:10FED0007468726561645F64617461203C3D205F99 +:10FEE0005F7374617469635F7468726561645F6491 +:10FEF0006174615F6C6973745F656E64000000001B +:10FF00006D61696E00000000ECE10000ECE10000B2 +:10FF100034E200003CE200006CE200006CE2000011 +:10FF2000574553545F544F504449522F7A65706877 +:10FF300079722F6B65726E656C2F6D656D5F736C7A +:10FF400061622E6300000000736C6162203C3D2002 +:10FF50005F6B5F6D656D5F736C61625F6C6973741D +:10FF60005F656E640000000028736C61622D3E6660 +:10FF70007265655F6C697374203D3D202828766F3B +:10FF80006964202A29302920262620736C61622D7D +:10FF90003E696E666F2E6E756D5F75736564203D8C +:10FFA0003D20736C61622D3E696E666F2E6E756DBD +:10FFB0005F626C6F636B7329207C7C20736C616261 +:10FFC0005F7074725F69735F676F6F6428736C61D1 +:10FFD000622C20736C61622D3E667265655F6C6990 +:10FFE0007374290009736C616220636F727275709B +:10FFF00074696F6E2064657465637465640A0000DB +:020000040001F9 +:1000000009496E76616C6964206D656D6F72792047 +:10001000706F696E7465722070726F766964656462 +:100020000A000000574553545F544F504449522F23 +:100030007A65706879722F6B65726E656C2F696E68 +:10004000636C7564652F6B73636865642E6800006C +:1000500021617263685F6972715F756E6C6F636B4B +:100060006564286B65792900090A00007468726567 +:1000700061642D3E626173652E70656E6465645FB8 +:100080006F6E0000574553545F544F504449522FF0 +:100090007A65706879722F6B65726E656C2F696412 +:1000A0006C652E63000000005F6B65726E656C2EE0 +:1000B000637075735B305D2E63757272656E742D3F +:1000C0003E626173652E7072696F203E3D20300084 +:1000D000574553545F544F504449522F7A657068C6 +:1000E00079722F6B65726E656C2F6D757465782EE5 +:1000F0006300000021617263685F69735F696E5F0E +:100100006973722829000000096D7574657865733C +:100110002063616E6E6F7420626520757365642064 +:10012000696E7369646520495352730A00000000C8 +:100130006D757465782D3E6C6F636B5F636F756E64 +:1001400074203E2030550000574553545F544F50A3 +:100150004449522F7A65706879722F6B65726E65AB +:100160006C2F73656D2E63002828617263685F6968 +:10017000735F696E5F6973722829203D3D203029C5 +:10018000207C7C20282874696D656F7574292E7415 +:1001900069636B73203D3D202828286B5F74696D6F +:1001A000656F75745F7429207B307D29292E7469F1 +:1001B000636B732929000000574553545F544F5017 +:1001C0004449522F7A65706879722F6B65726E653B +:1001D0006C2F776F726B2E630000000068616E6495 +:1001E0006C657220213D202828766F6964202A29B9 +:1001F00030290000776F726B2D3E71756575652033 +:10020000213D202828766F6964202A2930290000A2 +:10021000717565756520213D202828766F696420F9 +:100220002A29302900000000776F726B20213D20C1 +:100230002828766F6964202A29302900776F726B2D +:100240002D3E68616E646C657220213D2028287601 +:100250006F6964202A2930290000000071756575D6 +:1002600065000000737461636B00000021666C61BF +:10027000675F74657374282671756575652D3E66B4 +:100280006C6167732C204B5F574F524B5F51554544 +:1002900055455F535441525445445F4249542900E7 +:1002A00064776F726B20213D202828766F69642067 +:1002B0002A29302900000000574553545F544F50FD +:1002C0004449522F7A65706879722F6B65726E653A +:1002D0006C2F7468726561642E63000028282828DA +:1002E0007072696F2929203D3D2031352026262056 +:1002F0007A5F69735F69646C655F74687265616475 +:100300005F656E7472792828656E7472792929295F +:10031000207C7C202828283135202D203129203EA2 +:100320003D2028282D313629292920262620282835 +:100330007072696F2929203E3D2028282D313629E9 +:10034000292026262028287072696F2929203C3D03 +:1003500020283135202D20312929290009696E7680 +:10036000616C6964207072696F72697479202825E4 +:1003700064293B20616C6C6F7765642072616E67E5 +:10038000653A20256420746F2025640A000000006F +:100390000954687265616473206D6179206E6F74B1 +:1003A000206265206372656174656420696E20490E +:1003B0005352730A00000000574553545F544F5086 +:1003C0004449522F7A65706879722F6B65726E6539 +:1003D0006C2F73636865642E63000000217A5F6987 +:1003E000735F69646C655F7468726561645F6F6296 +:1003F0006A6563742874687265616429000000008E +:10040000574553545F544F504449522F7A65706892 +:1004100079722F6B65726E656C2F696E636C756493 +:10042000652F6B7468726561642E68005F6B65721E +:100430006E656C2E637075735B305D2E63757272C2 +:10044000656E7420213D202828766F6964202A2952 +:100450003029000073697A656F66285F7363686589 +:10046000645F7370696E6C6F636B29203D3D203053 +:10047000207C7C206C6F636B20213D20265F7363A2 +:100480006865645F7370696E6C6F636B0000000079 +:100490005F6B65726E656C2E637075735B305D2E7D +:1004A00063757272656E742D3E626173652E73633F +:1004B0006865645F6C6F636B656420213D20315516 +:1004C000000000005F6B65726E656C2E6370757363 +:1004D0005B305D2E63757272656E742D3E62617362 +:1004E000652E73636865645F6C6F636B6564202160 +:1004F0003D203055000000000961626F7274696E22 +:100500006720657373656E7469616C2074687265C9 +:1005100061642025700A0000217465726D696E6146 +:10052000746500000961626F72746564205F6375B1 +:100530007272656E74206261636B2066726F6D20EB +:10054000646561640A000000574553545F544F507E +:100550004449522F7A65706879722F6B65726E65A7 +:100560006C2F74696D65736C6963696E672E6300C7 +:10057000282874696D656F7574292026262028281F +:1005800075696E747074725F74292028736C696366 +:10059000655F74696D656F7574732929203C3D2012 +:1005A000282875696E747074725F742920287469C4 +:1005B0006D656F7574292920262620282875696E97 +:1005C000747074725F7429202874696D656F757416 +:1005D0002929203C20282875696E747074725F7414 +:1005E0002920282628736C6963655F74696D656FBF +:1005F000757473295B282873697A655F74292028CC +:100600002828696E74292073697A656F6628636883 +:1006100061725B31202D2032202A202128215F5F4A +:100620006275696C74696E5F74797065735F636F0E +:100630006D70617469626C655F70285F5F7479705A +:10064000656F665F5F28736C6963655F74696D656C +:100650006F757473292C205F5F747970656F665FA6 +:100660005F282628736C6963655F74696D656F75B3 +:100670007473295B305D2929295D29202D203129BA +:10068000202B202873697A656F6628736C6963650F +:100690005F74696D656F75747329202F2073697A93 +:1006A000656F662828736C6963655F74696D656F33 +:1006B000757473295B305D292929295D2929202634 +:1006C000262028282875696E747074725F7429203A +:1006D0002874696D656F75742929202D2028287567 +:1006E000696E747074725F74292028736C69636515 +:1006F0005F74696D656F75747329292920252073CE +:10070000697A656F662828736C6963655F74696DC3 +:10071000656F757473295B305D29203D3D2030295C +:1007200000000000574553545F544F504449522F26 +:100730007A65706879722F6B65726E656C2F74695B +:100740006D656F75742E6300217379735F646E6FCE +:1007500064655F69735F6C696E6B65642826746F8E +:100760002D3E6E6F64652900574553545F544F50BA +:100770004449522F7A65706879722F6B65726E6585 +:100780006C2F6D656D706F6F6C2E6300616C6967A7 +:100790006E203D3D2030207C7C20282875696E74B9 +:1007A0007074725F74296D656D20262028616C69F4 +:1007B000676E202D20312929203D3D20300000008A +:1007C000096D6973616C69676E6564206D656D6F35 +:1007D00072792061742025702028616C69676E2011 +:1007E0003D20257A75290A00574553545F544F50D0 +:1007F0004449522F7A65706879722F6B65726E6505 +:100800006C2F6B686561702E630000006865617015 +:10081000203C3D205F6B5F686561705F6C6973743D +:100820005F656E640000000021617263685F697338 +:100830005F696E5F6973722829207C7C2028287488 +:10084000696D656F7574292E7469636B73203D3D06 +:10085000202828286B5F74696D656F75745F742933 +:10086000207B307D29292E7469636B732900000079 +:10087000737973776F726B7100286E756C6C2900D9 +:080880002A666C6F61742A0006 +:100890000000000000000000000000000000000058 +:1008A0000000000000000000000000000000000048 +:1008B0000000000000000000000000000000000038 +:1008C0000000000000000000000000000000000028 +:1008D0000000000000000000000000000000000018 +:1008E0000000000000000000000000000000000008 +:1008F00000000000000000000000000000000000F8 +:1009000000000000000000000000000000000000E7 +:100910000000000000000000000000004806002069 +:100920002806002000C201000000080000000000AE +:1009300000000000000000000000000000000000B7 +:1009400000000000000000000000000000000000A7 +:1009500079D6000000000000000000000000000048 +:100960009005002090050020C577000000000000E1 +:100970000000000000000000000000000000000077 +:10098000B0050020B00500200000000001000000BC +:10099000C0050020C005002000000000010000008C +:1009A0000000000000000000000000000000000047 +:1009B0000000000000000000000000000000000037 +:1009C0000000000000000000000000000000000027 +:1009D0000000000000000000000000000000000017 +:1009E0000000000000000000E80F002004000000EC +:1009F000000000007D1C00004035002000000000C9 +:100A000000000000000000000000000000000000E6 +:100A10000000000000040000403900200000000039 +:100A200000000000000000000000000000000000C6 +:100A30000000000000040000E13C00008000000015 +:100A4000D937000000000000D93700008000000006 +:100A500000000000ED4E000000000000000000005B +:100A60000000000000000000000000000000000086 +:100A70000000000000000000000000000000000076 +:100A80000000000000000000000000000000000066 +:100A90000000000000000000000000000000000056 +:100AA0000000000000000000000000000000000046 +:100AB0000000000000000000000000000000000036 +:100AC0000000000008000000FF000000000000001F +:100AD00003000000000000000807002008070020B5 +:0D0AE0000100000000000000000000000008 +:100AF000200700202007002000000000403D0020CB +:100B000000000000200000001400000000000000B1 +:100B10004007002040070020000000000000000007 +:100B20000E000000540700205407002001000000C0 +:100B300001000000000000000000000000000000B4 +:100B4000700700207007002012010002EF02014030 +:100B5000E32F040000040102030109020000000168 +:100B600000E032080B00020202000009040000014C +:100B700002020000052400100105240102010424E2 +:100B8000020205240600010705800310000A09047B +:100B90000100020A0000000705800240000007056E +:100BA0000002400000040309040E035A455048594E +:100BB0005200000000000034035A6570687972200A +:100BC00055534220636F6E736F6C652073616D7057 +:100BD0006C65000000000000000000000000000044 +:100BE000000000000000000000000022033031324D +:100BF00033343536373839414243444546000000E6 +:0F0C0000000000000000000000000000000000E5 +:100C1000000000009B070020313A00004D4000001A +:100C20007D3C000000000000000000000300000008 +:080C30006806002015E015E044 +:00000001FF diff --git a/build/modules/mcuboot/cmake_install.cmake b/build/modules/mcuboot/cmake_install.cmake new file mode 100644 index 0000000..59ddcc9 --- /dev/null +++ b/build/modules/mcuboot/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/bootloader/mcuboot/boot/zephyr/sysbuild + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Install shared libraries without execute permission? +if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) + set(CMAKE_INSTALL_SO_NO_EXE "1") +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + diff --git a/build/modules/nrf/cmake_install.cmake b/build/modules/nrf/cmake_install.cmake new file mode 100644 index 0000000..cdfce2a --- /dev/null +++ b/build/modules/nrf/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/miguel/ncs/v3.0.2/nrf/sysbuild + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Install shared libraries without execute permission? +if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) + set(CMAKE_INSTALL_SO_NO_EXE "1") +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + diff --git a/build/partitions.yml b/build/partitions.yml new file mode 100644 index 0000000..ae6d3c4 --- /dev/null +++ b/build/partitions.yml @@ -0,0 +1,10 @@ +app: + address: 0x0 + end_address: 0x80000 + region: flash_primary + size: 0x80000 +sram_primary: + address: 0x20000000 + end_address: 0x20020000 + region: sram_primary + size: 0x20000 diff --git a/build/pm.config b/build/pm.config new file mode 100644 index 0000000..b791e1e --- /dev/null +++ b/build/pm.config @@ -0,0 +1,16 @@ +PM_APP_OFFSET=0x0 +PM_APP_ADDRESS=0x0 +PM_APP_END_ADDRESS=0x80000 +PM_APP_SIZE=0x80000 +PM_APP_NAME=app +PM_APP_ID=0 +PM_app_ID=PM_APP_ID +PM_app_IS_ENABLED=1 +PM_0_LABEL=APP +PM_SRAM_PRIMARY_OFFSET=0x0 +PM_SRAM_PRIMARY_ADDRESS=0x20000000 +PM_SRAM_PRIMARY_END_ADDRESS=0x20020000 +PM_SRAM_PRIMARY_SIZE=0x20000 +PM_SRAM_PRIMARY_NAME=sram_primary +PM_NUM=1 +PM_ALL_BY_SIZE="sram_primary app" \ No newline at end of file diff --git a/build/regions.yml b/build/regions.yml new file mode 100644 index 0000000..05bf547 --- /dev/null +++ b/build/regions.yml @@ -0,0 +1,16 @@ +flash_primary: + base_address: 0x0 + default_driver_kconfig: CONFIG_SOC_FLASH_NRF + device: flash_controller + dynamic_partition: null + name: flash_primary + placement_strategy: complex + size: 0x80000 +sram_primary: + base_address: 0x20000000 + default_driver_kconfig: '' + device: '' + dynamic_partition: sram_primary + name: sram_primary + placement_strategy: complex + size: 0x20000 diff --git a/build/sysbuild_modules.txt b/build/sysbuild_modules.txt new file mode 100644 index 0000000..3078428 --- /dev/null +++ b/build/sysbuild_modules.txt @@ -0,0 +1,2 @@ +"nrf":"/home/miguel/ncs/v3.0.2/nrf":"/home/miguel/ncs/v3.0.2/nrf/sysbuild" +"mcuboot":"/home/miguel/ncs/v3.0.2/bootloader/mcuboot":"/home/miguel/ncs/v3.0.2/bootloader/mcuboot/boot/zephyr/sysbuild" diff --git a/build/zephyr/.cmake.dotconfig.checksum b/build/zephyr/.cmake.dotconfig.checksum new file mode 100644 index 0000000..d3b7d75 --- /dev/null +++ b/build/zephyr/.cmake.dotconfig.checksum @@ -0,0 +1 @@ +d41d8cd98f00b204e9800998ecf8427ed41d8cd98f00b204e9800998ecf8427e \ No newline at end of file diff --git a/build/zephyr/.config b/build/zephyr/.config new file mode 100644 index 0000000..abc743b --- /dev/null +++ b/build/zephyr/.config @@ -0,0 +1,143 @@ +SB_CONFIG_BOARD="phf000_board" +SB_CONFIG_BOARD_REVISION="" +SB_CONFIG_BOARD_PHF000_BOARD=y +SB_CONFIG_BOARD_PHF000_BOARD_NRF52833=y +SB_CONFIG_BOARD_QUALIFIERS="nrf52833" +SB_CONFIG_SOC="nrf52833" +SB_CONFIG_SOC_SERIES="nrf52" +SB_CONFIG_SOC_FAMILY="nordic_nrf" +SB_CONFIG_SOC_TOOLCHAIN_NAME="amd_acp_6_0_adsp" +SB_CONFIG_SOC_FAMILY_NORDIC_NRF=y +SB_CONFIG_SOC_SERIES_NRF52X=y +SB_CONFIG_SOC_NRF52833=y +SB_CONFIG_SOC_NRF52833_QDAA=y + +# +# Sysbuild image configuration +# + +# +# Modules +# + +# +# Available modules. +# + +# +# nrf (/home/miguel/ncs/v3.0.2/nrf) +# +SB_CONFIG_PARTITION_MANAGER=y +# SB_CONFIG_PM_OVERRIDE_EXTERNAL_DRIVER_CHECK is not set +SB_CONFIG_BUILD_OUTPUT_BIN=y +SB_CONFIG_BUILD_OUTPUT_HEX=y +SB_CONFIG_APPCORE_REMOTE_BOARD_TARGET_CPUCLUSTER="cpuapp" +SB_CONFIG_APPCORE_REMOTE_DOMAIN="CPUAPP" + +# +# Secure Bootloader +# +# SB_CONFIG_SECURE_BOOT_APPCORE is not set +# end of Secure Bootloader + +# +# Bluetooth Fair Pair +# +SB_CONFIG_BT_FAST_PAIR_MODEL_ID=0x1000000 +SB_CONFIG_BT_FAST_PAIR_ANTI_SPOOFING_PRIVATE_KEY="" +# end of Bluetooth Fair Pair + +# SB_CONFIG_MATTER is not set + +# +# Wi-Fi +# +# SB_CONFIG_WIFI_NRF70 is not set +# end of Wi-Fi + +# +# SUIT +# +# SB_CONFIG_SUIT_ENVELOPE is not set +# SB_CONFIG_SUIT_BUILD_RECOVERY is not set +# SB_CONFIG_SUIT_BUILD_FLASH_COMPANION is not set +# SB_CONFIG_SUIT_BUILD_AB_UPDATE is not set +# SB_CONFIG_SUIT_SOC_FLASH_NRF_RADIO_SYNC_RPC is not set +# end of SUIT + +# +# SUIT provisioning +# +# SB_CONFIG_SUIT_MPI_GENERATE is not set +# end of SUIT provisioning + +# SB_CONFIG_HPF is not set +# SB_CONFIG_APPROTECT_USE_UICR is not set +# SB_CONFIG_APPROTECT_LOCK is not set +SB_CONFIG_APPROTECT_NO_SYSBUILD=y +SB_CONFIG_ZEPHYR_NRF_MODULE=y +# end of nrf (/home/miguel/ncs/v3.0.2/nrf) + +SB_CONFIG_ZEPHYR_HOSTAP_MODULE=y +SB_CONFIG_ZEPHYR_MCUBOOT_MODULE=y +SB_CONFIG_ZEPHYR_MBEDTLS_MODULE=y +SB_CONFIG_ZEPHYR_OBERON_PSA_CRYPTO_MODULE=y +SB_CONFIG_ZEPHYR_TRUSTED_FIRMWARE_M_MODULE=y +SB_CONFIG_ZEPHYR_PSA_ARCH_TESTS_MODULE=y +SB_CONFIG_ZEPHYR_CJSON_MODULE=y +SB_CONFIG_ZEPHYR_AZURE_SDK_FOR_C_MODULE=y +SB_CONFIG_ZEPHYR_CIRRUS_LOGIC_MODULE=y +SB_CONFIG_ZEPHYR_OPENTHREAD_MODULE=y +SB_CONFIG_ZEPHYR_SUIT_GENERATOR_MODULE=y +SB_CONFIG_ZEPHYR_SUIT_PROCESSOR_MODULE=y +SB_CONFIG_ZEPHYR_MEMFAULT_FIRMWARE_SDK_MODULE=y +SB_CONFIG_ZEPHYR_COREMARK_MODULE=y +SB_CONFIG_ZEPHYR_CANOPENNODE_MODULE=y +SB_CONFIG_ZEPHYR_CHRE_MODULE=y +SB_CONFIG_ZEPHYR_LZ4_MODULE=y +SB_CONFIG_ZEPHYR_NANOPB_MODULE=y +SB_CONFIG_ZEPHYR_TF_M_TESTS_MODULE=y +SB_CONFIG_ZEPHYR_ZSCILIB_MODULE=y +SB_CONFIG_ZEPHYR_CMSIS_MODULE=y +SB_CONFIG_ZEPHYR_CMSIS_DSP_MODULE=y +SB_CONFIG_ZEPHYR_CMSIS_NN_MODULE=y +SB_CONFIG_ZEPHYR_FATFS_MODULE=y +SB_CONFIG_ZEPHYR_HAL_NORDIC_MODULE=y +SB_CONFIG_ZEPHYR_HAL_ST_MODULE=y +SB_CONFIG_ZEPHYR_HAL_TDK_MODULE=y +SB_CONFIG_ZEPHYR_HAL_WURTHELEKTRONIK_MODULE=y +SB_CONFIG_ZEPHYR_LIBLC3_MODULE=y +SB_CONFIG_ZEPHYR_LIBMETAL_MODULE=y +SB_CONFIG_ZEPHYR_LITTLEFS_MODULE=y +SB_CONFIG_ZEPHYR_LORAMAC_NODE_MODULE=y +SB_CONFIG_ZEPHYR_LVGL_MODULE=y +SB_CONFIG_ZEPHYR_MIPI_SYS_T_MODULE=y +SB_CONFIG_ZEPHYR_NRF_WIFI_MODULE=y +SB_CONFIG_ZEPHYR_OPEN_AMP_MODULE=y +SB_CONFIG_ZEPHYR_PERCEPIO_MODULE=y +SB_CONFIG_ZEPHYR_PICOLIBC_MODULE=y +SB_CONFIG_ZEPHYR_SEGGER_MODULE=y +SB_CONFIG_ZEPHYR_TINYCRYPT_MODULE=y +SB_CONFIG_ZEPHYR_UOSCORE_UEDHOC_MODULE=y +SB_CONFIG_ZEPHYR_ZCBOR_MODULE=y +SB_CONFIG_ZEPHYR_NRFXLIB_MODULE=y +SB_CONFIG_ZEPHYR_NRF_HW_MODELS_MODULE=y +SB_CONFIG_ZEPHYR_CONNECTEDHOMEIP_MODULE=y + +# +# Unavailable modules, please install those via the project manifest. +# +# end of Modules + +# SB_CONFIG_WARN_EXPERIMENTAL is not set +SB_CONFIG_WARN_DEPRECATED=y +SB_CONFIG_SUPPORT_BOOTLOADER=y +SB_CONFIG_SUPPORT_BOOTLOADER_MCUBOOT_ZEPHYR=y +SB_CONFIG_BOOTLOADER_NONE=y +# SB_CONFIG_BOOTLOADER_MCUBOOT is not set + +# +# Build options +# +# SB_CONFIG_COMPILER_WARNINGS_AS_ERRORS is not set +# end of Build options diff --git a/build/zephyr/kconfig/sources.txt b/build/zephyr/kconfig/sources.txt new file mode 100644 index 0000000..066a6c8 --- /dev/null +++ b/build/zephyr/kconfig/sources.txt @@ -0,0 +1,344 @@ +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/boards/Mi_labs/phf000_board/Kconfig.phf000_board +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/Kconfig/Kconfig.sysbuild.modules +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/Kconfig/boards/Kconfig.phf000_board +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/Kconfig/boards/Kconfig.sysbuild +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/Kconfig/soc/Kconfig.soc +/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/build/Kconfig/soc/Kconfig.sysbuild +/home/miguel/ncs/v3.0.2/nrf/soc/nordic/Kconfig.soc +/home/miguel/ncs/v3.0.2/nrf/soc/nordic/nrf54l/Kconfig.soc +/home/miguel/ncs/v3.0.2/nrf/soc/nordic/nrf71/Kconfig.soc +/home/miguel/ncs/v3.0.2/nrf/sysbuild/Kconfig.appcore +/home/miguel/ncs/v3.0.2/nrf/sysbuild/Kconfig.approtect +/home/miguel/ncs/v3.0.2/nrf/sysbuild/Kconfig.bt_fast_pair +/home/miguel/ncs/v3.0.2/nrf/sysbuild/Kconfig.cracen +/home/miguel/ncs/v3.0.2/nrf/sysbuild/Kconfig.dfu +/home/miguel/ncs/v3.0.2/nrf/sysbuild/Kconfig.flprcore +/home/miguel/ncs/v3.0.2/nrf/sysbuild/Kconfig.hpf +/home/miguel/ncs/v3.0.2/nrf/sysbuild/Kconfig.lwm2m_carrier +/home/miguel/ncs/v3.0.2/nrf/sysbuild/Kconfig.matter +/home/miguel/ncs/v3.0.2/nrf/sysbuild/Kconfig.mcuboot +/home/miguel/ncs/v3.0.2/nrf/sysbuild/Kconfig.netcore +/home/miguel/ncs/v3.0.2/nrf/sysbuild/Kconfig.pprcore +/home/miguel/ncs/v3.0.2/nrf/sysbuild/Kconfig.secureboot +/home/miguel/ncs/v3.0.2/nrf/sysbuild/Kconfig.suit +/home/miguel/ncs/v3.0.2/nrf/sysbuild/Kconfig.suit_provisioning +/home/miguel/ncs/v3.0.2/nrf/sysbuild/Kconfig.sysbuild +/home/miguel/ncs/v3.0.2/nrf/sysbuild/Kconfig.tfm +/home/miguel/ncs/v3.0.2/nrf/sysbuild/Kconfig.wifi +/home/miguel/ncs/v3.0.2/nrf/sysbuild/Kconfig.xip +/home/miguel/ncs/v3.0.2/nrf/sysbuild/Kconfig.zip +/home/miguel/ncs/v3.0.2/nrf/sysbuild/suit_provisioning/Kconfig.nrf54h20 +/home/miguel/ncs/v3.0.2/nrf/sysbuild/suit_provisioning/Kconfig.nrf9280 +/home/miguel/ncs/v3.0.2/nrf/sysbuild/suit_provisioning/Kconfig.template.manifest_config +/home/miguel/ncs/v3.0.2/zephyr/boards/Kconfig.v2 +/home/miguel/ncs/v3.0.2/zephyr/modules/Kconfig.sysbuild +/home/miguel/ncs/v3.0.2/zephyr/share/sysbuild/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/share/sysbuild/Kconfig.v2 +/home/miguel/ncs/v3.0.2/zephyr/share/sysbuild/build/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/share/sysbuild/images/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/share/sysbuild/images/bootloader/Kconfig +/home/miguel/ncs/v3.0.2/zephyr/soc/Kconfig.v2 +/home/miguel/ncs/v3.0.2/zephyr/soc/adi/max32/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/altr/qemu_nios2/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/altr/zephyr_nios2f/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/ambiq/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/ambiq/apollo3x/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/ambiq/apollo4x/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/amd/acp_6_0/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/andestech/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/andestech/ae350/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/arm/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/arm/beetle/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/arm/designstart/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/arm/fvp_aemv8a/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/arm/fvp_aemv8r/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/arm/mps2/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/arm/mps3/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/arm/musca/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/arm/qemu_cortex_a53/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/arm/qemu_virt_arm64/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/aspeed/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/aspeed/ast10x0/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam/sam3x/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam/sam4e/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam/sam4l/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam/sam4s/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam/same70/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam/samv71/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/samc20/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/samc21/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/samd20/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/samd21/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/samd51/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/same51/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/same53/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/same54/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/saml21/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/samr21/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/samr34/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/atmel/sam0/samr35/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/brcm/bcm2711/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/brcm/bcm2712/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/brcm/bcmvk/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/brcm/bcmvk/valkyrie/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/brcm/bcmvk/viper/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/cdns/dc233c/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/cdns/sample_controller32/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/cdns/xtensa_sample_controller/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/efinix/sapphire/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/ene/kb1200/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/espressif/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/espressif/Kconfig.sysbuild +/home/miguel/ncs/v3.0.2/zephyr/soc/espressif/esp32/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/espressif/esp32c2/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/espressif/esp32c3/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/espressif/esp32c6/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/espressif/esp32s2/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/espressif/esp32s3/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/gaisler/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/gaisler/gr716a/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/gaisler/leon3/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32a50x/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32e10x/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32e50x/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32f3x0/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32f403/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32f4xx/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32l23x/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/gd/gd32/gd32vf103/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat1a/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat1a/psoc6_01/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat1a/psoc6_02/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat1a/psoc6_03/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat1a/psoc6_04/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat1a/psoc6_legacy/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat1b/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat1b/cyw20829/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat3/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/infineon/cat3/xmc4xxx/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/intel/alder_lake/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/intel/apollo_lake/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/intel/atom/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/intel/elkhart_lake/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_adsp/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_adsp/ace/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_adsp/cavs/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_ish/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_ish/intel_ish5/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_niosv/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_niosv/niosv/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_socfpga/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_socfpga/agilex/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_socfpga/agilex5/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_socfpga_std/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/intel/intel_socfpga_std/cyclonev/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/intel/lakemont/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/intel/raptor_lake/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/ite/ec/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/ite/ec/it8xxx2/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/litex/litex_vexriscv/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/lowrisc/opentitan/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/mediatek/mt8xxx/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/microchip/mec/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/microchip/mec/mec15xx/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/microchip/mec/mec172x/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/microchip/mec/mec174x/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/microchip/mec/mec175x/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/microchip/mec/mech172x/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/microchip/miv/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/microchip/miv/miv/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/microchip/miv/polarfire/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/native/inf_clock/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/neorv32/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/Kconfig.sysbuild +/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/common/vpr/Kconfig.sysbuild +/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf51/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf52/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf53/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf54h/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf54l/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf91/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nordic/nrf92/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/npcm/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/npcm/npcm4/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/npcx/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/npcx/npcx4/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/npcx/npcx7/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/npcx/npcx9/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/numaker/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/numaker/m2l31x/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/numaker/m46x/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/numicro/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nuvoton/numicro/m48x/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx6sx/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx7d/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx8/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx8m/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx8ulp/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx8x/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx9/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx9/imx93/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imx/imx9/imx95/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imxrt/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imxrt/Kconfig.sysbuild +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imxrt/imxrt10xx/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imxrt/imxrt118x/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imxrt/imxrt11xx/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imxrt/imxrt5xx/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/imxrt/imxrt6xx/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/k2x/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/k6x/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/k8x/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/ke1xf/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/ke1xz/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/kl2x/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/kv5x/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/kinetis/kwx/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/layerscape/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/layerscape/ls1046a/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/lpc/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/lpc/lpc11u6x/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/lpc/lpc51u68/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/lpc/lpc54xxx/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/lpc/lpc55xxx/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/mcx/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/mcx/mcxa/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/mcx/mcxc/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/mcx/mcxn/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/mcx/mcxw/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/rw/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/s32/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/s32/s32k1/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/s32/s32k3/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/nxp/s32/s32ze/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/openisa/rv32m1/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/qemu/malta/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/qemu/virt_riscv/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/qemu/virt_riscv/qemu_virt_riscv32/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/qemu/virt_riscv/qemu_virt_riscv32e/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/qemu/virt_riscv/qemu_virt_riscv64/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/quicklogic/eos_s3/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/raspberrypi/rpi_pico/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/raspberrypi/rpi_pico/rp2040/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/raspberrypi/rpi_pico/rp2350/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/realtek/ec/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/realtek/ec/rts5912/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra2a1/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra4e2/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra4m1/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra4m2/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra4m3/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra4w1/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra6e1/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra6e2/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra6m1/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra6m2/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra6m3/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra6m4/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra6m5/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra8d1/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra8m1/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/ra/ra8t1/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/rcar/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/rcar/rcar_gen3/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/rcar/rcar_gen4/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/rz/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/rz/rzg3s/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/rzt2m/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/smartbond/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/renesas/smartbond/da1469x/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/renode/cortex_r8_virtual/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/renode/riscv_virtual/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/rockchip/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/rockchip/rk3399/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/rockchip/rk3568/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/sensry/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/sensry/ganymed/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/sensry/ganymed/sy1xx/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/sifive/sifive_freedom/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/sifive/sifive_freedom/fe300/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/sifive/sifive_freedom/fu500/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/sifive/sifive_freedom/fu700/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/silabs/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s0/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s0/efm32hg/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s0/efm32wg/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/efm32gg11b/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/efm32gg12b/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/efm32jg12b/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/efm32pg12b/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/efm32pg1b/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/efr32bg13p/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/efr32fg13p/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/efr32fg1p/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s1/efr32mg12p/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s2/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s2/efr32bg22/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s2/efr32bg27/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s2/efr32mg21/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s2/efr32mg24/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_s2/efr32zg23/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_sim3/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/silabs/silabs_sim3/sim3u/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/snps/arc_iot/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/snps/emsdp/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/snps/emsk/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/snps/hsdk/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/snps/hsdk4xd/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_classic/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_classic/em/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_classic/hs/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_classic/sem/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_classic/vpx5/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_v/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/snps/nsim/arc_v/rmx/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/snps/qemu_arc/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32c0x/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f0x/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f1x/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f2x/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f3x/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f4x/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32f7x/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32g0x/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32g4x/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32h5x/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32h7rsx/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32h7x/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l0x/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l1x/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l4x/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32l5x/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32mp1x/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32u0x/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32u5x/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32wb0x/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32wbax/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32wbx/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/st/stm32/stm32wlx/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/starfive/jh71xx/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/telink/tlsr/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/telink/tlsr/tlsr951x/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/ti/k3/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/ti/k3/am6x/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/ti/lm3s6965/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/ti/simplelink/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/ti/simplelink/cc13x2_cc26x2/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/ti/simplelink/cc13x2x7_cc26x2x7/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/ti/simplelink/cc32xx/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/ti/simplelink/msp432p4xx/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/wch/ch32v00x/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/xen/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/xlnx/zynq7000/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/xlnx/zynq7000/xc7zxxx/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/xlnx/zynq7000/xc7zxxxs/Kconfig.soc +/home/miguel/ncs/v3.0.2/zephyr/soc/xlnx/zynqmp/Kconfig.soc diff --git a/build/zephyr/snippets_generated.cmake b/build/zephyr/snippets_generated.cmake new file mode 100644 index 0000000..1ade965 --- /dev/null +++ b/build/zephyr/snippets_generated.cmake @@ -0,0 +1,20 @@ +# WARNING. THIS FILE IS AUTO-GENERATED. DO NOT MODIFY! +# +# This file contains build system settings derived from your snippets. +# Its contents are an implementation detail that should not be used outside +# of Zephyr's snippets CMake module. +# +# See the Snippets guide in the Zephyr documentation for more information. + +############################################################################### +# Global information about all snippets. + +# The name of every snippet that was discovered. +set(SNIPPET_NAMES "bt-ll-sw-split" "cdc-acm-console" "ci-shell" "diagnostic-logs" "hpf-gpio-icbmsg" "hpf-gpio-icmsg" "hpf-gpio-mbox" "hpf-mspi" "hw-flow-control" "matter-debug" "nordic-bt-rpc" "nordic-flpr" "nordic-flpr-xip" "nordic-log-stm" "nordic-log-stm-dict" "nordic-ppr" "nordic-ppr-xip" "nrf54l09-switch-uart" "nrf70-driver-debug" "nrf70-driver-verbose-debug" "nrf70-fw-patch-ext-flash" "nrf70-wifi" "nrf91-modem-trace-ext-flash" "nrf91-modem-trace-ram" "nrf91-modem-trace-rtt" "nrf91-modem-trace-uart" "nus-console" "power-consumption-tests" "ram-console" "rtt-console" "rtt-tracing" "serial-console" "tfm-enable-share-uart" "wifi-enterprise" "wifi-ipv4" "wpa-supplicant-debug" "xen_dom0" "zperf") +# The paths to all the snippet.yml files. One snippet +# can have multiple snippet.yml files. +set(SNIPPET_PATHS "/home/miguel/ncs/v3.0.2/nrf/snippets/ci-shell/snippet.yml" "/home/miguel/ncs/v3.0.2/nrf/snippets/hpf/gpio/icbmsg/snippet.yml" "/home/miguel/ncs/v3.0.2/nrf/snippets/hpf/gpio/icmsg/snippet.yml" "/home/miguel/ncs/v3.0.2/nrf/snippets/hpf/gpio/mbox/snippet.yml" "/home/miguel/ncs/v3.0.2/nrf/snippets/hpf/mspi/snippet.yml" "/home/miguel/ncs/v3.0.2/nrf/snippets/hw-flow-control/snippet.yml" "/home/miguel/ncs/v3.0.2/nrf/snippets/matter-debug/snippet.yml" "/home/miguel/ncs/v3.0.2/nrf/snippets/matter-diagnostic-logs/snippet.yml" "/home/miguel/ncs/v3.0.2/nrf/snippets/matter-power-consumption-tests/snippet.yml" "/home/miguel/ncs/v3.0.2/nrf/snippets/nordic-bt-rpc/snippet.yml" "/home/miguel/ncs/v3.0.2/nrf/snippets/nrf54l09-switch-uart/snippet.yml" "/home/miguel/ncs/v3.0.2/nrf/snippets/nrf70-driver-debug/snippet.yml" "/home/miguel/ncs/v3.0.2/nrf/snippets/nrf70-driver-verbose-debug/snippet.yml" "/home/miguel/ncs/v3.0.2/nrf/snippets/nrf70-fw-patch-ext-flash/snippet.yml" "/home/miguel/ncs/v3.0.2/nrf/snippets/nrf70-wifi/snippet.yml" "/home/miguel/ncs/v3.0.2/nrf/snippets/nrf91-modem-trace-ext-flash/snippet.yml" "/home/miguel/ncs/v3.0.2/nrf/snippets/nrf91-modem-trace-ram/snippet.yml" "/home/miguel/ncs/v3.0.2/nrf/snippets/nrf91-modem-trace-rtt/snippet.yml" "/home/miguel/ncs/v3.0.2/nrf/snippets/nrf91-modem-trace-uart/snippet.yml" "/home/miguel/ncs/v3.0.2/nrf/snippets/tfm-enable-share-uart/snippet.yml" "/home/miguel/ncs/v3.0.2/nrf/snippets/wpa-supplicant-debug/snippet.yml" "/home/miguel/ncs/v3.0.2/nrf/snippets/zperf/snippet.yml" "/home/miguel/ncs/v3.0.2/zephyr/snippets/bt-ll-sw-split/snippet.yml" "/home/miguel/ncs/v3.0.2/zephyr/snippets/cdc-acm-console/snippet.yml" "/home/miguel/ncs/v3.0.2/zephyr/snippets/nordic-flpr-xip/snippet.yml" "/home/miguel/ncs/v3.0.2/zephyr/snippets/nordic-flpr/snippet.yml" "/home/miguel/ncs/v3.0.2/zephyr/snippets/nordic-log-stm-dict/snippet.yml" "/home/miguel/ncs/v3.0.2/zephyr/snippets/nordic-log-stm/snippet.yml" "/home/miguel/ncs/v3.0.2/zephyr/snippets/nordic-ppr-xip/snippet.yml" "/home/miguel/ncs/v3.0.2/zephyr/snippets/nordic-ppr/snippet.yml" "/home/miguel/ncs/v3.0.2/zephyr/snippets/nus-console/snippet.yml" "/home/miguel/ncs/v3.0.2/zephyr/snippets/ram-console/snippet.yml" "/home/miguel/ncs/v3.0.2/zephyr/snippets/rtt-console/snippet.yml" "/home/miguel/ncs/v3.0.2/zephyr/snippets/rtt-tracing/snippet.yml" "/home/miguel/ncs/v3.0.2/zephyr/snippets/serial-console/snippet.yml" "/home/miguel/ncs/v3.0.2/zephyr/snippets/wifi-enterprise/snippet.yml" "/home/miguel/ncs/v3.0.2/zephyr/snippets/wifi-ipv4/snippet.yml" "/home/miguel/ncs/v3.0.2/zephyr/snippets/xen_dom0/snippet.yml") + +# Create variable scope for snippets build variables +zephyr_create_scope(snippets) + diff --git a/build/zephyr_modules.txt b/build/zephyr_modules.txt new file mode 100644 index 0000000..384549c --- /dev/null +++ b/build/zephyr_modules.txt @@ -0,0 +1,46 @@ +"nrf":"/home/miguel/ncs/v3.0.2/nrf":"/home/miguel/ncs/v3.0.2/nrf" +"hostap":"/home/miguel/ncs/v3.0.2/modules/lib/hostap":"${ZEPHYR_HOSTAP_CMAKE_DIR}" +"mcuboot":"/home/miguel/ncs/v3.0.2/bootloader/mcuboot":"${ZEPHYR_MCUBOOT_CMAKE_DIR}" +"mbedtls":"/home/miguel/ncs/v3.0.2/modules/crypto/mbedtls":"${ZEPHYR_MBEDTLS_CMAKE_DIR}" +"oberon-psa-crypto":"/home/miguel/ncs/v3.0.2/modules/crypto/oberon-psa-crypto":"${ZEPHYR_OBERON_PSA_CRYPTO_CMAKE_DIR}" +"trusted-firmware-m":"/home/miguel/ncs/v3.0.2/modules/tee/tf-m/trusted-firmware-m":"${ZEPHYR_TRUSTED_FIRMWARE_M_CMAKE_DIR}" +"psa-arch-tests":"/home/miguel/ncs/v3.0.2/modules/tee/tf-m/psa-arch-tests":"" +"cjson":"/home/miguel/ncs/v3.0.2/modules/lib/cjson":"${ZEPHYR_CJSON_CMAKE_DIR}" +"azure-sdk-for-c":"/home/miguel/ncs/v3.0.2/modules/lib/azure-sdk-for-c":"${ZEPHYR_AZURE_SDK_FOR_C_CMAKE_DIR}" +"cirrus-logic":"/home/miguel/ncs/v3.0.2/modules/hal/cirrus-logic":"/home/miguel/ncs/v3.0.2/modules/hal/cirrus-logic" +"openthread":"/home/miguel/ncs/v3.0.2/modules/lib/openthread":"${ZEPHYR_OPENTHREAD_CMAKE_DIR}" +"suit-generator":"/home/miguel/ncs/v3.0.2/modules/lib/suit-generator":"" +"suit-processor":"/home/miguel/ncs/v3.0.2/modules/lib/suit-processor":"/home/miguel/ncs/v3.0.2/modules/lib/suit-processor/ncs" +"memfault-firmware-sdk":"/home/miguel/ncs/v3.0.2/modules/lib/memfault-firmware-sdk":"/home/miguel/ncs/v3.0.2/modules/lib/memfault-firmware-sdk/ports/zephyr" +"coremark":"/home/miguel/ncs/v3.0.2/modules/benchmark/coremark":"${ZEPHYR_COREMARK_CMAKE_DIR}" +"canopennode":"/home/miguel/ncs/v3.0.2/modules/lib/canopennode":"${ZEPHYR_CANOPENNODE_CMAKE_DIR}" +"chre":"/home/miguel/ncs/v3.0.2/modules/lib/chre":"/home/miguel/ncs/v3.0.2/modules/lib/chre/platform/zephyr" +"lz4":"/home/miguel/ncs/v3.0.2/modules/lib/lz4":"${ZEPHYR_LZ4_CMAKE_DIR}" +"nanopb":"/home/miguel/ncs/v3.0.2/modules/lib/nanopb":"${ZEPHYR_NANOPB_CMAKE_DIR}" +"tf-m-tests":"/home/miguel/ncs/v3.0.2/modules/tee/tf-m/tf-m-tests":"" +"zscilib":"/home/miguel/ncs/v3.0.2/modules/lib/zscilib":"/home/miguel/ncs/v3.0.2/modules/lib/zscilib" +"cmsis":"/home/miguel/ncs/v3.0.2/modules/hal/cmsis":"${ZEPHYR_CMSIS_CMAKE_DIR}" +"cmsis-dsp":"/home/miguel/ncs/v3.0.2/modules/lib/cmsis-dsp":"${ZEPHYR_CMSIS_DSP_CMAKE_DIR}" +"cmsis-nn":"/home/miguel/ncs/v3.0.2/modules/lib/cmsis-nn":"${ZEPHYR_CMSIS_NN_CMAKE_DIR}" +"fatfs":"/home/miguel/ncs/v3.0.2/modules/fs/fatfs":"${ZEPHYR_FATFS_CMAKE_DIR}" +"hal_nordic":"/home/miguel/ncs/v3.0.2/modules/hal/nordic":"${ZEPHYR_HAL_NORDIC_CMAKE_DIR}" +"hal_st":"/home/miguel/ncs/v3.0.2/modules/hal/st":"/home/miguel/ncs/v3.0.2/modules/hal/st" +"hal_tdk":"/home/miguel/ncs/v3.0.2/modules/hal/tdk":"/home/miguel/ncs/v3.0.2/modules/hal/tdk" +"hal_wurthelektronik":"/home/miguel/ncs/v3.0.2/modules/hal/wurthelektronik":"/home/miguel/ncs/v3.0.2/modules/hal/wurthelektronik" +"liblc3":"/home/miguel/ncs/v3.0.2/modules/lib/liblc3":"${ZEPHYR_LIBLC3_CMAKE_DIR}" +"libmetal":"/home/miguel/ncs/v3.0.2/modules/hal/libmetal":"/home/miguel/ncs/v3.0.2/modules/hal/libmetal" +"littlefs":"/home/miguel/ncs/v3.0.2/modules/fs/littlefs":"${ZEPHYR_LITTLEFS_CMAKE_DIR}" +"loramac-node":"/home/miguel/ncs/v3.0.2/modules/lib/loramac-node":"${ZEPHYR_LORAMAC_NODE_CMAKE_DIR}" +"lvgl":"/home/miguel/ncs/v3.0.2/modules/lib/gui/lvgl":"${ZEPHYR_LVGL_CMAKE_DIR}" +"mipi-sys-t":"/home/miguel/ncs/v3.0.2/modules/debug/mipi-sys-t":"/home/miguel/ncs/v3.0.2/modules/debug/mipi-sys-t" +"nrf_wifi":"/home/miguel/ncs/v3.0.2/modules/lib/nrf_wifi":"${ZEPHYR_NRF_WIFI_CMAKE_DIR}" +"open-amp":"/home/miguel/ncs/v3.0.2/modules/lib/open-amp":"/home/miguel/ncs/v3.0.2/modules/lib/open-amp" +"percepio":"/home/miguel/ncs/v3.0.2/modules/debug/percepio":"${ZEPHYR_PERCEPIO_CMAKE_DIR}" +"picolibc":"/home/miguel/ncs/v3.0.2/modules/lib/picolibc":"/home/miguel/ncs/v3.0.2/modules/lib/picolibc" +"segger":"/home/miguel/ncs/v3.0.2/modules/debug/segger":"${ZEPHYR_SEGGER_CMAKE_DIR}" +"tinycrypt":"/home/miguel/ncs/v3.0.2/modules/crypto/tinycrypt":"/home/miguel/ncs/v3.0.2/modules/crypto/tinycrypt" +"uoscore-uedhoc":"/home/miguel/ncs/v3.0.2/modules/lib/uoscore-uedhoc":"${ZEPHYR_UOSCORE_UEDHOC_CMAKE_DIR}" +"zcbor":"/home/miguel/ncs/v3.0.2/modules/lib/zcbor":"${ZEPHYR_ZCBOR_CMAKE_DIR}" +"nrfxlib":"/home/miguel/ncs/v3.0.2/nrfxlib":"${ZEPHYR_NRFXLIB_CMAKE_DIR}" +"nrf_hw_models":"/home/miguel/ncs/v3.0.2/modules/bsim_hw_models/nrf_hw_models":"/home/miguel/ncs/v3.0.2/modules/bsim_hw_models/nrf_hw_models" +"connectedhomeip":"/home/miguel/ncs/v3.0.2/modules/lib/matter":"/home/miguel/ncs/v3.0.2/modules/lib/matter/config/nrfconnect/chip-module" diff --git a/build/zephyr_settings.txt b/build/zephyr_settings.txt new file mode 100644 index 0000000..a85374e --- /dev/null +++ b/build/zephyr_settings.txt @@ -0,0 +1,13 @@ +# WARNING. THIS FILE IS AUTO-GENERATED. DO NOT MODIFY! +# +# This file contains build system settings derived from your modules. +# +# Modules may be set via ZEPHYR_MODULES, ZEPHYR_EXTRA_MODULES, +# and/or the west manifest file. +# +# See the Modules guide for more information. +"BOARD_ROOT":"/home/miguel/ncs/v3.0.2/nrf" +"DTS_ROOT":"/home/miguel/ncs/v3.0.2/nrf" +"SNIPPET_ROOT":"/home/miguel/ncs/v3.0.2/nrf" +"SOC_ROOT":"/home/miguel/ncs/v3.0.2/nrf" +"MODULE_EXT_ROOT":"/home/miguel/ncs/v3.0.2/nrf" diff --git a/drivers/actuator/actuator.c b/drivers/actuator/actuator.c new file mode 100644 index 0000000..5bcab22 --- /dev/null +++ b/drivers/actuator/actuator.c @@ -0,0 +1,21 @@ +#include "actuator.h" +#include +#include + +#define USER_NODE DT_PATH(zephyr_user) +static const struct gpio_dt_spec do1 = GPIO_DT_SPEC_GET(USER_NODE, do1_gpios); +static const struct gpio_dt_spec do2 = GPIO_DT_SPEC_GET(USER_NODE, do2_gpios); +static const struct gpio_dt_spec do_en = GPIO_DT_SPEC_GET(USER_NODE, do_en_gpios); + +void digital_out_init(void) { + gpio_pin_configure_dt(&do1, GPIO_OUTPUT_INACTIVE); + gpio_pin_configure_dt(&do2, GPIO_OUTPUT_INACTIVE); + gpio_pin_configure_dt(&do_en, GPIO_OUTPUT_INACTIVE); +} + +void digital_out_set_do1(int state) { gpio_pin_set_dt(&do1, state); } +void digital_out_set_do2(int state) { gpio_pin_set_dt(&do2, state); } +void digital_out_set_do_en(int state) { gpio_pin_set_dt(&do_en, state); } +void digital_out_toggle_do1(void) { gpio_pin_toggle_dt(&do1); } +void digital_out_toggle_do2(void) { gpio_pin_toggle_dt(&do2); } +void digital_out_toggle_do_en(void) { gpio_pin_toggle_dt(&do_en); } diff --git a/drivers/actuator/actuator.h b/drivers/actuator/actuator.h new file mode 100644 index 0000000..c6e8357 --- /dev/null +++ b/drivers/actuator/actuator.h @@ -0,0 +1,12 @@ +#ifndef ACTUATOR_H +#define ACTUATOR_H + +void digital_out_init(void); +void digital_out_set_do1(int state); +void digital_out_set_do2(int state); +void digital_out_set_do_en(int state); +void digital_out_toggle_do1(void); +void digital_out_toggle_do2(void); +void digital_out_toggle_do_en(void); + +#endif // ACTUATOR_H diff --git a/drivers/battery_adc/battery_adc.c b/drivers/battery_adc/battery_adc.c new file mode 100644 index 0000000..83edca5 --- /dev/null +++ b/drivers/battery_adc/battery_adc.c @@ -0,0 +1,50 @@ +#include "battery_adc.h" +#include +#include +#include + +#define USER_NODE DT_PATH(zephyr_user) +static const struct gpio_dt_spec btt_meas_en = GPIO_DT_SPEC_GET(USER_NODE, btt_meas_en_gpios); +static const struct adc_dt_spec adc_channel = ADC_DT_SPEC_GET(USER_NODE); + +static uint32_t sample_buffer; + +struct adc_sequence sequence = { + .buffer = &sample_buffer, + .buffer_size = sizeof(sample_buffer), + //.calibrate = true +}; + +int battery_adc_init(void) { + if (!adc_is_ready_dt(&adc_channel)) { + printk("ADC not ready\n"); + return -ENODEV; + } + gpio_pin_configure_dt(&btt_meas_en, GPIO_OUTPUT_INACTIVE); + int ret = 0; + ret = adc_channel_setup_dt(&adc_channel); + if(ret){ + return ret; + } + ret = adc_sequence_init_dt(&adc_channel, &sequence); + if(ret){ + return ret; + } +} + +int battery_measure_mv(int32_t *mv_out) { + int ret = 0; + gpio_pin_set_dt(&btt_meas_en, 1); // enable measurement + k_sleep(K_MSEC(5)); + + + ret = adc_read(adc_channel.dev, &sequence); + if (ret) return ret; + + ret = adc_raw_to_millivolts_dt(&adc_channel, &sample_buffer); + *mv_out = (int)((float)sample_buffer*((270.0f+110.0f)/270.0f)); + + gpio_pin_set_dt(&btt_meas_en, 0); // disable measurement + + return ret; +} diff --git a/drivers/battery_adc/battery_adc.h b/drivers/battery_adc/battery_adc.h new file mode 100644 index 0000000..ce992cb --- /dev/null +++ b/drivers/battery_adc/battery_adc.h @@ -0,0 +1,9 @@ +#ifndef BATTERY_ADC_H +#define BATTERY_ADC_H + +#include + +int battery_adc_init(void); +int battery_measure_mv(int32_t *mv_out); + +#endif // BATTERY_ADC_H diff --git a/drivers/button/button.c b/drivers/button/button.c new file mode 100644 index 0000000..e2fa70f --- /dev/null +++ b/drivers/button/button.c @@ -0,0 +1,17 @@ +#include "button.h" +#include + +#define BUTTON_NODE DT_NODELABEL(button0) +static const struct gpio_dt_spec button = GPIO_DT_SPEC_GET(BUTTON_NODE, gpios); + +void button_init(void) { + if (!device_is_ready(button.port)) { + printk("Button device not ready\n"); + return; + } + gpio_pin_configure_dt(&button, GPIO_INPUT); +} + +int button_read(void) { + return gpio_pin_get_dt(&button); +} diff --git a/drivers/button/button.h b/drivers/button/button.h new file mode 100644 index 0000000..d5d6015 --- /dev/null +++ b/drivers/button/button.h @@ -0,0 +1,9 @@ +#ifndef BUTTON_H +#define BUTTON_H + +#include + +void button_init(void); +int button_read(void); + +#endif // BUTTON_H diff --git a/drivers/led/led.c b/drivers/led/led.c new file mode 100644 index 0000000..541127d --- /dev/null +++ b/drivers/led/led.c @@ -0,0 +1,46 @@ +#include "led.h" +#include + +/* Device tree bindings */ +#define LED0_NODE DT_ALIAS(led0) +#define LED1_NODE DT_ALIAS(led1) + +static const struct gpio_dt_spec led0 = GPIO_DT_SPEC_GET(LED0_NODE, gpios); +static const struct gpio_dt_spec led1 = GPIO_DT_SPEC_GET(LED1_NODE, gpios); + +static struct k_timer led0_timer; +static struct k_timer led1_timer; + +static void led0_timer_handler(struct k_timer *dummy) { gpio_pin_toggle_dt(&led0); } +static void led1_timer_handler(struct k_timer *dummy) { gpio_pin_toggle_dt(&led1); } + +void led_init(void) { + if (!device_is_ready(led0.port) || !device_is_ready(led1.port)) { + printk("LED devices not ready\n"); + return; + } + gpio_pin_configure_dt(&led0, GPIO_OUTPUT_INACTIVE); + gpio_pin_configure_dt(&led1, GPIO_OUTPUT_INACTIVE); + k_timer_init(&led0_timer, led0_timer_handler, NULL); + k_timer_init(&led1_timer, led1_timer_handler, NULL); +} + +void led_set(int led_id, int state) { + if (led_id == 0) gpio_pin_set_dt(&led0, state); + else if (led_id == 1) gpio_pin_set_dt(&led1, state); +} + +void led_toggle(int led_id) { + if (led_id == 0) gpio_pin_toggle_dt(&led0); + else if (led_id == 1) gpio_pin_toggle_dt(&led1); +} + +void led_start_blink(int led_id, int interval_ms) { + if (led_id == 0) k_timer_start(&led0_timer, K_MSEC(interval_ms), K_MSEC(interval_ms)); + else if (led_id == 1) k_timer_start(&led1_timer, K_MSEC(interval_ms), K_MSEC(interval_ms)); +} + +void led_stop_blink(int led_id) { + if (led_id == 0) k_timer_stop(&led0_timer); + else if (led_id == 1) k_timer_stop(&led1_timer); +} diff --git a/drivers/led/led.h b/drivers/led/led.h new file mode 100644 index 0000000..e07232b --- /dev/null +++ b/drivers/led/led.h @@ -0,0 +1,13 @@ +#ifndef LED_H +#define LED_H + +#include +#include + +void led_init(void); +void led_set(int led_id, int state); +void led_toggle(int led_id); +void led_start_blink(int led_id, int interval_ms); +void led_stop_blink(int led_id); + +#endif // LED_H diff --git a/drivers/temperature/temperature.c b/drivers/temperature/temperature.c new file mode 100644 index 0000000..01e1377 --- /dev/null +++ b/drivers/temperature/temperature.c @@ -0,0 +1,16 @@ +#include "temperature.h" +#include +#include + +int temperature_init(void) { + nrfx_temp_config_t cfg = NRFX_TEMP_DEFAULT_CONFIG; + return nrfx_temp_init(&cfg, NULL); +} + +int temperature_get_celsius(int32_t *temp_c) { + nrfx_temp_measure(); + int32_t raw = nrfx_temp_result_get(); + /* Convert to °C (raw is 0.25 °C per LSB) */ + *temp_c = raw / 4; + return 0; +} diff --git a/drivers/temperature/temperature.h b/drivers/temperature/temperature.h new file mode 100644 index 0000000..a76b398 --- /dev/null +++ b/drivers/temperature/temperature.h @@ -0,0 +1,9 @@ +#ifndef TEMPERATURE_H +#define TEMPERATURE_H + +#include + +int temperature_init(void); +int temperature_get_celsius(int32_t *temp_c); + +#endif // TEMPERATURE_H diff --git a/drivers/timer_count/timer_count.c b/drivers/timer_count/timer_count.c new file mode 100644 index 0000000..7551ed2 --- /dev/null +++ b/drivers/timer_count/timer_count.c @@ -0,0 +1,153 @@ +#include "timer_count.h" + +#define MEAS_PIN 11 +#define OSCILLATOR_INIT_DELAY_MS 5 +#define USER_NODE DT_PATH(zephyr_user) +static const struct gpio_dt_spec hum_en = GPIO_DT_SPEC_GET(USER_NODE, hum_en_gpios); + +uint32_t count = 0; +uint32_t timer_status = 0; + +void configure_clock_pin(uint32_t pin_number){ + nrf_gpio_cfg( + pin_number, + NRF_GPIO_PIN_DIR_INPUT, + NRF_GPIO_PIN_INPUT_CONNECT, + NRF_GPIO_PIN_PULLUP, + NRF_GPIO_PIN_S0S1, + NRF_GPIO_PIN_NOSENSE); + *(volatile uint32_t *)(NRF_GPIOTE_BASE + 0x600 + (4 * pin_number)) = 1; +} + +void timer_init() //gate timer +{ + NRF_TIMER1->TASKS_STOP = 1; //trigger stop + NRF_TIMER1->MODE = TIMER_MODE_MODE_Timer; //mode timer + NRF_TIMER1->PRESCALER = 4; // Fhck / 2^8 -1MHz + //total gate time of timer 10000 - 100mS + NRF_TIMER1->CC[0] = 50000; //end gate count + NRF_TIMER1->CC[1] = 1; //start gate count. don't start at 0 to no start on clear. + + NRF_TIMER1->BITMODE = (TIMER_BITMODE_BITMODE_32Bit << TIMER_BITMODE_BITMODE_Pos); + + NRF_TIMER1->TASKS_CLEAR = 1; //trigger zero timer + NRF_TIMER1->INTENSET = (TIMER_INTENSET_COMPARE0_Enabled << TIMER_INTENSET_COMPARE0_Pos); //interrupt on end gate count + + NRF_TIMER1->EVENTS_COMPARE[0] = 0; //rest event flag for gate end + NRF_TIMER1->EVENTS_COMPARE[1] = 0; //rest event flag for gate start +} + +static void counter_init() //actual counter +{ + NRF_TIMER2->TASKS_STOP = 1; //trigger stop + NRF_TIMER2->MODE = TIMER_MODE_MODE_Counter; //counter + NRF_TIMER2->BITMODE = (TIMER_BITMODE_BITMODE_24Bit << TIMER_BITMODE_BITMODE_Pos); + NRF_TIMER2->TASKS_CLEAR = 1; //trigger zero counter + NRF_TIMER2->EVENTS_COMPARE[0] = 0; //reset event for compare +} + +//counter input pin setting +static void gpiote_init(uint32_t pin) //Pin must be in port 0 +{ + NRF_GPIOTE->CONFIG[0] = 0x01 << 0; // MODE: Event + NRF_GPIOTE->CONFIG[0] |= pin << 8; // Pin number + NRF_GPIOTE->CONFIG[0] |= GPIOTE_CONFIG_POLARITY_LoToHi << 16; // Event rising edge +} + +//hardware trigger: stop of counter on event of end timer1 gate +static void ppi_timer_stop_counter_init() +{ + NRF_PPI->CHEN |= 1 << 2; //channel + *(&(NRF_PPI->CH2_EEP)) = (uint32_t)&NRF_TIMER1->EVENTS_COMPARE[0]; //attach end gate event + *(&(NRF_PPI->CH2_TEP)) = (uint32_t)&NRF_TIMER2->TASKS_STOP; //to counter stop trigger + NRF_PPI->CHENSET |= 1 << 2; //set channel +} + +//hardware trigger: start of counter on event of begin timer1 (gate) event.gate +static void ppi_timer_start_counter_init() +{ + NRF_PPI->CHEN |= 1 << 4;// channel + *(&(NRF_PPI->CH4_EEP)) = (uint32_t)&NRF_TIMER1->EVENTS_COMPARE[1]; //attach gate start event + *(&(NRF_PPI->CH4_TEP)) = (uint32_t)&NRF_TIMER2->TASKS_START; //to counter start trigger + NRF_PPI->CHENSET |= 1 << 4; +} + + +static void ppi_gpiote_counter_init() +//hardware attachment for the gpiote that was selected above +{ + NRF_PPI->CHEN |= 1 << 1; + *(&(NRF_PPI->CH1_EEP)) = (uint32_t)&NRF_GPIOTE->EVENTS_IN[0]; //attach pin change + *(&(NRF_PPI->CH1_TEP)) = (uint32_t)&NRF_TIMER2->TASKS_COUNT;//to one count + NRF_PPI->CHENSET |= 1 << 1; +} + +//gate end interrupt handler. Count is done at hardware and percice interrupt execution isnt critical +void TIMER1_IRQHandler(void) { + if (NRF_TIMER1->EVENTS_COMPARE[0] != 0){ //end gate event + NRF_TIMER1->EVENTS_COMPARE[0] = 0; //reset end gate flag + NRF_TIMER1->EVENTS_COMPARE[1] = 0; //reset start gate flag + NRF_TIMER2->TASKS_CAPTURE[0] = 1; //trigger get counter value + count = NRF_TIMER2->CC[0]; + + NRF_TIMER1->TASKS_CLEAR = 1; //reset timer + NRF_TIMER2->TASKS_CLEAR = 1; //reset counter + + timer_status = STATE_FINISHED; + NRF_TIMER1->TASKS_STOP = 1; //stop + gpio_pin_set_dt(&hum_en, 0); + //NRF_TIMER1->TASKS_START = 1; //start next count gate + } +} + +void configure_measurement() +{ + + int ret = 0; + NVIC_ClearPendingIRQ(TIMER1_IRQn); + NVIC_EnableIRQ(TIMER1_IRQn); //enable timer1 interrupt + IRQ_CONNECT(TIMER1_IRQn, 5, TIMER1_IRQHandler, 0, 0); //link interrupt flag to handler + + if (!device_is_ready(hum_en.port)) { + printk("hum_en device not ready\n"); + return; + } + ret = gpio_pin_configure_dt(&hum_en, GPIO_OUTPUT_ACTIVE); if (ret < 0) + { + printk("Failed to configure hum_en\n"); + return; + } + + configure_clock_pin(MEAS_PIN); + + counter_init(); + timer_init(); + gpiote_init(MEAS_PIN); + ppi_gpiote_counter_init(); + ppi_timer_stop_counter_init(); + ppi_timer_start_counter_init(); + +} + +void make_measurement() +{ + if( timer_status == STATE_RUNNING) { + //manage error here + return; + } + + gpio_pin_set_dt(&hum_en, 1); + k_sleep(K_MSEC(OSCILLATOR_INIT_DELAY_MS)); + + timer_status = STATE_RUNNING; + NRF_TIMER1->TASKS_START = 1; +} + +uint32_t read_measurement(){ + if(timer_status != STATE_FINISHED) { + return -timer_status; + } + else{ + return count; + } +} diff --git a/drivers/timer_count/timer_count.h b/drivers/timer_count/timer_count.h new file mode 100644 index 0000000..1577506 --- /dev/null +++ b/drivers/timer_count/timer_count.h @@ -0,0 +1,22 @@ +#ifndef TIMER_COUNT_H +#define TIMER_COUNT_H + +#include +#include +#include +#include +#include + +#include + +#define STATE_DISABLED 0 +#define STATE_RUNNING 1 +#define STATE_FINISHED 2 + +void configure_clock_pin(uint32_t); +void TIMER1_IRQHandler(void); +void configure_measurement(); +void make_measurement(); +uint32_t read_measurement(); + +# endif diff --git a/log.log b/log.log new file mode 100644 index 0000000..30738c8 --- /dev/null +++ b/log.log @@ -0,0 +1,856 @@ +[2025-Aug-21 20:07:48] [debug] -------------------------------------------------------------------------------- +[2025-Aug-21 20:07:48] [debug] nrfjprog --recover --log +[2025-Aug-21 20:07:48] [debug] nrfjprog version 10.24.2 external +[2025-Aug-21 20:07:48] [debug] -------------------------------------------------------------------------------- +[2025-Aug-21 20:07:48] [ info] Load library at /opt/nrf-command-line-tools/lib/libnrfjprogdll.so. +[2025-Aug-21 20:07:48] [ info] Library loaded, loading member functions. +[2025-Aug-21 20:07:48] [ info] Member functions succesfully loaded. +[2025-Aug-21 20:07:48] [debug] [ Client] - open +[2025-Aug-21 20:07:48] [debug] [ Client] - start +[2025-Aug-21 20:07:48] [ info] [ Client] - stdout: Jlinkarm nRF Worker ready. Handling sequence db059fb3-0e5a-4c39-b0da-b5a7fbb4d5f3. +[2025-Aug-21 20:07:48] [debug] [SeggerBackend] - Logger sink registered in Segger backend logger +[2025-Aug-21 20:07:48] [debug] [ JLink] - Logger sink registered in JLink logger +[2025-Aug-21 20:07:48] [debug] [ nRFXX] - open +[2025-Aug-21 20:07:48] [debug] [ nRFXX] - just_check_family +[2025-Aug-21 20:07:48] [debug] [SeggerBackend] - open_dll +[2025-Aug-21 20:07:48] [debug] [SeggerBackend] - No J-Link DLL path was provided. Attempting to auto detect. +[2025-Aug-21 20:07:48] [trace] [ Client] - Command open executed for 9 milliseconds with result 0 +[2025-Aug-21 20:07:48] [debug] [ Client] - config +[2025-Aug-21 20:07:48] [trace] [ Client] - Command config executed for 1 milliseconds with result 0 +[2025-Aug-21 20:07:48] [debug] [ Client] - enum_emu_snr +[2025-Aug-21 20:07:48] [ info] [SeggerBackend] - Load library at /opt/SEGGER/JLink/libjlinkarm.so. +[2025-Aug-21 20:07:48] [ info] [SeggerBackend] - Library loaded, loading member functions. +[2025-Aug-21 20:07:48] [ info] [SeggerBackend] - Member functions succesfully loaded. +[2025-Aug-21 20:07:48] [debug] [SeggerBackend] - Set batch mode +[2025-Aug-21 20:07:48] [debug] [SeggerBackend] - dll_version +[2025-Aug-21 20:07:48] [ info] [SeggerBackend] - Segger dll version 8.44.a loaded. +[2025-Aug-21 20:07:48] [trace] [ Worker] - Command open executed for 7 milliseconds with result 0 +[2025-Aug-21 20:07:48] [debug] [ nRFXX] - config +[2025-Aug-21 20:07:48] [debug] [SeggerBackend] - enum_emu_snr +[2025-Aug-21 20:07:48] [trace] [ Worker] - Command config executed for 1 milliseconds with result 0 +[2025-Aug-21 20:07:48] [debug] [ nRFXX] - enum_emu_con_info +[2025-Aug-21 20:07:48] [debug] [SeggerBackend] - is_connected_to_emu +[2025-Aug-21 20:07:48] [debug] [SeggerBackend] - enum_emu_con_info +[2025-Aug-21 20:07:48] [trace] [ Client] - Command enum_emu_con_info executed for 19 milliseconds with result 0 +[2025-Aug-21 20:07:48] [debug] [ Client] - connect_to_emu_with_snr +[2025-Aug-21 20:07:48] [debug] [SeggerBackend] - is_connected_to_emu +[2025-Aug-21 20:07:48] [trace] [ Worker] - Command enum_emu_con_info executed for 19 milliseconds with result 0 +[2025-Aug-21 20:07:48] [debug] [ nRFXX] - connect_to_emu_with_snr +[2025-Aug-21 20:07:48] [debug] [SeggerBackend] - is_connected_to_emu +[2025-Aug-21 20:07:48] [debug] [SeggerBackend] - connect_to_emu_with_snr +[2025-Aug-21 20:07:48] [debug] [SeggerBackend] - is_connected_to_emu +[2025-Aug-21 20:07:48] [debug] [SeggerBackend] - ---just_enum_emu_snr +[2025-Aug-21 20:07:48] [debug] [SeggerBackend] - ---just_get_num_emus +[2025-Aug-21 20:07:48] [debug] [SeggerBackend] - ---just_connect_to_emu_with_snr +[2025-Aug-21 20:07:48] [debug] [SeggerBackend] - ---just_connect_to_emu_without_snr +[2025-Aug-21 20:07:48] [debug] [SeggerBackend] - Segger logging enabled. +[2025-Aug-21 20:07:48] [trace] [ JLink] - Firmware: J-Link V9 compiled May 7 2021 16:26:12 +[2025-Aug-21 20:07:48] [trace] [ JLink] - Firmware: J-Link V9 compiled May 7 2021 16:26:12 +[2025-Aug-21 20:07:48] [trace] [ JLink] - Decompressing FW timestamp took 111 us +[2025-Aug-21 20:07:48] [trace] [ JLink] - Hardware: V9.20 +[2025-Aug-21 20:07:48] [trace] [ JLink] - S/N: 59200756 +[2025-Aug-21 20:07:48] [trace] [ JLink] - OEM: SEGGER +[2025-Aug-21 20:07:48] [trace] [ JLink] - Feature(s): GDB +[2025-Aug-21 20:07:48] [trace] [ JLink] - Bootloader: (FW returned invalid version) +[2025-Aug-21 20:07:48] [trace] [ JLink] - TELNET listener socket opened on port 19021 +[2025-Aug-21 20:07:48] [trace] [ JLink] - WEBSRV WEBSRV_Init(): Starting webserver thread(s) +[2025-Aug-21 20:07:48] [trace] [ JLink] - WEBSRV Webserver running on local port 19080 +[2025-Aug-21 20:07:48] [trace] [ JLink] - Looking for J-Link GUI Server exe at: /opt/SEGGER/JLink/JLinkGUIServerExe +[2025-Aug-21 20:07:48] [trace] [ JLink] - Forking J-Link GUI Server: /opt/SEGGER/JLink/JLinkGUIServerExe +[2025-Aug-21 20:07:48] [trace] [ JLink] - J-Link GUI Server info: "J-Link GUI server V8.44a " +[2025-Aug-21 20:07:48] [trace] [ JLink] - - 37.787ms returns "O.K." +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_Lock() +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_ExecCommand("SetRestartOnClose = 0", ...). +[2025-Aug-21 20:07:48] [trace] [ JLink] - - 0.004ms returns 0x01 +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_ExecCommand("DisableFlashDL", ...). +[2025-Aug-21 20:07:48] [trace] [ JLink] - - 0.002ms returns 0x00 +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_ExecCommand("ExcludeFlashCacheRange 0x0-0xFFFFFFFF", ...). +[2025-Aug-21 20:07:48] [trace] [ JLink] - - 0.003ms returns 0x00 +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_SetHookUnsecureDialog +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_SetHookUnsecureDialog(...) +[2025-Aug-21 20:07:48] [trace] [ JLink] - - 0.011ms returns 0 +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_TIF_Select(JLINKARM_TIF_SWD) +[2025-Aug-21 20:07:48] [trace] [ JLink] - - 0.428ms returns 0x00 +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_GetSpeedInfo() +[2025-Aug-21 20:07:48] [trace] [ JLink] - 12000000 Hz / n, n >= 1 +[2025-Aug-21 20:07:48] [trace] [ JLink] - - 0.010ms +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:48] [debug] [SeggerBackend] - Connected emulator supports SWD speeds up to 12000kHz +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_SetSpeed(2000) +[2025-Aug-21 20:07:48] [trace] [ JLink] - - 0.075ms +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_GetSpeed() +[2025-Aug-21 20:07:48] [trace] [ JLink] - - 0.005ms returns 2000 +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:48] [debug] [SeggerBackend] - SWD clock set to 2000kHz +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_GetSN() +[2025-Aug-21 20:07:48] [trace] [ JLink] - - 0.005ms returns 59200756 +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:48] [trace] [ JLink] - - 0.007ms +[2025-Aug-21 20:07:48] [debug] [ nRFXX] - read_device_family +[2025-Aug-21 20:07:48] [debug] [ nRFXX] - read_device_family +[2025-Aug-21 20:07:48] [debug] [SeggerBackend] - is_connected_to_emu +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_IsOpen() +[2025-Aug-21 20:07:48] [trace] [ JLink] - - 0.005ms returns 0x01 +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_Lock() +[2025-Aug-21 20:07:48] [debug] [SeggerBackend] - is_connected_to_emu +[2025-Aug-21 20:07:48] [debug] [SeggerBackend] - read_debug_port_idr +[2025-Aug-21 20:07:48] [debug] [SeggerBackend] - read_debug_port_register +[2025-Aug-21 20:07:48] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2025-Aug-21 20:07:48] [debug] [SeggerBackend] - coresight_configure +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_GetHWStatus(...) +[2025-Aug-21 20:07:48] [trace] [ JLink] - - 0.101ms returns 0 +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_CORESIGHT_Configure() +[2025-Aug-21 20:07:48] [trace] [ JLink] - - 99.906ms returns 0 +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:48] [debug] [SeggerBackend] - read_debug_port_idr +[2025-Aug-21 20:07:48] [debug] [SeggerBackend] - read_debug_port_register +[2025-Aug-21 20:07:48] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2025-Aug-21 20:07:48] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2025-Aug-21 20:07:48] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2025-Aug-21 20:07:48] [trace] [ JLink] - - 0.553ms returns -1 +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:48] [debug] [SeggerBackend] - ---just_abort_debug_action +[2025-Aug-21 20:07:48] [debug] [SeggerBackend] - Attempting to clear any configuration errors in debug port before closing connection. +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:48] [trace] [ JLink] - - 0.561ms returns -1 +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:48] [trace] [ JLink] - - 0.501ms returns -1 +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:48] [trace] [ JLink] - - 0.533ms returns -1 +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:48] [trace] [ JLink] - - 0.628ms returns -1 +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:48] [trace] [ JLink] - - 0.569ms returns -1 +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:48] [trace] [ JLink] - - 0.798ms returns -1 +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2025-Aug-21 20:07:48] [trace] [ JLink] - - 0.583ms returns -1 +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:48] [debug] [SeggerBackend] - ---just_abort_debug_action +[2025-Aug-21 20:07:48] [debug] [SeggerBackend] - Attempting to clear any configuration errors in debug port before closing connection. +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:48] [trace] [ JLink] - - 0.538ms returns -1 +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:48] [trace] [ JLink] - - 0.574ms returns -1 +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:48] [trace] [ JLink] - - 0.567ms returns -1 +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:48] [trace] [ JLink] - - 0.574ms returns -1 +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:48] [trace] [ JLink] - - 0.537ms returns -1 +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:48] [trace] [ JLink] - - 0.543ms returns -1 +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2025-Aug-21 20:07:48] [trace] [ JLink] - - 0.542ms returns -1 +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:48] [debug] [SeggerBackend] - ---just_abort_debug_action +[2025-Aug-21 20:07:48] [debug] [SeggerBackend] - Attempting to clear any configuration errors in debug port before closing connection. +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:48] [trace] [ JLink] - - 0.560ms returns -1 +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:48] [trace] [ JLink] - - 0.502ms returns -1 +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:48] [trace] [ JLink] - - 0.562ms returns -1 +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:48] [trace] [ JLink] - - 0.553ms returns -1 +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:48] [trace] [ JLink] - - 0.539ms returns -1 +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:48] [trace] [ JLink] - - 0.545ms returns -1 +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2025-Aug-21 20:07:48] [trace] [ JLink] - - 0.553ms returns -1 +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:48] [debug] [SeggerBackend] - ---just_abort_debug_action +[2025-Aug-21 20:07:48] [debug] [SeggerBackend] - Attempting to clear any configuration errors in debug port before closing connection. +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:48] [trace] [ JLink] - - 0.548ms returns -1 +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:48] [trace] [ JLink] - - 0.555ms returns -1 +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:48] [trace] [ JLink] - - 0.518ms returns -1 +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:48] [trace] [ JLink] - - 0.558ms returns -1 +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:48] [trace] [ JLink] - - 0.541ms returns -1 +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:48] [trace] [ JLink] - - 0.509ms returns -1 +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2025-Aug-21 20:07:48] [trace] [ JLink] - - 0.639ms returns -1 +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:48] [debug] [SeggerBackend] - ---just_abort_debug_action +[2025-Aug-21 20:07:48] [debug] [SeggerBackend] - Attempting to clear any configuration errors in debug port before closing connection. +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:48] [trace] [ JLink] - - 0.490ms returns -1 +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:48] [trace] [ JLink] - - 0.468ms returns -1 +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:48] [trace] [ JLink] - - 0.465ms returns -1 +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:48] [trace] [ JLink] - - 0.491ms returns -1 +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:48] [trace] [ JLink] - - 0.460ms returns -1 +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:48] [trace] [ JLink] - - 0.491ms returns -1 +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2025-Aug-21 20:07:48] [trace] [ JLink] - - 0.509ms returns -1 +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:48] [debug] [SeggerBackend] - ---just_abort_debug_action +[2025-Aug-21 20:07:48] [debug] [SeggerBackend] - Attempting to clear any configuration errors in debug port before closing connection. +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:48] [trace] [ JLink] - - 0.512ms returns -1 +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:48] [trace] [ JLink] - - 0.482ms returns -1 +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:48] [error] [ Client] - Encountered error -102: Command connect_to_emu_with_snr executed for 237 milliseconds with result -102 +[2025-Aug-21 20:07:48] [trace] [ JLink] - - 0.480ms returns -1 +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:48] [trace] [ JLink] - - 0.490ms returns -1 +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:48] [trace] [ JLink] - - 0.460ms returns -1 +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:48] [trace] [ JLink] - - 0.503ms returns -1 +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:48] [trace] [ JLink] - - 0.046ms +[2025-Aug-21 20:07:48] [error] [ Worker] - An unknown error. +[2025-Aug-21 20:07:48] [trace] [ Worker] - Command connect_to_emu_with_snr executed for 237 milliseconds with result -102 +[2025-Aug-21 20:07:48] [debug] [ nRFXX] - close +[2025-Aug-21 20:07:48] [debug] [SeggerBackend] - is_connected_to_emu +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_IsOpen() +[2025-Aug-21 20:07:48] [trace] [ JLink] - - 0.005ms returns 0x01 +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_Lock() +[2025-Aug-21 20:07:48] [debug] [SeggerBackend] - close +[2025-Aug-21 20:07:48] [debug] [SeggerBackend] - disconnect_from_emu +[2025-Aug-21 20:07:48] [debug] [SeggerBackend] - ---just_disconnect_from_emu +[2025-Aug-21 20:07:48] [debug] [SeggerBackend] - is_connected_to_device +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_IsConnected() +[2025-Aug-21 20:07:48] [trace] [ JLink] - - 0.005ms returns FALSE +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:48] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2025-Aug-21 20:07:48] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2025-Aug-21 20:07:48] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2025-Aug-21 20:07:48] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2025-Aug-21 20:07:48] [trace] [ JLink] - - 0.564ms returns -1 +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:48] [debug] [SeggerBackend] - ---just_abort_debug_action +[2025-Aug-21 20:07:48] [debug] [SeggerBackend] - Attempting to clear any configuration errors in debug port before closing connection. +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:48] [trace] [ JLink] - - 0.519ms returns -1 +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:48] [trace] [ JLink] - - 0.506ms returns -1 +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:48] [trace] [ JLink] - - 0.524ms returns -1 +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:48] [trace] [ JLink] - - 0.506ms returns -1 +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:48] [trace] [ JLink] - - 0.484ms returns -1 +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:48] [trace] [ JLink] - - 0.492ms returns -1 +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2025-Aug-21 20:07:48] [trace] [ JLink] - - 0.502ms returns -1 +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:48] [debug] [SeggerBackend] - ---just_abort_debug_action +[2025-Aug-21 20:07:48] [debug] [SeggerBackend] - Attempting to clear any configuration errors in debug port before closing connection. +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:48] [trace] [ JLink] - - 0.520ms returns -1 +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:48] [trace] [ JLink] - - 0.638ms returns -1 +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:48] [trace] [ JLink] - - 0.504ms returns -1 +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:48] [trace] [ JLink] - - 0.509ms returns -1 +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:48] [trace] [ JLink] - - 0.559ms returns -1 +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:48] [trace] [ JLink] - - 0.552ms returns -1 +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2025-Aug-21 20:07:48] [trace] [ JLink] - - 0.533ms returns -1 +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:48] [debug] [SeggerBackend] - ---just_abort_debug_action +[2025-Aug-21 20:07:48] [debug] [SeggerBackend] - Attempting to clear any configuration errors in debug port before closing connection. +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:48] [trace] [ JLink] - - 0.514ms returns -1 +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:48] [trace] [ JLink] - - 0.528ms returns -1 +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:48] [trace] [ JLink] - - 0.553ms returns -1 +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:48] [trace] [ JLink] - - 0.550ms returns -1 +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:48] [trace] [ JLink] - - 0.567ms returns -1 +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:48] [trace] [ JLink] - - 0.486ms returns -1 +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2025-Aug-21 20:07:48] [trace] [ JLink] - - 0.485ms returns -1 +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:48] [debug] [SeggerBackend] - ---just_abort_debug_action +[2025-Aug-21 20:07:48] [debug] [SeggerBackend] - Attempting to clear any configuration errors in debug port before closing connection. +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:48] [trace] [ JLink] - - 0.504ms returns -1 +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:48] [trace] [ JLink] - - 0.509ms returns -1 +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:48] [trace] [ JLink] - - 0.495ms returns -1 +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:48] [trace] [ JLink] - - 0.549ms returns -1 +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:48] [trace] [ JLink] - - 0.505ms returns -1 +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:48] [trace] [ JLink] - - 0.508ms returns -1 +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2025-Aug-21 20:07:48] [trace] [ JLink] - - 0.540ms returns -1 +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:48] [debug] [SeggerBackend] - ---just_abort_debug_action +[2025-Aug-21 20:07:48] [debug] [SeggerBackend] - Attempting to clear any configuration errors in debug port before closing connection. +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:48] [trace] [ JLink] - - 0.543ms returns -1 +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:48] [trace] [ JLink] - - 0.526ms returns -1 +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:48] [trace] [ JLink] - - 0.544ms returns -1 +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:48] [trace] [ JLink] - - 0.520ms returns -1 +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:48] [trace] [ JLink] - - 0.582ms returns -1 +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:48] [trace] [ JLink] - - 0.473ms returns -1 +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2025-Aug-21 20:07:48] [trace] [ JLink] - - 0.497ms returns -1 +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:48] [debug] [SeggerBackend] - ---just_abort_debug_action +[2025-Aug-21 20:07:48] [debug] [SeggerBackend] - Attempting to clear any configuration errors in debug port before closing connection. +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:48] [trace] [ JLink] - - 0.481ms returns -1 +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:48] [trace] [ JLink] - - 0.509ms returns -1 +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:48] [trace] [ JLink] - - 0.502ms returns -1 +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:48] [trace] [ JLink] - - 0.511ms returns -1 +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:48] [trace] [ JLink] - - 0.501ms returns -1 +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:48] [trace] [ JLink] - - 0.520ms returns -1 +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:48] [debug] [SeggerBackend] - Ignore exception An unknown error. +[2025-Aug-21 20:07:48] [trace] [ JLink] - - 0.065ms +[2025-Aug-21 20:07:48] [trace] [ JLink] - JLINK_Close() +[2025-Aug-21 20:07:48] [debug] [SeggerBackend] - Segger Backend closed. +[2025-Aug-21 20:07:48] [debug] [ nRFXX] - nRF family DLL closed +[2025-Aug-21 20:07:48] [trace] [ Client] - Command close executed for 57 milliseconds with result 0 +[2025-Aug-21 20:07:48] [debug] [ Client] - terminate +[2025-Aug-21 20:07:48] [trace] [ Client] - Command terminate executed for 0 milliseconds with result 0 +[2025-Aug-21 20:07:48] [trace] [ Worker] - Command close executed for 57 milliseconds with result 0 +[2025-Aug-21 20:07:48] [trace] [ Worker] - Command terminate executed for 0 milliseconds with result 0 +[2025-Aug-21 20:07:48] [trace] [ Worker] - Executed 6 commands for 321 milliseconds +[2025-Aug-21 20:07:49] [debug] [ Client] - Worker process exited with code: 0 +[2025-Aug-21 20:07:49] [debug] [ Client] - Worker process exited with code: 0 +[2025-Aug-21 20:07:55] [debug] -------------------------------------------------------------------------------- +[2025-Aug-21 20:07:55] [debug] nrfjprog --recover --log +[2025-Aug-21 20:07:55] [debug] nrfjprog version 10.24.2 external +[2025-Aug-21 20:07:55] [debug] -------------------------------------------------------------------------------- +[2025-Aug-21 20:07:55] [ info] Load library at /opt/nrf-command-line-tools/lib/libnrfjprogdll.so. +[2025-Aug-21 20:07:55] [ info] Library loaded, loading member functions. +[2025-Aug-21 20:07:55] [ info] Member functions succesfully loaded. +[2025-Aug-21 20:07:55] [debug] [ Client] - open +[2025-Aug-21 20:07:55] [debug] [ Client] - start +[2025-Aug-21 20:07:55] [ info] [ Client] - stdout: Jlinkarm nRF Worker ready. Handling sequence f0fd1ed0-bef8-423a-9c26-1556ef3861b1. +[2025-Aug-21 20:07:55] [debug] [SeggerBackend] - Logger sink registered in Segger backend logger +[2025-Aug-21 20:07:55] [debug] [ JLink] - Logger sink registered in JLink logger +[2025-Aug-21 20:07:55] [debug] [ nRFXX] - open +[2025-Aug-21 20:07:55] [debug] [ nRFXX] - just_check_family +[2025-Aug-21 20:07:55] [debug] [SeggerBackend] - open_dll +[2025-Aug-21 20:07:55] [debug] [SeggerBackend] - No J-Link DLL path was provided. Attempting to auto detect. +[2025-Aug-21 20:07:55] [trace] [ Client] - Command open executed for 5 milliseconds with result 0 +[2025-Aug-21 20:07:55] [debug] [ Client] - config +[2025-Aug-21 20:07:55] [trace] [ Client] - Command config executed for 1 milliseconds with result 0 +[2025-Aug-21 20:07:55] [debug] [ Client] - enum_emu_snr +[2025-Aug-21 20:07:55] [ info] [SeggerBackend] - Load library at /opt/SEGGER/JLink/libjlinkarm.so. +[2025-Aug-21 20:07:55] [ info] [SeggerBackend] - Library loaded, loading member functions. +[2025-Aug-21 20:07:55] [ info] [SeggerBackend] - Member functions succesfully loaded. +[2025-Aug-21 20:07:55] [debug] [SeggerBackend] - Set batch mode +[2025-Aug-21 20:07:55] [debug] [SeggerBackend] - dll_version +[2025-Aug-21 20:07:55] [ info] [SeggerBackend] - Segger dll version 8.44.a loaded. +[2025-Aug-21 20:07:55] [trace] [ Worker] - Command open executed for 4 milliseconds with result 0 +[2025-Aug-21 20:07:55] [debug] [ nRFXX] - config +[2025-Aug-21 20:07:55] [debug] [SeggerBackend] - enum_emu_snr +[2025-Aug-21 20:07:55] [trace] [ Worker] - Command config executed for 1 milliseconds with result 0 +[2025-Aug-21 20:07:55] [debug] [ nRFXX] - enum_emu_con_info +[2025-Aug-21 20:07:55] [debug] [SeggerBackend] - is_connected_to_emu +[2025-Aug-21 20:07:55] [debug] [SeggerBackend] - enum_emu_con_info +[2025-Aug-21 20:07:55] [trace] [ Client] - Command enum_emu_con_info executed for 19 milliseconds with result 0 +[2025-Aug-21 20:07:55] [debug] [ Client] - connect_to_emu_with_snr +[2025-Aug-21 20:07:55] [debug] [SeggerBackend] - is_connected_to_emu +[2025-Aug-21 20:07:55] [trace] [ Worker] - Command enum_emu_con_info executed for 19 milliseconds with result 0 +[2025-Aug-21 20:07:55] [debug] [ nRFXX] - connect_to_emu_with_snr +[2025-Aug-21 20:07:55] [debug] [SeggerBackend] - is_connected_to_emu +[2025-Aug-21 20:07:55] [debug] [SeggerBackend] - connect_to_emu_with_snr +[2025-Aug-21 20:07:55] [debug] [SeggerBackend] - is_connected_to_emu +[2025-Aug-21 20:07:55] [debug] [SeggerBackend] - ---just_enum_emu_snr +[2025-Aug-21 20:07:55] [debug] [SeggerBackend] - ---just_get_num_emus +[2025-Aug-21 20:07:55] [debug] [SeggerBackend] - ---just_connect_to_emu_with_snr +[2025-Aug-21 20:07:55] [debug] [SeggerBackend] - ---just_connect_to_emu_without_snr +[2025-Aug-21 20:07:55] [debug] [SeggerBackend] - Segger logging enabled. +[2025-Aug-21 20:07:55] [trace] [ JLink] - Firmware: J-Link V9 compiled May 7 2021 16:26:12 +[2025-Aug-21 20:07:55] [trace] [ JLink] - Firmware: J-Link V9 compiled May 7 2021 16:26:12 +[2025-Aug-21 20:07:55] [trace] [ JLink] - Decompressing FW timestamp took 111 us +[2025-Aug-21 20:07:55] [trace] [ JLink] - Hardware: V9.20 +[2025-Aug-21 20:07:55] [trace] [ JLink] - S/N: 59200756 +[2025-Aug-21 20:07:55] [trace] [ JLink] - OEM: SEGGER +[2025-Aug-21 20:07:55] [trace] [ JLink] - Feature(s): GDB +[2025-Aug-21 20:07:55] [trace] [ JLink] - Bootloader: (FW returned invalid version) +[2025-Aug-21 20:07:55] [trace] [ JLink] - TELNET listener socket opened on port 19021 +[2025-Aug-21 20:07:55] [trace] [ JLink] - WEBSRV WEBSRV_Init(): Starting webserver thread(s) +[2025-Aug-21 20:07:55] [trace] [ JLink] - WEBSRV Webserver running on local port 19080 +[2025-Aug-21 20:07:55] [trace] [ JLink] - Looking for J-Link GUI Server exe at: /opt/SEGGER/JLink/JLinkGUIServerExe +[2025-Aug-21 20:07:55] [trace] [ JLink] - Forking J-Link GUI Server: /opt/SEGGER/JLink/JLinkGUIServerExe +[2025-Aug-21 20:07:55] [trace] [ JLink] - J-Link GUI Server info: "J-Link GUI server V8.44a " +[2025-Aug-21 20:07:55] [trace] [ JLink] - - 56.011ms returns "O.K." +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_Lock() +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_ExecCommand("SetRestartOnClose = 0", ...). +[2025-Aug-21 20:07:55] [trace] [ JLink] - - 0.007ms returns 0x01 +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_ExecCommand("DisableFlashDL", ...). +[2025-Aug-21 20:07:55] [trace] [ JLink] - - 0.004ms returns 0x00 +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_ExecCommand("ExcludeFlashCacheRange 0x0-0xFFFFFFFF", ...). +[2025-Aug-21 20:07:55] [trace] [ JLink] - - 0.005ms returns 0x00 +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_SetHookUnsecureDialog +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_SetHookUnsecureDialog(...) +[2025-Aug-21 20:07:55] [trace] [ JLink] - - 0.020ms returns 0 +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_TIF_Select(JLINKARM_TIF_SWD) +[2025-Aug-21 20:07:55] [trace] [ JLink] - - 0.484ms returns 0x00 +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_GetSpeedInfo() +[2025-Aug-21 20:07:55] [trace] [ JLink] - 12000000 Hz / n, n >= 1 +[2025-Aug-21 20:07:55] [trace] [ JLink] - - 0.020ms +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:55] [debug] [SeggerBackend] - Connected emulator supports SWD speeds up to 12000kHz +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_SetSpeed(2000) +[2025-Aug-21 20:07:55] [trace] [ JLink] - - 0.049ms +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_GetSpeed() +[2025-Aug-21 20:07:55] [trace] [ JLink] - - 0.006ms returns 2000 +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:55] [debug] [SeggerBackend] - SWD clock set to 2000kHz +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_GetSN() +[2025-Aug-21 20:07:55] [trace] [ JLink] - - 0.005ms returns 59200756 +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:55] [trace] [ JLink] - - 0.008ms +[2025-Aug-21 20:07:55] [debug] [ nRFXX] - read_device_family +[2025-Aug-21 20:07:55] [debug] [ nRFXX] - read_device_family +[2025-Aug-21 20:07:55] [debug] [SeggerBackend] - is_connected_to_emu +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_IsOpen() +[2025-Aug-21 20:07:55] [trace] [ JLink] - - 0.006ms returns 0x01 +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_Lock() +[2025-Aug-21 20:07:55] [debug] [SeggerBackend] - is_connected_to_emu +[2025-Aug-21 20:07:55] [debug] [SeggerBackend] - read_debug_port_idr +[2025-Aug-21 20:07:55] [debug] [SeggerBackend] - read_debug_port_register +[2025-Aug-21 20:07:55] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2025-Aug-21 20:07:55] [debug] [SeggerBackend] - coresight_configure +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_GetHWStatus(...) +[2025-Aug-21 20:07:55] [trace] [ JLink] - - 0.106ms returns 0 +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_CORESIGHT_Configure() +[2025-Aug-21 20:07:55] [trace] [ JLink] - - 100.130ms returns 0 +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:55] [debug] [SeggerBackend] - read_debug_port_idr +[2025-Aug-21 20:07:55] [debug] [SeggerBackend] - read_debug_port_register +[2025-Aug-21 20:07:55] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2025-Aug-21 20:07:55] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2025-Aug-21 20:07:55] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2025-Aug-21 20:07:55] [trace] [ JLink] - - 0.585ms returns -1 +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:55] [debug] [SeggerBackend] - ---just_abort_debug_action +[2025-Aug-21 20:07:55] [debug] [SeggerBackend] - Attempting to clear any configuration errors in debug port before closing connection. +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:55] [trace] [ JLink] - - 0.550ms returns -1 +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:55] [trace] [ JLink] - - 0.556ms returns -1 +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:55] [trace] [ JLink] - - 0.500ms returns -1 +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:55] [trace] [ JLink] - - 0.474ms returns -1 +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:55] [trace] [ JLink] - - 0.470ms returns -1 +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:55] [trace] [ JLink] - - 0.517ms returns -1 +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2025-Aug-21 20:07:55] [trace] [ JLink] - - 0.511ms returns -1 +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:55] [debug] [SeggerBackend] - ---just_abort_debug_action +[2025-Aug-21 20:07:55] [debug] [SeggerBackend] - Attempting to clear any configuration errors in debug port before closing connection. +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:55] [trace] [ JLink] - - 0.508ms returns -1 +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:55] [trace] [ JLink] - - 0.562ms returns -1 +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:55] [trace] [ JLink] - - 0.611ms returns -1 +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:55] [trace] [ JLink] - - 0.518ms returns -1 +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:55] [trace] [ JLink] - - 0.513ms returns -1 +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:55] [trace] [ JLink] - - 0.501ms returns -1 +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2025-Aug-21 20:07:55] [trace] [ JLink] - - 0.506ms returns -1 +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:55] [debug] [SeggerBackend] - ---just_abort_debug_action +[2025-Aug-21 20:07:55] [debug] [SeggerBackend] - Attempting to clear any configuration errors in debug port before closing connection. +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:55] [trace] [ JLink] - - 0.494ms returns -1 +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:55] [trace] [ JLink] - - 0.542ms returns -1 +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:55] [trace] [ JLink] - - 0.477ms returns -1 +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:55] [trace] [ JLink] - - 0.486ms returns -1 +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:55] [trace] [ JLink] - - 0.545ms returns -1 +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:55] [trace] [ JLink] - - 0.473ms returns -1 +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2025-Aug-21 20:07:55] [trace] [ JLink] - - 0.467ms returns -1 +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:55] [debug] [SeggerBackend] - ---just_abort_debug_action +[2025-Aug-21 20:07:55] [debug] [SeggerBackend] - Attempting to clear any configuration errors in debug port before closing connection. +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:55] [trace] [ JLink] - - 0.469ms returns -1 +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:55] [trace] [ JLink] - - 0.465ms returns -1 +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:55] [trace] [ JLink] - - 0.506ms returns -1 +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:55] [trace] [ JLink] - - 0.519ms returns -1 +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:55] [trace] [ JLink] - - 0.518ms returns -1 +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:55] [trace] [ JLink] - - 0.510ms returns -1 +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2025-Aug-21 20:07:55] [trace] [ JLink] - - 0.531ms returns -1 +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:55] [debug] [SeggerBackend] - ---just_abort_debug_action +[2025-Aug-21 20:07:55] [debug] [SeggerBackend] - Attempting to clear any configuration errors in debug port before closing connection. +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:55] [error] [ Client] - Encountered error -102: Command connect_to_emu_with_snr executed for 256 milliseconds with result -102 +[2025-Aug-21 20:07:55] [trace] [ JLink] - - 0.514ms returns -1 +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:55] [trace] [ JLink] - - 0.567ms returns -1 +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:55] [trace] [ JLink] - - 0.513ms returns -1 +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:55] [trace] [ JLink] - - 0.509ms returns -1 +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:55] [trace] [ JLink] - - 0.528ms returns -1 +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:55] [trace] [ JLink] - - 0.517ms returns -1 +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2025-Aug-21 20:07:55] [trace] [ JLink] - - 0.502ms returns -1 +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:55] [debug] [SeggerBackend] - ---just_abort_debug_action +[2025-Aug-21 20:07:55] [debug] [SeggerBackend] - Attempting to clear any configuration errors in debug port before closing connection. +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:55] [trace] [ JLink] - - 0.508ms returns -1 +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:55] [trace] [ JLink] - - 0.472ms returns -1 +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:55] [trace] [ JLink] - - 0.513ms returns -1 +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:55] [trace] [ JLink] - - 0.474ms returns -1 +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:55] [trace] [ JLink] - - 0.486ms returns -1 +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:55] [trace] [ JLink] - - 0.554ms returns -1 +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:55] [trace] [ JLink] - - 0.106ms +[2025-Aug-21 20:07:55] [error] [ Worker] - An unknown error. +[2025-Aug-21 20:07:55] [trace] [ Worker] - Command connect_to_emu_with_snr executed for 256 milliseconds with result -102 +[2025-Aug-21 20:07:55] [debug] [ nRFXX] - close +[2025-Aug-21 20:07:55] [debug] [SeggerBackend] - is_connected_to_emu +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_IsOpen() +[2025-Aug-21 20:07:55] [trace] [ JLink] - - 0.014ms returns 0x01 +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_Lock() +[2025-Aug-21 20:07:55] [debug] [SeggerBackend] - close +[2025-Aug-21 20:07:55] [debug] [SeggerBackend] - disconnect_from_emu +[2025-Aug-21 20:07:55] [debug] [SeggerBackend] - ---just_disconnect_from_emu +[2025-Aug-21 20:07:55] [debug] [SeggerBackend] - is_connected_to_device +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_IsConnected() +[2025-Aug-21 20:07:55] [trace] [ JLink] - - 0.010ms returns FALSE +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:55] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2025-Aug-21 20:07:55] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2025-Aug-21 20:07:55] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2025-Aug-21 20:07:55] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2025-Aug-21 20:07:55] [trace] [ JLink] - - 0.517ms returns -1 +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:55] [debug] [SeggerBackend] - ---just_abort_debug_action +[2025-Aug-21 20:07:55] [debug] [SeggerBackend] - Attempting to clear any configuration errors in debug port before closing connection. +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:55] [trace] [ JLink] - - 0.511ms returns -1 +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:55] [trace] [ JLink] - - 0.512ms returns -1 +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:55] [trace] [ JLink] - - 0.516ms returns -1 +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:55] [trace] [ JLink] - - 0.515ms returns -1 +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:55] [trace] [ JLink] - - 0.485ms returns -1 +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:55] [trace] [ JLink] - - 0.512ms returns -1 +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2025-Aug-21 20:07:55] [trace] [ JLink] - - 0.478ms returns -1 +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:55] [debug] [SeggerBackend] - ---just_abort_debug_action +[2025-Aug-21 20:07:55] [debug] [SeggerBackend] - Attempting to clear any configuration errors in debug port before closing connection. +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:55] [trace] [ JLink] - - 0.509ms returns -1 +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:55] [trace] [ JLink] - - 0.490ms returns -1 +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:55] [trace] [ JLink] - - 0.508ms returns -1 +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:55] [trace] [ JLink] - - 0.488ms returns -1 +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:55] [trace] [ JLink] - - 0.473ms returns -1 +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:55] [trace] [ JLink] - - 0.544ms returns -1 +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2025-Aug-21 20:07:55] [trace] [ JLink] - - 0.578ms returns -1 +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:55] [debug] [SeggerBackend] - ---just_abort_debug_action +[2025-Aug-21 20:07:55] [debug] [SeggerBackend] - Attempting to clear any configuration errors in debug port before closing connection. +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:55] [trace] [ JLink] - - 0.521ms returns -1 +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:55] [trace] [ JLink] - - 0.495ms returns -1 +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:55] [trace] [ JLink] - - 0.492ms returns -1 +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:55] [trace] [ JLink] - - 0.471ms returns -1 +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:55] [trace] [ JLink] - - 0.469ms returns -1 +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:55] [trace] [ JLink] - - 0.486ms returns -1 +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2025-Aug-21 20:07:55] [trace] [ JLink] - - 0.494ms returns -1 +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:55] [debug] [SeggerBackend] - ---just_abort_debug_action +[2025-Aug-21 20:07:55] [debug] [SeggerBackend] - Attempting to clear any configuration errors in debug port before closing connection. +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:55] [trace] [ JLink] - - 0.509ms returns -1 +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:55] [trace] [ JLink] - - 0.478ms returns -1 +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:55] [trace] [ JLink] - - 0.472ms returns -1 +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:55] [trace] [ JLink] - - 0.458ms returns -1 +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:55] [trace] [ JLink] - - 0.462ms returns -1 +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:55] [trace] [ JLink] - - 0.454ms returns -1 +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2025-Aug-21 20:07:55] [trace] [ JLink] - - 0.461ms returns -1 +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:55] [debug] [SeggerBackend] - ---just_abort_debug_action +[2025-Aug-21 20:07:55] [debug] [SeggerBackend] - Attempting to clear any configuration errors in debug port before closing connection. +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:55] [trace] [ JLink] - - 0.452ms returns -1 +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:55] [trace] [ JLink] - - 0.491ms returns -1 +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:55] [trace] [ JLink] - - 0.444ms returns -1 +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:55] [trace] [ JLink] - - 0.504ms returns -1 +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:55] [trace] [ JLink] - - 0.487ms returns -1 +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:55] [trace] [ JLink] - - 0.460ms returns -1 +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2025-Aug-21 20:07:55] [trace] [ JLink] - - 0.454ms returns -1 +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:55] [debug] [SeggerBackend] - ---just_abort_debug_action +[2025-Aug-21 20:07:55] [debug] [SeggerBackend] - Attempting to clear any configuration errors in debug port before closing connection. +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:55] [trace] [ JLink] - - 0.450ms returns -1 +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:55] [trace] [ JLink] - - 0.457ms returns -1 +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:55] [trace] [ JLink] - - 0.503ms returns -1 +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:55] [trace] [ JLink] - - 0.456ms returns -1 +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:55] [trace] [ JLink] - - 0.480ms returns -1 +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x00, 0x0000001F) +[2025-Aug-21 20:07:55] [trace] [ JLink] - - 0.447ms returns -1 +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_HasError() +[2025-Aug-21 20:07:55] [debug] [SeggerBackend] - Ignore exception An unknown error. +[2025-Aug-21 20:07:55] [trace] [ JLink] - - 0.041ms +[2025-Aug-21 20:07:55] [trace] [ JLink] - JLINK_Close() +[2025-Aug-21 20:07:55] [debug] [SeggerBackend] - Segger Backend closed. +[2025-Aug-21 20:07:55] [debug] [ nRFXX] - nRF family DLL closed +[2025-Aug-21 20:07:55] [trace] [ Client] - Command close executed for 55 milliseconds with result 0 +[2025-Aug-21 20:07:55] [debug] [ Client] - terminate +[2025-Aug-21 20:07:55] [trace] [ Client] - Command terminate executed for 0 milliseconds with result 0 +[2025-Aug-21 20:07:55] [trace] [ Worker] - Command close executed for 55 milliseconds with result 0 +[2025-Aug-21 20:07:55] [trace] [ Worker] - Command terminate executed for 0 milliseconds with result 0 +[2025-Aug-21 20:07:55] [trace] [ Worker] - Executed 6 commands for 335 milliseconds +[2025-Aug-21 20:07:55] [debug] [ Client] - Worker process exited with code: 0 +[2025-Aug-21 20:07:55] [debug] [ Client] - Worker process exited with code: 0 diff --git a/prj.conf b/prj.conf new file mode 100644 index 0000000..57c71e7 --- /dev/null +++ b/prj.conf @@ -0,0 +1,21 @@ +CONFIG_DEBUG=y +CONFIG_DEBUG_OPTIMIZATIONS=y +CONFIG_ASSERT=y +CONFIG_SEGGER_DEBUGMON=y +#CONFIG_CORTEX_M_DEBUG_MONITOR_HOOK=y + +CONFIG_SERIAL=y +CONFIG_UART_LINE_CTRL=y + +# choose RTT console +#CONFIG_UART_CONSOLE=n +#CONFIG_USE_SEGGER_RTT=y +#CONFIG_RTT_CONSOLE=y + +# General config +CONFIG_LOG=n +#CONFIG_LOG_DEFAULT_LEVEL=4 + +CONFIG_USB_DEVICE_STACK=y +CONFIG_USB_CDC_ACM=y +CONFIG_USB_DEVICE_PRODUCT="Zephyr USB console sample" \ No newline at end of file diff --git a/src/main.c b/src/main.c new file mode 100644 index 0000000..d284107 --- /dev/null +++ b/src/main.c @@ -0,0 +1,100 @@ +/* + * Main application using modular libraries + */ + +#include +#include +#include +#include + +#include "led.h" +#include "button.h" +#include "actuator.h" +#include "battery_adc.h" +#include "temperature.h" +#include "timer_count.h" // your custom measurement driver + +const struct device *const dev = DEVICE_DT_GET(DT_CHOSEN(zephyr_console)); + +int main(void) +{ + int ret; + + /* Init USB */ + if (usb_enable(NULL)) { + printk("USB init failed\n"); + return 0; + } + + /* Init modules */ + led_init(); + button_init(); + digital_out_init(); + ret = battery_adc_init(); + if (ret < 0) { + printk("Battery ADC init failed (%d)\n", ret); + } + ret = temperature_init(); + if (ret < 0) { + printk("Temperature init failed (%d)\n", ret); + } + + configure_measurement(); + make_measurement(); + + /* Start blinking LED0 every 1s */ + led_start_blink(0, 1000); + + int old_val = 1; + int out_en = 1; + + while (1) { + /* --- Battery measurement --- */ + int32_t batt_mv; + ret = battery_measure_mv(&batt_mv); + if (ret == 0) { + printk("Battery: %d mV ", batt_mv); + } else { + printk("Battery measurement failed (%d) ", ret); + } + + /* --- Temperature measurement --- */ + int32_t temp_c; + ret = temperature_get_celsius(&temp_c); + if (ret == 0) { + printk("Temperature: %d C ", temp_c); + } else { + printk("Temperature read failed (%d) ", ret); + } + + int32_t humidity_meas = read_measurement(); + if( humidity_meas >= 0) + { + printk("humidity_raw: %d\n", humidity_meas); + make_measurement(); + } + + /* --- Button handling --- */ + int val = button_read(); + if (val < 0) { + printk("Error reading button\n"); + } else if (val == 0) { + if (old_val != val) { + out_en = !out_en; + digital_out_toggle_do1(); + digital_out_toggle_do2(); + digital_out_toggle_do_en(); + led_toggle(1); // toggle LED1 on press + old_val = val; + + } + } else { + if (old_val != val) { + old_val = val; + } + printk("Button released\n"); + } + + k_sleep(K_MSEC(50)); + } +}